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

Unified Diff: src/compiler/pipeline.cc

Issue 2171083004: [interpreter] Implement OSR graph construction from bytecode. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_interpreter-osr-2
Patch Set: Rebased. Created 4 years, 5 months 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
Index: src/compiler/pipeline.cc
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index 5e0dbd9b46f52dcfdc197ddb3c5fb6b0f23ffe36..978eedc5287e2ccc0fd02a7384934b602dbdb884 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -1803,6 +1803,7 @@ void PipelineImpl::AllocateRegisters(const RegisterConfiguration* config,
data->InitializeRegisterAllocationData(config, descriptor);
if (info()->is_osr()) {
+ AllowHandleDereference allow_deref;
Jarin 2016/07/26 14:46:36 Out of curiosity, why is this needed?
Michael Starzinger 2016/07/26 14:58:51 The constructor of {OsrHelper} dereferences the {S
OsrHelper osr_helper(info());
osr_helper.SetupFrame(data->frame());
}
« src/compiler/bytecode-graph-builder.cc ('K') | « src/compiler/osr.cc ('k') | src/frames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698