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 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 V(CheckedLoad) \ | 478 V(CheckedLoad) \ |
479 V(CheckedStore) \ | 479 V(CheckedStore) \ |
480 V(UnalignedLoad) \ | 480 V(UnalignedLoad) \ |
481 V(UnalignedStore) \ | 481 V(UnalignedStore) \ |
482 V(Int32PairAdd) \ | 482 V(Int32PairAdd) \ |
483 V(Int32PairSub) \ | 483 V(Int32PairSub) \ |
484 V(Int32PairMul) \ | 484 V(Int32PairMul) \ |
485 V(Word32PairShl) \ | 485 V(Word32PairShl) \ |
486 V(Word32PairShr) \ | 486 V(Word32PairShr) \ |
487 V(Word32PairSar) \ | 487 V(Word32PairSar) \ |
| 488 V(TrapableLoad) \ |
488 V(AtomicLoad) \ | 489 V(AtomicLoad) \ |
489 V(AtomicStore) \ | 490 V(AtomicStore) \ |
490 V(UnsafePointerAdd) | 491 V(UnsafePointerAdd) |
491 | 492 |
492 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ | 493 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ |
493 V(CreateFloat32x4) \ | 494 V(CreateFloat32x4) \ |
494 V(Float32x4ReplaceLane) \ | 495 V(Float32x4ReplaceLane) \ |
495 V(Float32x4Abs) \ | 496 V(Float32x4Abs) \ |
496 V(Float32x4Neg) \ | 497 V(Float32x4Neg) \ |
497 V(Float32x4Sqrt) \ | 498 V(Float32x4Sqrt) \ |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 } | 754 } |
754 }; | 755 }; |
755 | 756 |
756 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 757 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
757 | 758 |
758 } // namespace compiler | 759 } // namespace compiler |
759 } // namespace internal | 760 } // namespace internal |
760 } // namespace v8 | 761 } // namespace v8 |
761 | 762 |
762 #endif // V8_COMPILER_OPCODES_H_ | 763 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |