| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 dart2js.backend_strategy; | 5 library dart2js.backend_strategy; |
| 6 | 6 |
| 7 import 'enqueue.dart'; | 7 import 'enqueue.dart'; |
| 8 import 'io/source_information.dart'; |
| 9 import 'js_backend/js_backend.dart'; |
| 8 import 'js_backend/native_data.dart'; | 10 import 'js_backend/native_data.dart'; |
| 9 import 'js_emitter/sorter.dart'; | 11 import 'js_emitter/sorter.dart'; |
| 12 import 'ssa/ssa.dart'; |
| 10 import 'universe/world_builder.dart'; | 13 import 'universe/world_builder.dart'; |
| 11 import 'world.dart'; | 14 import 'world.dart'; |
| 12 | 15 |
| 13 /// Strategy pattern that defines the element model used in type inference | 16 /// Strategy pattern that defines the element model used in type inference |
| 14 /// and code generation. | 17 /// and code generation. |
| 15 abstract class BackendStrategy { | 18 abstract class BackendStrategy { |
| 16 /// Create the [ClosedWorldRefiner] for [closedWorld]. | 19 /// Create the [ClosedWorldRefiner] for [closedWorld]. |
| 17 ClosedWorldRefiner createClosedWorldRefiner(ClosedWorld closedWorld); | 20 ClosedWorldRefiner createClosedWorldRefiner(ClosedWorld closedWorld); |
| 18 | 21 |
| 19 /// Create closure classes for local functions. | 22 /// Create closure classes for local functions. |
| 20 void convertClosures(ClosedWorldRefiner closedWorldRefiner); | 23 void convertClosures(ClosedWorldRefiner closedWorldRefiner); |
| 21 | 24 |
| 22 /// The [Sorter] used for sorting elements in the generated code. | 25 /// The [Sorter] used for sorting elements in the generated code. |
| 23 Sorter get sorter; | 26 Sorter get sorter; |
| 24 | 27 |
| 25 /// Creates the [CodegenWorldBuilder] used by the codegen enqueuer. | 28 /// Creates the [CodegenWorldBuilder] used by the codegen enqueuer. |
| 26 CodegenWorldBuilder createCodegenWorldBuilder( | 29 CodegenWorldBuilder createCodegenWorldBuilder( |
| 27 NativeBasicData nativeBasicData, | 30 NativeBasicData nativeBasicData, |
| 28 ClosedWorld closedWorld, | 31 ClosedWorld closedWorld, |
| 29 SelectorConstraintsStrategy selectorConstraintsStrategy); | 32 SelectorConstraintsStrategy selectorConstraintsStrategy); |
| 30 | 33 |
| 31 /// Creates the [WorkItemBuilder] used by the codegen enqueuer. | 34 /// Creates the [WorkItemBuilder] used by the codegen enqueuer. |
| 32 WorkItemBuilder createCodegenWorkItemBuilder(ClosedWorld closedWorld); | 35 WorkItemBuilder createCodegenWorkItemBuilder(ClosedWorld closedWorld); |
| 36 |
| 37 /// Creates the [SsaBuilderTask] used for the element model. |
| 38 SsaBuilderTask createSsaBuilderTask(JavaScriptBackend backend, |
| 39 SourceInformationStrategy sourceInformationStrategy); |
| 33 } | 40 } |
| OLD | NEW |