OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 /// Generate code using the cps-based IR pipeline. | 5 /// Generate code using the cps-based IR pipeline. |
6 library code_generator_task; | 6 library code_generator_task; |
7 | 7 |
8 import 'glue.dart'; | 8 import 'glue.dart'; |
9 import 'codegen.dart'; | 9 import 'codegen.dart'; |
10 import 'unsugar.dart'; | 10 import 'unsugar.dart'; |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 201 |
202 cps.FunctionDefinition optimizeCpsIr(cps.FunctionDefinition cpsFunction) { | 202 cps.FunctionDefinition optimizeCpsIr(cps.FunctionDefinition cpsFunction) { |
203 cpsOptimizationTask.measure(() { | 203 cpsOptimizationTask.measure(() { |
204 applyCpsPass(new RedundantJoinEliminator(), cpsFunction); | 204 applyCpsPass(new RedundantJoinEliminator(), cpsFunction); |
205 applyCpsPass(new RedundantPhiEliminator(), cpsFunction); | 205 applyCpsPass(new RedundantPhiEliminator(), cpsFunction); |
206 applyCpsPass(new InsertRefinements(typeSystem), cpsFunction); | 206 applyCpsPass(new InsertRefinements(typeSystem), cpsFunction); |
207 applyCpsPass(new TypePropagator(compiler, typeSystem, this), cpsFunction); | 207 applyCpsPass(new TypePropagator(compiler, typeSystem, this), cpsFunction); |
208 applyCpsPass(new RedundantJoinEliminator(), cpsFunction); | 208 applyCpsPass(new RedundantJoinEliminator(), cpsFunction); |
209 applyCpsPass(new ShrinkingReducer(), cpsFunction); | 209 applyCpsPass(new ShrinkingReducer(), cpsFunction); |
210 applyCpsPass(new RedundantRefinementEliminator(typeSystem), cpsFunction); | 210 applyCpsPass(new RedundantRefinementEliminator(typeSystem), cpsFunction); |
| 211 applyCpsPass(new EagerlyLoadStatics(), cpsFunction); |
211 applyCpsPass(new GVN(compiler), cpsFunction); | 212 applyCpsPass(new GVN(compiler), cpsFunction); |
212 applyCpsPass(new RemoveRefinements(), cpsFunction); | 213 applyCpsPass(new RemoveRefinements(), cpsFunction); |
213 applyCpsPass(new ShrinkingReducer(), cpsFunction); | 214 applyCpsPass(new ShrinkingReducer(), cpsFunction); |
214 applyCpsPass(new ScalarReplacer(compiler), cpsFunction); | 215 applyCpsPass(new ScalarReplacer(compiler), cpsFunction); |
215 applyCpsPass(new MutableVariableEliminator(), cpsFunction); | 216 applyCpsPass(new MutableVariableEliminator(), cpsFunction); |
216 applyCpsPass(new RedundantJoinEliminator(), cpsFunction); | 217 applyCpsPass(new RedundantJoinEliminator(), cpsFunction); |
217 applyCpsPass(new RedundantPhiEliminator(), cpsFunction); | 218 applyCpsPass(new RedundantPhiEliminator(), cpsFunction); |
218 applyCpsPass(new BoundsChecker(typeSystem, compiler.world), cpsFunction); | 219 applyCpsPass(new BoundsChecker(typeSystem, compiler.world), cpsFunction); |
219 applyCpsPass(new ShrinkingReducer(), cpsFunction); | 220 applyCpsPass(new ShrinkingReducer(), cpsFunction); |
220 applyCpsPass(new OptimizeInterceptors(backend), cpsFunction); | 221 applyCpsPass(new OptimizeInterceptors(backend), cpsFunction); |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 treeOptimizationTask] | 282 treeOptimizationTask] |
282 ..addAll(fallbackCompiler.tasks); | 283 ..addAll(fallbackCompiler.tasks); |
283 } | 284 } |
284 | 285 |
285 js.Node attachPosition(js.Node node, AstElement element) { | 286 js.Node attachPosition(js.Node node, AstElement element) { |
286 return node.withSourceInformation( | 287 return node.withSourceInformation( |
287 sourceInformationFactory.createBuilderForContext(element) | 288 sourceInformationFactory.createBuilderForContext(element) |
288 .buildDeclaration(element)); | 289 .buildDeclaration(element)); |
289 } | 290 } |
290 } | 291 } |
OLD | NEW |