| 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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 V(Int32PairAdd) \ | 532 V(Int32PairAdd) \ |
| 533 V(Int32PairSub) \ | 533 V(Int32PairSub) \ |
| 534 V(Int32PairMul) \ | 534 V(Int32PairMul) \ |
| 535 V(Word32PairShl) \ | 535 V(Word32PairShl) \ |
| 536 V(Word32PairShr) \ | 536 V(Word32PairShr) \ |
| 537 V(Word32PairSar) \ | 537 V(Word32PairSar) \ |
| 538 V(ProtectedLoad) \ | 538 V(ProtectedLoad) \ |
| 539 V(ProtectedStore) \ | 539 V(ProtectedStore) \ |
| 540 V(AtomicLoad) \ | 540 V(AtomicLoad) \ |
| 541 V(AtomicStore) \ | 541 V(AtomicStore) \ |
| 542 V(AtomicExchange) \ |
| 542 V(UnsafePointerAdd) | 543 V(UnsafePointerAdd) |
| 543 | 544 |
| 544 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ | 545 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ |
| 545 V(CreateFloat32x4) \ | 546 V(CreateFloat32x4) \ |
| 546 V(Float32x4ReplaceLane) \ | 547 V(Float32x4ReplaceLane) \ |
| 547 V(Float32x4Abs) \ | 548 V(Float32x4Abs) \ |
| 548 V(Float32x4Neg) \ | 549 V(Float32x4Neg) \ |
| 549 V(Float32x4Sqrt) \ | 550 V(Float32x4Sqrt) \ |
| 550 V(Float32x4RecipApprox) \ | 551 V(Float32x4RecipApprox) \ |
| 551 V(Float32x4RecipSqrtApprox) \ | 552 V(Float32x4RecipSqrtApprox) \ |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 } | 803 } |
| 803 }; | 804 }; |
| 804 | 805 |
| 805 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 806 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 806 | 807 |
| 807 } // namespace compiler | 808 } // namespace compiler |
| 808 } // namespace internal | 809 } // namespace internal |
| 809 } // namespace v8 | 810 } // namespace v8 |
| 810 | 811 |
| 811 #endif // V8_COMPILER_OPCODES_H_ | 812 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |