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

Unified Diff: src/interpreter/bytecodes.h

Issue 1422033002: [Interpreter] Add support for for..in. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes for 32-bit. 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 c2203949503e31318470522e44c9c96824110d73..f0a034a421195e49546d7ace5b79daa87e976831 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -141,7 +141,12 @@ namespace interpreter {
V(JumpIfToBooleanFalse, OperandType::kImm8) \
V(JumpIfToBooleanFalseConstant, OperandType::kIdx8) \
V(Throw, OperandType::kNone) \
- V(Return, OperandType::kNone)
+ V(Return, OperandType::kNone) \
+ \
+ /* For..in */ \
rmcilroy 2015/10/26 14:04:01 nit - move Throw and Return below these
oth 2015/10/28 11:53:12 Done.
+ V(ForInPrepare, OperandType::kNone) \
+ V(ForInNext, OperandType::kReg8) \
+ V(ForInDone, OperandType::kReg8)
// Enumeration of the size classes of operand types used by bytecodes.

Powered by Google App Engine
This is Rietveld 408576698