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

Side by Side Diff: src/compiler/pipeline.cc

Issue 1510973006: Stabilize escape analysis (without deopt) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@fix-guard-bug
Patch Set: Created 5 years 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 unified diff | Download patch
« no previous file with comments | « src/compiler/escape-analysis-reducer.cc ('k') | test/mjsunit/compiler/escape-analysis-10.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/compiler/escape-analysis-reducer.cc ('k') | test/mjsunit/compiler/escape-analysis-10.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698