Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 068feec1bb70c957302a407a62dd8a492b4aef03..06b9440fe896cfea49c509facd5e337efba8fab5 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -54,10 +54,14 @@ namespace interpreter { |
V(PopContext, AccumulatorUse::kNone, OperandType::kReg) \ |
V(LdaContextSlot, AccumulatorUse::kWrite, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kUImm) \ |
+ V(LdaLocalContextSlot, AccumulatorUse::kWrite, OperandType::kIdx) \ |
V(LdrContextSlot, AccumulatorUse::kNone, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kUImm, OperandType::kRegOut) \ |
+ V(LdrLocalContextSlot, AccumulatorUse::kNone, OperandType::kIdx, \ |
+ OperandType::kRegOut) \ |
V(StaContextSlot, AccumulatorUse::kRead, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kUImm) \ |
+ V(StaLocalContextSlot, AccumulatorUse::kRead, OperandType::kIdx) \ |
\ |
/* Load-Store lookup slots */ \ |
V(LdaLookupSlot, AccumulatorUse::kWrite, OperandType::kIdx) \ |