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

Unified Diff: src/compiler/pipeline.cc

Issue 738853002: [turbofan]: delay ssa deconstruction in register allocator (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 6 years, 1 month 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
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/register-allocator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/pipeline.cc
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index d237c4a076a31f5559a0c5b31ad6716193413746..236e7f655267e36f7aa20ced8a607a58bf2a03b1 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -506,15 +506,6 @@ struct MeetRegisterConstraintsPhase {
};
-struct ResolvePhisPhase {
- static const char* phase_name() { return "resolve phis"; }
-
- void Run(PipelineData* data, Zone* temp_zone) {
- data->register_allocator()->ResolvePhis();
- }
-};
-
-
struct BuildLiveRangesPhase {
static const char* phase_name() { return "build live ranges"; }
@@ -926,7 +917,6 @@ void Pipeline::AllocateRegisters(const RegisterConfiguration* config,
debug_name.get());
Run<MeetRegisterConstraintsPhase>();
- Run<ResolvePhisPhase>();
Run<BuildLiveRangesPhase>();
if (FLAG_trace_turbo) {
OFStream os(stdout);
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/register-allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698