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 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 V(JSCreateFunctionContext) \ | 154 V(JSCreateFunctionContext) \ |
155 V(JSCreateCatchContext) \ | 155 V(JSCreateCatchContext) \ |
156 V(JSCreateWithContext) \ | 156 V(JSCreateWithContext) \ |
157 V(JSCreateBlockContext) \ | 157 V(JSCreateBlockContext) \ |
158 V(JSCreateScriptContext) | 158 V(JSCreateScriptContext) |
159 | 159 |
160 #define JS_OTHER_OP_LIST(V) \ | 160 #define JS_OTHER_OP_LIST(V) \ |
161 V(JSCallConstruct) \ | 161 V(JSCallConstruct) \ |
162 V(JSCallConstructWithSpread) \ | 162 V(JSCallConstructWithSpread) \ |
163 V(JSCallFunction) \ | 163 V(JSCallFunction) \ |
| 164 V(JSCallFunctionWithSpread) \ |
164 V(JSCallRuntime) \ | 165 V(JSCallRuntime) \ |
165 V(JSConvertReceiver) \ | 166 V(JSConvertReceiver) \ |
166 V(JSForInNext) \ | 167 V(JSForInNext) \ |
167 V(JSForInPrepare) \ | 168 V(JSForInPrepare) \ |
168 V(JSLoadMessage) \ | 169 V(JSLoadMessage) \ |
169 V(JSStoreMessage) \ | 170 V(JSStoreMessage) \ |
170 V(JSLoadModule) \ | 171 V(JSLoadModule) \ |
171 V(JSStoreModule) \ | 172 V(JSStoreModule) \ |
172 V(JSGeneratorStore) \ | 173 V(JSGeneratorStore) \ |
173 V(JSGeneratorRestoreContinuation) \ | 174 V(JSGeneratorRestoreContinuation) \ |
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 } | 810 } |
810 }; | 811 }; |
811 | 812 |
812 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 813 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
813 | 814 |
814 } // namespace compiler | 815 } // namespace compiler |
815 } // namespace internal | 816 } // namespace internal |
816 } // namespace v8 | 817 } // namespace v8 |
817 | 818 |
818 #endif // V8_COMPILER_OPCODES_H_ | 819 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |