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

Unified Diff: src/compiler/move-optimizer.cc

Issue 1271703002: [turbofan] Stand-alone deferred block splitting - full. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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/move-optimizer.cc
diff --git a/src/compiler/move-optimizer.cc b/src/compiler/move-optimizer.cc
index b869185e60ed2aed9dbc939878d1874e92e4eda6..6d71ef2e1b6b0098bb8ee1f26979ffaaf3dbfafb 100644
--- a/src/compiler/move-optimizer.cc
+++ b/src/compiler/move-optimizer.cc
@@ -59,6 +59,14 @@ void MoveOptimizer::Run() {
}
for (auto block : code()->instruction_blocks()) {
if (block->PredecessorCount() <= 1) continue;
+ bool has_only_deferred = true;
+ for (RpoNumber pred_id : block->predecessors()) {
+ if (!code()->InstructionBlockAt(pred_id)->IsDeferred()) {
+ has_only_deferred = false;
+ break;
+ }
+ }
+ if (has_only_deferred) continue;
Jarin 2015/08/04 19:39:43 Could you explain why we skip the optimization her
Mircea Trofin 2015/08/04 20:34:46 This would pull down common fills. If the fills oc
Mircea Trofin 2015/08/04 20:39:04 Should have added: the last statement of the Multi
OptimizeMerge(block);
}
for (auto gap : to_finalize_) {
« no previous file with comments | « src/compiler/instruction.h ('k') | src/compiler/pipeline.cc » ('j') | src/compiler/pipeline.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698