Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 1d462620ae599b594cc7f7236144959a4d8e41eb..27383e7d1e83e7cd24dc31b15b18b39c8adebb7a 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -126,23 +126,23 @@ namespace interpreter { |
V(Mov, AccumulatorUse::kNone, OperandType::kReg, OperandType::kRegOut) \ |
\ |
/* LoadIC operations */ \ |
rmcilroy
2016/05/24 15:23:49
nit - update this comment.
oth
2016/05/25 08:10:28
Done.
|
- V(LoadIC, AccumulatorUse::kWrite, OperandType::kReg, OperandType::kIdx, \ |
- OperandType::kIdx) \ |
+ V(LdaNamedProperty, AccumulatorUse::kWrite, OperandType::kReg, \ |
+ OperandType::kIdx, OperandType::kIdx) \ |
V(LdrNamedProperty, AccumulatorUse::kNone, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kIdx, OperandType::kRegOut) \ |
- V(KeyedLoadIC, AccumulatorUse::kReadWrite, OperandType::kReg, \ |
+ V(LdaKeyedProperty, AccumulatorUse::kReadWrite, OperandType::kReg, \ |
OperandType::kIdx) \ |
V(LdrKeyedProperty, AccumulatorUse::kRead, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kRegOut) \ |
\ |
/* StoreIC operations */ \ |
rmcilroy
2016/05/24 15:23:49
ditto
oth
2016/05/25 08:10:28
Done.
|
- V(StoreICSloppy, AccumulatorUse::kRead, OperandType::kReg, \ |
+ V(StaNamedPropertySloppy, AccumulatorUse::kRead, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kIdx) \ |
- V(StoreICStrict, AccumulatorUse::kRead, OperandType::kReg, \ |
+ V(StaNamedPropertyStrict, AccumulatorUse::kRead, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kIdx) \ |
- V(KeyedStoreICSloppy, AccumulatorUse::kRead, OperandType::kReg, \ |
+ V(StaKeyedPropertySloppy, AccumulatorUse::kRead, OperandType::kReg, \ |
OperandType::kReg, OperandType::kIdx) \ |
- V(KeyedStoreICStrict, AccumulatorUse::kRead, OperandType::kReg, \ |
+ V(StaKeyedPropertyStrict, AccumulatorUse::kRead, OperandType::kReg, \ |
OperandType::kReg, OperandType::kIdx) \ |
\ |
/* Binary Operators */ \ |