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

Unified Diff: src/interpreter/bytecodes.h

Issue 1531693002: [Interpreter] Implement ForIn in bytecode graph builder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth-0009-phi
Patch Set: Fix ForInPrepare. 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 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 43f4df3237e1c87c923fc37c942c1754aa1ef98a..b54e4408010fa3a23261189ba1d399815bd3049d 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -193,9 +193,12 @@ namespace interpreter {
V(JumpIfUndefinedConstant, OperandType::kIdx8) \
\
/* Complex flow control For..in */ \
- V(ForInPrepare, OperandType::kReg8) \
- V(ForInNext, OperandType::kReg8, OperandType::kReg8) \
- V(ForInDone, OperandType::kReg8) \
+ V(ForInPrepare, OperandType::kReg8, OperandType::kReg8, OperandType::kReg8, \
+ OperandType::kReg8) \
+ V(ForInNext, OperandType::kReg8, OperandType::kReg8, OperandType::kReg8, \
+ OperandType::kReg8) \
+ V(ForInDone, OperandType::kReg8, OperandType::kReg8) \
+ V(ForInStep, OperandType::kReg8) \
\
/* Non-local flow control */ \
V(Throw, OperandType::kNone) \

Powered by Google App Engine
This is Rietveld 408576698