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 534 matching lines...) Loading... |
545 V(Int32PairSub) \ | 545 V(Int32PairSub) \ |
546 V(Int32PairMul) \ | 546 V(Int32PairMul) \ |
547 V(Word32PairShl) \ | 547 V(Word32PairShl) \ |
548 V(Word32PairShr) \ | 548 V(Word32PairShr) \ |
549 V(Word32PairSar) \ | 549 V(Word32PairSar) \ |
550 V(ProtectedLoad) \ | 550 V(ProtectedLoad) \ |
551 V(ProtectedStore) \ | 551 V(ProtectedStore) \ |
552 V(AtomicLoad) \ | 552 V(AtomicLoad) \ |
553 V(AtomicStore) \ | 553 V(AtomicStore) \ |
554 V(AtomicExchange) \ | 554 V(AtomicExchange) \ |
| 555 V(AtomicCompareExchange) \ |
555 V(UnsafePointerAdd) | 556 V(UnsafePointerAdd) |
556 | 557 |
557 #define MACHINE_SIMD_OP_LIST(V) \ | 558 #define MACHINE_SIMD_OP_LIST(V) \ |
558 V(Float32x4Splat) \ | 559 V(Float32x4Splat) \ |
559 V(Float32x4ExtractLane) \ | 560 V(Float32x4ExtractLane) \ |
560 V(Float32x4ReplaceLane) \ | 561 V(Float32x4ReplaceLane) \ |
561 V(Float32x4Abs) \ | 562 V(Float32x4Abs) \ |
562 V(Float32x4Neg) \ | 563 V(Float32x4Neg) \ |
563 V(Float32x4Sqrt) \ | 564 V(Float32x4Sqrt) \ |
564 V(Float32x4RecipApprox) \ | 565 V(Float32x4RecipApprox) \ |
(...skipping 227 matching lines...) Loading... |
792 } | 793 } |
793 }; | 794 }; |
794 | 795 |
795 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 796 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
796 | 797 |
797 } // namespace compiler | 798 } // namespace compiler |
798 } // namespace internal | 799 } // namespace internal |
799 } // namespace v8 | 800 } // namespace v8 |
800 | 801 |
801 #endif // V8_COMPILER_OPCODES_H_ | 802 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |