| 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 export 'builder.dart' show SsaFunctionCompiler; |
| 8 | |
| 9 import 'package:js_runtime/shared/embedded_names.dart'; | |
| 10 | |
| 11 import '../closure.dart'; | |
| 12 import '../common.dart'; | |
| 13 import '../common/codegen.dart' show | |
| 14 CodegenRegistry, | |
| 15 CodegenWorkItem; | |
| 16 import '../common/names.dart' show | |
| 17 Identifiers, | |
| 18 Selectors; | |
| 19 import '../common/tasks.dart' show | |
| 20 CompilerTask; | |
| 21 import '../compiler.dart' show | |
| 22 Compiler; | |
| 23 import '../constant_system_dart.dart'; | |
| 24 import '../constants/constant_system.dart'; | |
| 25 import '../constants/expressions.dart'; | |
| 26 import '../constants/values.dart'; | |
| 27 import '../core_types.dart' show | |
| 28 CoreClasses; | |
| 29 import '../dart_types.dart'; | |
| 30 import '../diagnostics/messages.dart' show | |
| 31 Message, | |
| 32 MessageTemplate; | |
| 33 import '../elements/elements.dart'; | |
| 34 import '../elements/modelx.dart' show | |
| 35 ConstructorBodyElementX, | |
| 36 ElementX, | |
| 37 VariableElementX; | |
| 38 import '../io/source_information.dart'; | |
| 39 import '../js/js.dart' as js; | |
| 40 import '../js_backend/backend_helpers.dart' show | |
| 41 BackendHelpers; | |
| 42 import '../js_backend/js_backend.dart'; | |
| 43 import '../js_emitter/js_emitter.dart' show | |
| 44 CodeEmitterTask, | |
| 45 NativeEmitter; | |
| 46 import '../native/native.dart' as native; | |
| 47 import '../resolution/operators.dart'; | |
| 48 import '../resolution/semantic_visitor.dart'; | |
| 49 import '../resolution/tree_elements.dart' show | |
| 50 TreeElements; | |
| 51 import '../tree/tree.dart' as ast; | |
| 52 import '../types/types.dart'; | |
| 53 import '../types/constants.dart' show | |
| 54 computeTypeMask; | |
| 55 import '../universe/call_structure.dart' show | |
| 56 CallStructure; | |
| 57 import '../universe/selector.dart' show | |
| 58 Selector; | |
| 59 import '../universe/side_effects.dart' show | |
| 60 SideEffects; | |
| 61 import '../universe/use.dart' show | |
| 62 DynamicUse, | |
| 63 StaticUse, | |
| 64 TypeUse; | |
| 65 import '../util/util.dart'; | |
| 66 import '../world.dart' show | |
| 67 ClassWorld, | |
| 68 World; | |
| 69 import '../dump_info.dart' show InfoReporter; | |
| 70 | |
| 71 part 'builder.dart'; | |
| 72 part 'codegen.dart'; | |
| 73 part 'codegen_helpers.dart'; | |
| 74 part 'interceptor_simplifier.dart'; | |
| 75 part 'invoke_dynamic_specializers.dart'; | |
| 76 part 'nodes.dart'; | |
| 77 part 'optimize.dart'; | |
| 78 part 'types.dart'; | |
| 79 part 'types_propagation.dart'; | |
| 80 part 'validate.dart'; | |
| 81 part 'variable_allocator.dart'; | |
| 82 part 'value_range_analyzer.dart'; | |
| 83 part 'value_set.dart'; | |
| OLD | NEW |