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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 V(JSHasProperty) \ | 130 V(JSHasProperty) \ |
131 V(JSInstanceOf) | 131 V(JSInstanceOf) |
132 | 132 |
133 #define JS_CONTEXT_OP_LIST(V) \ | 133 #define JS_CONTEXT_OP_LIST(V) \ |
134 V(JSLoadContext) \ | 134 V(JSLoadContext) \ |
135 V(JSStoreContext) \ | 135 V(JSStoreContext) \ |
136 V(JSCreateFunctionContext) \ | 136 V(JSCreateFunctionContext) \ |
137 V(JSCreateCatchContext) \ | 137 V(JSCreateCatchContext) \ |
138 V(JSCreateWithContext) \ | 138 V(JSCreateWithContext) \ |
139 V(JSCreateBlockContext) \ | 139 V(JSCreateBlockContext) \ |
140 V(JSCreateModuleContext) \ | |
141 V(JSCreateScriptContext) | 140 V(JSCreateScriptContext) |
142 | 141 |
143 #define JS_OTHER_OP_LIST(V) \ | 142 #define JS_OTHER_OP_LIST(V) \ |
144 V(JSCallConstruct) \ | 143 V(JSCallConstruct) \ |
145 V(JSCallFunction) \ | 144 V(JSCallFunction) \ |
146 V(JSCallRuntime) \ | 145 V(JSCallRuntime) \ |
147 V(JSConvertReceiver) \ | 146 V(JSConvertReceiver) \ |
148 V(JSForInDone) \ | 147 V(JSForInDone) \ |
149 V(JSForInNext) \ | 148 V(JSForInNext) \ |
150 V(JSForInPrepare) \ | 149 V(JSForInPrepare) \ |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 } | 684 } |
686 }; | 685 }; |
687 | 686 |
688 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 687 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
689 | 688 |
690 } // namespace compiler | 689 } // namespace compiler |
691 } // namespace internal | 690 } // namespace internal |
692 } // namespace v8 | 691 } // namespace v8 |
693 | 692 |
694 #endif // V8_COMPILER_OPCODES_H_ | 693 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |