2013-10-14 Chao-ying Fu <Chao-ying.Fu@imgtec.com>
authorChao-ying Fu <fu@mips.com>
Mon, 14 Oct 2013 18:58:15 +0000 (18:58 +0000)
committerChao-ying Fu <fu@mips.com>
Mon, 14 Oct 2013 18:58:15 +0000 (18:58 +0000)
* micromips-opc.c (decode_micromips_operand): Add +T, +U, +V, +W,
+d, +e, +h, +k, +l, +n, +o, +u, +v, +w, +x,
+~, +!, +@, +#, +$, +%, +^, +&, +*, +|.
(MSA): New define.
(MSA64): New define.
(micromips_opcodes): Add MSA instructions.
* mips-dis.c (msa_control_names): New array.
(mips_abi_choice): Add ASE_MSA to mips32r2.
Remove ASE_MDMX from mips64r2.
Add ASE_MSA and ASE_MSA64 to mips64r2.
(parse_mips_dis_option): Handle -Mmsa.
(print_reg): Handle cases for OP_REG_MSA and OP_REG_MSA_CTRL.
(print_insn_arg): Handle cases for OP_IMM_INDEX and OP_REG_INDEX.
(print_mips_disassembler_options): Print -Mmsa.
* mips-opc.c (decode_mips_operand): Add +T, +U, +V, +W, +d, +e, +h, +k,
+l, +n, +o, +u, +v, +w, +~, +!, +@, +#, +$, +%, +^, +&, +*, +|.
(MSA): New define.
(MSA64): New define.
(mips_builtin_op): Add MSA instructions.

opcodes/ChangeLog
opcodes/micromips-opc.c
opcodes/mips-dis.c
opcodes/mips-opc.c

index 15a6029b91dd6fc916c61414d2d20425c787ed4e..97a9d0dda8200f73583e1eb132c59bf44aaa7105 100644 (file)
@@ -1,3 +1,25 @@
+2013-10-14  Chao-ying Fu  <Chao-ying.Fu@imgtec.com>
+
+       * micromips-opc.c (decode_micromips_operand): Add +T, +U, +V, +W,
+       +d, +e, +h, +k, +l, +n, +o, +u, +v, +w, +x,
+       +~, +!, +@, +#, +$, +%, +^, +&, +*, +|.
+       (MSA): New define.
+       (MSA64): New define.
+       (micromips_opcodes): Add MSA instructions.
+       * mips-dis.c (msa_control_names): New array.
+       (mips_abi_choice): Add ASE_MSA to mips32r2.
+       Remove ASE_MDMX from mips64r2.
+       Add ASE_MSA and ASE_MSA64 to mips64r2.
+       (parse_mips_dis_option): Handle -Mmsa.
+       (print_reg): Handle cases for OP_REG_MSA and OP_REG_MSA_CTRL.
+       (print_insn_arg): Handle cases for OP_IMM_INDEX and OP_REG_INDEX.
+       (print_mips_disassembler_options): Print -Mmsa.
+       * mips-opc.c (decode_mips_operand): Add +T, +U, +V, +W, +d, +e, +h, +k,
+       +l, +n, +o, +u, +v, +w, +~, +!, +@, +#, +$, +%, +^, +&, +*, +|.
+       (MSA): New define.
+       (MSA64): New define.
+       (mips_builtin_op): Add MSA instructions.
+
 2013-10-13  Sandra Loosemore  <sandra@codesourcery.com>
 
        * nios2-opc.c (nios2_builtin_reg): Use "sstatus" rather than "ba"
index c5733d43acffc2669b86c39694e0d38ef398840f..390b24305eb9d4878d31507ea326bf1bac4f7522 100644 (file)
@@ -107,9 +107,35 @@ decode_micromips_operand (const char *p)
        case 'F': MSB (5, 11, 33, TRUE, 64);     /* (33 .. 64), 64-bit op */
        case 'G': MSB (5, 11, 33, FALSE, 64);    /* (33 .. 64), 64-bit op */
        case 'H': MSB (5, 11, 1, FALSE, 64);     /* (1 .. 32), 64-bit op */
+       case 'T': INT_ADJ (10, 16, 511, 0, FALSE);      /* (-512 .. 511) << 0 */
+       case 'U': INT_ADJ (10, 16, 511, 1, FALSE);      /* (-512 .. 511) << 1 */
+       case 'V': INT_ADJ (10, 16, 511, 2, FALSE);      /* (-512 .. 511) << 2 */
+       case 'W': INT_ADJ (10, 16, 511, 3, FALSE);      /* (-512 .. 511) << 3 */
 
+       case 'd': REG (5, 6, MSA);
+       case 'e': REG (5, 11, MSA);
+       case 'h': REG (5, 16, MSA);
        case 'i': JALX (26, 0, 2);
        case 'j': SINT (9, 0);
+       case 'k': REG (5, 6, GP);
+       case 'l': REG (5, 6, MSA_CTRL);
+       case 'n': REG (5, 11, MSA_CTRL);
+       case 'o': SPECIAL (5, 16, IMM_INDEX);
+       case 'u': SPECIAL (4, 16, IMM_INDEX);
+       case 'v': SPECIAL (3, 16, IMM_INDEX);
+       case 'w': SPECIAL (2, 16, IMM_INDEX);
+       case 'x': BIT (5, 16, 0);               /* (0 .. 31) */
+
+       case '~': BIT (2, 6, 1);                /* (1 .. 4) */
+       case '!': BIT (3, 16, 0);               /* (0 .. 7) */
+       case '@': BIT (4, 16, 0);               /* (0 .. 15) */
+       case '#': BIT (6, 16, 0);               /* (0 .. 63) */
+       case '$': UINT (5, 16);                 /* (0 .. 31) */
+       case '%': SINT (5, 16);                 /* (-16 .. 15) */
+       case '^': SINT (10, 11);                /* (-512 .. 511) */
+       case '&': SPECIAL (0, 0, IMM_INDEX);
+       case '*': SPECIAL (5, 16, REG_INDEX);
+       case '|': BIT (8, 16, 0);               /* (0 .. 255) */
        }
       break;
 
@@ -246,6 +272,10 @@ decode_micromips_operand (const char *p)
 #define IVIRT  ASE_VIRT
 #define IVIRT64        ASE_VIRT64
 
+/* MSA support.  */
+#define MSA     ASE_MSA
+#define MSA64   ASE_MSA64
+
 const struct mips_opcode micromips_opcodes[] =
 {
 /* These instructions appear first so that the disassembler will find
@@ -1287,6 +1317,539 @@ const struct mips_opcode micromips_opcodes[] =
 {"subqh_r.ph",         "d,s,t",        0x0000064d, 0xfc0007ff, WR_1|RD_2|RD_3,         0,              0,              D33,    0 },
 {"subqh.w",            "d,s,t",        0x0000028d, 0xfc0007ff, WR_1|RD_2|RD_3,         0,              0,              D33,    0 },
 {"subqh_r.w",          "d,s,t",        0x0000068d, 0xfc0007ff, WR_1|RD_2|RD_3,         0,              0,              D33,    0 },
+/* MSA Extension.  */
+{"sll.b",              "+d,+e,+h",     0x5800001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sll.h",              "+d,+e,+h",     0x5820001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sll.w",              "+d,+e,+h",     0x5840001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sll.d",              "+d,+e,+h",     0x5860001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"slli.b",             "+d,+e,+!",     0x58700012, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"slli.h",             "+d,+e,+@",     0x58600012, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"slli.w",             "+d,+e,+x",     0x58400012, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"slli.d",             "+d,+e,+#",     0x58000012, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sra.b",              "+d,+e,+h",     0x5880001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sra.h",              "+d,+e,+h",     0x58a0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sra.w",              "+d,+e,+h",     0x58c0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sra.d",              "+d,+e,+h",     0x58e0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srai.b",             "+d,+e,+!",     0x58f00012, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srai.h",             "+d,+e,+@",     0x58e00012, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srai.w",             "+d,+e,+x",     0x58c00012, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srai.d",             "+d,+e,+#",     0x58800012, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srl.b",              "+d,+e,+h",     0x5900001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srl.h",              "+d,+e,+h",     0x5920001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srl.w",              "+d,+e,+h",     0x5940001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srl.d",              "+d,+e,+h",     0x5960001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srli.b",             "+d,+e,+!",     0x59700012, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srli.h",             "+d,+e,+@",     0x59600012, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srli.w",             "+d,+e,+x",     0x59400012, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srli.d",             "+d,+e,+#",     0x59000012, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bclr.b",             "+d,+e,+h",     0x5980001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bclr.h",             "+d,+e,+h",     0x59a0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bclr.w",             "+d,+e,+h",     0x59c0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bclr.d",             "+d,+e,+h",     0x59e0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bclri.b",            "+d,+e,+!",     0x59f00012, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bclri.h",            "+d,+e,+@",     0x59e00012, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bclri.w",            "+d,+e,+x",     0x59c00012, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bclri.d",            "+d,+e,+#",     0x59800012, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bset.b",             "+d,+e,+h",     0x5a00001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bset.h",             "+d,+e,+h",     0x5a20001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bset.w",             "+d,+e,+h",     0x5a40001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bset.d",             "+d,+e,+h",     0x5a60001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bseti.b",            "+d,+e,+!",     0x5a700012, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bseti.h",            "+d,+e,+@",     0x5a600012, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bseti.w",            "+d,+e,+x",     0x5a400012, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bseti.d",            "+d,+e,+#",     0x5a000012, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bneg.b",             "+d,+e,+h",     0x5a80001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bneg.h",             "+d,+e,+h",     0x5aa0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bneg.w",             "+d,+e,+h",     0x5ac0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bneg.d",             "+d,+e,+h",     0x5ae0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bnegi.b",            "+d,+e,+!",     0x5af00012, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bnegi.h",            "+d,+e,+@",     0x5ae00012, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bnegi.w",            "+d,+e,+x",     0x5ac00012, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bnegi.d",            "+d,+e,+#",     0x5a800012, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"binsl.b",            "+d,+e,+h",     0x5b00001a, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsl.h",            "+d,+e,+h",     0x5b20001a, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsl.w",            "+d,+e,+h",     0x5b40001a, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsl.d",            "+d,+e,+h",     0x5b60001a, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsli.b",           "+d,+e,+!",     0x5b700012, 0xfff8003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsli.h",           "+d,+e,+@",     0x5b600012, 0xfff0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsli.w",           "+d,+e,+x",     0x5b400012, 0xffe0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsli.d",           "+d,+e,+#",     0x5b000012, 0xffc0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsr.b",            "+d,+e,+h",     0x5b80001a, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsr.h",            "+d,+e,+h",     0x5ba0001a, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsr.w",            "+d,+e,+h",     0x5bc0001a, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsr.d",            "+d,+e,+h",     0x5be0001a, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsri.b",           "+d,+e,+!",     0x5bf00012, 0xfff8003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsri.h",           "+d,+e,+@",     0x5be00012, 0xfff0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsri.w",           "+d,+e,+x",     0x5bc00012, 0xffe0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsri.d",           "+d,+e,+#",     0x5b800012, 0xffc0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"addv.b",             "+d,+e,+h",     0x5800002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"addv.h",             "+d,+e,+h",     0x5820002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"addv.w",             "+d,+e,+h",     0x5840002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"addv.d",             "+d,+e,+h",     0x5860002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"addvi.b",            "+d,+e,+$",     0x58000029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"addvi.h",            "+d,+e,+$",     0x58200029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"addvi.w",            "+d,+e,+$",     0x58400029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"addvi.d",            "+d,+e,+$",     0x58600029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"subv.b",             "+d,+e,+h",     0x5880002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subv.h",             "+d,+e,+h",     0x58a0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subv.w",             "+d,+e,+h",     0x58c0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subv.d",             "+d,+e,+h",     0x58e0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subvi.b",            "+d,+e,+$",     0x58800029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"subvi.h",            "+d,+e,+$",     0x58a00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"subvi.w",            "+d,+e,+$",     0x58c00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"subvi.d",            "+d,+e,+$",     0x58e00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"max_s.b",            "+d,+e,+h",     0x5900002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_s.h",            "+d,+e,+h",     0x5920002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_s.w",            "+d,+e,+h",     0x5940002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_s.d",            "+d,+e,+h",     0x5960002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"maxi_s.b",           "+d,+e,+%",     0x59000029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_s.h",           "+d,+e,+%",     0x59200029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_s.w",           "+d,+e,+%",     0x59400029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_s.d",           "+d,+e,+%",     0x59600029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"max_u.b",            "+d,+e,+h",     0x5980002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_u.h",            "+d,+e,+h",     0x59a0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_u.w",            "+d,+e,+h",     0x59c0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_u.d",            "+d,+e,+h",     0x59e0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"maxi_u.b",           "+d,+e,+$",     0x59800029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_u.h",           "+d,+e,+$",     0x59a00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_u.w",           "+d,+e,+$",     0x59c00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_u.d",           "+d,+e,+$",     0x59e00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"min_s.b",            "+d,+e,+h",     0x5a00002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_s.h",            "+d,+e,+h",     0x5a20002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_s.w",            "+d,+e,+h",     0x5a40002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_s.d",            "+d,+e,+h",     0x5a60002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mini_s.b",           "+d,+e,+%",     0x5a000029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_s.h",           "+d,+e,+%",     0x5a200029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_s.w",           "+d,+e,+%",     0x5a400029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_s.d",           "+d,+e,+%",     0x5a600029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"min_u.b",            "+d,+e,+h",     0x5a80002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_u.h",            "+d,+e,+h",     0x5aa0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_u.w",            "+d,+e,+h",     0x5ac0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_u.d",            "+d,+e,+h",     0x5ae0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mini_u.b",           "+d,+e,+$",     0x5a800029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_u.h",           "+d,+e,+$",     0x5aa00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_u.w",           "+d,+e,+$",     0x5ac00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_u.d",           "+d,+e,+$",     0x5ae00029, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"max_a.b",            "+d,+e,+h",     0x5b00002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_a.h",            "+d,+e,+h",     0x5b20002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_a.w",            "+d,+e,+h",     0x5b40002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_a.d",            "+d,+e,+h",     0x5b60002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_a.b",            "+d,+e,+h",     0x5b80002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_a.h",            "+d,+e,+h",     0x5ba0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_a.w",            "+d,+e,+h",     0x5bc0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_a.d",            "+d,+e,+h",     0x5be0002a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceq.b",              "+d,+e,+h",     0x5800003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceq.h",              "+d,+e,+h",     0x5820003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceq.w",              "+d,+e,+h",     0x5840003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceq.d",              "+d,+e,+h",     0x5860003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceqi.b",             "+d,+e,+%",     0x58000039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ceqi.h",             "+d,+e,+%",     0x58200039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ceqi.w",             "+d,+e,+%",     0x58400039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ceqi.d",             "+d,+e,+%",     0x58600039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clt_s.b",            "+d,+e,+h",     0x5900003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_s.h",            "+d,+e,+h",     0x5920003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_s.w",            "+d,+e,+h",     0x5940003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_s.d",            "+d,+e,+h",     0x5960003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clti_s.b",           "+d,+e,+%",     0x59000039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_s.h",           "+d,+e,+%",     0x59200039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_s.w",           "+d,+e,+%",     0x59400039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_s.d",           "+d,+e,+%",     0x59600039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clt_u.b",            "+d,+e,+h",     0x5980003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_u.h",            "+d,+e,+h",     0x59a0003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_u.w",            "+d,+e,+h",     0x59c0003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_u.d",            "+d,+e,+h",     0x59e0003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clti_u.b",           "+d,+e,+$",     0x59800039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_u.h",           "+d,+e,+$",     0x59a00039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_u.w",           "+d,+e,+$",     0x59c00039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_u.d",           "+d,+e,+$",     0x59e00039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"cle_s.b",            "+d,+e,+h",     0x5a00003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_s.h",            "+d,+e,+h",     0x5a20003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_s.w",            "+d,+e,+h",     0x5a40003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_s.d",            "+d,+e,+h",     0x5a60003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clei_s.b",           "+d,+e,+%",     0x5a000039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_s.h",           "+d,+e,+%",     0x5a200039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_s.w",           "+d,+e,+%",     0x5a400039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_s.d",           "+d,+e,+%",     0x5a600039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"cle_u.b",            "+d,+e,+h",     0x5a80003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_u.h",            "+d,+e,+h",     0x5aa0003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_u.w",            "+d,+e,+h",     0x5ac0003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_u.d",            "+d,+e,+h",     0x5ae0003a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clei_u.b",           "+d,+e,+$",     0x5a800039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_u.h",           "+d,+e,+$",     0x5aa00039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_u.w",           "+d,+e,+$",     0x5ac00039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_u.d",           "+d,+e,+$",     0x5ae00039, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ld.b",               "+d,+T(d)",     0x58000007, 0xfc00003f, WR_1|RD_3,              0,              0,              MSA,    0 },
+{"ld.h",               "+d,+U(d)",     0x58000017, 0xfc00003f, WR_1|RD_3,              0,              0,              MSA,    0 },
+{"ld.w",               "+d,+V(d)",     0x58000027, 0xfc00003f, WR_1|RD_3,              0,              0,              MSA,    0 },
+{"ld.d",               "+d,+W(d)",     0x58000037, 0xfc00003f, WR_1|RD_3,              0,              0,              MSA,    0 },
+{"st.b",               "+d,+T(d)",     0x5800000f, 0xfc00003f, RD_1|RD_3|SM,           0,              0,              MSA,    0 },
+{"st.h",               "+d,+U(d)",     0x5800001f, 0xfc00003f, RD_1|RD_3|SM,           0,              0,              MSA,    0 },
+{"st.w",               "+d,+V(d)",     0x5800002f, 0xfc00003f, RD_1|RD_3|SM,           0,              0,              MSA,    0 },
+{"st.d",               "+d,+W(d)",     0x5800003f, 0xfc00003f, RD_1|RD_3|SM,           0,              0,              MSA,    0 },
+{"sat_s.b",            "+d,+e,+!",     0x58700022, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_s.h",            "+d,+e,+@",     0x58600022, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_s.w",            "+d,+e,+x",     0x58400022, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_s.d",            "+d,+e,+#",     0x58000022, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_u.b",            "+d,+e,+!",     0x58f00022, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_u.h",            "+d,+e,+@",     0x58e00022, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_u.w",            "+d,+e,+x",     0x58c00022, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_u.d",            "+d,+e,+#",     0x58800022, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"add_a.b",            "+d,+e,+h",     0x58000003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"add_a.h",            "+d,+e,+h",     0x58200003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"add_a.w",            "+d,+e,+h",     0x58400003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"add_a.d",            "+d,+e,+h",     0x58600003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_a.b",           "+d,+e,+h",     0x58800003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_a.h",           "+d,+e,+h",     0x58a00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_a.w",           "+d,+e,+h",     0x58c00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_a.d",           "+d,+e,+h",     0x58e00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_s.b",           "+d,+e,+h",     0x59000003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_s.h",           "+d,+e,+h",     0x59200003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_s.w",           "+d,+e,+h",     0x59400003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_s.d",           "+d,+e,+h",     0x59600003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_u.b",           "+d,+e,+h",     0x59800003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_u.h",           "+d,+e,+h",     0x59a00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_u.w",           "+d,+e,+h",     0x59c00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_u.d",           "+d,+e,+h",     0x59e00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_s.b",            "+d,+e,+h",     0x5a000003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_s.h",            "+d,+e,+h",     0x5a200003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_s.w",            "+d,+e,+h",     0x5a400003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_s.d",            "+d,+e,+h",     0x5a600003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_u.b",            "+d,+e,+h",     0x5a800003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_u.h",            "+d,+e,+h",     0x5aa00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_u.w",            "+d,+e,+h",     0x5ac00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_u.d",            "+d,+e,+h",     0x5ae00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_s.b",           "+d,+e,+h",     0x5b000003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_s.h",           "+d,+e,+h",     0x5b200003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_s.w",           "+d,+e,+h",     0x5b400003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_s.d",           "+d,+e,+h",     0x5b600003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_u.b",           "+d,+e,+h",     0x5b800003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_u.h",           "+d,+e,+h",     0x5ba00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_u.w",           "+d,+e,+h",     0x5bc00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_u.d",           "+d,+e,+h",     0x5be00003, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_s.b",           "+d,+e,+h",     0x58000013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_s.h",           "+d,+e,+h",     0x58200013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_s.w",           "+d,+e,+h",     0x58400013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_s.d",           "+d,+e,+h",     0x58600013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_u.b",           "+d,+e,+h",     0x58800013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_u.h",           "+d,+e,+h",     0x58a00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_u.w",           "+d,+e,+h",     0x58c00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_u.d",           "+d,+e,+h",     0x58e00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsus_u.b",         "+d,+e,+h",     0x59000013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsus_u.h",         "+d,+e,+h",     0x59200013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsus_u.w",         "+d,+e,+h",     0x59400013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsus_u.d",         "+d,+e,+h",     0x59600013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsuu_s.b",         "+d,+e,+h",     0x59800013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsuu_s.h",         "+d,+e,+h",     0x59a00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsuu_s.w",         "+d,+e,+h",     0x59c00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsuu_s.d",         "+d,+e,+h",     0x59e00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_s.b",           "+d,+e,+h",     0x5a000013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_s.h",           "+d,+e,+h",     0x5a200013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_s.w",           "+d,+e,+h",     0x5a400013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_s.d",           "+d,+e,+h",     0x5a600013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_u.b",           "+d,+e,+h",     0x5a800013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_u.h",           "+d,+e,+h",     0x5aa00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_u.w",           "+d,+e,+h",     0x5ac00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_u.d",           "+d,+e,+h",     0x5ae00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulv.b",             "+d,+e,+h",     0x58000023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulv.h",             "+d,+e,+h",     0x58200023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulv.w",             "+d,+e,+h",     0x58400023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulv.d",             "+d,+e,+h",     0x58600023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"maddv.b",            "+d,+e,+h",     0x58800023, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"maddv.h",            "+d,+e,+h",     0x58a00023, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"maddv.w",            "+d,+e,+h",     0x58c00023, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"maddv.d",            "+d,+e,+h",     0x58e00023, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubv.b",            "+d,+e,+h",     0x59000023, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubv.h",            "+d,+e,+h",     0x59200023, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubv.w",            "+d,+e,+h",     0x59400023, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubv.d",            "+d,+e,+h",     0x59600023, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"div_s.b",            "+d,+e,+h",     0x5a000023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_s.h",            "+d,+e,+h",     0x5a200023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_s.w",            "+d,+e,+h",     0x5a400023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_s.d",            "+d,+e,+h",     0x5a600023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_u.b",            "+d,+e,+h",     0x5a800023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_u.h",            "+d,+e,+h",     0x5aa00023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_u.w",            "+d,+e,+h",     0x5ac00023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_u.d",            "+d,+e,+h",     0x5ae00023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_s.b",            "+d,+e,+h",     0x5b000023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_s.h",            "+d,+e,+h",     0x5b200023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_s.w",            "+d,+e,+h",     0x5b400023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_s.d",            "+d,+e,+h",     0x5b600023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_u.b",            "+d,+e,+h",     0x5b800023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_u.h",            "+d,+e,+h",     0x5ba00023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_u.w",            "+d,+e,+h",     0x5bc00023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_u.d",            "+d,+e,+h",     0x5be00023, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_s.h",           "+d,+e,+h",     0x58200033, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_s.w",           "+d,+e,+h",     0x58400033, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_s.d",           "+d,+e,+h",     0x58600033, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_u.h",           "+d,+e,+h",     0x58a00033, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_u.w",           "+d,+e,+h",     0x58c00033, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_u.d",           "+d,+e,+h",     0x58e00033, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dpadd_s.h",          "+d,+e,+h",     0x59200033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_s.w",          "+d,+e,+h",     0x59400033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_s.d",          "+d,+e,+h",     0x59600033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_u.h",          "+d,+e,+h",     0x59a00033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_u.w",          "+d,+e,+h",     0x59c00033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_u.d",          "+d,+e,+h",     0x59e00033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_s.h",          "+d,+e,+h",     0x5a200033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_s.w",          "+d,+e,+h",     0x5a400033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_s.d",          "+d,+e,+h",     0x5a600033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_u.h",          "+d,+e,+h",     0x5aa00033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_u.w",          "+d,+e,+h",     0x5ac00033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_u.d",          "+d,+e,+h",     0x5ae00033, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sld.b",              "+d,+e+*",      0x5800000b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sld.h",              "+d,+e+*",      0x5820000b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sld.w",              "+d,+e+*",      0x5840000b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sld.d",              "+d,+e+*",      0x5860000b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sldi.b",             "+d,+e+o",      0x58000016, 0xffe0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"sldi.h",             "+d,+e+u",      0x58200016, 0xfff0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"sldi.w",             "+d,+e+v",      0x58300016, 0xfff8003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"sldi.d",             "+d,+e+w",      0x58380016, 0xfffc003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"splat.b",            "+d,+e+*",      0x5880000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"splat.h",            "+d,+e+*",      0x58a0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"splat.w",            "+d,+e+*",      0x58c0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"splat.d",            "+d,+e+*",      0x58e0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"splati.b",           "+d,+e+o",      0x58400016, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"splati.h",           "+d,+e+u",      0x58600016, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"splati.w",           "+d,+e+v",      0x58700016, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"splati.d",           "+d,+e+w",      0x58780016, 0xfffc003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"pckev.b",            "+d,+e,+h",     0x5900000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckev.h",            "+d,+e,+h",     0x5920000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckev.w",            "+d,+e,+h",     0x5940000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckev.d",            "+d,+e,+h",     0x5960000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckod.b",            "+d,+e,+h",     0x5980000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckod.h",            "+d,+e,+h",     0x59a0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckod.w",            "+d,+e,+h",     0x59c0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckod.d",            "+d,+e,+h",     0x59e0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvl.b",             "+d,+e,+h",     0x5a00000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvl.h",             "+d,+e,+h",     0x5a20000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvl.w",             "+d,+e,+h",     0x5a40000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvl.d",             "+d,+e,+h",     0x5a60000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvr.b",             "+d,+e,+h",     0x5a80000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvr.h",             "+d,+e,+h",     0x5aa0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvr.w",             "+d,+e,+h",     0x5ac0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvr.d",             "+d,+e,+h",     0x5ae0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvev.b",            "+d,+e,+h",     0x5b00000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvev.h",            "+d,+e,+h",     0x5b20000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvev.w",            "+d,+e,+h",     0x5b40000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvev.d",            "+d,+e,+h",     0x5b60000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvod.b",            "+d,+e,+h",     0x5b80000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvod.h",            "+d,+e,+h",     0x5ba0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvod.w",            "+d,+e,+h",     0x5bc0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvod.d",            "+d,+e,+h",     0x5be0000b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"vshf.b",             "+d,+e,+h",     0x5800001b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"vshf.h",             "+d,+e,+h",     0x5820001b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"vshf.w",             "+d,+e,+h",     0x5840001b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"vshf.d",             "+d,+e,+h",     0x5860001b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"srar.b",             "+d,+e,+h",     0x5880001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srar.h",             "+d,+e,+h",     0x58a0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srar.w",             "+d,+e,+h",     0x58c0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srar.d",             "+d,+e,+h",     0x58e0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srari.b",            "+d,+e,+!",     0x59700022, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srari.h",            "+d,+e,+@",     0x59600022, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srari.w",            "+d,+e,+x",     0x59400022, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srari.d",            "+d,+e,+#",     0x59000022, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srlr.b",             "+d,+e,+h",     0x5900001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srlr.h",             "+d,+e,+h",     0x5920001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srlr.w",             "+d,+e,+h",     0x5940001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srlr.d",             "+d,+e,+h",     0x5960001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srlri.b",            "+d,+e,+!",     0x59f00022, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srlri.h",            "+d,+e,+@",     0x59e00022, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srlri.w",            "+d,+e,+x",     0x59c00022, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srlri.d",            "+d,+e,+#",     0x59800022, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"hadd_s.h",           "+d,+e,+h",     0x5a20001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_s.w",           "+d,+e,+h",     0x5a40001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_s.d",           "+d,+e,+h",     0x5a60001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_u.h",           "+d,+e,+h",     0x5aa0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_u.w",           "+d,+e,+h",     0x5ac0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_u.d",           "+d,+e,+h",     0x5ae0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_s.h",           "+d,+e,+h",     0x5b20001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_s.w",           "+d,+e,+h",     0x5b40001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_s.d",           "+d,+e,+h",     0x5b60001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_u.h",           "+d,+e,+h",     0x5ba0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_u.w",           "+d,+e,+h",     0x5bc0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_u.d",           "+d,+e,+h",     0x5be0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"and.v",              "+d,+e,+h",     0x5800002e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"andi.b",             "+d,+e,+|",     0x58000001, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"or.v",               "+d,+e,+h",     0x5820002e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ori.b",              "+d,+e,+|",     0x59000001, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nor.v",              "+d,+e,+h",     0x5840002e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"nori.b",             "+d,+e,+|",     0x5a000001, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"xor.v",              "+d,+e,+h",     0x5860002e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"xori.b",             "+d,+e,+|",     0x5b000001, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bmnz.v",             "+d,+e,+h",     0x5880002e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"bmnzi.b",            "+d,+e,+|",     0x58000011, 0xff00003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"bmz.v",              "+d,+e,+h",     0x58a0002e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"bmzi.b",             "+d,+e,+|",     0x59000011, 0xff00003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"bsel.v",             "+d,+e,+h",     0x58c0002e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"bseli.b",            "+d,+e,+|",     0x5a000011, 0xff00003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"shf.b",              "+d,+e,+|",     0x58000021, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"shf.h",              "+d,+e,+|",     0x59000021, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"shf.w",              "+d,+e,+|",     0x5a000021, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bnz.v",              "+h,p",         0x81e00000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.v",               "+h,p",         0x81600000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"fill.b",             "+d,d",         0x5b00002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fill.h",             "+d,d",         0x5b01002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fill.w",             "+d,d",         0x5b02002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fill.d",             "+d,d",         0x5b03002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA64,  0 },
+{"pcnt.b",             "+d,+e",        0x5b04002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"pcnt.h",             "+d,+e",        0x5b05002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"pcnt.w",             "+d,+e",        0x5b06002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"pcnt.d",             "+d,+e",        0x5b07002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nloc.b",             "+d,+e",        0x5b08002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nloc.h",             "+d,+e",        0x5b09002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nloc.w",             "+d,+e",        0x5b0a002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nloc.d",             "+d,+e",        0x5b0b002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nlzc.b",             "+d,+e",        0x5b0c002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nlzc.h",             "+d,+e",        0x5b0d002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nlzc.w",             "+d,+e",        0x5b0e002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nlzc.d",             "+d,+e",        0x5b0f002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_s.b",           "+k,+e+o",      0x58800016, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_s.h",           "+k,+e+u",      0x58a00016, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_s.w",           "+k,+e+v",      0x58b00016, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_s.d",           "+k,+e+w",      0x58b80016, 0xfffc003f, WR_1|RD_2,              0,              0,              MSA64,  0 },
+{"copy_u.b",           "+k,+e+o",      0x58c00016, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_u.h",           "+k,+e+u",      0x58e00016, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_u.w",           "+k,+e+v",      0x58f00016, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_u.d",           "+k,+e+w",      0x58f80016, 0xfffc003f, WR_1|RD_2,              0,              0,              MSA64,  0 },
+{"insert.b",           "+d+o,d",       0x59000016, 0xffe0003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insert.h",           "+d+u,d",       0x59200016, 0xfff0003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insert.w",           "+d+v,d",       0x59300016, 0xfff8003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insert.d",           "+d+w,d",       0x59380016, 0xfffc003f, MOD_1|RD_3,             0,              0,              MSA64,  0 },
+{"insve.b",            "+d+o,+e+&",    0x59400016, 0xffe0003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insve.h",            "+d+u,+e+&",    0x59600016, 0xfff0003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insve.w",            "+d+v,+e+&",    0x59700016, 0xfff8003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insve.d",            "+d+w,+e+&",    0x59780016, 0xfffc003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"bnz.b",              "+h,p",         0x83800000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bnz.h",              "+h,p",         0x83a00000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bnz.w",              "+h,p",         0x83c00000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bnz.d",              "+h,p",         0x83e00000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.b",               "+h,p",         0x83000000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.h",               "+h,p",         0x83200000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.w",               "+h,p",         0x83400000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.d",               "+h,p",         0x83600000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"ldi.b",              "+d,+^",        0x5b000039, 0xffe0003f, WR_1,                   0,              0,              MSA,    0 },
+{"ldi.h",              "+d,+^",        0x5b200039, 0xffe0003f, WR_1,                   0,              0,              MSA,    0 },
+{"ldi.w",              "+d,+^",        0x5b400039, 0xffe0003f, WR_1,                   0,              0,              MSA,    0 },
+{"ldi.d",              "+d,+^",        0x5b600039, 0xffe0003f, WR_1,                   0,              0,              MSA,    0 },
+{"fcaf.w",             "+d,+e,+h",     0x58000026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcaf.d",             "+d,+e,+h",     0x58200026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcun.w",             "+d,+e,+h",     0x58400026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcun.d",             "+d,+e,+h",     0x58600026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fceq.w",             "+d,+e,+h",     0x58800026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fceq.d",             "+d,+e,+h",     0x58a00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcueq.w",            "+d,+e,+h",     0x58c00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcueq.d",            "+d,+e,+h",     0x58e00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fclt.w",             "+d,+e,+h",     0x59000026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fclt.d",             "+d,+e,+h",     0x59200026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcult.w",            "+d,+e,+h",     0x59400026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcult.d",            "+d,+e,+h",     0x59600026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcle.w",             "+d,+e,+h",     0x59800026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcle.d",             "+d,+e,+h",     0x59a00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcule.w",            "+d,+e,+h",     0x59c00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcule.d",            "+d,+e,+h",     0x59e00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsaf.w",             "+d,+e,+h",     0x5a000026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsaf.d",             "+d,+e,+h",     0x5a200026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsun.w",             "+d,+e,+h",     0x5a400026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsun.d",             "+d,+e,+h",     0x5a600026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fseq.w",             "+d,+e,+h",     0x5a800026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fseq.d",             "+d,+e,+h",     0x5aa00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsueq.w",            "+d,+e,+h",     0x5ac00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsueq.d",            "+d,+e,+h",     0x5ae00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fslt.w",             "+d,+e,+h",     0x5b000026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fslt.d",             "+d,+e,+h",     0x5b200026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsult.w",            "+d,+e,+h",     0x5b400026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsult.d",            "+d,+e,+h",     0x5b600026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsle.w",             "+d,+e,+h",     0x5b800026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsle.d",             "+d,+e,+h",     0x5ba00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsule.w",            "+d,+e,+h",     0x5bc00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsule.d",            "+d,+e,+h",     0x5be00026, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fadd.w",             "+d,+e,+h",     0x58000036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fadd.d",             "+d,+e,+h",     0x58200036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsub.w",             "+d,+e,+h",     0x58400036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsub.d",             "+d,+e,+h",     0x58600036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmul.w",             "+d,+e,+h",     0x58800036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmul.d",             "+d,+e,+h",     0x58a00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fdiv.w",             "+d,+e,+h",     0x58c00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fdiv.d",             "+d,+e,+h",     0x58e00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmadd.w",            "+d,+e,+h",     0x59000036, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fmadd.d",            "+d,+e,+h",     0x59200036, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fmsub.w",            "+d,+e,+h",     0x59400036, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fmsub.d",            "+d,+e,+h",     0x59600036, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fexp2.w",            "+d,+e,+h",     0x59c00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fexp2.d",            "+d,+e,+h",     0x59e00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fexdo.h",            "+d,+e,+h",     0x5a000036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fexdo.w",            "+d,+e,+h",     0x5a200036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ftq.h",              "+d,+e,+h",     0x5a800036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ftq.w",              "+d,+e,+h",     0x5aa00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmin.w",             "+d,+e,+h",     0x5b000036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmin.d",             "+d,+e,+h",     0x5b200036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmin_a.w",           "+d,+e,+h",     0x5b400036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmin_a.d",           "+d,+e,+h",     0x5b600036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmax.w",             "+d,+e,+h",     0x5b800036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmax.d",             "+d,+e,+h",     0x5ba00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmax_a.w",           "+d,+e,+h",     0x5bc00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmax_a.d",           "+d,+e,+h",     0x5be00036, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcor.w",             "+d,+e,+h",     0x5840000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcor.d",             "+d,+e,+h",     0x5860000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcune.w",            "+d,+e,+h",     0x5880000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcune.d",            "+d,+e,+h",     0x58a0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcne.w",             "+d,+e,+h",     0x58c0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcne.d",             "+d,+e,+h",     0x58e0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mul_q.h",            "+d,+e,+h",     0x5900000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mul_q.w",            "+d,+e,+h",     0x5920000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"madd_q.h",           "+d,+e,+h",     0x5940000e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"madd_q.w",           "+d,+e,+h",     0x5960000e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msub_q.h",           "+d,+e,+h",     0x5980000e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msub_q.w",           "+d,+e,+h",     0x59a0000e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fsor.w",             "+d,+e,+h",     0x5a40000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsor.d",             "+d,+e,+h",     0x5a60000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsune.w",            "+d,+e,+h",     0x5a80000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsune.d",            "+d,+e,+h",     0x5aa0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsne.w",             "+d,+e,+h",     0x5ac0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsne.d",             "+d,+e,+h",     0x5ae0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulr_q.h",           "+d,+e,+h",     0x5b00000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulr_q.w",           "+d,+e,+h",     0x5b20000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"maddr_q.h",          "+d,+e,+h",     0x5b40000e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"maddr_q.w",          "+d,+e,+h",     0x5b60000e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubr_q.h",          "+d,+e,+h",     0x5b80000e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubr_q.w",          "+d,+e,+h",     0x5ba0000e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fclass.w",           "+d,+e",        0x5b20002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fclass.d",           "+d,+e",        0x5b21002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftrunc_s.w",         "+d,+e",        0x5b22002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftrunc_s.d",         "+d,+e",        0x5b23002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftrunc_u.w",         "+d,+e",        0x5b24002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftrunc_u.d",         "+d,+e",        0x5b25002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fsqrt.w",            "+d,+e",        0x5b26002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fsqrt.d",            "+d,+e",        0x5b27002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frsqrt.w",           "+d,+e",        0x5b28002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frsqrt.d",           "+d,+e",        0x5b29002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frcp.w",             "+d,+e",        0x5b2a002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frcp.d",             "+d,+e",        0x5b2b002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frint.w",            "+d,+e",        0x5b2c002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frint.d",            "+d,+e",        0x5b2d002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"flog2.w",            "+d,+e",        0x5b2e002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"flog2.d",            "+d,+e",        0x5b2f002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fexupl.w",           "+d,+e",        0x5b30002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fexupl.d",           "+d,+e",        0x5b31002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fexupr.w",           "+d,+e",        0x5b32002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fexupr.d",           "+d,+e",        0x5b33002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffql.w",             "+d,+e",        0x5b34002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffql.d",             "+d,+e",        0x5b35002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffqr.w",             "+d,+e",        0x5b36002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffqr.d",             "+d,+e",        0x5b37002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftint_s.w",          "+d,+e",        0x5b38002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftint_s.d",          "+d,+e",        0x5b39002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftint_u.w",          "+d,+e",        0x5b3a002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftint_u.d",          "+d,+e",        0x5b3b002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffint_s.w",          "+d,+e",        0x5b3c002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffint_s.d",          "+d,+e",        0x5b3d002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffint_u.w",          "+d,+e",        0x5b3e002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffint_u.d",          "+d,+e",        0x5b3f002e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ctcmsa",             "+l,d",         0x583e0016, 0xffff003f, RD_2,                   0,              0,              MSA,    0 },
+{"cfcmsa",             "+k,+n",        0x587e0016, 0xffff003f, WR_1,                   0,              0,              MSA,    0 },
+{"move.v",             "+d,+e",        0x58be0016, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"lsa",                        "d,v,t,+~",     0x00000020, 0xfc00073f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dlsa",               "d,v,t,+~",     0x58000020, 0xfc00073f, WR_1|RD_2|RD_3,         0,              0,              MSA64,  0 },
 };
 
 const int bfd_micromips_num_opcodes =
index dce4d863e7d60e3fedd0de10dd4d977f3f30ef8d..72f307f2f5130ec9fa4c088ac613d1a0cff8641a 100644 (file)
@@ -401,6 +401,15 @@ static const char * const mips_hwr_names_mips3264r2[32] =
   "$24",  "$25",  "$26",  "$27",  "$28",  "$29",  "$30",  "$31"
 };
 
+static const char * const msa_control_names[32] =
+{
+  "msa_ir",    "msa_csr",      "msa_access",   "msa_save",
+  "msa_modify",        "msa_request",  "msa_map",      "msa_unmap",
+  "$8",   "$9",   "$10",  "$11",  "$12",  "$13",  "$14",  "$15",
+  "$16",  "$17",  "$18",  "$19",  "$20",  "$21",  "$22",  "$23",
+  "$24",  "$25",  "$26",  "$27",  "$28",  "$29",  "$30",  "$31"
+};
+
 struct mips_abi_choice
 {
   const char * name;
@@ -498,7 +507,7 @@ const struct mips_arch_choice mips_arch_choices[] =
   { "mips32r2",        1, bfd_mach_mipsisa32r2, CPU_MIPS32R2,
     ISA_MIPS32R2,
     (ASE_SMARTMIPS | ASE_DSP | ASE_DSPR2 | ASE_EVA | ASE_MIPS3D
-     | ASE_MT | ASE_MCU | ASE_VIRT),
+     | ASE_MT | ASE_MCU | ASE_VIRT | ASE_MSA),
     mips_cp0_names_mips3264r2,
     mips_cp0sel_names_mips3264r2, ARRAY_SIZE (mips_cp0sel_names_mips3264r2),
     mips_hwr_names_mips3264r2 },
@@ -513,7 +522,7 @@ const struct mips_arch_choice mips_arch_choices[] =
   { "mips64r2",        1, bfd_mach_mipsisa64r2, CPU_MIPS64R2,
     ISA_MIPS64R2,
     (ASE_MIPS3D | ASE_DSP | ASE_DSPR2 | ASE_DSP64 | ASE_EVA | ASE_MT
-     | ASE_MDMX | ASE_MCU | ASE_VIRT | ASE_VIRT64),
+     | ASE_MCU | ASE_VIRT | ASE_VIRT64 | ASE_MSA | ASE_MSA64),
     mips_cp0_names_mips3264r2,
     mips_cp0sel_names_mips3264r2, ARRAY_SIZE (mips_cp0sel_names_mips3264r2),
     mips_hwr_names_mips3264r2 },
@@ -738,6 +747,14 @@ parse_mips_dis_option (const char *option, unsigned int len)
       return;
     }
 
+  if (CONST_STRNEQ (option, "msa"))
+    {
+      mips_ase |= ASE_MSA;
+      if ((mips_isa & INSN_ISA_MASK) == ISA_MIPS64R2)
+         mips_ase |= ASE_MSA64;
+      return;
+    }
+
   if (CONST_STRNEQ (option, "virt"))
     {
       mips_ase |= ASE_VIRT;
@@ -941,6 +958,15 @@ print_reg (struct disassemble_info *info, const struct mips_opcode *opcode,
     case OP_REG_R5900_ACC:
       info->fprintf_func (info->stream, "$ACC");
       break;
+
+    case OP_REG_MSA:
+      info->fprintf_func (info->stream, "$w%d", regno);
+      break;
+
+    case OP_REG_MSA_CTRL:
+      info->fprintf_func (info->stream, "%s", msa_control_names[regno]);
+      break;
+
     }
 }
 \f
@@ -1250,6 +1276,16 @@ print_insn_arg (struct disassemble_info *info,
     case OP_VU0_MATCH_SUFFIX:
       print_vu0_channel (info, operand, uval);
       break;
+
+    case OP_IMM_INDEX:
+      infprintf (is, "[%d]", uval);
+      break;
+
+    case OP_REG_INDEX:
+      infprintf (is, "[");
+      print_reg (info, opcode, OP_REG_GP, uval);
+      infprintf (is, "]");
+      break;
     }
 }
 
@@ -2093,6 +2129,9 @@ print_mips_disassembler_options (FILE *stream)
 The following MIPS specific disassembler options are supported for use\n\
 with the -M switch (multiple options should be separated by commas):\n"));
 
+  fprintf (stream, _("\n\
+  msa             Recognize MSA instructions.\n"));
+
   fprintf (stream, _("\n\
   virt            Recognize the virtualization ASE instructions.\n"));
 
index 6bdf60cd4d7ed262d3a04d254884ab3f73b6141e..4f729313ed5352b58b32f44d2800a4dd1bd30e57 100644 (file)
@@ -71,25 +71,50 @@ decode_mips_operand (const char *p)
        case 'P': BIT (5, 6, 32);               /* (32 .. 63) */
        case 'Q': SINT (10, 6);
        case 'S': MSB (5, 11, 0, FALSE, 63);    /* (0 .. 31), 64-bit op */
+       case 'T': INT_ADJ (10, 16, 511, 0, FALSE); /* (-512 .. 511) << 0 */
+       case 'U': INT_ADJ (10, 16, 511, 1, FALSE); /* (-512 .. 511) << 1 */
+       case 'V': INT_ADJ (10, 16, 511, 2, FALSE); /* (-512 .. 511) << 2 */
+       case 'W': INT_ADJ (10, 16, 511, 3, FALSE); /* (-512 .. 511) << 3 */
        case 'X': BIT (5, 16, 32);              /* (32 .. 63) */
        case 'Z': REG (5, 0, FP);
 
        case 'a': SINT (8, 6);
        case 'b': SINT (8, 3);
        case 'c': INT_ADJ (9, 6, 255, 4, FALSE); /* (-256 .. 255) << 4 */
+       case 'd': REG (5, 6, MSA);
+       case 'e': REG (5, 11, MSA);
        case 'f': INT_ADJ (15, 6, 32767, 3, TRUE);
        case 'g': SINT (5, 6);
+       case 'h': REG (5, 16, MSA);
        case 'i': JALX (26, 0, 2);
        case 'j': SINT (9, 7);
+       case 'k': REG (5, 6, GP);
+       case 'l': REG (5, 6, MSA_CTRL);
        case 'm': REG (0, 0, R5900_ACC);
+       case 'n': REG (5, 11, MSA_CTRL);
+       case 'o': SPECIAL (5, 16, IMM_INDEX);
        case 'p': BIT (5, 6, 0);                /* (0 .. 31), 32-bit op */
        case 'q': REG (0, 0, R5900_Q);
        case 'r': REG (0, 0, R5900_R);
        case 's': MSB (5, 11, 0, FALSE, 31);    /* (0 .. 31) */
        case 't': REG (5, 16, COPRO);
+       case 'u': SPECIAL (4, 16, IMM_INDEX);
+       case 'v': SPECIAL (3, 16, IMM_INDEX);
+       case 'w': SPECIAL (2, 16, IMM_INDEX);
        case 'x': BIT (5, 16, 0);               /* (0 .. 31) */
        case 'y': REG (0, 0, R5900_I);
        case 'z': REG (5, 0, GP);
+
+       case '~': BIT (2, 6, 1);                /* (1 .. 4) */
+       case '!': BIT (3, 16, 0);               /* (0 .. 7) */
+       case '@': BIT (4, 16, 0);               /* (0 .. 15) */
+       case '#': BIT (6, 16, 0);               /* (0 .. 63) */
+       case '$': UINT (5, 16);                 /* (0 .. 31) */
+       case '%': SINT (5, 16);                 /* (-16 .. 15) */
+       case '^': SINT (10, 11);                /* (-512 .. 511) */
+       case '&': SPECIAL (0, 0, IMM_INDEX);
+       case '*': SPECIAL (5, 16, REG_INDEX);
+       case '|': BIT (8, 16, 0);               /* (0 .. 255) */
        }
       break;
 
