OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_INTERPRETER_BYTECODES_H_ | 5 #ifndef V8_INTERPRETER_BYTECODES_H_ |
6 #define V8_INTERPRETER_BYTECODES_H_ | 6 #define V8_INTERPRETER_BYTECODES_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Clients of this interface shouldn't depend on lots of interpreter internals. | 10 // Clients of this interface shouldn't depend on lots of interpreter internals. |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 V(Mul, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 150 V(Mul, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
151 V(Div, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 151 V(Div, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
152 V(Mod, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 152 V(Mod, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
153 V(BitwiseOr, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 153 V(BitwiseOr, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
154 V(BitwiseXor, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 154 V(BitwiseXor, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
155 V(BitwiseAnd, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 155 V(BitwiseAnd, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
156 V(ShiftLeft, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 156 V(ShiftLeft, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
157 V(ShiftRight, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 157 V(ShiftRight, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
158 V(ShiftRightLogical, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 158 V(ShiftRightLogical, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
159 \ | 159 \ |
| 160 /* Binary operators with immediate operands */ \ |
| 161 V(AddSmi, AccumulatorUse::kWrite, OperandType::kImm, OperandType::kReg) \ |
| 162 V(SubSmi, AccumulatorUse::kWrite, OperandType::kImm, OperandType::kReg) \ |
| 163 V(BitwiseOrSmi, AccumulatorUse::kWrite, OperandType::kImm, \ |
| 164 OperandType::kReg) \ |
| 165 V(BitwiseAndSmi, AccumulatorUse::kWrite, OperandType::kImm, \ |
| 166 OperandType::kReg) \ |
| 167 V(ShiftLeftSmi, AccumulatorUse::kWrite, OperandType::kImm, \ |
| 168 OperandType::kReg) \ |
| 169 V(ShiftRightSmi, AccumulatorUse::kWrite, OperandType::kImm, \ |
| 170 OperandType::kReg) \ |
| 171 \ |
160 /* Unary Operators */ \ | 172 /* Unary Operators */ \ |
161 V(Inc, AccumulatorUse::kReadWrite) \ | 173 V(Inc, AccumulatorUse::kReadWrite) \ |
162 V(Dec, AccumulatorUse::kReadWrite) \ | 174 V(Dec, AccumulatorUse::kReadWrite) \ |
163 V(ToBooleanLogicalNot, AccumulatorUse::kReadWrite) \ | 175 V(ToBooleanLogicalNot, AccumulatorUse::kReadWrite) \ |
164 V(LogicalNot, AccumulatorUse::kReadWrite) \ | 176 V(LogicalNot, AccumulatorUse::kReadWrite) \ |
165 V(TypeOf, AccumulatorUse::kReadWrite) \ | 177 V(TypeOf, AccumulatorUse::kReadWrite) \ |
166 V(DeletePropertyStrict, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 178 V(DeletePropertyStrict, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
167 V(DeletePropertySloppy, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 179 V(DeletePropertySloppy, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
168 \ | 180 \ |
169 /* Call operations */ \ | 181 /* Call operations */ \ |
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 std::ostream& operator<<(std::ostream& os, const AccumulatorUse& use); | 696 std::ostream& operator<<(std::ostream& os, const AccumulatorUse& use); |
685 std::ostream& operator<<(std::ostream& os, const OperandScale& operand_scale); | 697 std::ostream& operator<<(std::ostream& os, const OperandScale& operand_scale); |
686 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size); | 698 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size); |
687 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); | 699 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); |
688 | 700 |
689 } // namespace interpreter | 701 } // namespace interpreter |
690 } // namespace internal | 702 } // namespace internal |
691 } // namespace v8 | 703 } // namespace v8 |
692 | 704 |
693 #endif // V8_INTERPRETER_BYTECODES_H_ | 705 #endif // V8_INTERPRETER_BYTECODES_H_ |
OLD | NEW |