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