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

Unified Diff: src/compiler/pipeline.cc

Issue 1559123003: [turbofan] Performance enhancements for escape analysis (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Small improvements Created 4 years, 11 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: src/compiler/pipeline.cc
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index 7047ca9f42d98956c245a00a6289eaf11cf51fe1..11c81a49da9194728431dc16c8c8862e2c4c8301 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -1164,9 +1164,6 @@ 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>();
Michael Starzinger 2016/01/12 17:27:44 Woot, I like it!
Run<EscapeAnalysisPhase>();
RunPrintAndVerify("Escape Analysed");
}

Powered by Google App Engine
This is Rietveld 408576698