| 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) \ | |
| 134 V(JSCreateFunctionContext) \ | 133 V(JSCreateFunctionContext) \ |
| 135 V(JSCreateCatchContext) \ | 134 V(JSCreateCatchContext) \ |
| 136 V(JSCreateWithContext) \ | 135 V(JSCreateWithContext) \ |
| 137 V(JSCreateBlockContext) \ | 136 V(JSCreateBlockContext) \ |
| 138 V(JSCreateModuleContext) \ | 137 V(JSCreateModuleContext) \ |
| 139 V(JSCreateScriptContext) | 138 V(JSCreateScriptContext) |
| 140 | 139 |
| 141 #define JS_OTHER_OP_LIST(V) \ | 140 #define JS_OTHER_OP_LIST(V) \ |
| 142 V(JSCallConstruct) \ | 141 V(JSCallConstruct) \ |
| 143 V(JSCallFunction) \ | 142 V(JSCallFunction) \ |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 } | 400 } |
| 402 }; | 401 }; |
| 403 | 402 |
| 404 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 403 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 405 | 404 |
| 406 } // namespace compiler | 405 } // namespace compiler |
| 407 } // namespace internal | 406 } // namespace internal |
| 408 } // namespace v8 | 407 } // namespace v8 |
| 409 | 408 |
| 410 #endif // V8_COMPILER_OPCODES_H_ | 409 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |