| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 V(JSCreateCatchContext) \ | 132 V(JSCreateCatchContext) \ |
| 133 V(JSCreateWithContext) \ | 133 V(JSCreateWithContext) \ |
| 134 V(JSCreateBlockContext) \ | 134 V(JSCreateBlockContext) \ |
| 135 V(JSCreateModuleContext) \ | 135 V(JSCreateModuleContext) \ |
| 136 V(JSCreateScriptContext) | 136 V(JSCreateScriptContext) |
| 137 | 137 |
| 138 #define JS_OTHER_OP_LIST(V) \ | 138 #define JS_OTHER_OP_LIST(V) \ |
| 139 V(JSCallConstruct) \ | 139 V(JSCallConstruct) \ |
| 140 V(JSCallFunction) \ | 140 V(JSCallFunction) \ |
| 141 V(JSCallRuntime) \ | 141 V(JSCallRuntime) \ |
| 142 V(JSConvertReceiver) \ |
| 142 V(JSForInDone) \ | 143 V(JSForInDone) \ |
| 143 V(JSForInNext) \ | 144 V(JSForInNext) \ |
| 144 V(JSForInPrepare) \ | 145 V(JSForInPrepare) \ |
| 145 V(JSForInStep) \ | 146 V(JSForInStep) \ |
| 146 V(JSYield) \ | 147 V(JSYield) \ |
| 147 V(JSStackCheck) | 148 V(JSStackCheck) |
| 148 | 149 |
| 149 #define JS_OP_LIST(V) \ | 150 #define JS_OP_LIST(V) \ |
| 150 JS_SIMPLE_BINOP_LIST(V) \ | 151 JS_SIMPLE_BINOP_LIST(V) \ |
| 151 JS_SIMPLE_UNOP_LIST(V) \ | 152 JS_SIMPLE_UNOP_LIST(V) \ |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 } | 369 } |
| 369 }; | 370 }; |
| 370 | 371 |
| 371 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 372 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 372 | 373 |
| 373 } // namespace compiler | 374 } // namespace compiler |
| 374 } // namespace internal | 375 } // namespace internal |
| 375 } // namespace v8 | 376 } // namespace v8 |
| 376 | 377 |
| 377 #endif // V8_COMPILER_OPCODES_H_ | 378 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |