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

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

Issue 2800523002: [WASM SIMD] Implement packing and unpacking integer conversions. (Closed)
Patch Set: Remove extraneous fn signature. 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
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 V(F32x4Eq) \ 586 V(F32x4Eq) \
587 V(F32x4Ne) \ 587 V(F32x4Ne) \
588 V(F32x4Lt) \ 588 V(F32x4Lt) \
589 V(F32x4Le) \ 589 V(F32x4Le) \
590 V(F32x4Gt) \ 590 V(F32x4Gt) \
591 V(F32x4Ge) \ 591 V(F32x4Ge) \
592 V(I32x4Splat) \ 592 V(I32x4Splat) \
593 V(I32x4ExtractLane) \ 593 V(I32x4ExtractLane) \
594 V(I32x4ReplaceLane) \ 594 V(I32x4ReplaceLane) \
595 V(I32x4SConvertF32x4) \ 595 V(I32x4SConvertF32x4) \
596 V(I32x4SConvertI16x8Low) \
597 V(I32x4SConvertI16x8High) \
596 V(I32x4Neg) \ 598 V(I32x4Neg) \
597 V(I32x4Shl) \ 599 V(I32x4Shl) \
598 V(I32x4ShrS) \ 600 V(I32x4ShrS) \
599 V(I32x4Add) \ 601 V(I32x4Add) \
600 V(I32x4Sub) \ 602 V(I32x4Sub) \
601 V(I32x4Mul) \ 603 V(I32x4Mul) \
602 V(I32x4MinS) \ 604 V(I32x4MinS) \
603 V(I32x4MaxS) \ 605 V(I32x4MaxS) \
604 V(I32x4Eq) \ 606 V(I32x4Eq) \
605 V(I32x4Ne) \ 607 V(I32x4Ne) \
606 V(I32x4LtS) \ 608 V(I32x4LtS) \
607 V(I32x4LeS) \ 609 V(I32x4LeS) \
608 V(I32x4GtS) \ 610 V(I32x4GtS) \
609 V(I32x4GeS) \ 611 V(I32x4GeS) \
610 V(I32x4UConvertF32x4) \ 612 V(I32x4UConvertF32x4) \
613 V(I32x4UConvertI16x8Low) \
614 V(I32x4UConvertI16x8High) \
611 V(I32x4ShrU) \ 615 V(I32x4ShrU) \
612 V(I32x4MinU) \ 616 V(I32x4MinU) \
613 V(I32x4MaxU) \ 617 V(I32x4MaxU) \
614 V(I32x4LtU) \ 618 V(I32x4LtU) \
615 V(I32x4LeU) \ 619 V(I32x4LeU) \
616 V(I32x4GtU) \ 620 V(I32x4GtU) \
617 V(I32x4GeU) \ 621 V(I32x4GeU) \
618 V(I16x8Splat) \ 622 V(I16x8Splat) \
619 V(I16x8ExtractLane) \ 623 V(I16x8ExtractLane) \
620 V(I16x8ReplaceLane) \ 624 V(I16x8ReplaceLane) \
625 V(I16x8SConvertI8x16Low) \
626 V(I16x8SConvertI8x16High) \
621 V(I16x8Neg) \ 627 V(I16x8Neg) \
622 V(I16x8Shl) \ 628 V(I16x8Shl) \
623 V(I16x8ShrS) \ 629 V(I16x8ShrS) \
630 V(I16x8SConvertI32x4) \
624 V(I16x8Add) \ 631 V(I16x8Add) \
625 V(I16x8AddSaturateS) \ 632 V(I16x8AddSaturateS) \
626 V(I16x8Sub) \ 633 V(I16x8Sub) \
627 V(I16x8SubSaturateS) \ 634 V(I16x8SubSaturateS) \
628 V(I16x8Mul) \ 635 V(I16x8Mul) \
629 V(I16x8MinS) \ 636 V(I16x8MinS) \
630 V(I16x8MaxS) \ 637 V(I16x8MaxS) \
631 V(I16x8Eq) \ 638 V(I16x8Eq) \
632 V(I16x8Ne) \ 639 V(I16x8Ne) \
633 V(I16x8LtS) \ 640 V(I16x8LtS) \
634 V(I16x8LeS) \ 641 V(I16x8LeS) \
635 V(I16x8GtS) \ 642 V(I16x8GtS) \
636 V(I16x8GeS) \ 643 V(I16x8GeS) \
644 V(I16x8UConvertI8x16Low) \
645 V(I16x8UConvertI8x16High) \
646 V(I16x8ShrU) \
647 V(I16x8UConvertI32x4) \
637 V(I16x8AddSaturateU) \ 648 V(I16x8AddSaturateU) \
638 V(I16x8SubSaturateU) \ 649 V(I16x8SubSaturateU) \
639 V(I16x8ShrU) \
640 V(I16x8MinU) \ 650 V(I16x8MinU) \
641 V(I16x8MaxU) \ 651 V(I16x8MaxU) \
642 V(I16x8LtU) \ 652 V(I16x8LtU) \
643 V(I16x8LeU) \ 653 V(I16x8LeU) \
644 V(I16x8GtU) \ 654 V(I16x8GtU) \
645 V(I16x8GeU) \ 655 V(I16x8GeU) \
646 V(I8x16Splat) \ 656 V(I8x16Splat) \
647 V(I8x16ExtractLane) \ 657 V(I8x16ExtractLane) \
648 V(I8x16ReplaceLane) \ 658 V(I8x16ReplaceLane) \
659 V(I8x16SConvertI16x8) \
649 V(I8x16Neg) \ 660 V(I8x16Neg) \
650 V(I8x16Shl) \ 661 V(I8x16Shl) \
651 V(I8x16ShrS) \ 662 V(I8x16ShrS) \
652 V(I8x16Add) \ 663 V(I8x16Add) \
653 V(I8x16AddSaturateS) \ 664 V(I8x16AddSaturateS) \
654 V(I8x16Sub) \ 665 V(I8x16Sub) \
655 V(I8x16SubSaturateS) \ 666 V(I8x16SubSaturateS) \
656 V(I8x16Mul) \ 667 V(I8x16Mul) \
657 V(I8x16MinS) \ 668 V(I8x16MinS) \
658 V(I8x16MaxS) \ 669 V(I8x16MaxS) \
659 V(I8x16Eq) \ 670 V(I8x16Eq) \
660 V(I8x16Ne) \ 671 V(I8x16Ne) \
661 V(I8x16LtS) \ 672 V(I8x16LtS) \
662 V(I8x16LeS) \ 673 V(I8x16LeS) \
663 V(I8x16GtS) \ 674 V(I8x16GtS) \
664 V(I8x16GeS) \ 675 V(I8x16GeS) \
676 V(I8x16UConvertI16x8) \
665 V(I8x16AddSaturateU) \ 677 V(I8x16AddSaturateU) \
666 V(I8x16SubSaturateU) \ 678 V(I8x16SubSaturateU) \
667 V(I8x16ShrU) \ 679 V(I8x16ShrU) \
668 V(I8x16MinU) \ 680 V(I8x16MinU) \
669 V(I8x16MaxU) \ 681 V(I8x16MaxU) \
670 V(I8x16LtU) \ 682 V(I8x16LtU) \
671 V(I8x16LeU) \ 683 V(I8x16LeU) \
672 V(I8x16GtU) \ 684 V(I8x16GtU) \
673 V(I8x16GeU) \ 685 V(I8x16GeU) \
674 V(S128Load) \ 686 V(S128Load) \
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 } 810 }
799 }; 811 };
800 812
801 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 813 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
802 814
803 } // namespace compiler 815 } // namespace compiler
804 } // namespace internal 816 } // namespace internal
805 } // namespace v8 817 } // namespace v8
806 818
807 #endif // V8_COMPILER_OPCODES_H_ 819 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698