Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1105)

Side by Side Diff: pkg/compiler/lib/src/ssa/ssa.dart

Issue 1212433002: Implement SsaBuilder without the ResolvedVisitor. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/compiler/lib/src/ssa/builder.dart ('k') | pkg/compiler/lib/src/use_unused_api.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library ssa; 5 library ssa;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 8
9 import '../closure.dart'; 9 import '../closure.dart';
10 import '../constant_system_dart.dart'; 10 import '../constant_system_dart.dart';
11 import '../constants/constant_system.dart'; 11 import '../constants/constant_system.dart';
12 import '../constants/expressions.dart'; 12 import '../constants/expressions.dart';
13 import '../constants/values.dart'; 13 import '../constants/values.dart';
14 import '../dart2jslib.dart' hide Selector, TypedSelector; 14 import '../dart2jslib.dart' hide Selector, TypedSelector;
15 import '../dart_types.dart'; 15 import '../dart_types.dart';
16 import '../elements/elements.dart'; 16 import '../elements/elements.dart';
17 import '../elements/modelx.dart' 17 import '../elements/modelx.dart'
18 show ElementX, 18 show ElementX,
19 VariableElementX, 19 VariableElementX,
20 ConstructorBodyElementX; 20 ConstructorBodyElementX;
21 21
22 import '../io/source_information.dart'; 22 import '../io/source_information.dart';
23 import '../js/js.dart' as js; 23 import '../js/js.dart' as js;
24 import '../js_backend/js_backend.dart'; 24 import '../js_backend/js_backend.dart';
25 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; 25 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter;
26 import '../native/native.dart' as native; 26 import '../native/native.dart' as native;
27 import '../resolution/operators.dart'; 27 import '../resolution/operators.dart';
28 import '../resolution/semantic_visitor.dart';
28 import '../tree/tree.dart' as ast; 29 import '../tree/tree.dart' as ast;
29 import '../types/types.dart'; 30 import '../types/types.dart';
30 import '../types/constants.dart' show computeTypeMask; 31 import '../types/constants.dart' show computeTypeMask;
31 import '../universe/universe.dart'; 32 import '../universe/universe.dart';
32 import '../util/util.dart'; 33 import '../util/util.dart';
33 import '../js/rewrite_async.dart'; 34 import '../js/rewrite_async.dart';
34 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'; 35 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart';
35 36
36 part 'builder.dart'; 37 part 'builder.dart';
37 part 'codegen.dart'; 38 part 'codegen.dart';
38 part 'codegen_helpers.dart'; 39 part 'codegen_helpers.dart';
39 part 'interceptor_simplifier.dart'; 40 part 'interceptor_simplifier.dart';
40 part 'invoke_dynamic_specializers.dart'; 41 part 'invoke_dynamic_specializers.dart';
41 part 'nodes.dart'; 42 part 'nodes.dart';
42 part 'optimize.dart'; 43 part 'optimize.dart';
43 part 'types.dart'; 44 part 'types.dart';
44 part 'types_propagation.dart'; 45 part 'types_propagation.dart';
45 part 'validate.dart'; 46 part 'validate.dart';
46 part 'variable_allocator.dart'; 47 part 'variable_allocator.dart';
47 part 'value_range_analyzer.dart'; 48 part 'value_range_analyzer.dart';
48 part 'value_set.dart'; 49 part 'value_set.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/builder.dart ('k') | pkg/compiler/lib/src/use_unused_api.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698