Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: pkg/compiler/lib/src/js_backend/codegen/task.dart

Issue 1319303002: dart2js cps: Scalar replacement of aggregates (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 pass.rewrite(cpsNode); 168 pass.rewrite(cpsNode);
169 traceGraph(pass.passName, cpsNode); 169 traceGraph(pass.passName, cpsNode);
170 assert(checkCpsIntegrity(cpsNode)); 170 assert(checkCpsIntegrity(cpsNode));
171 } 171 }
172 172
173 TypePropagator typePropagator = new TypePropagator(compiler, this); 173 TypePropagator typePropagator = new TypePropagator(compiler, this);
174 applyCpsPass(typePropagator); 174 applyCpsPass(typePropagator);
175 dumpTypedIR(cpsNode, typePropagator); 175 dumpTypedIR(cpsNode, typePropagator);
176 applyCpsPass(new LoopInvariantCodeMotion()); 176 applyCpsPass(new LoopInvariantCodeMotion());
177 applyCpsPass(new ShareInterceptors()); 177 applyCpsPass(new ShareInterceptors());
178 applyCpsPass(new ScalarReplacer(compiler));
178 applyCpsPass(new ShrinkingReducer()); 179 applyCpsPass(new ShrinkingReducer());
179 applyCpsPass(new MutableVariableEliminator()); 180 applyCpsPass(new MutableVariableEliminator());
180 applyCpsPass(new RedundantJoinEliminator()); 181 applyCpsPass(new RedundantJoinEliminator());
181 applyCpsPass(new RedundantPhiEliminator()); 182 applyCpsPass(new RedundantPhiEliminator());
182 applyCpsPass(new ShrinkingReducer()); 183 applyCpsPass(new ShrinkingReducer());
183 applyCpsPass(new LetSinker()); 184 applyCpsPass(new LetSinker());
184 185
185 return cpsNode; 186 return cpsNode;
186 } 187 }
187 188
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 // TODO(sigurdm): Make a better list of tasks. 233 // TODO(sigurdm): Make a better list of tasks.
233 return <CompilerTask>[irBuilderTask]..addAll(fallbackCompiler.tasks); 234 return <CompilerTask>[irBuilderTask]..addAll(fallbackCompiler.tasks);
234 } 235 }
235 236
236 js.Node attachPosition(js.Node node, AstElement element) { 237 js.Node attachPosition(js.Node node, AstElement element) {
237 return node.withSourceInformation( 238 return node.withSourceInformation(
238 sourceInformationFactory.createBuilderForContext(element) 239 sourceInformationFactory.createBuilderForContext(element)
239 .buildDeclaration(element)); 240 .buildDeclaration(element));
240 } 241 }
241 } 242 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/scalar_replacement.dart ('k') | tests/compiler/dart2js/js_backend_cps_ir_closures_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698