Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: src/compiler/opcodes.h

Issue 2804883008: [WASM SIMD] Implement horizontal add for float and integer types. (Closed)
Patch Set: Fix MIPS. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) \ 578 V(F32x4Sqrt) \
579 V(F32x4RecipApprox) \ 579 V(F32x4RecipApprox) \
580 V(F32x4RecipSqrtApprox) \ 580 V(F32x4RecipSqrtApprox) \
581 V(F32x4Add) \ 581 V(F32x4Add) \
582 V(F32x4AddHoriz) \
582 V(F32x4Sub) \ 583 V(F32x4Sub) \
583 V(F32x4Mul) \ 584 V(F32x4Mul) \
584 V(F32x4Div) \ 585 V(F32x4Div) \
585 V(F32x4Min) \ 586 V(F32x4Min) \
586 V(F32x4Max) \ 587 V(F32x4Max) \
587 V(F32x4MinNum) \ 588 V(F32x4MinNum) \
588 V(F32x4MaxNum) \ 589 V(F32x4MaxNum) \
589 V(F32x4RecipRefine) \ 590 V(F32x4RecipRefine) \
590 V(F32x4RecipSqrtRefine) \ 591 V(F32x4RecipSqrtRefine) \
591 V(F32x4Eq) \ 592 V(F32x4Eq) \
592 V(F32x4Ne) \ 593 V(F32x4Ne) \
593 V(F32x4Lt) \ 594 V(F32x4Lt) \
594 V(F32x4Le) \ 595 V(F32x4Le) \
595 V(F32x4Gt) \ 596 V(F32x4Gt) \
596 V(F32x4Ge) \ 597 V(F32x4Ge) \
597 V(I32x4Splat) \ 598 V(I32x4Splat) \
598 V(I32x4ExtractLane) \ 599 V(I32x4ExtractLane) \
599 V(I32x4ReplaceLane) \ 600 V(I32x4ReplaceLane) \
600 V(I32x4SConvertF32x4) \ 601 V(I32x4SConvertF32x4) \
601 V(I32x4SConvertI16x8Low) \ 602 V(I32x4SConvertI16x8Low) \
602 V(I32x4SConvertI16x8High) \ 603 V(I32x4SConvertI16x8High) \
603 V(I32x4Neg) \ 604 V(I32x4Neg) \
604 V(I32x4Shl) \ 605 V(I32x4Shl) \
605 V(I32x4ShrS) \ 606 V(I32x4ShrS) \
606 V(I32x4Add) \ 607 V(I32x4Add) \
608 V(I32x4AddHoriz) \
607 V(I32x4Sub) \ 609 V(I32x4Sub) \
608 V(I32x4Mul) \ 610 V(I32x4Mul) \
609 V(I32x4MinS) \ 611 V(I32x4MinS) \
610 V(I32x4MaxS) \ 612 V(I32x4MaxS) \
611 V(I32x4Eq) \ 613 V(I32x4Eq) \
612 V(I32x4Ne) \ 614 V(I32x4Ne) \
613 V(I32x4LtS) \ 615 V(I32x4LtS) \
614 V(I32x4LeS) \ 616 V(I32x4LeS) \
615 V(I32x4GtS) \ 617 V(I32x4GtS) \
616 V(I32x4GeS) \ 618 V(I32x4GeS) \
(...skipping 11 matching lines...) Expand all
628 V(I16x8ExtractLane) \ 630 V(I16x8ExtractLane) \
629 V(I16x8ReplaceLane) \ 631 V(I16x8ReplaceLane) \
630 V(I16x8SConvertI8x16Low) \ 632 V(I16x8SConvertI8x16Low) \
631 V(I16x8SConvertI8x16High) \ 633 V(I16x8SConvertI8x16High) \
632 V(I16x8Neg) \ 634 V(I16x8Neg) \
633 V(I16x8Shl) \ 635 V(I16x8Shl) \
634 V(I16x8ShrS) \ 636 V(I16x8ShrS) \
635 V(I16x8SConvertI32x4) \ 637 V(I16x8SConvertI32x4) \
636 V(I16x8Add) \ 638 V(I16x8Add) \
637 V(I16x8AddSaturateS) \ 639 V(I16x8AddSaturateS) \
640 V(I16x8AddHoriz) \
638 V(I16x8Sub) \ 641 V(I16x8Sub) \
639 V(I16x8SubSaturateS) \ 642 V(I16x8SubSaturateS) \
640 V(I16x8Mul) \ 643 V(I16x8Mul) \
641 V(I16x8MinS) \ 644 V(I16x8MinS) \
642 V(I16x8MaxS) \ 645 V(I16x8MaxS) \
643 V(I16x8Eq) \ 646 V(I16x8Eq) \
644 V(I16x8Ne) \ 647 V(I16x8Ne) \
645 V(I16x8LtS) \ 648 V(I16x8LtS) \
646 V(I16x8LeS) \ 649 V(I16x8LeS) \
647 V(I16x8GtS) \ 650 V(I16x8GtS) \
(...skipping 12 matching lines...) Expand all
660 V(I16x8GeU) \ 663 V(I16x8GeU) \
661 V(I8x16Splat) \ 664 V(I8x16Splat) \
662 V(I8x16ExtractLane) \ 665 V(I8x16ExtractLane) \
663 V(I8x16ReplaceLane) \ 666 V(I8x16ReplaceLane) \
664 V(I8x16SConvertI16x8) \ 667 V(I8x16SConvertI16x8) \
665 V(I8x16Neg) \ 668 V(I8x16Neg) \
666 V(I8x16Shl) \ 669 V(I8x16Shl) \
667 V(I8x16ShrS) \ 670 V(I8x16ShrS) \
668 V(I8x16Add) \ 671 V(I8x16Add) \
669 V(I8x16AddSaturateS) \ 672 V(I8x16AddSaturateS) \
673 V(I8x16AddHoriz) \
670 V(I8x16Sub) \ 674 V(I8x16Sub) \
671 V(I8x16SubSaturateS) \ 675 V(I8x16SubSaturateS) \
672 V(I8x16Mul) \ 676 V(I8x16Mul) \
673 V(I8x16MinS) \ 677 V(I8x16MinS) \
674 V(I8x16MaxS) \ 678 V(I8x16MaxS) \
675 V(I8x16Eq) \ 679 V(I8x16Eq) \
676 V(I8x16Ne) \ 680 V(I8x16Ne) \
677 V(I8x16LtS) \ 681 V(I8x16LtS) \
678 V(I8x16LeS) \ 682 V(I8x16LeS) \
679 V(I8x16GtS) \ 683 V(I8x16GtS) \
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 } 838 }
835 }; 839 };
836 840
837 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 841 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
838 842
839 } // namespace compiler 843 } // namespace compiler
840 } // namespace internal 844 } // namespace internal
841 } // namespace v8 845 } // namespace v8
842 846
843 #endif // V8_COMPILER_OPCODES_H_ 847 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698