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