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

Unified Diff: src/compiler/pipeline.cc

Issue 1510973006: Stabilize escape analysis (without deopt) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@fix-guard-bug
Patch Set: Rebase Created 5 years 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
« no previous file with comments | « src/compiler/escape-analysis-reducer.cc ('k') | test/mjsunit/compiler/escape-analysis-10.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/pipeline.cc
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index 8a31843ed081df16219d360758f4cb85ba0ddb65..fc8e51ac65c831925caef36520e30e1f0aa70552 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -1159,6 +1159,9 @@ Handle<Code> Pipeline::GenerateCode() {
}
if (FLAG_turbo_escape) {
+ // TODO(sigurds): EscapeAnalysis needs a trimmed graph at the moment,
+ // because it does a forwards traversal of the effect edges.
+ Run<EarlyGraphTrimmingPhase>();
Run<EscapeAnalysisPhase>();
RunPrintAndVerify("Escape Analysed");
}
« no previous file with comments | « src/compiler/escape-analysis-reducer.cc ('k') | test/mjsunit/compiler/escape-analysis-10.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698