| 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 V(Int32PairAdd) \ | 542 V(Int32PairAdd) \ |
| 543 V(Int32PairSub) \ | 543 V(Int32PairSub) \ |
| 544 V(Int32PairMul) \ | 544 V(Int32PairMul) \ |
| 545 V(Word32PairShl) \ | 545 V(Word32PairShl) \ |
| 546 V(Word32PairShr) \ | 546 V(Word32PairShr) \ |
| 547 V(Word32PairSar) \ | 547 V(Word32PairSar) \ |
| 548 V(ProtectedLoad) \ | 548 V(ProtectedLoad) \ |
| 549 V(ProtectedStore) \ | 549 V(ProtectedStore) \ |
| 550 V(AtomicLoad) \ | 550 V(AtomicLoad) \ |
| 551 V(AtomicStore) \ | 551 V(AtomicStore) \ |
| 552 V(AtomicExchange) \ |
| 552 V(UnsafePointerAdd) | 553 V(UnsafePointerAdd) |
| 553 | 554 |
| 554 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ | 555 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ |
| 555 V(CreateFloat32x4) \ | 556 V(CreateFloat32x4) \ |
| 556 V(Float32x4ReplaceLane) \ | 557 V(Float32x4ReplaceLane) \ |
| 557 V(Float32x4Abs) \ | 558 V(Float32x4Abs) \ |
| 558 V(Float32x4Neg) \ | 559 V(Float32x4Neg) \ |
| 559 V(Float32x4Sqrt) \ | 560 V(Float32x4Sqrt) \ |
| 560 V(Float32x4RecipApprox) \ | 561 V(Float32x4RecipApprox) \ |
| 561 V(Float32x4RecipSqrtApprox) \ | 562 V(Float32x4RecipSqrtApprox) \ |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 } | 796 } |
| 796 }; | 797 }; |
| 797 | 798 |
| 798 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 799 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 799 | 800 |
| 800 } // namespace compiler | 801 } // namespace compiler |
| 801 } // namespace internal | 802 } // namespace internal |
| 802 } // namespace v8 | 803 } // namespace v8 |
| 803 | 804 |
| 804 #endif // V8_COMPILER_OPCODES_H_ | 805 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |