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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 V(JSLoadContext) \ | 148 V(JSLoadContext) \ |
149 V(JSStoreContext) \ | 149 V(JSStoreContext) \ |
150 V(JSCreateFunctionContext) \ | 150 V(JSCreateFunctionContext) \ |
151 V(JSCreateCatchContext) \ | 151 V(JSCreateCatchContext) \ |
152 V(JSCreateWithContext) \ | 152 V(JSCreateWithContext) \ |
153 V(JSCreateBlockContext) \ | 153 V(JSCreateBlockContext) \ |
154 V(JSCreateScriptContext) | 154 V(JSCreateScriptContext) |
155 | 155 |
156 #define JS_OTHER_OP_LIST(V) \ | 156 #define JS_OTHER_OP_LIST(V) \ |
157 V(JSCallConstruct) \ | 157 V(JSCallConstruct) \ |
| 158 V(JSCallConstructWithSpread) \ |
158 V(JSCallFunction) \ | 159 V(JSCallFunction) \ |
159 V(JSCallRuntime) \ | 160 V(JSCallRuntime) \ |
160 V(JSConvertReceiver) \ | 161 V(JSConvertReceiver) \ |
161 V(JSForInNext) \ | 162 V(JSForInNext) \ |
162 V(JSForInPrepare) \ | 163 V(JSForInPrepare) \ |
163 V(JSLoadMessage) \ | 164 V(JSLoadMessage) \ |
164 V(JSStoreMessage) \ | 165 V(JSStoreMessage) \ |
165 V(JSLoadModule) \ | 166 V(JSLoadModule) \ |
166 V(JSStoreModule) \ | 167 V(JSStoreModule) \ |
167 V(JSGeneratorStore) \ | 168 V(JSGeneratorStore) \ |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 } | 795 } |
795 }; | 796 }; |
796 | 797 |
797 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 798 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
798 | 799 |
799 } // namespace compiler | 800 } // namespace compiler |
800 } // namespace internal | 801 } // namespace internal |
801 } // namespace v8 | 802 } // namespace v8 |
802 | 803 |
803 #endif // V8_COMPILER_OPCODES_H_ | 804 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |