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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 V(UnsafePointerAdd) | 568 V(UnsafePointerAdd) |
569 | 569 |
570 #define MACHINE_SIMD_OP_LIST(V) \ | 570 #define MACHINE_SIMD_OP_LIST(V) \ |
571 V(F32x4Splat) \ | 571 V(F32x4Splat) \ |
572 V(F32x4ExtractLane) \ | 572 V(F32x4ExtractLane) \ |
573 V(F32x4ReplaceLane) \ | 573 V(F32x4ReplaceLane) \ |
574 V(F32x4SConvertI32x4) \ | 574 V(F32x4SConvertI32x4) \ |
575 V(F32x4UConvertI32x4) \ | 575 V(F32x4UConvertI32x4) \ |
576 V(F32x4Abs) \ | 576 V(F32x4Abs) \ |
577 V(F32x4Neg) \ | 577 V(F32x4Neg) \ |
578 V(F32x4Sqrt) \ | |
579 V(F32x4RecipApprox) \ | 578 V(F32x4RecipApprox) \ |
580 V(F32x4RecipSqrtApprox) \ | 579 V(F32x4RecipSqrtApprox) \ |
581 V(F32x4Add) \ | 580 V(F32x4Add) \ |
582 V(F32x4Sub) \ | 581 V(F32x4Sub) \ |
583 V(F32x4Mul) \ | 582 V(F32x4Mul) \ |
584 V(F32x4Div) \ | |
585 V(F32x4Min) \ | 583 V(F32x4Min) \ |
586 V(F32x4Max) \ | 584 V(F32x4Max) \ |
587 V(F32x4MinNum) \ | |
588 V(F32x4MaxNum) \ | |
589 V(F32x4RecipRefine) \ | |
590 V(F32x4RecipSqrtRefine) \ | |
591 V(F32x4Eq) \ | 585 V(F32x4Eq) \ |
592 V(F32x4Ne) \ | 586 V(F32x4Ne) \ |
593 V(F32x4Lt) \ | 587 V(F32x4Lt) \ |
594 V(F32x4Le) \ | 588 V(F32x4Le) \ |
595 V(F32x4Gt) \ | 589 V(F32x4Gt) \ |
596 V(F32x4Ge) \ | 590 V(F32x4Ge) \ |
597 V(I32x4Splat) \ | 591 V(I32x4Splat) \ |
598 V(I32x4ExtractLane) \ | 592 V(I32x4ExtractLane) \ |
599 V(I32x4ReplaceLane) \ | 593 V(I32x4ReplaceLane) \ |
600 V(I32x4SConvertF32x4) \ | 594 V(I32x4SConvertF32x4) \ |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 } | 809 } |
816 }; | 810 }; |
817 | 811 |
818 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 812 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
819 | 813 |
820 } // namespace compiler | 814 } // namespace compiler |
821 } // namespace internal | 815 } // namespace internal |
822 } // namespace v8 | 816 } // namespace v8 |
823 | 817 |
824 #endif // V8_COMPILER_OPCODES_H_ | 818 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |