Chromium Code Reviews| Index: src/interpreter/bytecodes.h |
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
| index f55a4af731eda9770254f0b95d52ce3d1e5d17f5..d6b8562d6127c1086809202f20ee37625646a190 100644 |
| --- a/src/interpreter/bytecodes.h |
| +++ b/src/interpreter/bytecodes.h |
| @@ -66,6 +66,12 @@ namespace interpreter { |
| V(LdaContextSlot, OperandType::kReg8, OperandType::kIdx8) \ |
| V(StaContextSlot, OperandType::kReg8, OperandType::kIdx8) \ |
| \ |
| + /* Load-Store LookupSlots */ \ |
|
rmcilroy
2015/12/15 16:44:32
/s/LookupSlots/lookup slots/
mythria
2015/12/16 09:54:21
Done.
|
| + V(LdaLookupSlot, OperandType::kIdx8) \ |
| + V(LdaLookupSlotInsideTypeof, OperandType::kIdx8) \ |
| + V(StaLookupSlotSloppy, OperandType::kIdx8) \ |
| + V(StaLookupSlotStrict, OperandType::kIdx8) \ |
| + \ |
| /* Register-accumulator transfers */ \ |
| V(Ldar, OperandType::kReg8) \ |
| V(Star, OperandType::kReg8) \ |