@@ -332,6 +357,10 @@ decode_mips_operand (const char *p)
 /* TLB invalidate instruction support.  */
 #define TLBINV ASE_EVA
 
+/* MSA support.  */
+#define MSA    ASE_MSA
+#define MSA64  ASE_MSA64
+
 /* The order of overloaded instructions matters.  Label arguments and
    register arguments look the same. Instructions that can have either
    for arguments must apear in the correct order in this table for the
@@ -2541,6 +2570,539 @@ const struct mips_opcode mips_builtin_opcodes[] =
 {"cachee",             "k,A(b)",       0,    (int) M_CACHEE_AB,INSN_MACRO,             0,              0,              EVA,    0 },
 {"prefe",              "k,+j(b)",      0x7c000023, 0xfc00007f, RD_3,                   0,              0,              EVA,    0 },
 {"prefe",              "k,A(b)",       0,    (int) M_PREFE_AB, INSN_MACRO,             0,              0,              EVA,    0 },
+/* MSA Extension.  */
+{"sll.b",              "+d,+e,+h",     0x7800000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sll.h",              "+d,+e,+h",     0x7820000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sll.w",              "+d,+e,+h",     0x7840000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sll.d",              "+d,+e,+h",     0x7860000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"slli.b",             "+d,+e,+!",     0x78700009, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"slli.h",             "+d,+e,+@",     0x78600009, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"slli.w",             "+d,+e,+x",     0x78400009, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"slli.d",             "+d,+e,+#",     0x78000009, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sra.b",              "+d,+e,+h",     0x7880000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sra.h",              "+d,+e,+h",     0x78a0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sra.w",              "+d,+e,+h",     0x78c0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"sra.d",              "+d,+e,+h",     0x78e0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srai.b",             "+d,+e,+!",     0x78f00009, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srai.h",             "+d,+e,+@",     0x78e00009, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srai.w",             "+d,+e,+x",     0x78c00009, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srai.d",             "+d,+e,+#",     0x78800009, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srl.b",              "+d,+e,+h",     0x7900000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srl.h",              "+d,+e,+h",     0x7920000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srl.w",              "+d,+e,+h",     0x7940000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srl.d",              "+d,+e,+h",     0x7960000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srli.b",             "+d,+e,+!",     0x79700009, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srli.h",             "+d,+e,+@",     0x79600009, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srli.w",             "+d,+e,+x",     0x79400009, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srli.d",             "+d,+e,+#",     0x79000009, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bclr.b",             "+d,+e,+h",     0x7980000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bclr.h",             "+d,+e,+h",     0x79a0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bclr.w",             "+d,+e,+h",     0x79c0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bclr.d",             "+d,+e,+h",     0x79e0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bclri.b",            "+d,+e,+!",     0x79f00009, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bclri.h",            "+d,+e,+@",     0x79e00009, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bclri.w",            "+d,+e,+x",     0x79c00009, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bclri.d",            "+d,+e,+#",     0x79800009, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bset.b",             "+d,+e,+h",     0x7a00000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bset.h",             "+d,+e,+h",     0x7a20000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bset.w",             "+d,+e,+h",     0x7a40000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bset.d",             "+d,+e,+h",     0x7a60000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bseti.b",            "+d,+e,+!",     0x7a700009, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bseti.h",            "+d,+e,+@",     0x7a600009, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bseti.w",            "+d,+e,+x",     0x7a400009, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bseti.d",            "+d,+e,+#",     0x7a000009, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bneg.b",             "+d,+e,+h",     0x7a80000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bneg.h",             "+d,+e,+h",     0x7aa0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bneg.w",             "+d,+e,+h",     0x7ac0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bneg.d",             "+d,+e,+h",     0x7ae0000d, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"bnegi.b",            "+d,+e,+!",     0x7af00009, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bnegi.h",            "+d,+e,+@",     0x7ae00009, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bnegi.w",            "+d,+e,+x",     0x7ac00009, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bnegi.d",            "+d,+e,+#",     0x7a800009, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"binsl.b",            "+d,+e,+h",     0x7b00000d, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsl.h",            "+d,+e,+h",     0x7b20000d, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsl.w",            "+d,+e,+h",     0x7b40000d, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsl.d",            "+d,+e,+h",     0x7b60000d, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsli.b",           "+d,+e,+!",     0x7b700009, 0xfff8003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsli.h",           "+d,+e,+@",     0x7b600009, 0xfff0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsli.w",           "+d,+e,+x",     0x7b400009, 0xffe0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsli.d",           "+d,+e,+#",     0x7b000009, 0xffc0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsr.b",            "+d,+e,+h",     0x7b80000d, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsr.h",            "+d,+e,+h",     0x7ba0000d, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsr.w",            "+d,+e,+h",     0x7bc0000d, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsr.d",            "+d,+e,+h",     0x7be0000d, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"binsri.b",           "+d,+e,+!",     0x7bf00009, 0xfff8003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsri.h",           "+d,+e,+@",     0x7be00009, 0xfff0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsri.w",           "+d,+e,+x",     0x7bc00009, 0xffe0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"binsri.d",           "+d,+e,+#",     0x7b800009, 0xffc0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"addv.b",             "+d,+e,+h",     0x7800000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"addv.h",             "+d,+e,+h",     0x7820000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"addv.w",             "+d,+e,+h",     0x7840000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"addv.d",             "+d,+e,+h",     0x7860000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"addvi.b",            "+d,+e,+$",     0x78000006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"addvi.h",            "+d,+e,+$",     0x78200006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"addvi.w",            "+d,+e,+$",     0x78400006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"addvi.d",            "+d,+e,+$",     0x78600006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"subv.b",             "+d,+e,+h",     0x7880000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subv.h",             "+d,+e,+h",     0x78a0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subv.w",             "+d,+e,+h",     0x78c0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subv.d",             "+d,+e,+h",     0x78e0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subvi.b",            "+d,+e,+$",     0x78800006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"subvi.h",            "+d,+e,+$",     0x78a00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"subvi.w",            "+d,+e,+$",     0x78c00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"subvi.d",            "+d,+e,+$",     0x78e00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"max_s.b",            "+d,+e,+h",     0x7900000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_s.h",            "+d,+e,+h",     0x7920000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_s.w",            "+d,+e,+h",     0x7940000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_s.d",            "+d,+e,+h",     0x7960000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"maxi_s.b",           "+d,+e,+%",     0x79000006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_s.h",           "+d,+e,+%",     0x79200006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_s.w",           "+d,+e,+%",     0x79400006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_s.d",           "+d,+e,+%",     0x79600006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"max_u.b",            "+d,+e,+h",     0x7980000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_u.h",            "+d,+e,+h",     0x79a0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_u.w",            "+d,+e,+h",     0x79c0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_u.d",            "+d,+e,+h",     0x79e0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"maxi_u.b",           "+d,+e,+$",     0x79800006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_u.h",           "+d,+e,+$",     0x79a00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_u.w",           "+d,+e,+$",     0x79c00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"maxi_u.d",           "+d,+e,+$",     0x79e00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"min_s.b",            "+d,+e,+h",     0x7a00000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_s.h",            "+d,+e,+h",     0x7a20000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_s.w",            "+d,+e,+h",     0x7a40000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_s.d",            "+d,+e,+h",     0x7a60000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mini_s.b",           "+d,+e,+%",     0x7a000006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_s.h",           "+d,+e,+%",     0x7a200006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_s.w",           "+d,+e,+%",     0x7a400006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_s.d",           "+d,+e,+%",     0x7a600006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"min_u.b",            "+d,+e,+h",     0x7a80000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_u.h",            "+d,+e,+h",     0x7aa0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_u.w",            "+d,+e,+h",     0x7ac0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_u.d",            "+d,+e,+h",     0x7ae0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mini_u.b",           "+d,+e,+$",     0x7a800006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_u.h",           "+d,+e,+$",     0x7aa00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_u.w",           "+d,+e,+$",     0x7ac00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"mini_u.d",           "+d,+e,+$",     0x7ae00006, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"max_a.b",            "+d,+e,+h",     0x7b00000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_a.h",            "+d,+e,+h",     0x7b20000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_a.w",            "+d,+e,+h",     0x7b40000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"max_a.d",            "+d,+e,+h",     0x7b60000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_a.b",            "+d,+e,+h",     0x7b80000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_a.h",            "+d,+e,+h",     0x7ba0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_a.w",            "+d,+e,+h",     0x7bc0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"min_a.d",            "+d,+e,+h",     0x7be0000e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceq.b",              "+d,+e,+h",     0x7800000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceq.h",              "+d,+e,+h",     0x7820000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceq.w",              "+d,+e,+h",     0x7840000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceq.d",              "+d,+e,+h",     0x7860000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ceqi.b",             "+d,+e,+%",     0x78000007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ceqi.h",             "+d,+e,+%",     0x78200007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ceqi.w",             "+d,+e,+%",     0x78400007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ceqi.d",             "+d,+e,+%",     0x78600007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clt_s.b",            "+d,+e,+h",     0x7900000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_s.h",            "+d,+e,+h",     0x7920000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_s.w",            "+d,+e,+h",     0x7940000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_s.d",            "+d,+e,+h",     0x7960000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clti_s.b",           "+d,+e,+%",     0x79000007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_s.h",           "+d,+e,+%",     0x79200007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_s.w",           "+d,+e,+%",     0x79400007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_s.d",           "+d,+e,+%",     0x79600007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clt_u.b",            "+d,+e,+h",     0x7980000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_u.h",            "+d,+e,+h",     0x79a0000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_u.w",            "+d,+e,+h",     0x79c0000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clt_u.d",            "+d,+e,+h",     0x79e0000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clti_u.b",           "+d,+e,+$",     0x79800007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_u.h",           "+d,+e,+$",     0x79a00007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_u.w",           "+d,+e,+$",     0x79c00007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clti_u.d",           "+d,+e,+$",     0x79e00007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"cle_s.b",            "+d,+e,+h",     0x7a00000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_s.h",            "+d,+e,+h",     0x7a20000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_s.w",            "+d,+e,+h",     0x7a40000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_s.d",            "+d,+e,+h",     0x7a60000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clei_s.b",           "+d,+e,+%",     0x7a000007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_s.h",           "+d,+e,+%",     0x7a200007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_s.w",           "+d,+e,+%",     0x7a400007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_s.d",           "+d,+e,+%",     0x7a600007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"cle_u.b",            "+d,+e,+h",     0x7a80000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_u.h",            "+d,+e,+h",     0x7aa0000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_u.w",            "+d,+e,+h",     0x7ac0000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"cle_u.d",            "+d,+e,+h",     0x7ae0000f, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"clei_u.b",           "+d,+e,+$",     0x7a800007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_u.h",           "+d,+e,+$",     0x7aa00007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_u.w",           "+d,+e,+$",     0x7ac00007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"clei_u.d",           "+d,+e,+$",     0x7ae00007, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ld.b",               "+d,+T(d)",     0x78000020, 0xfc00003f, WR_1|RD_3|LDD,          0,              0,              MSA,    0 },
+{"ld.h",               "+d,+U(d)",     0x78000021, 0xfc00003f, WR_1|RD_3|LDD,          0,              0,              MSA,    0 },
+{"ld.w",               "+d,+V(d)",     0x78000022, 0xfc00003f, WR_1|RD_3|LDD,          0,              0,              MSA,    0 },
+{"ld.d",               "+d,+W(d)",     0x78000023, 0xfc00003f, WR_1|RD_3|LDD,          0,              0,              MSA,    0 },
+{"st.b",               "+d,+T(d)",     0x78000024, 0xfc00003f, RD_1|RD_3|SM,           0,              0,              MSA,    0 },
+{"st.h",               "+d,+U(d)",     0x78000025, 0xfc00003f, RD_1|RD_3|SM,           0,              0,              MSA,    0 },
+{"st.w",               "+d,+V(d)",     0x78000026, 0xfc00003f, RD_1|RD_3|SM,           0,              0,              MSA,    0 },
+{"st.d",               "+d,+W(d)",     0x78000027, 0xfc00003f, RD_1|RD_3|SM,           0,              0,              MSA,    0 },
+{"sat_s.b",            "+d,+e,+!",     0x7870000a, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_s.h",            "+d,+e,+@",     0x7860000a, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_s.w",            "+d,+e,+x",     0x7840000a, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_s.d",            "+d,+e,+#",     0x7800000a, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_u.b",            "+d,+e,+!",     0x78f0000a, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_u.h",            "+d,+e,+@",     0x78e0000a, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_u.w",            "+d,+e,+x",     0x78c0000a, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"sat_u.d",            "+d,+e,+#",     0x7880000a, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"add_a.b",            "+d,+e,+h",     0x78000010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"add_a.h",            "+d,+e,+h",     0x78200010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"add_a.w",            "+d,+e,+h",     0x78400010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"add_a.d",            "+d,+e,+h",     0x78600010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_a.b",           "+d,+e,+h",     0x78800010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_a.h",           "+d,+e,+h",     0x78a00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_a.w",           "+d,+e,+h",     0x78c00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_a.d",           "+d,+e,+h",     0x78e00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_s.b",           "+d,+e,+h",     0x79000010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_s.h",           "+d,+e,+h",     0x79200010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_s.w",           "+d,+e,+h",     0x79400010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_s.d",           "+d,+e,+h",     0x79600010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_u.b",           "+d,+e,+h",     0x79800010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_u.h",           "+d,+e,+h",     0x79a00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_u.w",           "+d,+e,+h",     0x79c00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"adds_u.d",           "+d,+e,+h",     0x79e00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_s.b",            "+d,+e,+h",     0x7a000010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_s.h",            "+d,+e,+h",     0x7a200010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_s.w",            "+d,+e,+h",     0x7a400010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_s.d",            "+d,+e,+h",     0x7a600010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_u.b",            "+d,+e,+h",     0x7a800010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_u.h",            "+d,+e,+h",     0x7aa00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_u.w",            "+d,+e,+h",     0x7ac00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ave_u.d",            "+d,+e,+h",     0x7ae00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_s.b",           "+d,+e,+h",     0x7b000010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_s.h",           "+d,+e,+h",     0x7b200010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_s.w",           "+d,+e,+h",     0x7b400010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_s.d",           "+d,+e,+h",     0x7b600010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_u.b",           "+d,+e,+h",     0x7b800010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_u.h",           "+d,+e,+h",     0x7ba00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_u.w",           "+d,+e,+h",     0x7bc00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"aver_u.d",           "+d,+e,+h",     0x7be00010, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_s.b",           "+d,+e,+h",     0x78000011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_s.h",           "+d,+e,+h",     0x78200011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_s.w",           "+d,+e,+h",     0x78400011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_s.d",           "+d,+e,+h",     0x78600011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_u.b",           "+d,+e,+h",     0x78800011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_u.h",           "+d,+e,+h",     0x78a00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_u.w",           "+d,+e,+h",     0x78c00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subs_u.d",           "+d,+e,+h",     0x78e00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsus_u.b",         "+d,+e,+h",     0x79000011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsus_u.h",         "+d,+e,+h",     0x79200011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsus_u.w",         "+d,+e,+h",     0x79400011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsus_u.d",         "+d,+e,+h",     0x79600011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsuu_s.b",         "+d,+e,+h",     0x79800011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsuu_s.h",         "+d,+e,+h",     0x79a00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsuu_s.w",         "+d,+e,+h",     0x79c00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"subsuu_s.d",         "+d,+e,+h",     0x79e00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_s.b",           "+d,+e,+h",     0x7a000011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_s.h",           "+d,+e,+h",     0x7a200011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_s.w",           "+d,+e,+h",     0x7a400011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_s.d",           "+d,+e,+h",     0x7a600011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_u.b",           "+d,+e,+h",     0x7a800011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_u.h",           "+d,+e,+h",     0x7aa00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_u.w",           "+d,+e,+h",     0x7ac00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"asub_u.d",           "+d,+e,+h",     0x7ae00011, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulv.b",             "+d,+e,+h",     0x78000012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulv.h",             "+d,+e,+h",     0x78200012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulv.w",             "+d,+e,+h",     0x78400012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulv.d",             "+d,+e,+h",     0x78600012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"maddv.b",            "+d,+e,+h",     0x78800012, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"maddv.h",            "+d,+e,+h",     0x78a00012, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"maddv.w",            "+d,+e,+h",     0x78c00012, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"maddv.d",            "+d,+e,+h",     0x78e00012, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubv.b",            "+d,+e,+h",     0x79000012, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubv.h",            "+d,+e,+h",     0x79200012, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubv.w",            "+d,+e,+h",     0x79400012, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubv.d",            "+d,+e,+h",     0x79600012, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"div_s.b",            "+d,+e,+h",     0x7a000012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_s.h",            "+d,+e,+h",     0x7a200012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_s.w",            "+d,+e,+h",     0x7a400012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_s.d",            "+d,+e,+h",     0x7a600012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_u.b",            "+d,+e,+h",     0x7a800012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_u.h",            "+d,+e,+h",     0x7aa00012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_u.w",            "+d,+e,+h",     0x7ac00012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"div_u.d",            "+d,+e,+h",     0x7ae00012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_s.b",            "+d,+e,+h",     0x7b000012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_s.h",            "+d,+e,+h",     0x7b200012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_s.w",            "+d,+e,+h",     0x7b400012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_s.d",            "+d,+e,+h",     0x7b600012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_u.b",            "+d,+e,+h",     0x7b800012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_u.h",            "+d,+e,+h",     0x7ba00012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_u.w",            "+d,+e,+h",     0x7bc00012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mod_u.d",            "+d,+e,+h",     0x7be00012, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_s.h",           "+d,+e,+h",     0x78200013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_s.w",           "+d,+e,+h",     0x78400013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_s.d",           "+d,+e,+h",     0x78600013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_u.h",           "+d,+e,+h",     0x78a00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_u.w",           "+d,+e,+h",     0x78c00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dotp_u.d",           "+d,+e,+h",     0x78e00013, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dpadd_s.h",          "+d,+e,+h",     0x79200013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_s.w",          "+d,+e,+h",     0x79400013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_s.d",          "+d,+e,+h",     0x79600013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_u.h",          "+d,+e,+h",     0x79a00013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_u.w",          "+d,+e,+h",     0x79c00013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpadd_u.d",          "+d,+e,+h",     0x79e00013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_s.h",          "+d,+e,+h",     0x7a200013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_s.w",          "+d,+e,+h",     0x7a400013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_s.d",          "+d,+e,+h",     0x7a600013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_u.h",          "+d,+e,+h",     0x7aa00013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_u.w",          "+d,+e,+h",     0x7ac00013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"dpsub_u.d",          "+d,+e,+h",     0x7ae00013, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sld.b",              "+d,+e+*",      0x78000014, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sld.h",              "+d,+e+*",      0x78200014, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sld.w",              "+d,+e+*",      0x78400014, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sld.d",              "+d,+e+*",      0x78600014, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"sldi.b",             "+d,+e+o",      0x78000019, 0xffe0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"sldi.h",             "+d,+e+u",      0x78200019, 0xfff0003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"sldi.w",             "+d,+e+v",      0x78300019, 0xfff8003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"sldi.d",             "+d,+e+w",      0x78380019, 0xfffc003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"splat.b",            "+d,+e+*",      0x78800014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"splat.h",            "+d,+e+*",      0x78a00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"splat.w",            "+d,+e+*",      0x78c00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"splat.d",            "+d,+e+*",      0x78e00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"splati.b",           "+d,+e+o",      0x78400019, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"splati.h",           "+d,+e+u",      0x78600019, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"splati.w",           "+d,+e+v",      0x78700019, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"splati.d",           "+d,+e+w",      0x78780019, 0xfffc003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"pckev.b",            "+d,+e,+h",     0x79000014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckev.h",            "+d,+e,+h",     0x79200014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckev.w",            "+d,+e,+h",     0x79400014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckev.d",            "+d,+e,+h",     0x79600014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckod.b",            "+d,+e,+h",     0x79800014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckod.h",            "+d,+e,+h",     0x79a00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckod.w",            "+d,+e,+h",     0x79c00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"pckod.d",            "+d,+e,+h",     0x79e00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvl.b",             "+d,+e,+h",     0x7a000014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvl.h",             "+d,+e,+h",     0x7a200014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvl.w",             "+d,+e,+h",     0x7a400014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvl.d",             "+d,+e,+h",     0x7a600014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvr.b",             "+d,+e,+h",     0x7a800014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvr.h",             "+d,+e,+h",     0x7aa00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvr.w",             "+d,+e,+h",     0x7ac00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvr.d",             "+d,+e,+h",     0x7ae00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvev.b",            "+d,+e,+h",     0x7b000014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvev.h",            "+d,+e,+h",     0x7b200014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvev.w",            "+d,+e,+h",     0x7b400014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvev.d",            "+d,+e,+h",     0x7b600014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvod.b",            "+d,+e,+h",     0x7b800014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvod.h",            "+d,+e,+h",     0x7ba00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvod.w",            "+d,+e,+h",     0x7bc00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ilvod.d",            "+d,+e,+h",     0x7be00014, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"vshf.b",             "+d,+e,+h",     0x78000015, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"vshf.h",             "+d,+e,+h",     0x78200015, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"vshf.w",             "+d,+e,+h",     0x78400015, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"vshf.d",             "+d,+e,+h",     0x78600015, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"srar.b",             "+d,+e,+h",     0x78800015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srar.h",             "+d,+e,+h",     0x78a00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srar.w",             "+d,+e,+h",     0x78c00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srar.d",             "+d,+e,+h",     0x78e00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srari.b",            "+d,+e,+!",     0x7970000a, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srari.h",            "+d,+e,+@",     0x7960000a, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srari.w",            "+d,+e,+x",     0x7940000a, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srari.d",            "+d,+e,+#",     0x7900000a, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srlr.b",             "+d,+e,+h",     0x79000015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srlr.h",             "+d,+e,+h",     0x79200015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srlr.w",             "+d,+e,+h",     0x79400015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srlr.d",             "+d,+e,+h",     0x79600015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"srlri.b",            "+d,+e,+!",     0x79f0000a, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srlri.h",            "+d,+e,+@",     0x79e0000a, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srlri.w",            "+d,+e,+x",     0x79c0000a, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"srlri.d",            "+d,+e,+#",     0x7980000a, 0xffc0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"hadd_s.h",           "+d,+e,+h",     0x7a200015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_s.w",           "+d,+e,+h",     0x7a400015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_s.d",           "+d,+e,+h",     0x7a600015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_u.h",           "+d,+e,+h",     0x7aa00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_u.w",           "+d,+e,+h",     0x7ac00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hadd_u.d",           "+d,+e,+h",     0x7ae00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_s.h",           "+d,+e,+h",     0x7b200015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_s.w",           "+d,+e,+h",     0x7b400015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_s.d",           "+d,+e,+h",     0x7b600015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_u.h",           "+d,+e,+h",     0x7ba00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_u.w",           "+d,+e,+h",     0x7bc00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"hsub_u.d",           "+d,+e,+h",     0x7be00015, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"and.v",              "+d,+e,+h",     0x7800001e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"andi.b",             "+d,+e,+|",     0x78000000, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"or.v",               "+d,+e,+h",     0x7820001e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ori.b",              "+d,+e,+|",     0x79000000, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nor.v",              "+d,+e,+h",     0x7840001e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"nori.b",             "+d,+e,+|",     0x7a000000, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"xor.v",              "+d,+e,+h",     0x7860001e, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"xori.b",             "+d,+e,+|",     0x7b000000, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bmnz.v",             "+d,+e,+h",     0x7880001e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"bmnzi.b",            "+d,+e,+|",     0x78000001, 0xff00003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"bmz.v",              "+d,+e,+h",     0x78a0001e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"bmzi.b",             "+d,+e,+|",     0x79000001, 0xff00003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"bsel.v",             "+d,+e,+h",     0x78c0001e, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"bseli.b",            "+d,+e,+|",     0x7a000001, 0xff00003f, MOD_1|RD_2,             0,              0,              MSA,    0 },
+{"shf.b",              "+d,+e,+|",     0x78000002, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"shf.h",              "+d,+e,+|",     0x79000002, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"shf.w",              "+d,+e,+|",     0x7a000002, 0xff00003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"bnz.v",              "+h,p",         0x45e00000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.v",               "+h,p",         0x45600000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"fill.b",             "+d,d",         0x7b00001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fill.h",             "+d,d",         0x7b01001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fill.w",             "+d,d",         0x7b02001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fill.d",             "+d,d",         0x7b03001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA64,  0 },
+{"pcnt.b",             "+d,+e",        0x7b04001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"pcnt.h",             "+d,+e",        0x7b05001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"pcnt.w",             "+d,+e",        0x7b06001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"pcnt.d",             "+d,+e",        0x7b07001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nloc.b",             "+d,+e",        0x7b08001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nloc.h",             "+d,+e",        0x7b09001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nloc.w",             "+d,+e",        0x7b0a001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nloc.d",             "+d,+e",        0x7b0b001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nlzc.b",             "+d,+e",        0x7b0c001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nlzc.h",             "+d,+e",        0x7b0d001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nlzc.w",             "+d,+e",        0x7b0e001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"nlzc.d",             "+d,+e",        0x7b0f001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_s.b",           "+k,+e+o",      0x78800019, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_s.h",           "+k,+e+u",      0x78a00019, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_s.w",           "+k,+e+v",      0x78b00019, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_s.d",           "+k,+e+w",      0x78b80019, 0xfffc003f, WR_1|RD_2,              0,              0,              MSA64,  0 },
+{"copy_u.b",           "+k,+e+o",      0x78c00019, 0xffe0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_u.h",           "+k,+e+u",      0x78e00019, 0xfff0003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_u.w",           "+k,+e+v",      0x78f00019, 0xfff8003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"copy_u.d",           "+k,+e+w",      0x78f80019, 0xfffc003f, WR_1|RD_2,              0,              0,              MSA64,  0 },
+{"insert.b",           "+d+o,d",       0x79000019, 0xffe0003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insert.h",           "+d+u,d",       0x79200019, 0xfff0003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insert.w",           "+d+v,d",       0x79300019, 0xfff8003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insert.d",           "+d+w,d",       0x79380019, 0xfffc003f, MOD_1|RD_3,             0,              0,              MSA64,  0 },
+{"insve.b",            "+d+o,+e+&",    0x79400019, 0xffe0003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insve.h",            "+d+u,+e+&",    0x79600019, 0xfff0003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insve.w",            "+d+v,+e+&",    0x79700019, 0xfff8003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"insve.d",            "+d+w,+e+&",    0x79780019, 0xfffc003f, MOD_1|RD_3,             0,              0,              MSA,    0 },
+{"bnz.b",              "+h,p",         0x47800000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bnz.h",              "+h,p",         0x47a00000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bnz.w",              "+h,p",         0x47c00000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bnz.d",              "+h,p",         0x47e00000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.b",               "+h,p",         0x47000000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.h",               "+h,p",         0x47200000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.w",               "+h,p",         0x47400000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"bz.d",               "+h,p",         0x47600000, 0xffe00000, RD_1|CBD,               0,              0,              MSA,    0 },
+{"ldi.b",              "+d,+^",        0x7b000007, 0xffe0003f, WR_1,                   0,              0,              MSA,    0 },
+{"ldi.h",              "+d,+^",        0x7b200007, 0xffe0003f, WR_1,                   0,              0,              MSA,    0 },
+{"ldi.w",              "+d,+^",        0x7b400007, 0xffe0003f, WR_1,                   0,              0,              MSA,    0 },
+{"ldi.d",              "+d,+^",        0x7b600007, 0xffe0003f, WR_1,                   0,              0,              MSA,    0 },
+{"fcaf.w",             "+d,+e,+h",     0x7800001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcaf.d",             "+d,+e,+h",     0x7820001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcun.w",             "+d,+e,+h",     0x7840001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcun.d",             "+d,+e,+h",     0x7860001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fceq.w",             "+d,+e,+h",     0x7880001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fceq.d",             "+d,+e,+h",     0x78a0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcueq.w",            "+d,+e,+h",     0x78c0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcueq.d",            "+d,+e,+h",     0x78e0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fclt.w",             "+d,+e,+h",     0x7900001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fclt.d",             "+d,+e,+h",     0x7920001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcult.w",            "+d,+e,+h",     0x7940001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcult.d",            "+d,+e,+h",     0x7960001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcle.w",             "+d,+e,+h",     0x7980001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcle.d",             "+d,+e,+h",     0x79a0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcule.w",            "+d,+e,+h",     0x79c0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcule.d",            "+d,+e,+h",     0x79e0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsaf.w",             "+d,+e,+h",     0x7a00001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsaf.d",             "+d,+e,+h",     0x7a20001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsun.w",             "+d,+e,+h",     0x7a40001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsun.d",             "+d,+e,+h",     0x7a60001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fseq.w",             "+d,+e,+h",     0x7a80001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fseq.d",             "+d,+e,+h",     0x7aa0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsueq.w",            "+d,+e,+h",     0x7ac0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsueq.d",            "+d,+e,+h",     0x7ae0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fslt.w",             "+d,+e,+h",     0x7b00001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fslt.d",             "+d,+e,+h",     0x7b20001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsult.w",            "+d,+e,+h",     0x7b40001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsult.d",            "+d,+e,+h",     0x7b60001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsle.w",             "+d,+e,+h",     0x7b80001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsle.d",             "+d,+e,+h",     0x7ba0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsule.w",            "+d,+e,+h",     0x7bc0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsule.d",            "+d,+e,+h",     0x7be0001a, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fadd.w",             "+d,+e,+h",     0x7800001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fadd.d",             "+d,+e,+h",     0x7820001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsub.w",             "+d,+e,+h",     0x7840001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsub.d",             "+d,+e,+h",     0x7860001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmul.w",             "+d,+e,+h",     0x7880001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmul.d",             "+d,+e,+h",     0x78a0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fdiv.w",             "+d,+e,+h",     0x78c0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fdiv.d",             "+d,+e,+h",     0x78e0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmadd.w",            "+d,+e,+h",     0x7900001b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fmadd.d",            "+d,+e,+h",     0x7920001b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fmsub.w",            "+d,+e,+h",     0x7940001b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fmsub.d",            "+d,+e,+h",     0x7960001b, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fexp2.w",            "+d,+e,+h",     0x79c0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fexp2.d",            "+d,+e,+h",     0x79e0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fexdo.h",            "+d,+e,+h",     0x7a00001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fexdo.w",            "+d,+e,+h",     0x7a20001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ftq.h",              "+d,+e,+h",     0x7a80001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"ftq.w",              "+d,+e,+h",     0x7aa0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmin.w",             "+d,+e,+h",     0x7b00001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmin.d",             "+d,+e,+h",     0x7b20001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmin_a.w",           "+d,+e,+h",     0x7b40001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmin_a.d",           "+d,+e,+h",     0x7b60001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmax.w",             "+d,+e,+h",     0x7b80001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmax.d",             "+d,+e,+h",     0x7ba0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmax_a.w",           "+d,+e,+h",     0x7bc0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fmax_a.d",           "+d,+e,+h",     0x7be0001b, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcor.w",             "+d,+e,+h",     0x7840001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcor.d",             "+d,+e,+h",     0x7860001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcune.w",            "+d,+e,+h",     0x7880001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcune.d",            "+d,+e,+h",     0x78a0001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcne.w",             "+d,+e,+h",     0x78c0001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fcne.d",             "+d,+e,+h",     0x78e0001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mul_q.h",            "+d,+e,+h",     0x7900001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mul_q.w",            "+d,+e,+h",     0x7920001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"madd_q.h",           "+d,+e,+h",     0x7940001c, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"madd_q.w",           "+d,+e,+h",     0x7960001c, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msub_q.h",           "+d,+e,+h",     0x7980001c, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msub_q.w",           "+d,+e,+h",     0x79a0001c, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fsor.w",             "+d,+e,+h",     0x7a40001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsor.d",             "+d,+e,+h",     0x7a60001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsune.w",            "+d,+e,+h",     0x7a80001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsune.d",            "+d,+e,+h",     0x7aa0001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsne.w",             "+d,+e,+h",     0x7ac0001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"fsne.d",             "+d,+e,+h",     0x7ae0001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulr_q.h",           "+d,+e,+h",     0x7b00001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"mulr_q.w",           "+d,+e,+h",     0x7b20001c, 0xffe0003f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"maddr_q.h",          "+d,+e,+h",     0x7b40001c, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"maddr_q.w",          "+d,+e,+h",     0x7b60001c, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubr_q.h",          "+d,+e,+h",     0x7b80001c, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"msubr_q.w",          "+d,+e,+h",     0x7ba0001c, 0xffe0003f, MOD_1|RD_2|RD_3,        0,              0,              MSA,    0 },
+{"fclass.w",           "+d,+e",        0x7b20001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fclass.d",           "+d,+e",        0x7b21001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftrunc_s.w",         "+d,+e",        0x7b22001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftrunc_s.d",         "+d,+e",        0x7b23001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftrunc_u.w",         "+d,+e",        0x7b24001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftrunc_u.d",         "+d,+e",        0x7b25001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fsqrt.w",            "+d,+e",        0x7b26001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fsqrt.d",            "+d,+e",        0x7b27001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frsqrt.w",           "+d,+e",        0x7b28001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frsqrt.d",           "+d,+e",        0x7b29001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frcp.w",             "+d,+e",        0x7b2a001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frcp.d",             "+d,+e",        0x7b2b001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frint.w",            "+d,+e",        0x7b2c001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"frint.d",            "+d,+e",        0x7b2d001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"flog2.w",            "+d,+e",        0x7b2e001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"flog2.d",            "+d,+e",        0x7b2f001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fexupl.w",           "+d,+e",        0x7b30001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fexupl.d",           "+d,+e",        0x7b31001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fexupr.w",           "+d,+e",        0x7b32001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"fexupr.d",           "+d,+e",        0x7b33001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffql.w",             "+d,+e",        0x7b34001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffql.d",             "+d,+e",        0x7b35001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffqr.w",             "+d,+e",        0x7b36001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffqr.d",             "+d,+e",        0x7b37001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftint_s.w",          "+d,+e",        0x7b38001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftint_s.d",          "+d,+e",        0x7b39001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftint_u.w",          "+d,+e",        0x7b3a001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ftint_u.d",          "+d,+e",        0x7b3b001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffint_s.w",          "+d,+e",        0x7b3c001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffint_s.d",          "+d,+e",        0x7b3d001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffint_u.w",          "+d,+e",        0x7b3e001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ffint_u.d",          "+d,+e",        0x7b3f001e, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"ctcmsa",             "+l,d",         0x783e0019, 0xffff003f, RD_2|COD,               0,              0,              MSA,    0 },
+{"cfcmsa",             "+k,+n",        0x787e0019, 0xffff003f, WR_1|COD,               0,              0,              MSA,    0 },
+{"move.v",             "+d,+e",        0x78be0019, 0xffff003f, WR_1|RD_2,              0,              0,              MSA,    0 },
+{"lsa",                        "d,v,t,+~",     0x00000005, 0xfc00073f, WR_1|RD_2|RD_3,         0,              0,              MSA,    0 },
+{"dlsa",               "d,v,t,+~",     0x00000015, 0xfc00073f, WR_1|RD_2|RD_3,         0,              0,              MSA64,  0 },
 /* No hazard protection on coprocessor instructions--they shouldn't
    change the state of the processor and if they do it's up to the
    user to put in nops as necessary.  These are at the end so that the
This page took 0.077988 seconds and 4 git commands to generate.