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

Unified Diff: src/interpreter/bytecodes.h

Issue 1412953007: [Interpreter] Fill out function prologue support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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 6888ef4d6e7ce7c872f606e8c3b234bea0e41e09..51a904047277d95334f56cc382ea180734dfec3d 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -121,6 +121,10 @@ namespace interpreter {
/* Closure allocation */ \
V(CreateClosure, OperandType::kImm8) \
\
+ /* Arguments allocation */ \
+ V(CreateArgumentsSloppy, OperandType::kNone) \
Michael Starzinger 2015/10/21 18:42:17 suggestion: I know we are inconsistent with the na
rmcilroy 2015/10/22 15:19:52 Good call, went with CreateUnmappedArguments and C
+ V(CreateArgumentsStrict, OperandType::kNone) \
+ \
/* Control Flow */ \
V(Jump, OperandType::kImm8) \
V(JumpConstant, OperandType::kIdx8) \

Powered by Google App Engine
This is Rietveld 408576698