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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 V(ConvertTaggedHoleToUndefined) \ | 310 V(ConvertTaggedHoleToUndefined) \ |
311 V(Allocate) \ | 311 V(Allocate) \ |
312 V(LoadField) \ | 312 V(LoadField) \ |
313 V(LoadBuffer) \ | 313 V(LoadBuffer) \ |
314 V(LoadElement) \ | 314 V(LoadElement) \ |
315 V(LoadTypedElement) \ | 315 V(LoadTypedElement) \ |
316 V(StoreField) \ | 316 V(StoreField) \ |
317 V(StoreBuffer) \ | 317 V(StoreBuffer) \ |
318 V(StoreElement) \ | 318 V(StoreElement) \ |
319 V(StoreTypedElement) \ | 319 V(StoreTypedElement) \ |
| 320 V(LoadFunctionPrototype) \ |
320 V(ObjectIsCallable) \ | 321 V(ObjectIsCallable) \ |
321 V(ObjectIsNumber) \ | 322 V(ObjectIsNumber) \ |
322 V(ObjectIsReceiver) \ | 323 V(ObjectIsReceiver) \ |
323 V(ObjectIsSmi) \ | 324 V(ObjectIsSmi) \ |
324 V(ObjectIsString) \ | 325 V(ObjectIsString) \ |
325 V(ObjectIsUndetectable) \ | 326 V(ObjectIsUndetectable) \ |
326 V(ArrayBufferWasNeutered) \ | 327 V(ArrayBufferWasNeutered) \ |
327 V(EnsureWritableFastElements) \ | 328 V(EnsureWritableFastElements) \ |
328 V(MaybeGrowFastElements) \ | 329 V(MaybeGrowFastElements) \ |
329 V(TransitionElementsKind) | 330 V(TransitionElementsKind) |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 } | 797 } |
797 }; | 798 }; |
798 | 799 |
799 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 800 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
800 | 801 |
801 } // namespace compiler | 802 } // namespace compiler |
802 } // namespace internal | 803 } // namespace internal |
803 } // namespace v8 | 804 } // namespace v8 |
804 | 805 |
805 #endif // V8_COMPILER_OPCODES_H_ | 806 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |