Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 884194c87c269c448c6b94d9a20d0f0863c3d83a..e49b3607bff6d568055a211bae24aa6474e98589 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -273,6 +273,7 @@ namespace interpreter { |
V(JumpIfUndefinedConstant, AccumulatorUse::kRead, OperandType::kIdx) \ |
V(JumpIfNotHole, AccumulatorUse::kRead, OperandType::kImm) \ |
V(JumpIfNotHoleConstant, AccumulatorUse::kRead, OperandType::kIdx) \ |
+ V(JumpLoop, AccumulatorUse::kNone, OperandType::kImm, OperandType::kImm) \ |
\ |
/* Complex flow control For..in */ \ |
V(ForInPrepare, AccumulatorUse::kNone, OperandType::kReg, \ |
@@ -286,9 +287,6 @@ namespace interpreter { |
/* Perform a stack guard check */ \ |
V(StackCheck, AccumulatorUse::kNone) \ |
\ |
- /* Perform a check to trigger on-stack replacement */ \ |
- V(OsrPoll, AccumulatorUse::kNone, OperandType::kImm) \ |
- \ |
/* Non-local flow control */ \ |
V(Throw, AccumulatorUse::kRead) \ |
V(ReThrow, AccumulatorUse::kRead) \ |