Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index b513b431f6695ed5cb69d14702198b80ed9d3e46..686ef774eef7ec9e81804b1708edf51306e40700 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -1175,21 +1175,6 @@ struct LateGraphTrimmingPhase { |
}; |
-struct StressLoopPeelingPhase { |
- static const char* phase_name() { return "stress loop peeling"; } |
- |
- void Run(PipelineData* data, Zone* temp_zone) { |
- // Peel the first outer loop for testing. |
- // TODO(titzer): peel all loops? the N'th loop? Innermost loops? |
- LoopTree* loop_tree = LoopFinder::BuildLoopTree(data->graph(), temp_zone); |
- if (loop_tree != nullptr && loop_tree->outer_loops().size() > 0) { |
- LoopPeeler::Peel(data->graph(), data->common(), loop_tree, |
- loop_tree->outer_loops()[0], temp_zone); |
- } |
- } |
-}; |
- |
- |
struct ComputeSchedulePhase { |
static const char* phase_name() { return "scheduling"; } |
@@ -1535,11 +1520,6 @@ bool PipelineImpl::CreateGraph() { |
RunPrintAndVerify("Loop exits eliminated", true); |
} |
- if (FLAG_turbo_stress_loop_peeling) { |
- Run<StressLoopPeelingPhase>(); |
- RunPrintAndVerify("Loop peeled"); |
- } |
- |
if (!info()->shared_info()->asm_function()) { |
if (FLAG_turbo_load_elimination) { |
Run<LoadEliminationPhase>(); |