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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 V(JSCreateWithContext) \ | 159 V(JSCreateWithContext) \ |
160 V(JSCreateBlockContext) \ | 160 V(JSCreateBlockContext) \ |
161 V(JSCreateScriptContext) | 161 V(JSCreateScriptContext) |
162 | 162 |
163 #define JS_OTHER_OP_LIST(V) \ | 163 #define JS_OTHER_OP_LIST(V) \ |
164 V(JSConstructForwardVarargs) \ | 164 V(JSConstructForwardVarargs) \ |
165 V(JSConstruct) \ | 165 V(JSConstruct) \ |
166 V(JSConstructWithSpread) \ | 166 V(JSConstructWithSpread) \ |
167 V(JSCallForwardVarargs) \ | 167 V(JSCallForwardVarargs) \ |
168 V(JSCall) \ | 168 V(JSCall) \ |
| 169 V(JSCallWithArrayLike) \ |
169 V(JSCallWithSpread) \ | 170 V(JSCallWithSpread) \ |
170 V(JSCallRuntime) \ | 171 V(JSCallRuntime) \ |
171 V(JSConvertReceiver) \ | 172 V(JSConvertReceiver) \ |
172 V(JSForInNext) \ | 173 V(JSForInNext) \ |
173 V(JSForInPrepare) \ | 174 V(JSForInPrepare) \ |
174 V(JSLoadMessage) \ | 175 V(JSLoadMessage) \ |
175 V(JSStoreMessage) \ | 176 V(JSStoreMessage) \ |
176 V(JSLoadModule) \ | 177 V(JSLoadModule) \ |
177 V(JSStoreModule) \ | 178 V(JSStoreModule) \ |
178 V(JSGeneratorStore) \ | 179 V(JSGeneratorStore) \ |
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 } | 799 } |
799 }; | 800 }; |
800 | 801 |
801 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 802 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
802 | 803 |
803 } // namespace compiler | 804 } // namespace compiler |
804 } // namespace internal | 805 } // namespace internal |
805 } // namespace v8 | 806 } // namespace v8 |
806 | 807 |
807 #endif // V8_COMPILER_OPCODES_H_ | 808 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |