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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 } | 399 } |
401 }; | 400 }; |
402 | 401 |
403 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 402 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
404 | 403 |
405 } // namespace compiler | 404 } // namespace compiler |
406 } // namespace internal | 405 } // namespace internal |
407 } // namespace v8 | 406 } // namespace v8 |
408 | 407 |
409 #endif // V8_COMPILER_OPCODES_H_ | 408 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |