Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/compiler/pipeline.h" | 5 #include "src/compiler/pipeline.h" |
| 6 | 6 |
| 7 #include <fstream> // NOLINT(readability/streams) | 7 #include <fstream> // NOLINT(readability/streams) |
| 8 #include <sstream> | 8 #include <sstream> |
| 9 | 9 |
| 10 #include "src/base/adapters.h" | 10 #include "src/base/adapters.h" |
| (...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1160 // Lower JSOperators where we can determine types. | 1160 // Lower JSOperators where we can determine types. |
| 1161 Run<TypedLoweringPhase>(); | 1161 Run<TypedLoweringPhase>(); |
| 1162 RunPrintAndVerify("Lowered typed"); | 1162 RunPrintAndVerify("Lowered typed"); |
| 1163 | 1163 |
| 1164 if (FLAG_turbo_stress_loop_peeling) { | 1164 if (FLAG_turbo_stress_loop_peeling) { |
| 1165 Run<StressLoopPeelingPhase>(); | 1165 Run<StressLoopPeelingPhase>(); |
| 1166 RunPrintAndVerify("Loop peeled"); | 1166 RunPrintAndVerify("Loop peeled"); |
| 1167 } | 1167 } |
| 1168 | 1168 |
| 1169 if (FLAG_turbo_escape) { | 1169 if (FLAG_turbo_escape) { |
| 1170 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.
| |
| 1170 Run<EscapeAnalysisPhase>(); | 1171 Run<EscapeAnalysisPhase>(); |
| 1171 RunPrintAndVerify("Escape Analysed"); | 1172 RunPrintAndVerify("Escape Analysed"); |
| 1172 } | 1173 } |
| 1173 | 1174 |
| 1174 // Lower simplified operators and insert changes. | 1175 // Lower simplified operators and insert changes. |
| 1175 Run<SimplifiedLoweringPhase>(); | 1176 Run<SimplifiedLoweringPhase>(); |
| 1176 RunPrintAndVerify("Lowered simplified"); | 1177 RunPrintAndVerify("Lowered simplified"); |
| 1177 | 1178 |
| 1178 Run<BranchEliminationPhase>(); | 1179 Run<BranchEliminationPhase>(); |
| 1179 RunPrintAndVerify("Branch conditions eliminated"); | 1180 RunPrintAndVerify("Branch conditions eliminated"); |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1480 tcf << AsC1VRegisterAllocationData("CodeGen", | 1481 tcf << AsC1VRegisterAllocationData("CodeGen", |
| 1481 data->register_allocation_data()); | 1482 data->register_allocation_data()); |
| 1482 } | 1483 } |
| 1483 | 1484 |
| 1484 data->DeleteRegisterAllocationZone(); | 1485 data->DeleteRegisterAllocationZone(); |
| 1485 } | 1486 } |
| 1486 | 1487 |
| 1487 } // namespace compiler | 1488 } // namespace compiler |
| 1488 } // namespace internal | 1489 } // namespace internal |
| 1489 } // namespace v8 | 1490 } // namespace v8 |
| OLD | NEW |