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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/use.dart' show | 63 import '../universe/use.dart' show |
64 DynamicUse, | 64 DynamicUse, |
65 StaticUse; | 65 StaticUse, |
| 66 TypeUse; |
66 import '../util/util.dart'; | 67 import '../util/util.dart'; |
67 import '../world.dart' show | 68 import '../world.dart' show |
68 ClassWorld, | 69 ClassWorld, |
69 World; | 70 World; |
70 import '../dump_info.dart' show InfoReporter; | 71 import '../dump_info.dart' show InfoReporter; |
71 | 72 |
72 part 'builder.dart'; | 73 part 'builder.dart'; |
73 part 'codegen.dart'; | 74 part 'codegen.dart'; |
74 part 'codegen_helpers.dart'; | 75 part 'codegen_helpers.dart'; |
75 part 'interceptor_simplifier.dart'; | 76 part 'interceptor_simplifier.dart'; |
76 part 'invoke_dynamic_specializers.dart'; | 77 part 'invoke_dynamic_specializers.dart'; |
77 part 'nodes.dart'; | 78 part 'nodes.dart'; |
78 part 'optimize.dart'; | 79 part 'optimize.dart'; |
79 part 'types.dart'; | 80 part 'types.dart'; |
80 part 'types_propagation.dart'; | 81 part 'types_propagation.dart'; |
81 part 'validate.dart'; | 82 part 'validate.dart'; |
82 part 'variable_allocator.dart'; | 83 part 'variable_allocator.dart'; |
83 part 'value_range_analyzer.dart'; | 84 part 'value_range_analyzer.dart'; |
84 part 'value_set.dart'; | 85 part 'value_set.dart'; |
OLD | NEW |