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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 V(Int32PairSub) \ | 547 V(Int32PairSub) \ |
548 V(Int32PairMul) \ | 548 V(Int32PairMul) \ |
549 V(Word32PairShl) \ | 549 V(Word32PairShl) \ |
550 V(Word32PairShr) \ | 550 V(Word32PairShr) \ |
551 V(Word32PairSar) \ | 551 V(Word32PairSar) \ |
552 V(ProtectedLoad) \ | 552 V(ProtectedLoad) \ |
553 V(ProtectedStore) \ | 553 V(ProtectedStore) \ |
554 V(AtomicLoad) \ | 554 V(AtomicLoad) \ |
555 V(AtomicStore) \ | 555 V(AtomicStore) \ |
556 V(AtomicExchange) \ | 556 V(AtomicExchange) \ |
| 557 V(AtomicCompareExchange) \ |
557 V(UnsafePointerAdd) | 558 V(UnsafePointerAdd) |
558 | 559 |
559 #define MACHINE_SIMD_OP_LIST(V) \ | 560 #define MACHINE_SIMD_OP_LIST(V) \ |
560 V(Float32x4Splat) \ | 561 V(Float32x4Splat) \ |
561 V(Float32x4ExtractLane) \ | 562 V(Float32x4ExtractLane) \ |
562 V(Float32x4ReplaceLane) \ | 563 V(Float32x4ReplaceLane) \ |
563 V(Float32x4Abs) \ | 564 V(Float32x4Abs) \ |
564 V(Float32x4Neg) \ | 565 V(Float32x4Neg) \ |
565 V(Float32x4Sqrt) \ | 566 V(Float32x4Sqrt) \ |
566 V(Float32x4RecipApprox) \ | 567 V(Float32x4RecipApprox) \ |
(...skipping 227 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 |