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

Unified Diff: src/interpreter/bytecodes.h

Issue 2248633002: [interpreter] Add CreateBlockContext bytecode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: regenerate golden files Created 4 years, 4 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/interpreter/bytecodes.h
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
index 47dfd67c7e17be6b17bae90ecefd7a0f1b47d823..646041e8831223eb72cdf198e426fda00754a8ff 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -229,6 +229,9 @@ namespace interpreter {
V(CreateObjectLiteral, AccumulatorUse::kNone, OperandType::kIdx, \
OperandType::kIdx, OperandType::kFlag8, OperandType::kRegOut) \
\
+ /* Block context allocation */ \
+ V(CreateBlockContext, AccumulatorUse::kReadWrite, OperandType::kIdx) \
rmcilroy 2016/08/15 16:01:04 nit - move this under CreateFunctionContext (no ne
Michael Starzinger 2016/08/16 08:23:41 +1
klaasb 2016/08/16 10:40:09 Done.
+ \
/* Closure allocation */ \
V(CreateClosure, AccumulatorUse::kWrite, OperandType::kIdx, \
OperandType::kFlag8) \

Powered by Google App Engine
This is Rietveld 408576698