| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_COMPILER_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ |
| 6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 | 9 |
| 10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 V(StateValues) \ | 55 V(StateValues) \ |
| 56 V(TypedStateValues) \ | 56 V(TypedStateValues) \ |
| 57 V(ObjectState) \ | 57 V(ObjectState) \ |
| 58 V(Call) \ | 58 V(Call) \ |
| 59 V(Parameter) \ | 59 V(Parameter) \ |
| 60 V(OsrValue) \ | 60 V(OsrValue) \ |
| 61 V(LoopExit) \ | 61 V(LoopExit) \ |
| 62 V(LoopExitValue) \ | 62 V(LoopExitValue) \ |
| 63 V(LoopExitEffect) \ | 63 V(LoopExitEffect) \ |
| 64 V(Projection) \ | 64 V(Projection) \ |
| 65 V(Retain) | 65 V(Retain) \ |
| 66 V(TypeGuard) |
| 66 | 67 |
| 67 #define COMMON_OP_LIST(V) \ | 68 #define COMMON_OP_LIST(V) \ |
| 68 CONSTANT_OP_LIST(V) \ | 69 CONSTANT_OP_LIST(V) \ |
| 69 INNER_OP_LIST(V) \ | 70 INNER_OP_LIST(V) \ |
| 70 V(Dead) | 71 V(Dead) |
| 71 | 72 |
| 72 // Opcodes for JavaScript operators. | 73 // Opcodes for JavaScript operators. |
| 73 #define JS_COMPARE_BINOP_LIST(V) \ | 74 #define JS_COMPARE_BINOP_LIST(V) \ |
| 74 V(JSEqual) \ | 75 V(JSEqual) \ |
| 75 V(JSNotEqual) \ | 76 V(JSNotEqual) \ |
| (...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 } | 757 } |
| 757 }; | 758 }; |
| 758 | 759 |
| 759 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 760 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 760 | 761 |
| 761 } // namespace compiler | 762 } // namespace compiler |
| 762 } // namespace internal | 763 } // namespace internal |
| 763 } // namespace v8 | 764 } // namespace v8 |
| 764 | 765 |
| 765 #endif // V8_COMPILER_OPCODES_H_ | 766 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |