| 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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 V(CheckedStore) \ | 521 V(CheckedStore) \ |
| 522 V(UnalignedLoad) \ | 522 V(UnalignedLoad) \ |
| 523 V(UnalignedStore) \ | 523 V(UnalignedStore) \ |
| 524 V(Int32PairAdd) \ | 524 V(Int32PairAdd) \ |
| 525 V(Int32PairSub) \ | 525 V(Int32PairSub) \ |
| 526 V(Int32PairMul) \ | 526 V(Int32PairMul) \ |
| 527 V(Word32PairShl) \ | 527 V(Word32PairShl) \ |
| 528 V(Word32PairShr) \ | 528 V(Word32PairShr) \ |
| 529 V(Word32PairSar) \ | 529 V(Word32PairSar) \ |
| 530 V(ProtectedLoad) \ | 530 V(ProtectedLoad) \ |
| 531 V(ProtectedStore) \ |
| 531 V(AtomicLoad) \ | 532 V(AtomicLoad) \ |
| 532 V(AtomicStore) \ | 533 V(AtomicStore) \ |
| 533 V(UnsafePointerAdd) | 534 V(UnsafePointerAdd) |
| 534 | 535 |
| 535 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ | 536 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ |
| 536 V(CreateFloat32x4) \ | 537 V(CreateFloat32x4) \ |
| 537 V(Float32x4ReplaceLane) \ | 538 V(Float32x4ReplaceLane) \ |
| 538 V(Float32x4Abs) \ | 539 V(Float32x4Abs) \ |
| 539 V(Float32x4Neg) \ | 540 V(Float32x4Neg) \ |
| 540 V(Float32x4Sqrt) \ | 541 V(Float32x4Sqrt) \ |
| (...skipping 255 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 |