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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/ssa/ssa.dart

Issue 90713003: Dart2js option to dump info about compilation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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 | Annotate | Revision Log
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 '../js/js.dart' as js; 10 import '../js/js.dart' as js;
11 import '../dart2jslib.dart' hide Selector, TypedSelector; 11 import '../dart2jslib.dart' hide Selector, TypedSelector;
12 import '../dart_types.dart'; 12 import '../dart_types.dart';
13 import '../source_file.dart'; 13 import '../source_file.dart';
14 import '../source_map_builder.dart'; 14 import '../source_map_builder.dart';
15 import '../elements/elements.dart'; 15 import '../elements/elements.dart';
16 import '../js_backend/js_backend.dart'; 16 import '../js_backend/js_backend.dart';
17 import '../native_handler.dart' as native; 17 import '../native_handler.dart' as native;
18 import '../tree/tree.dart'; 18 import '../tree/tree.dart';
19 import '../ir/ir_nodes.dart'; 19 import '../ir/ir_nodes.dart';
20 import '../types/types.dart'; 20 import '../types/types.dart';
21 import '../universe/universe.dart'; 21 import '../universe/universe.dart';
22 import '../util/util.dart'; 22 import '../util/util.dart';
23 23
24 import '../scanner/scannerlib.dart' 24 import '../scanner/scannerlib.dart'
25 show PartialFunctionElement, Token, PLUS_TOKEN; 25 show PartialFunctionElement, Token, PLUS_TOKEN;
26 26
27 import '../elements/visitor.dart'
28 show ElementVisitor;
29
27 import '../elements/modelx.dart' 30 import '../elements/modelx.dart'
28 show ElementX, 31 show ElementX,
32 VariableElementX,
29 ConstructorBodyElementX; 33 ConstructorBodyElementX;
30 34
31 import '../js_emitter/js_emitter.dart' show CodeEmitterTask; 35 import '../js_emitter/js_emitter.dart' show CodeEmitterTask;
32 36
33 part 'builder.dart'; 37 part 'builder.dart';
34 part 'from_ir_builder.dart'; 38 part 'from_ir_builder.dart';
35 part 'from_ir_inliner.dart'; 39 part 'from_ir_inliner.dart';
36 part 'codegen.dart'; 40 part 'codegen.dart';
37 part 'codegen_helpers.dart'; 41 part 'codegen_helpers.dart';
38 part 'interceptor_simplifier.dart'; 42 part 'interceptor_simplifier.dart';
39 part 'invoke_dynamic_specializers.dart'; 43 part 'invoke_dynamic_specializers.dart';
40 part 'nodes.dart'; 44 part 'nodes.dart';
41 part 'optimize.dart'; 45 part 'optimize.dart';
42 part 'types.dart'; 46 part 'types.dart';
43 part 'types_propagation.dart'; 47 part 'types_propagation.dart';
44 part 'validate.dart'; 48 part 'validate.dart';
45 part 'variable_allocator.dart'; 49 part 'variable_allocator.dart';
46 part 'value_range_analyzer.dart'; 50 part 'value_range_analyzer.dart';
47 part 'value_set.dart'; 51 part 'value_set.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698