| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 V(JSStoreNamed) \ | 123 V(JSStoreNamed) \ |
| 124 V(JSStoreGlobal) \ | 124 V(JSStoreGlobal) \ |
| 125 V(JSDeleteProperty) \ | 125 V(JSDeleteProperty) \ |
| 126 V(JSHasProperty) \ | 126 V(JSHasProperty) \ |
| 127 V(JSInstanceOf) | 127 V(JSInstanceOf) |
| 128 | 128 |
| 129 #define JS_CONTEXT_OP_LIST(V) \ | 129 #define JS_CONTEXT_OP_LIST(V) \ |
| 130 V(JSLoadContext) \ | 130 V(JSLoadContext) \ |
| 131 V(JSStoreContext) \ | 131 V(JSStoreContext) \ |
| 132 V(JSLoadDynamic) \ | 132 V(JSLoadDynamic) \ |
| 133 V(JSLoadNativeContext) \ |
| 133 V(JSCreateFunctionContext) \ | 134 V(JSCreateFunctionContext) \ |
| 134 V(JSCreateCatchContext) \ | 135 V(JSCreateCatchContext) \ |
| 135 V(JSCreateWithContext) \ | 136 V(JSCreateWithContext) \ |
| 136 V(JSCreateBlockContext) \ | 137 V(JSCreateBlockContext) \ |
| 137 V(JSCreateModuleContext) \ | 138 V(JSCreateModuleContext) \ |
| 138 V(JSCreateScriptContext) | 139 V(JSCreateScriptContext) |
| 139 | 140 |
| 140 #define JS_OTHER_OP_LIST(V) \ | 141 #define JS_OTHER_OP_LIST(V) \ |
| 141 V(JSCallConstruct) \ | 142 V(JSCallConstruct) \ |
| 142 V(JSCallFunction) \ | 143 V(JSCallFunction) \ |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 } | 400 } |
| 400 }; | 401 }; |
| 401 | 402 |
| 402 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 403 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 403 | 404 |
| 404 } // namespace compiler | 405 } // namespace compiler |
| 405 } // namespace internal | 406 } // namespace internal |
| 406 } // namespace v8 | 407 } // namespace v8 |
| 407 | 408 |
| 408 #endif // V8_COMPILER_OPCODES_H_ | 409 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |