OLD | NEW |
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 'package:js_runtime/shared/embedded_names.dart'; | 9 import 'package:js_runtime/shared/embedded_names.dart'; |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 import '../tree/tree.dart' as ast; | 53 import '../tree/tree.dart' as ast; |
54 import '../types/types.dart'; | 54 import '../types/types.dart'; |
55 import '../types/constants.dart' show | 55 import '../types/constants.dart' show |
56 computeTypeMask; | 56 computeTypeMask; |
57 import '../universe/call_structure.dart' show | 57 import '../universe/call_structure.dart' show |
58 CallStructure; | 58 CallStructure; |
59 import '../universe/selector.dart' show | 59 import '../universe/selector.dart' show |
60 Selector; | 60 Selector; |
61 import '../universe/side_effects.dart' show | 61 import '../universe/side_effects.dart' show |
62 SideEffects; | 62 SideEffects; |
63 import '../universe/universe.dart' show | |
64 UniverseSelector; | |
65 import '../universe/use.dart' show | 63 import '../universe/use.dart' show |
| 64 DynamicUse, |
66 StaticUse; | 65 StaticUse; |
67 import '../util/util.dart'; | 66 import '../util/util.dart'; |
68 import '../world.dart' show | 67 import '../world.dart' show |
69 ClassWorld, | 68 ClassWorld, |
70 World; | 69 World; |
71 import '../dump_info.dart' show InfoReporter; | 70 import '../dump_info.dart' show InfoReporter; |
72 | 71 |
73 part 'builder.dart'; | 72 part 'builder.dart'; |
74 part 'codegen.dart'; | 73 part 'codegen.dart'; |
75 part 'codegen_helpers.dart'; | 74 part 'codegen_helpers.dart'; |
76 part 'interceptor_simplifier.dart'; | 75 part 'interceptor_simplifier.dart'; |
77 part 'invoke_dynamic_specializers.dart'; | 76 part 'invoke_dynamic_specializers.dart'; |
78 part 'nodes.dart'; | 77 part 'nodes.dart'; |
79 part 'optimize.dart'; | 78 part 'optimize.dart'; |
80 part 'types.dart'; | 79 part 'types.dart'; |
81 part 'types_propagation.dart'; | 80 part 'types_propagation.dart'; |
82 part 'validate.dart'; | 81 part 'validate.dart'; |
83 part 'variable_allocator.dart'; | 82 part 'variable_allocator.dart'; |
84 part 'value_range_analyzer.dart'; | 83 part 'value_range_analyzer.dart'; |
85 part 'value_set.dart'; | 84 part 'value_set.dart'; |
OLD | NEW |