| 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 V(Int32PairMul) \ | 553 V(Int32PairMul) \ |
| 554 V(Word32PairShl) \ | 554 V(Word32PairShl) \ |
| 555 V(Word32PairShr) \ | 555 V(Word32PairShr) \ |
| 556 V(Word32PairSar) \ | 556 V(Word32PairSar) \ |
| 557 V(ProtectedLoad) \ | 557 V(ProtectedLoad) \ |
| 558 V(ProtectedStore) \ | 558 V(ProtectedStore) \ |
| 559 V(AtomicLoad) \ | 559 V(AtomicLoad) \ |
| 560 V(AtomicStore) \ | 560 V(AtomicStore) \ |
| 561 V(AtomicExchange) \ | 561 V(AtomicExchange) \ |
| 562 V(AtomicCompareExchange) \ | 562 V(AtomicCompareExchange) \ |
| 563 V(AtomicAdd) \ |
| 564 V(AtomicSub) \ |
| 565 V(AtomicAnd) \ |
| 566 V(AtomicOr) \ |
| 567 V(AtomicXor) \ |
| 563 V(UnsafePointerAdd) | 568 V(UnsafePointerAdd) |
| 564 | 569 |
| 565 #define MACHINE_SIMD_OP_LIST(V) \ | 570 #define MACHINE_SIMD_OP_LIST(V) \ |
| 566 V(F32x4Splat) \ | 571 V(F32x4Splat) \ |
| 567 V(F32x4ExtractLane) \ | 572 V(F32x4ExtractLane) \ |
| 568 V(F32x4ReplaceLane) \ | 573 V(F32x4ReplaceLane) \ |
| 569 V(F32x4SConvertI32x4) \ | 574 V(F32x4SConvertI32x4) \ |
| 570 V(F32x4UConvertI32x4) \ | 575 V(F32x4UConvertI32x4) \ |
| 571 V(F32x4Abs) \ | 576 V(F32x4Abs) \ |
| 572 V(F32x4Neg) \ | 577 V(F32x4Neg) \ |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 } | 803 } |
| 799 }; | 804 }; |
| 800 | 805 |
| 801 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 806 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 802 | 807 |
| 803 } // namespace compiler | 808 } // namespace compiler |
| 804 } // namespace internal | 809 } // namespace internal |
| 805 } // namespace v8 | 810 } // namespace v8 |
| 806 | 811 |
| 807 #endif // V8_COMPILER_OPCODES_H_ | 812 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |