| 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(F32x4RecipApprox) \ | 578 V(F32x4RecipApprox) \ |
| 579 V(F32x4RecipSqrtApprox) \ | 579 V(F32x4RecipSqrtApprox) \ |
| 580 V(F32x4Add) \ | 580 V(F32x4Add) \ |
| 581 V(F32x4AddHoriz) \ |
| 581 V(F32x4Sub) \ | 582 V(F32x4Sub) \ |
| 582 V(F32x4Mul) \ | 583 V(F32x4Mul) \ |
| 583 V(F32x4Min) \ | 584 V(F32x4Min) \ |
| 584 V(F32x4Max) \ | 585 V(F32x4Max) \ |
| 585 V(F32x4Eq) \ | 586 V(F32x4Eq) \ |
| 586 V(F32x4Ne) \ | 587 V(F32x4Ne) \ |
| 587 V(F32x4Lt) \ | 588 V(F32x4Lt) \ |
| 588 V(F32x4Le) \ | 589 V(F32x4Le) \ |
| 589 V(F32x4Gt) \ | 590 V(F32x4Gt) \ |
| 590 V(F32x4Ge) \ | 591 V(F32x4Ge) \ |
| 591 V(I32x4Splat) \ | 592 V(I32x4Splat) \ |
| 592 V(I32x4ExtractLane) \ | 593 V(I32x4ExtractLane) \ |
| 593 V(I32x4ReplaceLane) \ | 594 V(I32x4ReplaceLane) \ |
| 594 V(I32x4SConvertF32x4) \ | 595 V(I32x4SConvertF32x4) \ |
| 595 V(I32x4SConvertI16x8Low) \ | 596 V(I32x4SConvertI16x8Low) \ |
| 596 V(I32x4SConvertI16x8High) \ | 597 V(I32x4SConvertI16x8High) \ |
| 597 V(I32x4Neg) \ | 598 V(I32x4Neg) \ |
| 598 V(I32x4Shl) \ | 599 V(I32x4Shl) \ |
| 599 V(I32x4ShrS) \ | 600 V(I32x4ShrS) \ |
| 600 V(I32x4Add) \ | 601 V(I32x4Add) \ |
| 602 V(I32x4AddHoriz) \ |
| 601 V(I32x4Sub) \ | 603 V(I32x4Sub) \ |
| 602 V(I32x4Mul) \ | 604 V(I32x4Mul) \ |
| 603 V(I32x4MinS) \ | 605 V(I32x4MinS) \ |
| 604 V(I32x4MaxS) \ | 606 V(I32x4MaxS) \ |
| 605 V(I32x4Eq) \ | 607 V(I32x4Eq) \ |
| 606 V(I32x4Ne) \ | 608 V(I32x4Ne) \ |
| 607 V(I32x4LtS) \ | 609 V(I32x4LtS) \ |
| 608 V(I32x4LeS) \ | 610 V(I32x4LeS) \ |
| 609 V(I32x4GtS) \ | 611 V(I32x4GtS) \ |
| 610 V(I32x4GeS) \ | 612 V(I32x4GeS) \ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 622 V(I16x8ExtractLane) \ | 624 V(I16x8ExtractLane) \ |
| 623 V(I16x8ReplaceLane) \ | 625 V(I16x8ReplaceLane) \ |
| 624 V(I16x8SConvertI8x16Low) \ | 626 V(I16x8SConvertI8x16Low) \ |
| 625 V(I16x8SConvertI8x16High) \ | 627 V(I16x8SConvertI8x16High) \ |
| 626 V(I16x8Neg) \ | 628 V(I16x8Neg) \ |
| 627 V(I16x8Shl) \ | 629 V(I16x8Shl) \ |
| 628 V(I16x8ShrS) \ | 630 V(I16x8ShrS) \ |
| 629 V(I16x8SConvertI32x4) \ | 631 V(I16x8SConvertI32x4) \ |
| 630 V(I16x8Add) \ | 632 V(I16x8Add) \ |
| 631 V(I16x8AddSaturateS) \ | 633 V(I16x8AddSaturateS) \ |
| 634 V(I16x8AddHoriz) \ |
| 632 V(I16x8Sub) \ | 635 V(I16x8Sub) \ |
| 633 V(I16x8SubSaturateS) \ | 636 V(I16x8SubSaturateS) \ |
| 634 V(I16x8Mul) \ | 637 V(I16x8Mul) \ |
| 635 V(I16x8MinS) \ | 638 V(I16x8MinS) \ |
| 636 V(I16x8MaxS) \ | 639 V(I16x8MaxS) \ |
| 637 V(I16x8Eq) \ | 640 V(I16x8Eq) \ |
| 638 V(I16x8Ne) \ | 641 V(I16x8Ne) \ |
| 639 V(I16x8LtS) \ | 642 V(I16x8LtS) \ |
| 640 V(I16x8LeS) \ | 643 V(I16x8LeS) \ |
| 641 V(I16x8GtS) \ | 644 V(I16x8GtS) \ |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 } | 831 } |
| 829 }; | 832 }; |
| 830 | 833 |
| 831 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 834 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 832 | 835 |
| 833 } // namespace compiler | 836 } // namespace compiler |
| 834 } // namespace internal | 837 } // namespace internal |
| 835 } // namespace v8 | 838 } // namespace v8 |
| 836 | 839 |
| 837 #endif // V8_COMPILER_OPCODES_H_ | 840 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |