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(JSCreateScriptContext) | 159 V(JSCreateScriptContext) |
160 | 160 |
161 #define JS_OTHER_OP_LIST(V) \ | 161 #define JS_OTHER_OP_LIST(V) \ |
162 V(JSConstruct) \ | 162 V(JSConstruct) \ |
163 V(JSConstructWithSpread) \ | 163 V(JSConstructWithSpread) \ |
164 V(JSCallForwardVarargs) \ | 164 V(JSCallForwardVarargs) \ |
165 V(JSCall) \ | 165 V(JSCall) \ |
166 V(JSCallWithSpread) \ | 166 V(JSCallWithSpread) \ |
167 V(JSCallRuntime) \ | 167 V(JSCallRuntime) \ |
168 V(JSConvertReceiver) \ | 168 V(JSConvertReceiver) \ |
| 169 V(JSForInHasOwnProperty) \ |
| 170 V(JSForInLoadProperty) \ |
169 V(JSForInNext) \ | 171 V(JSForInNext) \ |
170 V(JSForInPrepare) \ | 172 V(JSForInPrepare) \ |
171 V(JSLoadMessage) \ | 173 V(JSLoadMessage) \ |
172 V(JSStoreMessage) \ | 174 V(JSStoreMessage) \ |
173 V(JSLoadModule) \ | 175 V(JSLoadModule) \ |
174 V(JSStoreModule) \ | 176 V(JSStoreModule) \ |
175 V(JSGeneratorStore) \ | 177 V(JSGeneratorStore) \ |
176 V(JSGeneratorRestoreContinuation) \ | 178 V(JSGeneratorRestoreContinuation) \ |
177 V(JSGeneratorRestoreRegister) \ | 179 V(JSGeneratorRestoreRegister) \ |
178 V(JSStackCheck) \ | 180 V(JSStackCheck) \ |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 V(CheckNumber) \ | 319 V(CheckNumber) \ |
318 V(CheckInternalizedString) \ | 320 V(CheckInternalizedString) \ |
319 V(CheckReceiver) \ | 321 V(CheckReceiver) \ |
320 V(CheckString) \ | 322 V(CheckString) \ |
321 V(CheckSmi) \ | 323 V(CheckSmi) \ |
322 V(CheckHeapObject) \ | 324 V(CheckHeapObject) \ |
323 V(CheckFloat64Hole) \ | 325 V(CheckFloat64Hole) \ |
324 V(CheckTaggedHole) \ | 326 V(CheckTaggedHole) \ |
325 V(ConvertTaggedHoleToUndefined) \ | 327 V(ConvertTaggedHoleToUndefined) \ |
326 V(Allocate) \ | 328 V(Allocate) \ |
| 329 V(LoadFieldByIndex) \ |
327 V(LoadField) \ | 330 V(LoadField) \ |
328 V(LoadBuffer) \ | 331 V(LoadBuffer) \ |
329 V(LoadElement) \ | 332 V(LoadElement) \ |
330 V(LoadTypedElement) \ | 333 V(LoadTypedElement) \ |
331 V(StoreField) \ | 334 V(StoreField) \ |
332 V(StoreBuffer) \ | 335 V(StoreBuffer) \ |
333 V(StoreElement) \ | 336 V(StoreElement) \ |
334 V(StoreTypedElement) \ | 337 V(StoreTypedElement) \ |
335 V(ObjectIsDetectableCallable) \ | 338 V(ObjectIsDetectableCallable) \ |
336 V(ObjectIsNaN) \ | 339 V(ObjectIsNaN) \ |
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 } | 805 } |
803 }; | 806 }; |
804 | 807 |
805 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 808 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
806 | 809 |
807 } // namespace compiler | 810 } // namespace compiler |
808 } // namespace internal | 811 } // namespace internal |
809 } // namespace v8 | 812 } // namespace v8 |
810 | 813 |
811 #endif // V8_COMPILER_OPCODES_H_ | 814 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |