Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 1750b7f4e0e5e68a0c58bd79ffa67b952622c442..1fc84becef4b714a3f3350e198ed370e46b16616 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -15,6 +15,7 @@ |
#include "src/compiler/change-lowering.h" |
#include "src/compiler/code-generator.h" |
#include "src/compiler/common-operator-reducer.h" |
+#include "src/compiler/control-flow-optimizer.h" |
#include "src/compiler/control-reducer.h" |
#include "src/compiler/graph-replay.h" |
#include "src/compiler/graph-visualizer.h" |
@@ -542,6 +543,16 @@ struct SimplifiedLoweringPhase { |
}; |
+struct ControlFlowOptimizationPhase { |
+ static const char* phase_name() { return "control flow optimization"; } |
+ |
+ void Run(PipelineData* data, Zone* temp_zone) { |
+ ControlFlowOptimizer optimizer(data->jsgraph(), temp_zone); |
+ optimizer.Optimize(); |
+ } |
+}; |
+ |
+ |
struct ChangeLoweringPhase { |
static const char* phase_name() { return "change lowering"; } |
@@ -959,6 +970,12 @@ Handle<Code> Pipeline::GenerateCode() { |
Run<SimplifiedLoweringPhase>(); |
RunPrintAndVerify("Lowered simplified"); |
+ // Optimize control flow. |
+ if (FLAG_turbo_cf_optimization) { |
+ Run<ControlFlowOptimizationPhase>(); |
+ RunPrintAndVerify("Control flow optimized"); |
+ } |
+ |
// Lower changes that have been inserted before. |
Run<ChangeLoweringPhase>(); |
// // TODO(jarin, rossberg): Remove UNTYPED once machine typing works. |