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

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: 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 801c97aa7c684efd2130c973f51a94b17ec1495a..68d97feab1ae29d2516d0f87a11744806debbda6 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -1167,6 +1167,7 @@ Handle<Code> Pipeline::GenerateCode() {
}
if (FLAG_turbo_escape) {
+ Run<EarlyGraphTrimmingPhase>();
sigurds 2015/12/10 15:40:17 Please advise what to do here.
Michael Starzinger 2015/12/14 10:41:49 Acknowledged. For now I am fine with running the g
sigurds 2015/12/14 11:58:08 Done.
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