Home | History | Annotate | Download | only in interpreter

Lines Matching refs:kReadWrite

117   V(StaLookupSlotSloppy, AccumulatorUse::kReadWrite, OperandType::kIdx)        \
118 V(StaLookupSlotStrict, AccumulatorUse::kReadWrite, OperandType::kIdx) \
132 V(LdaKeyedProperty, AccumulatorUse::kReadWrite, OperandType::kReg, \
148 V(Add, AccumulatorUse::kReadWrite, OperandType::kReg) \
149 V(Sub, AccumulatorUse::kReadWrite, OperandType::kReg) \
150 V(Mul, AccumulatorUse::kReadWrite, OperandType::kReg) \
151 V(Div, AccumulatorUse::kReadWrite, OperandType::kReg) \
152 V(Mod, AccumulatorUse::kReadWrite, OperandType::kReg) \
153 V(BitwiseOr, AccumulatorUse::kReadWrite, OperandType::kReg) \
154 V(BitwiseXor, AccumulatorUse::kReadWrite, OperandType::kReg) \
155 V(BitwiseAnd, AccumulatorUse::kReadWrite, OperandType::kReg) \
156 V(ShiftLeft, AccumulatorUse::kReadWrite, OperandType::kReg) \
157 V(ShiftRight, AccumulatorUse::kReadWrite, OperandType::kReg) \
158 V(ShiftRightLogical, AccumulatorUse::kReadWrite, OperandType::kReg) \
161 V(Inc, AccumulatorUse::kReadWrite) \
162 V(Dec, AccumulatorUse::kReadWrite) \
163 V(ToBooleanLogicalNot, AccumulatorUse::kReadWrite) \
164 V(LogicalNot, AccumulatorUse::kReadWrite) \
165 V(TypeOf, AccumulatorUse::kReadWrite) \
166 V(DeletePropertyStrict, AccumulatorUse::kReadWrite, OperandType::kReg) \
167 V(DeletePropertySloppy, AccumulatorUse::kReadWrite, OperandType::kReg) \
186 V(New, AccumulatorUse::kReadWrite, OperandType::kReg, \
190 V(TestEqual, AccumulatorUse::kReadWrite, OperandType::kReg) \
191 V(TestNotEqual, AccumulatorUse::kReadWrite, OperandType::kReg) \
192 V(TestEqualStrict, AccumulatorUse::kReadWrite, OperandType::kReg) \
193 V(TestLessThan, AccumulatorUse::kReadWrite, OperandType::kReg) \
194 V(TestGreaterThan, AccumulatorUse::kReadWrite, OperandType::kReg) \
195 V(TestLessThanOrEqual, AccumulatorUse::kReadWrite, OperandType::kReg) \
196 V(TestGreaterThanOrEqual, AccumulatorUse::kReadWrite, OperandType::kReg) \
197 V(TestInstanceOf, AccumulatorUse::kReadWrite, OperandType::kReg) \
198 V(TestIn, AccumulatorUse::kReadWrite, OperandType::kReg) \
201 V(ToName, AccumulatorUse::kReadWrite) \
202 V(ToNumber, AccumulatorUse::kReadWrite) \
203 V(ToObject, AccumulatorUse::kReadWrite) \
274 kReadWrite = kRead | kWrite