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

Unified Diff: pkg/compiler/lib/src/tree_ir/optimization/statement_rewriter.dart

Issue 1251083002: dart2js cps: Avoid deep recursion using trampolines and basic blocks. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix a comment Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/tree_ir/optimization/statement_rewriter.dart
diff --git a/pkg/compiler/lib/src/tree_ir/optimization/statement_rewriter.dart b/pkg/compiler/lib/src/tree_ir/optimization/statement_rewriter.dart
index 11416657d4591a4e6e181f91b469c6a9f24bd0a8..bfd9787ae2798132f088d747b9732121d4affe3e 100644
--- a/pkg/compiler/lib/src/tree_ir/optimization/statement_rewriter.dart
+++ b/pkg/compiler/lib/src/tree_ir/optimization/statement_rewriter.dart
@@ -368,7 +368,21 @@ class StatementRewriter extends Transformer implements Pass {
isEffectivelyConstant(node.value);
}
- Statement visitExpressionStatement(ExpressionStatement stmt) {
+ Statement visitExpressionStatement(ExpressionStatement inputNode) {
floitsch 2015/07/22 14:21:42 Add comment, what this function does (and/or on an
asgerf 2015/07/22 14:32:25 Done. Also renamed analyze->process since it has s
+ List<Function> stack = [];
+ Statement node = inputNode;
+ while (node is ExpressionStatement) {
+ stack.add(analyzeExpressionStatement(node));
+ node = node.next;
+ }
+ Statement result = visitStatement(node);
+ for (Function fun in stack.reversed) {
+ result = fun(result);
+ }
+ return result;
+ }
+
+ Function analyzeExpressionStatement(ExpressionStatement stmt) {
Variable leftHand = getLeftHand(stmt.expression);
pushDominatingAssignment(leftHand);
if (isEffectivelyConstantAssignment(stmt.expression) &&
@@ -380,44 +394,50 @@ class StatementRewriter extends Transformer implements Pass {
if (assign.variable.readCount == 1) {
// A single-use constant should always be propagated to its use site.
constantEnvironment[assign.variable] = assign.value;
- Statement next = visitStatement(stmt.next);
- popDominatingAssignment(leftHand);
- if (assign.variable.readCount > 0) {
- // The assignment could not be propagated into the successor, either
- // because it has an unsafe variable use (see [hasUnsafeVariableUse])
- // or because the use is outside the current try block, and we do
- // not currently support constant propagation out of a try block.
- constantEnvironment.remove(assign.variable);
- assign.value = visitExpression(assign.value);
- stmt.next = next;
- return stmt;
- } else {
- --assign.variable.writeCount;
- return next;
- }
+ return (Statement next) {
+ popDominatingAssignment(leftHand);
+ if (assign.variable.readCount > 0) {
+ // The assignment could not be propagated into the successor, either
+ // because it has an unsafe variable use (see [hasUnsafeVariableUse])
floitsch 2015/07/22 14:21:42 long line.
asgerf 2015/07/22 14:32:25 Done.
+ // or because the use is outside the current try block, and we do
+ // not currently support constant propagation out of a try block.
+ constantEnvironment.remove(assign.variable);
+ assign.value = visitExpression(assign.value);
+ stmt.next = next;
+ return stmt;
+ } else {
+ --assign.variable.writeCount;
+ return next;
+ }
+ };
} else {
// With more than one use, we cannot propagate the constant.
// Visit the following statement without polluting [environment] so
// that any preceding non-constant assignments might still propagate.
- stmt.next = visitStatement(stmt.next);
- popDominatingAssignment(leftHand);
- assign.value = visitExpression(assign.value);
- return stmt;
+ return (Statement next) {
+ stmt.next = next;
+ popDominatingAssignment(leftHand);
+ assign.value = visitExpression(assign.value);
+ return stmt;
+ };
}
- }
- // Try to propagate the expression, and block previous impure expressions
- // until this has propagated.
- environment.add(stmt.expression);
- stmt.next = visitStatement(stmt.next);
- popDominatingAssignment(leftHand);
- if (!environment.isEmpty && environment.last == stmt.expression) {
- // Retain the expression statement.
- environment.removeLast();
- stmt.expression = visitExpression(stmt.expression);
- return stmt;
} else {
- // Expression was propagated into the successor.
- return stmt.next;
+ // Try to propagate the expression, and block previous impure expressions
+ // until this has propagated.
+ environment.add(stmt.expression);
+ return (Statement next) {
+ stmt.next = next;
+ popDominatingAssignment(leftHand);
+ if (!environment.isEmpty && environment.last == stmt.expression) {
+ // Retain the expression statement.
+ environment.removeLast();
+ stmt.expression = visitExpression(stmt.expression);
+ return stmt;
+ } else {
+ // Expression was propagated into the successor.
+ return stmt.next;
+ }
+ };
}
}

Powered by Google App Engine
This is Rietveld 408576698