| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 V(KeyedLoadICSloppy, OperandType::kReg8, OperandType::kIdx8) \ | 60 V(KeyedLoadICSloppy, OperandType::kReg8, OperandType::kIdx8) \ |
| 61 V(KeyedLoadICStrict, OperandType::kReg8, OperandType::kIdx8) \ | 61 V(KeyedLoadICStrict, OperandType::kReg8, OperandType::kIdx8) \ |
| 62 \ | 62 \ |
| 63 /* StoreIC operations */ \ | 63 /* StoreIC operations */ \ |
| 64 V(StoreICSloppy, OperandType::kReg8, OperandType::kReg8, OperandType::kIdx8) \ | 64 V(StoreICSloppy, OperandType::kReg8, OperandType::kReg8, OperandType::kIdx8) \ |
| 65 V(StoreICStrict, OperandType::kReg8, OperandType::kReg8, OperandType::kIdx8) \ | 65 V(StoreICStrict, OperandType::kReg8, OperandType::kReg8, OperandType::kIdx8) \ |
| 66 V(KeyedStoreICSloppy, OperandType::kReg8, OperandType::kReg8, \ | 66 V(KeyedStoreICSloppy, OperandType::kReg8, OperandType::kReg8, \ |
| 67 OperandType::kIdx8) \ | 67 OperandType::kIdx8) \ |
| 68 V(KeyedStoreICStrict, OperandType::kReg8, OperandType::kReg8, \ | 68 V(KeyedStoreICStrict, OperandType::kReg8, OperandType::kReg8, \ |
| 69 OperandType::kIdx8) \ | 69 OperandType::kIdx8) \ |
| 70 /* TODO(rmcilroy): Remove once literal stores have type feedback slots. */ \ | |
| 71 V(KeyedStoreICGeneric, OperandType::kReg8, OperandType::kReg8) \ | |
| 72 \ | 70 \ |
| 73 /* Context operations */ \ | 71 /* Context operations */ \ |
| 74 V(PushContext, OperandType::kReg8) \ | 72 V(PushContext, OperandType::kReg8) \ |
| 75 V(PopContext, OperandType::kReg8) \ | 73 V(PopContext, OperandType::kReg8) \ |
| 76 \ | 74 \ |
| 77 /* Binary Operators */ \ | 75 /* Binary Operators */ \ |
| 78 V(Add, OperandType::kReg8) \ | 76 V(Add, OperandType::kReg8) \ |
| 79 V(Sub, OperandType::kReg8) \ | 77 V(Sub, OperandType::kReg8) \ |
| 80 V(Mul, OperandType::kReg8) \ | 78 V(Mul, OperandType::kReg8) \ |
| 81 V(Div, OperandType::kReg8) \ | 79 V(Div, OperandType::kReg8) \ |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 | 272 |
| 275 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); | 273 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); |
| 276 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); | 274 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); |
| 277 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type); | 275 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type); |
| 278 | 276 |
| 279 } // namespace interpreter | 277 } // namespace interpreter |
| 280 } // namespace internal | 278 } // namespace internal |
| 281 } // namespace v8 | 279 } // namespace v8 |
| 282 | 280 |
| 283 #endif // V8_INTERPRETER_BYTECODES_H_ | 281 #endif // V8_INTERPRETER_BYTECODES_H_ |
| OLD | NEW |