| /* Print mips instructions for GDB, the GNU debugger, or for objdump. |
| Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
| 2000, 2001, 2002, 2003 |
| Free Software Foundation, Inc. |
| Contributed by Nobuyuki Hikichi(hikichi@sra.co.jp). |
| |
| This file is part of GDB, GAS, and the GNU binutils. |
| |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation; either version 2 of the License, or |
| (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program; if not, see <http://www.gnu.org/licenses/>. */ |
| |
| #include "qemu/osdep.h" |
| #include "disas/dis-asm.h" |
| |
| /* mips.h. Mips opcode list for GDB, the GNU debugger. |
| Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 |
| Free Software Foundation, Inc. |
| Contributed by Ralph Campbell and OSF |
| Commented and modified by Ian Lance Taylor, Cygnus Support |
| |
| This file is part of GDB, GAS, and the GNU binutils. |
| |
| GDB, GAS, and the GNU binutils are free software; you can redistribute |
| them and/or modify them under the terms of the GNU General Public |
| License as published by the Free Software Foundation; either version |
| 1, or (at your option) any later version. |
| |
| GDB, GAS, and the GNU binutils are distributed in the hope that they |
| will be useful, but WITHOUT ANY WARRANTY; without even the implied |
| warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| the GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this file; see the file COPYING. If not, |
| see <http://www.gnu.org/licenses/>. */ |
| |
| /* These are bit masks and shift counts to use to access the various |
| fields of an instruction. To retrieve the X field of an |
| instruction, use the expression |
| (i >> OP_SH_X) & OP_MASK_X |
| To set the same field (to j), use |
| i = (i &~ (OP_MASK_X << OP_SH_X)) | (j << OP_SH_X) |
| |
| Make sure you use fields that are appropriate for the instruction, |
| of course. |
| |
| The 'i' format uses OP, RS, RT and IMMEDIATE. |
| |
| The 'j' format uses OP and TARGET. |
| |
| The 'r' format uses OP, RS, RT, RD, SHAMT and FUNCT. |
| |
| The 'b' format uses OP, RS, RT and DELTA. |
| |
| The floating point 'i' format uses OP, RS, RT and IMMEDIATE. |
| |
| The floating point 'r' format uses OP, FMT, FT, FS, FD and FUNCT. |
| |
| A breakpoint instruction uses OP, CODE and SPEC (10 bits of the |
| breakpoint instruction are not defined; Kane says the breakpoint |
| code field in BREAK is 20 bits; yet MIPS assemblers and debuggers |
| only use ten bits). An optional two-operand form of break/sdbbp |
| allows the lower ten bits to be set too, and MIPS32 and later |
| architectures allow 20 bits to be set with a signal operand |
| (using CODE20). |
| |
| The syscall instruction uses CODE20. |
| |
| The general coprocessor instructions use COPZ. */ |
| |
| #define OP_MASK_OP 0x3f |
| #define OP_SH_OP 26 |
| #define OP_MASK_RS 0x1f |
| #define OP_SH_RS 21 |
| #define OP_MASK_FR 0x1f |
| #define OP_SH_FR 21 |
| #define OP_MASK_FMT 0x1f |
| #define OP_SH_FMT 21 |
| #define OP_MASK_BCC 0x7 |
| #define OP_SH_BCC 18 |
| #define OP_MASK_CODE 0x3ff |
| #define OP_SH_CODE 16 |
| #define OP_MASK_CODE2 0x3ff |
| #define OP_SH_CODE2 6 |
| #define OP_MASK_RT 0x1f |
| #define OP_SH_RT 16 |
| #define OP_MASK_FT 0x1f |
| #define OP_SH_FT 16 |
| #define OP_MASK_CACHE 0x1f |
| #define OP_SH_CACHE 16 |
| #define OP_MASK_RD 0x1f |
| #define OP_SH_RD 11 |
| #define OP_MASK_FS 0x1f |
| #define OP_SH_FS 11 |
| #define OP_MASK_PREFX 0x1f |
| #define OP_SH_PREFX 11 |
| #define OP_MASK_CCC 0x7 |
| #define OP_SH_CCC 8 |
| #define OP_MASK_CODE20 0xfffff /* 20 bit syscall/breakpoint code. */ |
| #define OP_SH_CODE20 6 |
| #define OP_MASK_SHAMT 0x1f |
| #define OP_SH_SHAMT 6 |
| #define OP_MASK_FD 0x1f |
| #define OP_SH_FD 6 |
| #define OP_MASK_TARGET 0x3ffffff |
| #define OP_SH_TARGET 0 |
| #define OP_MASK_COPZ 0x1ffffff |
| #define OP_SH_COPZ 0 |
| #define OP_MASK_IMMEDIATE 0xffff |
| #define OP_SH_IMMEDIATE 0 |
| #define OP_MASK_DELTA 0xffff |
| #define OP_SH_DELTA 0 |
| #define OP_MASK_DELTA_R6 0x1ff |
| #define OP_SH_DELTA_R6 7 |
| #define OP_MASK_FUNCT 0x3f |
| #define OP_SH_FUNCT 0 |
| #define OP_MASK_SPEC 0x3f |
| #define OP_SH_SPEC 0 |
| #define OP_SH_LOCC 8 /* FP condition code. */ |
| #define OP_SH_HICC 18 /* FP condition code. */ |
| #define OP_MASK_CC 0x7 |
| #define OP_SH_COP1NORM 25 /* Normal COP1 encoding. */ |
| #define OP_MASK_COP1NORM 0x1 /* a single bit. */ |
| #define OP_SH_COP1SPEC 21 /* COP1 encodings. */ |
| #define OP_MASK_COP1SPEC 0xf |
| #define OP_MASK_COP1SCLR 0x4 |
| #define OP_MASK_COP1CMP 0x3 |
| #define OP_SH_COP1CMP 4 |
| #define OP_SH_FORMAT 21 /* FP short format field. */ |
| #define OP_MASK_FORMAT 0x7 |
| #define OP_SH_TRUE 16 |
| #define OP_MASK_TRUE 0x1 |
| #define OP_SH_GE 17 |
| #define OP_MASK_GE 0x01 |
| #define OP_SH_UNSIGNED 16 |
| #define OP_MASK_UNSIGNED 0x1 |
| #define OP_SH_HINT 16 |
| #define OP_MASK_HINT 0x1f |
| #define OP_SH_MMI 0 /* Multimedia (parallel) op. */ |
| #define OP_MASK_MMI 0x3f |
| #define OP_SH_MMISUB 6 |
| #define OP_MASK_MMISUB 0x1f |
| #define OP_MASK_PERFREG 0x1f /* Performance monitoring. */ |
| #define OP_SH_PERFREG 1 |
| #define OP_SH_SEL 0 /* Coprocessor select field. */ |
| #define OP_MASK_SEL 0x7 /* The sel field of mfcZ and mtcZ. */ |
| #define OP_SH_CODE19 6 /* 19 bit wait code. */ |
| #define OP_MASK_CODE19 0x7ffff |
| #define OP_SH_ALN 21 |
| #define OP_MASK_ALN 0x7 |
| #define OP_SH_VSEL 21 |
| #define OP_MASK_VSEL 0x1f |
| #define OP_MASK_VECBYTE 0x7 /* Selector field is really 4 bits, |
| but 0x8-0xf don't select bytes. */ |
| #define OP_SH_VECBYTE 22 |
| #define OP_MASK_VECALIGN 0x7 /* Vector byte-align (alni.ob) op. */ |
| #define OP_SH_VECALIGN 21 |
| #define OP_MASK_INSMSB 0x1f /* "ins" MSB. */ |
| #define OP_SH_INSMSB 11 |
| #define OP_MASK_EXTMSBD 0x1f /* "ext" MSBD. */ |
| #define OP_SH_EXTMSBD 11 |
| |
| #define OP_OP_COP0 0x10 |
| #define OP_OP_COP1 0x11 |
| #define OP_OP_COP2 0x12 |
| #define OP_OP_COP3 0x13 |
| #define OP_OP_LWC1 0x31 |
| #define OP_OP_LWC2 0x32 |
| #define OP_OP_LWC3 0x33 /* a.k.a. pref */ |
| #define OP_OP_LDC1 0x35 |
| #define OP_OP_LDC2 0x36 |
| #define OP_OP_LDC3 0x37 /* a.k.a. ld */ |
| #define OP_OP_SWC1 0x39 |
| #define OP_OP_SWC2 0x3a |
| #define OP_OP_SWC3 0x3b |
| #define OP_OP_SDC1 0x3d |
| #define OP_OP_SDC2 0x3e |
| #define OP_OP_SDC3 0x3f /* a.k.a. sd */ |
| |
| /* MIPS DSP ASE */ |
| #define OP_SH_DSPACC 11 |
| #define OP_MASK_DSPACC 0x3 |
| #define OP_SH_DSPACC_S 21 |
| #define OP_MASK_DSPACC_S 0x3 |
| #define OP_SH_DSPSFT 20 |
| #define OP_MASK_DSPSFT 0x3f |
| #define OP_SH_DSPSFT_7 19 |
| #define OP_MASK_DSPSFT_7 0x7f |
| #define OP_SH_SA3 21 |
| #define OP_MASK_SA3 0x7 |
| #define OP_SH_SA4 21 |
| #define OP_MASK_SA4 0xf |
| #define OP_SH_IMM8 16 |
| #define OP_MASK_IMM8 0xff |
| #define OP_SH_IMM10 16 |
| #define OP_MASK_IMM10 0x3ff |
| #define OP_SH_WRDSP 11 |
| #define OP_MASK_WRDSP 0x3f |
| #define OP_SH_RDDSP 16 |
| #define OP_MASK_RDDSP 0x3f |
| #define OP_SH_BP 11 |
| #define OP_MASK_BP 0x3 |
| |
| /* MIPS MT ASE */ |
| #define OP_SH_MT_U 5 |
| #define OP_MASK_MT_U 0x1 |
| #define OP_SH_MT_H 4 |
| #define OP_MASK_MT_H 0x1 |
| #define OP_SH_MTACC_T 18 |
| #define OP_MASK_MTACC_T 0x3 |
| #define OP_SH_MTACC_D 13 |
| #define OP_MASK_MTACC_D 0x3 |
| |
| /* MSA */ |
| #define OP_MASK_1BIT 0x1 |
| #define OP_SH_1BIT 16 |
| #define OP_MASK_2BIT 0x3 |
| #define OP_SH_2BIT 16 |
| #define OP_MASK_3BIT 0x7 |
| #define OP_SH_3BIT 16 |
| #define OP_MASK_4BIT 0xf |
| #define OP_SH_4BIT 16 |
| #define OP_MASK_5BIT 0x1f |
| #define OP_SH_5BIT 16 |
| #define OP_MASK_10BIT 0x3ff |
| #define OP_SH_10BIT 11 |
| #define OP_MASK_MSACR11 0x1f |
| #define OP_SH_MSACR11 11 |
| #define OP_MASK_MSACR6 0x1f |
| #define OP_SH_MSACR6 6 |
| #define OP_MASK_GPR 0x1f |
| #define OP_SH_GPR 6 |
| #define OP_MASK_1_TO_4 0x3 |
| #define OP_SH_1_TO_4 6 |
| |
| #define OP_OP_COP0 0x10 |
| #define OP_OP_COP1 0x11 |
| #define OP_OP_COP2 0x12 |
| #define OP_OP_COP3 0x13 |
| #define OP_OP_LWC1 0x31 |
| #define OP_OP_LWC2 0x32 |
| #define OP_OP_LWC3 0x33 /* a.k.a. pref */ |
| #define OP_OP_LDC1 0x35 |
| #define OP_OP_LDC2 0x36 |
| #define OP_OP_LDC3 0x37 /* a.k.a. ld */ |
| #define OP_OP_SWC1 0x39 |
| #define OP_OP_SWC2 0x3a |
| #define OP_OP_SWC3 0x3b |
| #define OP_OP_SDC1 0x3d |
| #define OP_OP_SDC2 0x3e |
| #define OP_OP_SDC3 0x3f /* a.k.a. sd */ |
| |
| /* Values in the 'VSEL' field. */ |
| #define MDMX_FMTSEL_IMM_QH 0x1d |
| #define MDMX_FMTSEL_IMM_OB 0x1e |
| #define MDMX_FMTSEL_VEC_QH 0x15 |
| #define MDMX_FMTSEL_VEC_OB 0x16 |
| |
| /* UDI */ |
| #define OP_SH_UDI1 6 |
| #define OP_MASK_UDI1 0x1f |
| #define OP_SH_UDI2 6 |
| #define OP_MASK_UDI2 0x3ff |
| #define OP_SH_UDI3 6 |
| #define OP_MASK_UDI3 0x7fff |
| #define OP_SH_UDI4 6 |
| #define OP_MASK_UDI4 0xfffff |
| /* This structure holds information for a particular instruction. */ |
| |
| struct mips_opcode |
| { |
| /* The name of the instruction. */ |
| const char *name; |
| /* A string describing the arguments for this instruction. */ |
| const char *args; |
| /* The basic opcode for the instruction. When assembling, this |
| opcode is modified by the arguments to produce the actual opcode |
| that is used. If pinfo is INSN_MACRO, then this is 0. */ |
| unsigned long match; |
| /* If pinfo is not INSN_MACRO, then this is a bit mask for the |
| relevant portions of the opcode when disassembling. If the |
| actual opcode anded with the match field equals the opcode field, |
| then we have found the correct instruction. If pinfo is |
| INSN_MACRO, then this field is the macro identifier. */ |
| unsigned long mask; |
| /* For a macro, this is INSN_MACRO. Otherwise, it is a collection |
| of bits describing the instruction, notably any relevant hazard |
| information. */ |
| unsigned long pinfo; |
| /* A collection of additional bits describing the instruction. */ |
| unsigned long pinfo2; |
| /* A collection of bits describing the instruction sets of which this |
| instruction or macro is a member. */ |
| unsigned long membership; |
| }; |
| |
| /* These are the characters which may appear in the args field of an |
| instruction. They appear in the order in which the fields appear |
| when the instruction is used. Commas and parentheses in the args |
| string are ignored when assembling, and written into the output |
| when disassembling. |
| |
| Each of these characters corresponds to a mask field defined above. |
| |
| "<" 5 bit shift amount (OP_*_SHAMT) |
| ">" shift amount between 32 and 63, stored after subtracting 32 (OP_*_SHAMT) |
| "a" 26 bit target address (OP_*_TARGET) |
| "b" 5 bit base register (OP_*_RS) |
| "c" 10 bit breakpoint code (OP_*_CODE) |
| "d" 5 bit destination register specifier (OP_*_RD) |
| "h" 5 bit prefx hint (OP_*_PREFX) |
| "i" 16 bit unsigned immediate (OP_*_IMMEDIATE) |
| "j" 16 bit signed immediate (OP_*_DELTA) |
| "k" 5 bit cache opcode in target register position (OP_*_CACHE) |
| Also used for immediate operands in vr5400 vector insns. |
| "o" 16 bit signed offset (OP_*_DELTA) |
| "p" 16 bit PC relative branch target address (OP_*_DELTA) |
| "q" 10 bit extra breakpoint code (OP_*_CODE2) |
| "r" 5 bit same register used as both source and target (OP_*_RS) |
| "s" 5 bit source register specifier (OP_*_RS) |
| "t" 5 bit target register (OP_*_RT) |
| "u" 16 bit upper 16 bits of address (OP_*_IMMEDIATE) |
| "v" 5 bit same register used as both source and destination (OP_*_RS) |
| "w" 5 bit same register used as both target and destination (OP_*_RT) |
| "U" 5 bit same destination register in both OP_*_RD and OP_*_RT |
| (used by clo and clz) |
| "C" 25 bit coprocessor function code (OP_*_COPZ) |
| "B" 20 bit syscall/breakpoint function code (OP_*_CODE20) |
| "J" 19 bit wait function code (OP_*_CODE19) |
| "x" accept and ignore register name |
| "z" must be zero register |
| "K" 5 bit Hardware Register (rdhwr instruction) (OP_*_RD) |
| "+A" 5 bit ins/ext/dins/dext/dinsm/dextm position, which becomes |
| LSB (OP_*_SHAMT). |
| Enforces: 0 <= pos < 32. |
| "+B" 5 bit ins/dins size, which becomes MSB (OP_*_INSMSB). |
| Requires that "+A" or "+E" occur first to set position. |
| Enforces: 0 < (pos+size) <= 32. |
| "+C" 5 bit ext/dext size, which becomes MSBD (OP_*_EXTMSBD). |
| Requires that "+A" or "+E" occur first to set position. |
| Enforces: 0 < (pos+size) <= 32. |
| (Also used by "dext" w/ different limits, but limits for |
| that are checked by the M_DEXT macro.) |
| "+E" 5 bit dinsu/dextu position, which becomes LSB-32 (OP_*_SHAMT). |
| Enforces: 32 <= pos < 64. |
| "+F" 5 bit "dinsm/dinsu" size, which becomes MSB-32 (OP_*_INSMSB). |
| Requires that "+A" or "+E" occur first to set position. |
| Enforces: 32 < (pos+size) <= 64. |
| "+G" 5 bit "dextm" size, which becomes MSBD-32 (OP_*_EXTMSBD). |
| Requires that "+A" or "+E" occur first to set position. |
| Enforces: 32 < (pos+size) <= 64. |
| "+H" 5 bit "dextu" size, which becomes MSBD (OP_*_EXTMSBD). |
| Requires that "+A" or "+E" occur first to set position. |
| Enforces: 32 < (pos+size) <= 64. |
| |
| Floating point instructions: |
| "D" 5 bit destination register (OP_*_FD) |
| "M" 3 bit compare condition code (OP_*_CCC) (only used for mips4 and up) |
| "N" 3 bit branch condition code (OP_*_BCC) (only used for mips4 and up) |
| "S" 5 bit fs source 1 register (OP_*_FS) |
| "T" 5 bit ft source 2 register (OP_*_FT) |
| "R" 5 bit fr source 3 register (OP_*_FR) |
| "V" 5 bit same register used as floating source and destination (OP_*_FS) |
| "W" 5 bit same register used as floating target and destination (OP_*_FT) |
| |
| Coprocessor instructions: |
| "E" 5 bit target register (OP_*_RT) |
| "G" 5 bit destination register (OP_*_RD) |
| "H" 3 bit sel field for (d)mtc* and (d)mfc* (OP_*_SEL) |
| "P" 5 bit performance-monitor register (OP_*_PERFREG) |
| "e" 5 bit vector register byte specifier (OP_*_VECBYTE) |
| "%" 3 bit immediate vr5400 vector alignment operand (OP_*_VECALIGN) |
| see also "k" above |
| "+D" Combined destination register ("G") and sel ("H") for CP0 ops, |
| for pretty-printing in disassembly only. |
| |
| Macro instructions: |
| "A" General 32 bit expression |
| "I" 32 bit immediate (value placed in imm_expr). |
| "+I" 32 bit immediate (value placed in imm2_expr). |
| "F" 64 bit floating point constant in .rdata |
| "L" 64 bit floating point constant in .lit8 |
| "f" 32 bit floating point constant |
| "l" 32 bit floating point constant in .lit4 |
| |
| MDMX instruction operands (note that while these use the FP register |
| fields, they accept both $fN and $vN names for the registers): |
| "O" MDMX alignment offset (OP_*_ALN) |
| "Q" MDMX vector/scalar/immediate source (OP_*_VSEL and OP_*_FT) |
| "X" MDMX destination register (OP_*_FD) |
| "Y" MDMX source register (OP_*_FS) |
| "Z" MDMX source register (OP_*_FT) |
| |
| DSP ASE usage: |
| "2" 2 bit unsigned immediate for byte align (OP_*_BP) |
| "3" 3 bit unsigned immediate (OP_*_SA3) |
| "4" 4 bit unsigned immediate (OP_*_SA4) |
| "5" 8 bit unsigned immediate (OP_*_IMM8) |
| "6" 5 bit unsigned immediate (OP_*_RS) |
| "7" 2 bit dsp accumulator register (OP_*_DSPACC) |
| "8" 6 bit unsigned immediate (OP_*_WRDSP) |
| "9" 2 bit dsp accumulator register (OP_*_DSPACC_S) |
| "0" 6 bit signed immediate (OP_*_DSPSFT) |
| ":" 7 bit signed immediate (OP_*_DSPSFT_7) |
| "'" 6 bit unsigned immediate (OP_*_RDDSP) |
| "@" 10 bit signed immediate (OP_*_IMM10) |
| |
| MT ASE usage: |
| "!" 1 bit usermode flag (OP_*_MT_U) |
| "$" 1 bit load high flag (OP_*_MT_H) |
| "*" 2 bit dsp/smartmips accumulator register (OP_*_MTACC_T) |
| "&" 2 bit dsp/smartmips accumulator register (OP_*_MTACC_D) |
| "g" 5 bit coprocessor 1 and 2 destination register (OP_*_RD) |
| "+t" 5 bit coprocessor 0 destination register (OP_*_RT) |
| "+T" 5 bit coprocessor 0 destination register (OP_*_RT) - disassembly only |
| |
| UDI immediates: |
| "+1" UDI immediate bits 6-10 |
| "+2" UDI immediate bits 6-15 |
| "+3" UDI immediate bits 6-20 |
| "+4" UDI immediate bits 6-25 |
| |
| R6 immediates/displacements : |
| (adding suffix to 'o' to avoid adding new characters) |
| "+o" 9 bits immediate/displacement (shift = 7) |
| "+o1" 18 bits immediate/displacement (shift = 0) |
| "+o2" 19 bits immediate/displacement (shift = 0) |
| |
| Other: |
| "()" parens surrounding optional value |
| "," separates operands |
| "[]" brackets around index for vector-op scalar operand specifier (vr5400) |
| "+" Start of extension sequence. |
| |
| Characters used so far, for quick reference when adding more: |
| "234567890" |
| "%[]<>(),+:'@!$*&" |
| "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| "abcdefghijklopqrstuvwxz" |
| |
| Extension character sequences used so far ("+" followed by the |
| following), for quick reference when adding more: |
| "1234" |
| "ABCDEFGHIT" |
| "t" |
| */ |
| |
| /* These are the bits which may be set in the pinfo field of an |
| instructions, if it is not equal to INSN_MACRO. */ |
| |
| /* Modifies the general purpose register in OP_*_RD. */ |
| #define INSN_WRITE_GPR_D 0x00000001 |
| /* Modifies the general purpose register in OP_*_RT. */ |
| #define INSN_WRITE_GPR_T 0x00000002 |
| /* Modifies general purpose register 31. */ |
| #define INSN_WRITE_GPR_31 0x00000004 |
| /* Modifies the floating point register in OP_*_FD. */ |
| #define INSN_WRITE_FPR_D 0x00000008 |
| /* Modifies the floating point register in OP_*_FS. */ |
| #define INSN_WRITE_FPR_S 0x00000010 |
| /* Modifies the floating point register in OP_*_FT. */ |
| #define INSN_WRITE_FPR_T 0x00000020 |
| /* Reads the general purpose register in OP_*_RS. */ |
| #define INSN_READ_GPR_S 0x00000040 |
| /* Reads the general purpose register in OP_*_RT. */ |
| #define INSN_READ_GPR_T 0x00000080 |
| /* Reads the floating point register in OP_*_FS. */ |
| #define INSN_READ_FPR_S 0x00000100 |
| /* Reads the floating point register in OP_*_FT. */ |
| #define INSN_READ_FPR_T 0x00000200 |
| /* Reads the floating point register in OP_*_FR. */ |
| #define INSN_READ_FPR_R 0x00000400 |
| /* Modifies coprocessor condition code. */ |
| #define INSN_WRITE_COND_CODE 0x00000800 |
| /* Reads coprocessor condition code. */ |
| #define INSN_READ_COND_CODE 0x00001000 |
| /* TLB operation. */ |
| #define INSN_TLB 0x00002000 |
| /* Reads coprocessor register other than floating point register. */ |
| #define INSN_COP 0x00004000 |
| /* Instruction loads value from memory, requiring delay. */ |
| #define INSN_LOAD_MEMORY_DELAY 0x00008000 |
| /* Instruction loads value from coprocessor, requiring delay. */ |
| #define INSN_LOAD_COPROC_DELAY 0x00010000 |
| /* Instruction has unconditional branch delay slot. */ |
| #define INSN_UNCOND_BRANCH_DELAY 0x00020000 |
| /* Instruction has conditional branch delay slot. */ |
| #define INSN_COND_BRANCH_DELAY 0x00040000 |
| /* Conditional branch likely: if branch not taken, insn nullified. */ |
| #define INSN_COND_BRANCH_LIKELY 0x00080000 |
| /* Moves to coprocessor register, requiring delay. */ |
| #define INSN_COPROC_MOVE_DELAY 0x00100000 |
| /* Loads coprocessor register from memory, requiring delay. */ |
| #define INSN_COPROC_MEMORY_DELAY 0x00200000 |
| /* Reads the HI register. */ |
| #define INSN_READ_HI 0x00400000 |
| /* Reads the LO register. */ |
| #define INSN_READ_LO 0x00800000 |
| /* Modifies the HI register. */ |
| #define INSN_WRITE_HI 0x01000000 |
| /* Modifies the LO register. */ |
| #define INSN_WRITE_LO 0x02000000 |
| /* Takes a trap (easier to keep out of delay slot). */ |
| #define INSN_TRAP 0x04000000 |
| /* Instruction stores value into memory. */ |
| #define INSN_STORE_MEMORY 0x08000000 |
| /* Instruction uses single precision floating point. */ |
| #define FP_S 0x10000000 |
| /* Instruction uses double precision floating point. */ |
| #define FP_D 0x20000000 |
| /* Instruction is part of the tx39's integer multiply family. */ |
| #define INSN_MULT 0x40000000 |
| /* Instruction synchronize shared memory. */ |
| #define INSN_SYNC 0x80000000 |
| |
| /* These are the bits which may be set in the pinfo2 field of an |
| instruction. */ |
| |
| /* Instruction is a simple alias (I.E. "move" for daddu/addu/or) */ |
| #define INSN2_ALIAS 0x00000001 |
| /* Instruction reads MDMX accumulator. */ |
| #define INSN2_READ_MDMX_ACC 0x00000002 |
| /* Instruction writes MDMX accumulator. */ |
| #define INSN2_WRITE_MDMX_ACC 0x00000004 |
| |
| /* Reads the general purpose register in OP_*_RD. */ |
| #define INSN2_READ_GPR_D 0x00000200 |
| |
| /* Instruction is actually a macro. It should be ignored by the |
| disassembler, and requires special treatment by the assembler. */ |
| #define INSN_MACRO 0xffffffff |
| |
| /* Masks used to mark instructions to indicate which MIPS ISA level |
| they were introduced in. ISAs, as defined below, are logical |
| ORs of these bits, indicating that they support the instructions |
| defined at the given level. */ |
| |
| #define INSN_ISA_MASK 0x00000fff |
| #define INSN_ISA1 0x00000001 |
| #define INSN_ISA2 0x00000002 |
| #define INSN_ISA3 0x00000004 |
| #define INSN_ISA4 0x00000008 |
| #define INSN_ISA5 0x00000010 |
| #define INSN_ISA32 0x00000020 |
| #define INSN_ISA64 0x00000040 |
| #define INSN_ISA32R2 0x00000080 |
| #define INSN_ISA64R2 0x00000100 |
| #define INSN_ISA32R6 0x00000200 |
| #define INSN_ISA64R6 0x00000400 |
| |
| /* Masks used for MIPS-defined ASEs. */ |
| #define INSN_ASE_MASK 0x0000f000 |
| |
| /* DSP ASE */ |
| #define INSN_DSP 0x00001000 |
| #define INSN_DSP64 0x00002000 |
| /* MIPS 16 ASE */ |
| #define INSN_MIPS16 0x00004000 |
| /* MIPS-3D ASE */ |
| #define INSN_MIPS3D 0x00008000 |
| |
| /* Chip specific instructions. These are bitmasks. */ |
| |
| /* MIPS R4650 instruction. */ |
| #define INSN_4650 0x00010000 |
| /* LSI R4010 instruction. */ |
| #define INSN_4010 0x00020000 |
| /* NEC VR4100 instruction. */ |
| #define INSN_4100 0x00040000 |
| /* Toshiba R3900 instruction. */ |
| #define INSN_3900 0x00080000 |
| /* MIPS R10000 instruction. */ |
| #define INSN_10000 0x00100000 |
| /* Broadcom SB-1 instruction. */ |
| #define INSN_SB1 0x00200000 |
| /* NEC VR4111/VR4181 instruction. */ |
| #define INSN_4111 0x00400000 |
| /* NEC VR4120 instruction. */ |
| #define INSN_4120 0x00800000 |
| /* NEC VR5400 instruction. */ |
| #define INSN_5400 0x01000000 |
| /* NEC VR5500 instruction. */ |
| #define INSN_5500 0x02000000 |
| |
| /* MDMX ASE */ |
| #define INSN_MDMX 0x00000000 /* Deprecated */ |
| |
| /* MIPS MSA Extension */ |
| #define INSN_MSA 0x04000000 |
| #define INSN_MSA64 0x04000000 |
| |
| /* MT ASE */ |
| #define INSN_MT 0x08000000 |
| /* SmartMIPS ASE */ |
| #define INSN_SMARTMIPS 0x10000000 |
| /* DSP R2 ASE */ |
| #define INSN_DSPR2 0x20000000 |
| |
| /* ST Microelectronics Loongson 2E. */ |
| #define INSN_LOONGSON_2E 0x40000000 |
| /* ST Microelectronics Loongson 2F. */ |
| #define INSN_LOONGSON_2F 0x80000000 |
| |
| /* MIPS ISA defines, use instead of hardcoding ISA level. */ |
| |
| #define ISA_UNKNOWN 0 /* Gas internal use. */ |
| #define ISA_MIPS1 (INSN_ISA1) |
| #define ISA_MIPS2 (ISA_MIPS1 | INSN_ISA2) |
| #define ISA_MIPS3 (ISA_MIPS2 | INSN_ISA3) |
| #define ISA_MIPS4 (ISA_MIPS3 | INSN_ISA4) |
| #define ISA_MIPS5 (ISA_MIPS4 | INSN_ISA5) |
| |
| #define ISA_MIPS32 (ISA_MIPS2 | INSN_ISA32) |
| #define ISA_MIPS64 (ISA_MIPS5 | INSN_ISA32 | INSN_ISA64) |
| |
| #define ISA_MIPS32R2 (ISA_MIPS32 | INSN_ISA32R2) |
| #define ISA_MIPS64R2 (ISA_MIPS64 | INSN_ISA32R2 | INSN_ISA64R2) |
| |
| #define ISA_MIPS32R6 (ISA_MIPS32R2 | INSN_ISA32R6) |
| #define ISA_MIPS64R6 (ISA_MIPS64R2 | INSN_ISA32R6 | INSN_ISA64R6) |
| |
| /* CPU defines, use instead of hardcoding processor number. Keep this |
| in sync with bfd/archures.c in order for machine selection to work. */ |
| #define CPU_UNKNOWN 0 /* Gas internal use. */ |
| #define CPU_R3000 3000 |
| #define CPU_R3900 3900 |
| #define CPU_R4000 4000 |
| #define CPU_R4010 4010 |
| #define CPU_VR4100 4100 |
| #define CPU_R4111 4111 |
| #define CPU_VR4120 4120 |
| #define CPU_R4300 4300 |
| #define CPU_R4400 4400 |
| #define CPU_R4600 4600 |
| #define CPU_R4650 4650 |
| #define CPU_R5000 5000 |
| #define CPU_VR5400 5400 |
| #define CPU_VR5500 5500 |
| #define CPU_R6000 6000 |
| #define CPU_RM7000 7000 |
| #define CPU_R8000 8000 |
| #define CPU_R10000 10000 |
| #define CPU_R12000 12000 |
| #define CPU_MIPS16 16 |
| #define CPU_MIPS32 32 |
| #define CPU_MIPS32R2 33 |
| #define CPU_MIPS5 5 |
| #define CPU_MIPS64 64 |
| #define CPU_MIPS64R2 65 |
| #define CPU_SB1 12310201 /* octal 'SB', 01. */ |
| |
| /* Test for membership in an ISA including chip specific ISAs. INSN |
| is pointer to an element of the opcode table; ISA is the specified |
| ISA/ASE bitmask to test against; and CPU is the CPU specific ISA to |
| test, or zero if no CPU specific ISA test is desired. */ |
| |
| #if 0 |
| #define OPCODE_IS_MEMBER(insn, isa, cpu) \ |
| (((insn)->membership & isa) != 0 \ |
| || (cpu == CPU_R4650 && ((insn)->membership & INSN_4650) != 0) \ |
| || (cpu == CPU_RM7000 && ((insn)->membership & INSN_4650) != 0) \ |
| || (cpu == CPU_RM9000 && ((insn)->membership & INSN_4650) != 0) \ |
| || (cpu == CPU_R4010 && ((insn)->membership & INSN_4010) != 0) \ |
| || (cpu == CPU_VR4100 && ((insn)->membership & INSN_4100) != 0) \ |
| || (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0) \ |
| || ((cpu == CPU_R10000 || cpu == CPU_R12000) \ |
| && ((insn)->membership & INSN_10000) != 0) \ |
| || (cpu == CPU_SB1 && ((insn)->membership & INSN_SB1) != 0) \ |
| || (cpu == CPU_R4111 && ((insn)->membership & INSN_4111) != 0) \ |
| || (cpu == CPU_VR4120 && ((insn)->membership & INSN_4120) != 0) \ |
| || (cpu == CPU_VR5400 && ((insn)->membership & INSN_5400) != 0) \ |
| || (cpu == CPU_VR5500 && ((insn)->membership & INSN_5500) != 0) \ |
| || 0) /* Please keep this term for easier source merging. */ |
| #else |
| #define OPCODE_IS_MEMBER(insn, isa, cpu) \ |
| (1 != 0) |
| #endif |
| |
| /* This is a list of macro expanded instructions. |
| |
| _I appended means immediate |
| _A appended means address |
| _AB appended means address with base register |
| _D appended means 64 bit floating point constant |
| _S appended means 32 bit floating point constant. */ |
| |
| enum |
| { |
| M_ABS, |
| M_ADD_I, |
| M_ADDU_I, |
| M_AND_I, |
| M_BALIGN, |
| M_BEQ, |
| M_BEQ_I, |
| M_BEQL_I, |
| M_BGE, |
| M_BGEL, |
| M_BGE_I, |
| M_BGEL_I, |
| M_BGEU, |
| M_BGEUL, |
| M_BGEU_I, |
| M_BGEUL_I, |
| M_BGT, |
| M_BGTL, |
| M_BGT_I, |
| M_BGTL_I, |
| M_BGTU, |
| M_BGTUL, |
| M_BGTU_I, |
| M_BGTUL_I, |
| M_BLE, |
| M_BLEL, |
| M_BLE_I, |
| M_BLEL_I, |
| M_BLEU, |
| M_BLEUL, |
| M_BLEU_I, |
| M_BLEUL_I, |
| M_BLT, |
| M_BLTL, |
| M_BLT_I, |
| M_BLTL_I, |
| M_BLTU, |
| M_BLTUL, |
| M_BLTU_I, |
| M_BLTUL_I, |
| M_BNE, |
| M_BNE_I, |
| M_BNEL_I, |
| M_CACHE_AB, |
| M_DABS, |
| M_DADD_I, |
| M_DADDU_I, |
| M_DDIV_3, |
| M_DDIV_3I, |
| M_DDIVU_3, |
| M_DDIVU_3I, |
| M_DEXT, |
| M_DINS, |
| M_DIV_3, |
| M_DIV_3I, |
| M_DIVU_3, |
| M_DIVU_3I, |
| M_DLA_AB, |
| M_DLCA_AB, |
| M_DLI, |
| M_DMUL, |
| M_DMUL_I, |
| M_DMULO, |
| M_DMULO_I, |
| M_DMULOU, |
| M_DMULOU_I, |
| M_DREM_3, |
| M_DREM_3I, |
| M_DREMU_3, |
| M_DREMU_3I, |
| M_DSUB_I, |
| M_DSUBU_I, |
| M_DSUBU_I_2, |
| M_J_A, |
| M_JAL_1, |
| M_JAL_2, |
| M_JAL_A, |
| M_L_DOB, |
| M_L_DAB, |
| M_LA_AB, |
| M_LB_A, |
| M_LB_AB, |
| M_LBU_A, |
| M_LBU_AB, |
| M_LCA_AB, |
| M_LD_A, |
| M_LD_OB, |
| M_LD_AB, |
| M_LDC1_AB, |
| M_LDC2_AB, |
| M_LDC3_AB, |
| M_LDL_AB, |
| M_LDR_AB, |
| M_LH_A, |
| M_LH_AB, |
| M_LHU_A, |
| M_LHU_AB, |
| M_LI, |
| M_LI_D, |
| M_LI_DD, |
| M_LI_S, |
| M_LI_SS, |
| M_LL_AB, |
| M_LLD_AB, |
| M_LS_A, |
| M_LW_A, |
| M_LW_AB, |
| M_LWC0_A, |
| M_LWC0_AB, |
| M_LWC1_A, |
| M_LWC1_AB, |
| M_LWC2_A, |
| M_LWC2_AB, |
| M_LWC3_A, |
| M_LWC3_AB, |
| M_LWL_A, |
| M_LWL_AB, |
| M_LWR_A, |
| M_LWR_AB, |
| M_LWU_AB, |
| M_MOVE, |
| M_MUL, |
| M_MUL_I, |
| M_MULO, |
| M_MULO_I, |
| M_MULOU, |
| M_MULOU_I, |
| M_NOR_I, |
| M_OR_I, |
| M_REM_3, |
| M_REM_3I, |
| M_REMU_3, |
| M_REMU_3I, |
| M_DROL, |
| M_ROL, |
| M_DROL_I, |
| M_ROL_I, |
| M_DROR, |
| M_ROR, |
| M_DROR_I, |
| M_ROR_I, |
| M_S_DA, |
| M_S_DOB, |
| M_S_DAB, |
| M_S_S, |
| M_SC_AB, |
| M_SCD_AB, |
| M_SD_A, |
| M_SD_OB, |
| M_SD_AB, |
| M_SDC1_AB, |
| M_SDC2_AB, |
| M_SDC3_AB, |
| M_SDL_AB, |
| M_SDR_AB, |
| M_SEQ, |
| M_SEQ_I, |
| M_SGE, |
| M_SGE_I, |
| M_SGEU, |
| M_SGEU_I, |
| M_SGT, |
| M_SGT_I, |
| M_SGTU, |
| M_SGTU_I, |
| M_SLE, |
| M_SLE_I, |
| M_SLEU, |
| M_SLEU_I, |
| M_SLT_I, |
| M_SLTU_I, |
| M_SNE, |
| M_SNE_I, |
| M_SB_A, |
| M_SB_AB, |
| M_SH_A, |
| M_SH_AB, |
| M_SW_A, |
| M_SW_AB, |
| M_SWC0_A, |
| M_SWC0_AB, |
| M_SWC1_A, |
| M_SWC1_AB, |
| M_SWC2_A, |
| M_SWC2_AB, |
| M_SWC3_A, |
| M_SWC3_AB, |
| M_SWL_A, |
| M_SWL_AB, |
| M_SWR_A, |
| M_SWR_AB, |
| M_SUB_I, |
| M_SUBU_I, |
| M_SUBU_I_2, |
| M_TEQ_I, |
| M_TGE_I, |
| M_TGEU_I, |
| M_TLT_I, |
| M_TLTU_I, |
| M_TNE_I, |
| M_TRUNCWD, |
| M_TRUNCWS, |
| M_ULD, |
| M_ULD_A, |
| M_ULH, |
| M_ULH_A, |
| M_ULHU, |
| M_ULHU_A, |
| M_ULW, |
| M_ULW_A, |
| M_USH, |
| M_USH_A, |
| M_USW, |
| M_USW_A, |
| M_USD, |
| M_USD_A, |
| M_XOR_I, |
| M_COP0, |
| M_COP1, |
| M_COP2, |
| M_COP3, |
| M_NUM_MACROS |
| }; |
| |
| |
| /* 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 |
| assembler to pick the right one. In other words, entries with |
| immediate operands must apear after the same instruction with |
| registers. |
| |
| Many instructions are short hand for other instructions (i.e., The |
| jal <register> instruction is short for jalr <register>). */ |
| |
| extern const struct mips_opcode mips_builtin_opcodes[]; |
| extern const int bfd_mips_num_builtin_opcodes; |
| extern struct mips_opcode *mips_opcodes; |
| extern int bfd_mips_num_opcodes; |
| #define NUMOPCODES bfd_mips_num_opcodes |
| |
| |
| /* The rest of this file adds definitions for the mips16 TinyRISC |
| processor. */ |
| |
| /* These are the bitmasks and shift counts used for the different |
| fields in the instruction formats. Other than OP, no masks are |
| provided for the fixed portions of an instruction, since they are |
| not needed. |
| |
| The I format uses IMM11. |
| |
| The RI format uses RX and IMM8. |
| |
| The RR format uses RX, and RY. |
| |
| The RRI format uses RX, RY, and IMM5. |
| |
| The RRR format uses RX, RY, and RZ. |
| |
| The RRI_A format uses RX, RY, and IMM4. |
| |
| The SHIFT format uses RX, RY, and SHAMT. |
| |
| The I8 format uses IMM8. |
| |
| The I8_MOVR32 format uses RY and REGR32. |
| |
| The IR_MOV32R format uses REG32R and MOV32Z. |
| |
| The I64 format uses IMM8. |
| |
| The RI64 format uses RY and IMM5. |
| */ |
| |
| #define MIPS16OP_MASK_OP 0x1f |
| #define MIPS16OP_SH_OP 11 |
| #define MIPS16OP_MASK_IMM11 0x7ff |
| #define MIPS16OP_SH_IMM11 0 |
| #define MIPS16OP_MASK_RX 0x7 |
| #define MIPS16OP_SH_RX 8 |
| #define MIPS16OP_MASK_IMM8 0xff |
| #define MIPS16OP_SH_IMM8 0 |
| #define MIPS16OP_MASK_RY 0x7 |
| #define MIPS16OP_SH_RY 5 |
| #define MIPS16OP_MASK_IMM5 0x1f |
| #define MIPS16OP_SH_IMM5 0 |
| #define MIPS16OP_MASK_RZ 0x7 |
| #define MIPS16OP_SH_RZ 2 |
| #define MIPS16OP_MASK_IMM4 0xf |
| #define MIPS16OP_SH_IMM4 0 |
| #define MIPS16OP_MASK_REGR32 0x1f |
| #define MIPS16OP_SH_REGR32 0 |
| #define MIPS16OP_MASK_REG32R 0x1f |
| #define MIPS16OP_SH_REG32R 3 |
| #define MIPS16OP_EXTRACT_REG32R(i) ((((i) >> 5) & 7) | ((i) & 0x18)) |
| #define MIPS16OP_MASK_MOVE32Z 0x7 |
| #define MIPS16OP_SH_MOVE32Z 0 |
| #define MIPS16OP_MASK_IMM6 0x3f |
| #define MIPS16OP_SH_IMM6 5 |
| |
| /* These are the characters which may appears in the args field of an |
| instruction. They appear in the order in which the fields appear |
| when the instruction is used. Commas and parentheses in the args |
| string are ignored when assembling, and written into the output |
| when disassembling. |
| |
| "y" 3 bit register (MIPS16OP_*_RY) |
| "x" 3 bit register (MIPS16OP_*_RX) |
| "z" 3 bit register (MIPS16OP_*_RZ) |
| "Z" 3 bit register (MIPS16OP_*_MOVE32Z) |
| "v" 3 bit same register as source and destination (MIPS16OP_*_RX) |
| "w" 3 bit same register as source and destination (MIPS16OP_*_RY) |
| "0" zero register ($0) |
| "S" stack pointer ($sp or $29) |
| "P" program counter |
| "R" return address register ($ra or $31) |
| "X" 5 bit MIPS register (MIPS16OP_*_REGR32) |
| "Y" 5 bit MIPS register (MIPS16OP_*_REG32R) |
| "6" 6 bit unsigned break code (MIPS16OP_*_IMM6) |
| "a" 26 bit jump address |
| "e" 11 bit extension value |
| "l" register list for entry instruction |
| "L" register list for exit instruction |
| |
| The remaining codes may be extended. Except as otherwise noted, |
| the full extended operand is a 16 bit signed value. |
| "<" 3 bit unsigned shift count * 0 (MIPS16OP_*_RZ) (full 5 bit unsigned) |
| ">" 3 bit unsigned shift count * 0 (MIPS16OP_*_RX) (full 5 bit unsigned) |
| "[" 3 bit unsigned shift count * 0 (MIPS16OP_*_RZ) (full 6 bit unsigned) |
| "]" 3 bit unsigned shift count * 0 (MIPS16OP_*_RX) (full 6 bit unsigned) |
| "4" 4 bit signed immediate * 0 (MIPS16OP_*_IMM4) (full 15 bit signed) |
| "5" 5 bit unsigned immediate * 0 (MIPS16OP_*_IMM5) |
| "H" 5 bit unsigned immediate * 2 (MIPS16OP_*_IMM5) |
| "W" 5 bit unsigned immediate * 4 (MIPS16OP_*_IMM5) |
| "D" 5 bit unsigned immediate * 8 (MIPS16OP_*_IMM5) |
| "j" 5 bit signed immediate * 0 (MIPS16OP_*_IMM5) |
| "8" 8 bit unsigned immediate * 0 (MIPS16OP_*_IMM8) |
| "V" 8 bit unsigned immediate * 4 (MIPS16OP_*_IMM8) |
| "C" 8 bit unsigned immediate * 8 (MIPS16OP_*_IMM8) |
| "U" 8 bit unsigned immediate * 0 (MIPS16OP_*_IMM8) (full 16 bit unsigned) |
| "k" 8 bit signed immediate * 0 (MIPS16OP_*_IMM8) |
| "K" 8 bit signed immediate * 8 (MIPS16OP_*_IMM8) |
| "p" 8 bit conditional branch address (MIPS16OP_*_IMM8) |
| "q" 11 bit branch address (MIPS16OP_*_IMM11) |
| "A" 8 bit PC relative address * 4 (MIPS16OP_*_IMM8) |
| "B" 5 bit PC relative address * 8 (MIPS16OP_*_IMM5) |
| "E" 5 bit PC relative address * 4 (MIPS16OP_*_IMM5) |
| */ |
| |
| /* Save/restore encoding for the args field when all 4 registers are |
| either saved as arguments or saved/restored as statics. */ |
| #define MIPS16_ALL_ARGS 0xe |
| #define MIPS16_ALL_STATICS 0xb |
| |
| /* For the mips16, we use the same opcode table format and a few of |
| the same flags. However, most of the flags are different. */ |
| |
| /* Modifies the register in MIPS16OP_*_RX. */ |
| #define MIPS16_INSN_WRITE_X 0x00000001 |
| /* Modifies the register in MIPS16OP_*_RY. */ |
| #define MIPS16_INSN_WRITE_Y 0x00000002 |
| /* Modifies the register in MIPS16OP_*_RZ. */ |
| #define MIPS16_INSN_WRITE_Z 0x00000004 |
| /* Modifies the T ($24) register. */ |
| #define MIPS16_INSN_WRITE_T 0x00000008 |
| /* Modifies the SP ($29) register. */ |
| #define MIPS16_INSN_WRITE_SP 0x00000010 |
| /* Modifies the RA ($31) register. */ |
| #define MIPS16_INSN_WRITE_31 0x00000020 |
| /* Modifies the general purpose register in MIPS16OP_*_REG32R. */ |
| #define MIPS16_INSN_WRITE_GPR_Y 0x00000040 |
| /* Reads the register in MIPS16OP_*_RX. */ |
| #define MIPS16_INSN_READ_X 0x00000080 |
| /* Reads the register in MIPS16OP_*_RY. */ |
| #define MIPS16_INSN_READ_Y 0x00000100 |
| /* Reads the register in MIPS16OP_*_MOVE32Z. */ |
| #define MIPS16_INSN_READ_Z 0x00000200 |
| /* Reads the T ($24) register. */ |
| #define MIPS16_INSN_READ_T 0x00000400 |
| /* Reads the SP ($29) register. */ |
| #define MIPS16_INSN_READ_SP 0x00000800 |
| /* Reads the RA ($31) register. */ |
| #define MIPS16_INSN_READ_31 0x00001000 |
| /* Reads the program counter. */ |
| #define MIPS16_INSN_READ_PC 0x00002000 |
| /* Reads the general purpose register in MIPS16OP_*_REGR32. */ |
| #define MIPS16_INSN_READ_GPR_X 0x00004000 |
| /* Is a branch insn. */ |
| #define MIPS16_INSN_BRANCH 0x00010000 |
| |
| /* The following flags have the same value for the mips16 opcode |
| table: |
| INSN_UNCOND_BRANCH_DELAY |
| INSN_COND_BRANCH_DELAY |
| INSN_COND_BRANCH_LIKELY (never used) |
| INSN_READ_HI |
| INSN_READ_LO |
| INSN_WRITE_HI |
| INSN_WRITE_LO |
| INSN_TRAP |
| INSN_ISA3 |
| */ |
| |
| extern const struct mips_opcode mips16_opcodes[]; |
| extern const int bfd_mips16_num_opcodes; |
| |
| /* Short hand so the lines aren't too long. */ |
| |
| #define LDD INSN_LOAD_MEMORY_DELAY |
| #define LCD INSN_LOAD_COPROC_DELAY |
| #define UBD INSN_UNCOND_BRANCH_DELAY |
| #define CBD INSN_COND_BRANCH_DELAY |
| #define COD INSN_COPROC_MOVE_DELAY |
| #define CLD INSN_COPROC_MEMORY_DELAY |
| #define CBL INSN_COND_BRANCH_LIKELY |
| #define TRAP INSN_TRAP |
| #define SM INSN_STORE_MEMORY |
| |
| #define WR_d INSN_WRITE_GPR_D |
| #define WR_t INSN_WRITE_GPR_T |
| #define WR_31 INSN_WRITE_GPR_31 |
| #define WR_D INSN_WRITE_FPR_D |
| #define WR_T INSN_WRITE_FPR_T |
| #define WR_S INSN_WRITE_FPR_S |
| #define RD_s INSN_READ_GPR_S |
| #define RD_b INSN_READ_GPR_S |
| #define RD_t INSN_READ_GPR_T |
| #define RD_S INSN_READ_FPR_S |
| #define RD_T INSN_READ_FPR_T |
| #define RD_R INSN_READ_FPR_R |
| #define WR_CC INSN_WRITE_COND_CODE |
| #define RD_CC INSN_READ_COND_CODE |
| #define RD_C0 INSN_COP |
| #define RD_C1 INSN_COP |
| #define RD_C2 INSN_COP |
| #define RD_C3 INSN_COP |
| #define WR_C0 INSN_COP |
| #define WR_C1 INSN_COP |
| #define WR_C2 INSN_COP |
| #define WR_C3 INSN_COP |
| |
| #define WR_HI INSN_WRITE_HI |
| #define RD_HI INSN_READ_HI |
| #define MOD_HI WR_HI|RD_HI |
| |
| #define WR_LO INSN_WRITE_LO |
| #define RD_LO INSN_READ_LO |
| #define MOD_LO WR_LO|RD_LO |
| |
| #define WR_HILO WR_HI|WR_LO |
| #define RD_HILO RD_HI|RD_LO |
| #define MOD_HILO WR_HILO|RD_HILO |
| |
| #define IS_M INSN_MULT |
| |
| #define WR_MACC INSN2_WRITE_MDMX_ACC |
| #define RD_MACC INSN2_READ_MDMX_ACC |
| |
| #define I1 INSN_ISA1 |
| #define I2 INSN_ISA2 |
| #define I3 INSN_ISA3 |
| #define I4 INSN_ISA4 |
| #define I5 INSN_ISA5 |
| #define I32 INSN_ISA32 |
| #define I64 INSN_ISA64 |
| #define I33 INSN_ISA32R2 |
| #define I65 INSN_ISA64R2 |
| #define I32R6 INSN_ISA32R6 |
| #define I64R6 INSN_ISA64R6 |
| |
| /* MIPS64 MIPS-3D ASE support. */ |
| #define I16 INSN_MIPS16 |
| |
| /* MIPS32 SmartMIPS ASE support. */ |
| #define SMT INSN_SMARTMIPS |
| |
| /* MIPS64 MIPS-3D ASE support. */ |
| #define M3D INSN_MIPS3D |
| |
| /* MIPS64 MDMX ASE support. */ |
| #define MX INSN_MDMX |
| |
| #define IL2E (INSN_LOONGSON_2E) |
| #define IL2F (INSN_LOONGSON_2F) |
| |
| #define P3 INSN_4650 |
| #define L1 INSN_4010 |
| #define V1 (INSN_4100 | INSN_4111 | INSN_4120) |
| #define T3 INSN_3900 |
| #define M1 INSN_10000 |
| #define SB1 INSN_SB1 |
| #define N411 INSN_4111 |
| #define N412 INSN_4120 |
| #define N5 (INSN_5400 | INSN_5500) |
| #define N54 INSN_5400 |
| #define N55 INSN_5500 |
| |
| #define G1 (T3 \ |
| ) |
| |
| #define G2 (T3 \ |
| ) |
| |
| #define G3 (I4 \ |
| ) |
| |
| /* MIPS DSP ASE support. |
| NOTE: |
| 1. MIPS DSP ASE includes 4 accumulators ($ac0 - $ac3). $ac0 is the pair |
| of original HI and LO. $ac1, $ac2 and $ac3 are new registers, and have |
| the same structure as $ac0 (HI + LO). For DSP instructions that write or |
| read accumulators (that may be $ac0), we add WR_a (WR_HILO) or RD_a |
| (RD_HILO) attributes, such that HILO dependencies are maintained |
| conservatively. |
| |
| 2. For some mul. instructions that use integer registers as destinations |
| but destroy HI+LO as side-effect, we add WR_HILO to their attributes. |
| |
| 3. MIPS DSP ASE includes a new DSP control register, which has 6 fields |
| (ccond, outflag, EFI, c, scount, pos). Many DSP instructions read or write |
| certain fields of the DSP control register. For simplicity, we decide not |
| to track dependencies of these fields. |
| However, "bposge32" is a branch instruction that depends on the "pos" |
| field. In order to make sure that GAS does not reorder DSP instructions |
| that writes the "pos" field and "bposge32", we add DSP_VOLA (INSN_TRAP) |
| attribute to those instructions that write the "pos" field. */ |
| |
| #define WR_a WR_HILO /* Write dsp accumulators (reuse WR_HILO) */ |
| #define RD_a RD_HILO /* Read dsp accumulators (reuse RD_HILO) */ |
| #define MOD_a WR_a|RD_a |
| #define DSP_VOLA INSN_TRAP |
| #define D32 INSN_DSP |
| #define D33 INSN_DSPR2 |
| #define D64 INSN_DSP64 |
| |
| /* MIPS MT ASE support. */ |
| #define MT32 INSN_MT |
| |
| /* MSA */ |
| #define MSA INSN_MSA |
| #define MSA64 INSN_MSA64 |
| #define WR_VD INSN_WRITE_FPR_D /* Reuse INSN_WRITE_FPR_D */ |
| #define RD_VD WR_VD /* Reuse WR_VD */ |
| #define RD_VT INSN_READ_FPR_T /* Reuse INSN_READ_FPR_T */ |
| #define RD_VS INSN_READ_FPR_S /* Reuse INSN_READ_FPR_S */ |
| #define RD_d INSN2_READ_GPR_D /* Reuse INSN2_READ_GPR_D */ |
| |
| #define RD_rd6 0 |
| |
| /* 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 |
| assembler to pick the right one. In other words, entries with |
| immediate operands must apear after the same instruction with |
| registers. |
| |
| Because of the lookup algorithm used, entries with the same opcode |
| name must be contiguous. |
| |
| Many instructions are short hand for other instructions (i.e., The |
| jal <register> instruction is short for jalr <register>). */ |
| |
| const struct mips_opcode mips_builtin_opcodes[] = |
| { |
| /* These instructions appear first so that the disassembler will find |
| them first. The assemblers uses a hash table based on the |
| instruction name anyhow. */ |
| /* name, args, match, mask, pinfo, membership */ |
| {"lwpc", "s,+o2", 0xec080000, 0xfc180000, WR_d, 0, I32R6}, |
| {"lwupc", "s,+o2", 0xec100000, 0xfc180000, WR_d, 0, I64R6}, |
| {"ldpc", "s,+o1", 0xec180000, 0xfc1c0000, WR_d, 0, I64R6}, |
| {"addiupc", "s,+o2", 0xec000000, 0xfc180000, WR_d, 0, I32R6}, |
| {"auipc", "s,u", 0xec1e0000, 0xfc1f0000, WR_d, 0, I32R6}, |
| {"aluipc", "s,u", 0xec1f0000, 0xfc1f0000, WR_d, 0, I32R6}, |
| {"daui", "s,t,u", 0x74000000, 0xfc000000, RD_s|WR_t, 0, I64R6}, |
| {"dahi", "s,u", 0x04060000, 0xfc1f0000, RD_s, 0, I64R6}, |
| {"dati", "s,u", 0x041e0000, 0xfc1f0000, RD_s, 0, I64R6}, |
| {"lsa", "d,s,t", 0x00000005, 0xfc00073f, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"dlsa", "d,s,t", 0x00000015, 0xfc00073f, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"clz", "U,s", 0x00000050, 0xfc1f07ff, WR_d|RD_s, 0, I32R6}, |
| {"clo", "U,s", 0x00000051, 0xfc1f07ff, WR_d|RD_s, 0, I32R6}, |
| {"dclz", "U,s", 0x00000052, 0xfc1f07ff, WR_d|RD_s, 0, I64R6}, |
| {"dclo", "U,s", 0x00000053, 0xfc1f07ff, WR_d|RD_s, 0, I64R6}, |
| {"sdbbp", "B", 0x0000000e, 0xfc00003f, TRAP, 0, I32R6}, |
| {"mul", "d,s,t", 0x00000098, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"muh", "d,s,t", 0x000000d8, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"mulu", "d,s,t", 0x00000099, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"muhu", "d,s,t", 0x000000d9, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"div", "d,s,t", 0x0000009a, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"mod", "d,s,t", 0x000000da, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"divu", "d,s,t", 0x0000009b, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"modu", "d,s,t", 0x000000db, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"dmul", "d,s,t", 0x0000009c, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"dmuh", "d,s,t", 0x000000dc, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"dmulu", "d,s,t", 0x0000009d, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"dmuhu", "d,s,t", 0x000000dd, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"ddiv", "d,s,t", 0x0000009e, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"dmod", "d,s,t", 0x000000de, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"ddivu", "d,s,t", 0x0000009f, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"dmodu", "d,s,t", 0x000000df, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"ll", "t,+o(b)", 0x7c000036, 0xfc00007f, LDD|RD_b|WR_t, 0, I32R6}, |
| {"sc", "t,+o(b)", 0x7c000026, 0xfc00007f, LDD|RD_b|WR_t, 0, I32R6}, |
| {"lld", "t,+o(b)", 0x7c000037, 0xfc00007f, LDD|RD_b|WR_t, 0, I64R6}, |
| {"scd", "t,+o(b)", 0x7c000027, 0xfc00007f, LDD|RD_b|WR_t, 0, I64R6}, |
| {"pref", "h,+o(b)", 0x7c000035, 0xfc00007f, RD_b, 0, I32R6}, |
| {"cache", "k,+o(b)", 0x7c000025, 0xfc00007f, RD_b, 0, I32R6}, |
| {"seleqz", "d,v,t", 0x00000035, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"selnez", "d,v,t", 0x00000037, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"maddf.s", "D,S,T", 0x46000018, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"maddf.d", "D,S,T", 0x46200018, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"msubf.s", "D,S,T", 0x46000019, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"msubf.d", "D,S,T", 0x46200019, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"max.s", "D,S,T", 0x4600001e, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"max.d", "D,S,T", 0x4620001e, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"maxa.s", "D,S,T", 0x4600001f, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"maxa.d", "D,S,T", 0x4620001f, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"rint.s", "D,S", 0x4600001a, 0xffff003f, WR_D|RD_S|FP_S, 0, I32R6}, |
| {"rint.d", "D,S", 0x4620001a, 0xffff003f, WR_D|RD_S|FP_D, 0, I32R6}, |
| {"class.s", "D,S", 0x4600001b, 0xffff003f, WR_D|RD_S|FP_S, 0, I32R6}, |
| {"class.d", "D,S", 0x4620001b, 0xffff003f, WR_D|RD_S|FP_D, 0, I32R6}, |
| {"min.s", "D,S,T", 0x4600001c, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"min.d", "D,S,T", 0x4620001c, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"mina.s", "D,S,T", 0x4600001d, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"mina.d", "D,S,T", 0x4620001d, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"sel.s", "D,S,T", 0x46000010, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"sel.d", "D,S,T", 0x46200010, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"seleqz.s", "D,S,T", 0x46000014, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"seleqz.d", "D,S,T", 0x46200014, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"selnez.s", "D,S,T", 0x46000017, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I32R6}, |
| {"selnez.d", "D,S,T", 0x46200017, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I32R6}, |
| {"align", "d,v,t", 0x7c000220, 0xfc00073f, WR_d|RD_s|RD_t, 0, I32R6}, |
| {"dalign", "d,v,t", 0x7c000224, 0xfc00063f, WR_d|RD_s|RD_t, 0, I64R6}, |
| {"bitswap", "d,w", 0x7c000020, 0xffe007ff, WR_d|RD_t, 0, I32R6}, |
| {"dbitswap","d,w", 0x7c000024, 0xffe007ff, WR_d|RD_t, 0, I64R6}, |
| {"balc", "+p", 0xe8000000, 0xfc000000, UBD|WR_31, 0, I32R6}, |
| {"bc", "+p", 0xc8000000, 0xfc000000, UBD|WR_31, 0, I32R6}, |
| {"jic", "t,o", 0xd8000000, 0xffe00000, UBD|RD_t, 0, I32R6}, |
| {"beqzc", "s,+p", 0xd8000000, 0xfc000000, CBD|RD_s, 0, I32R6}, |
| {"jialc", "t,o", 0xf8000000, 0xffe00000, UBD|RD_t, 0, I32R6}, |
| {"bnezc", "s,+p", 0xf8000000, 0xfc000000, CBD|RD_s, 0, I32R6}, |
| {"beqzalc", "s,t,p", 0x20000000, 0xffe00000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bovc", "s,t,p", 0x20000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"beqc", "s,t,p", 0x20000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bnezalc", "s,t,p", 0x60000000, 0xffe00000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bnvc", "s,t,p", 0x60000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bnec", "s,t,p", 0x60000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"blezc", "s,t,p", 0x58000000, 0xffe00000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bgezc", "s,t,p", 0x58000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bgec", "s,t,p", 0x58000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bgtzc", "s,t,p", 0x5c000000, 0xffe00000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bltzc", "s,t,p", 0x5c000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bltc", "s,t,p", 0x5c000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"blezalc", "s,t,p", 0x18000000, 0xffe00000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bgezalc", "s,t,p", 0x18000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bgeuc", "s,t,p", 0x18000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bgtzalc", "s,t,p", 0x1c000000, 0xffe00000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bltzalc", "s,t,p", 0x1c000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"bltuc", "s,t,p", 0x1c000000, 0xfc000000, CBD|RD_s|RD_t, 0, I32R6}, |
| {"nal", "p", 0x04100000, 0xffff0000, WR_31, 0, I32R6}, |
| {"bal", "p", 0x04110000, 0xffff0000, UBD|WR_31, 0, I32R6}, |
| {"bc1eqz", "T,p", 0x45200000, 0xffe00000, CBD|RD_T|FP_S|FP_D, 0, I32R6}, |
| {"bc1nez", "T,p", 0x45a00000, 0xffe00000, CBD|RD_T|FP_S|FP_D, 0, I32R6}, |
| {"bc2eqz", "E,p", 0x49200000, 0xffe00000, CBD|RD_C2, 0, I32R6}, |
| {"bc2nez", "E,p", 0x49a00000, 0xffe00000, CBD|RD_C2, 0, I32R6}, |
| {"cmp.af.s", "D,S,T", 0x46800000, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.un.s", "D,S,T", 0x46800001, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.eq.s", "D,S,T", 0x46800002, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.ueq.s", "D,S,T", 0x46800003, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.lt.s", "D,S,T", 0x46800004, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.ult.s", "D,S,T", 0x46800005, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.le.s", "D,S,T", 0x46800006, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.ule.s", "D,S,T", 0x46800007, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.saf.s", "D,S,T", 0x46800008, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.sun.s", "D,S,T", 0x46800009, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.seq.s", "D,S,T", 0x4680000a, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.sueq.s", "D,S,T", 0x4680000b, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.slt.s", "D,S,T", 0x4680000c, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.sult.s", "D,S,T", 0x4680000d, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.sle.s", "D,S,T", 0x4680000e, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.sule.s", "D,S,T", 0x4680000f, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.or.s", "D,S,T", 0x46800011, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.une.s", "D,S,T", 0x46800012, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.ne.s", "D,S,T", 0x46800013, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.sor.s", "D,S,T", 0x46800019, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.sune.s", "D,S,T", 0x4680001a, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.sne.s", "D,S,T", 0x4680001b, 0xffe0003f, RD_S|RD_T|WR_D|FP_S, 0, I32R6}, |
| {"cmp.af.d", "D,S,T", 0x46a00000, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.un.d", "D,S,T", 0x46a00001, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.eq.d", "D,S,T", 0x46a00002, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.ueq.d", "D,S,T", 0x46a00003, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.lt.d", "D,S,T", 0x46a00004, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.ult.d", "D,S,T", 0x46a00005, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.le.d", "D,S,T", 0x46a00006, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.ule.d", "D,S,T", 0x46a00007, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.saf.d", "D,S,T", 0x46a00008, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.sun.d", "D,S,T", 0x46a00009, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.seq.d", "D,S,T", 0x46a0000a, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.sueq.d", "D,S,T", 0x46a0000b, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.slt.d", "D,S,T", 0x46a0000c, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.sult.d", "D,S,T", 0x46a0000d, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.sle.d", "D,S,T", 0x46a0000e, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.sule.d", "D,S,T", 0x46a0000f, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.or.d", "D,S,T", 0x46a00011, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.une.d", "D,S,T", 0x46a00012, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.ne.d", "D,S,T", 0x46a00013, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.sor.d", "D,S,T", 0x46a00019, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.sune.d", "D,S,T", 0x46a0001a, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"cmp.sne.d", "D,S,T", 0x46a0001b, 0xffe0003f, RD_S|RD_T|WR_D|FP_D, 0, I32R6}, |
| {"dvp", "", 0x41600024, 0xffffffff, TRAP, 0, I32R6}, |
| {"dvp", "t", 0x41600024, 0xffe0ffff, TRAP|WR_t, 0, I32R6}, |
| {"evp", "", 0x41600004, 0xffffffff, TRAP, 0, I32R6}, |
| {"evp", "t", 0x41600004, 0xffe0ffff, TRAP|WR_t, 0, I32R6}, |
| {"ginvi", "v", 0x7c00003d, 0xfc1ffcff, TRAP | INSN_TLB, 0, I32R6}, |
| {"ginvt", "v", 0x7c0000bd, 0xfc1ffcff, TRAP | INSN_TLB, 0, I32R6}, |
| {"crc32b", "t,v,t", 0x7c00000f, 0xfc00ff3f, WR_d | RD_s | RD_t, 0, I32R6}, |
| {"crc32h", "t,v,t", 0x7c00004f, 0xfc00ff3f, WR_d | RD_s | RD_t, 0, I32R6}, |
| {"crc32w", "t,v,t", 0x7c00008f, 0xfc00ff3f, WR_d | RD_s | RD_t, 0, I32R6}, |
| {"crc32d", "t,v,t", 0x7c0000cf, 0xfc00ff3f, WR_d | RD_s | RD_t, 0, I64R6}, |
| {"crc32cb", "t,v,t", 0x7c00010f, 0xfc00ff3f, WR_d | RD_s | RD_t, 0, I32R6}, |
| {"crc32ch", "t,v,t", 0x7c00014f, 0xfc00ff3f, WR_d | RD_s | RD_t, 0, I32R6}, |
| {"crc32cw", "t,v,t", 0x7c00018f, 0xfc00ff3f, WR_d | RD_s | RD_t, 0, I32R6}, |
| {"crc32cd", "t,v,t", 0x7c0001cf, 0xfc00ff3f, WR_d | RD_s | RD_t, 0, I64R6}, |
| |
| /* MSA */ |
| {"sll.b", "+d,+e,+f", 0x7800000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"sll.h", "+d,+e,+f", 0x7820000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"sll.w", "+d,+e,+f", 0x7840000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"sll.d", "+d,+e,+f", 0x7860000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"slli.b", "+d,+e,+7", 0x78700009, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"slli.h", "+d,+e,+8", 0x78600009, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"slli.w", "+d,+e,+9", 0x78400009, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"slli.d", "+d,+e,'", 0x78000009, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"sra.b", "+d,+e,+f", 0x7880000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"sra.h", "+d,+e,+f", 0x78a0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"sra.w", "+d,+e,+f", 0x78c0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"sra.d", "+d,+e,+f", 0x78e0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srai.b", "+d,+e,+7", 0x78f00009, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"srai.h", "+d,+e,+8", 0x78e00009, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srai.w", "+d,+e,+9", 0x78c00009, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srai.d", "+d,+e,'", 0x78800009, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srl.b", "+d,+e,+f", 0x7900000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srl.h", "+d,+e,+f", 0x7920000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srl.w", "+d,+e,+f", 0x7940000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srl.d", "+d,+e,+f", 0x7960000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srli.b", "+d,+e,+7", 0x79700009, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"srli.h", "+d,+e,+8", 0x79600009, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srli.w", "+d,+e,+9", 0x79400009, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srli.d", "+d,+e,'", 0x79000009, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bclr.b", "+d,+e,+f", 0x7980000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bclr.h", "+d,+e,+f", 0x79a0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bclr.w", "+d,+e,+f", 0x79c0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bclr.d", "+d,+e,+f", 0x79e0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bclri.b", "+d,+e,+7", 0x79f00009, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"bclri.h", "+d,+e,+8", 0x79e00009, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bclri.w", "+d,+e,+9", 0x79c00009, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bclri.d", "+d,+e,'", 0x79800009, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bset.b", "+d,+e,+f", 0x7a00000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bset.h", "+d,+e,+f", 0x7a20000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bset.w", "+d,+e,+f", 0x7a40000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bset.d", "+d,+e,+f", 0x7a60000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bseti.b", "+d,+e,+7", 0x7a700009, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"bseti.h", "+d,+e,+8", 0x7a600009, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bseti.w", "+d,+e,+9", 0x7a400009, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bseti.d", "+d,+e,'", 0x7a000009, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bneg.b", "+d,+e,+f", 0x7a80000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bneg.h", "+d,+e,+f", 0x7aa0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bneg.w", "+d,+e,+f", 0x7ac0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bneg.d", "+d,+e,+f", 0x7ae0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bnegi.b", "+d,+e,+7", 0x7af00009, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"bnegi.h", "+d,+e,+8", 0x7ae00009, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bnegi.w", "+d,+e,+9", 0x7ac00009, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"bnegi.d", "+d,+e,'", 0x7a800009, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"binsl.b", "+d,+e,+f", 0x7b00000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"binsl.h", "+d,+e,+f", 0x7b20000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"binsl.w", "+d,+e,+f", 0x7b40000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"binsl.d", "+d,+e,+f", 0x7b60000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"binsli.b", "+d,+e,+7", 0x7b700009, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"binsli.h", "+d,+e,+8", 0x7b600009, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"binsli.w", "+d,+e,+9", 0x7b400009, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"binsli.d", "+d,+e,'", 0x7b000009, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"binsr.b", "+d,+e,+f", 0x7b80000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"binsr.h", "+d,+e,+f", 0x7ba0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"binsr.w", "+d,+e,+f", 0x7bc0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"binsr.d", "+d,+e,+f", 0x7be0000d, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"binsri.b", "+d,+e,+7", 0x7bf00009, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"binsri.h", "+d,+e,+8", 0x7be00009, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"binsri.w", "+d,+e,+9", 0x7bc00009, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"binsri.d", "+d,+e,'", 0x7b800009, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"addv.b", "+d,+e,+f", 0x7800000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"addv.h", "+d,+e,+f", 0x7820000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"addv.w", "+d,+e,+f", 0x7840000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"addv.d", "+d,+e,+f", 0x7860000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"addvi.b", "+d,+e,k", 0x78000006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"addvi.h", "+d,+e,k", 0x78200006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"addvi.w", "+d,+e,k", 0x78400006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"addvi.d", "+d,+e,k", 0x78600006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"subv.b", "+d,+e,+f", 0x7880000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subv.h", "+d,+e,+f", 0x78a0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subv.w", "+d,+e,+f", 0x78c0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subv.d", "+d,+e,+f", 0x78e0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subvi.b", "+d,+e,k", 0x78800006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"subvi.h", "+d,+e,k", 0x78a00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"subvi.w", "+d,+e,k", 0x78c00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"subvi.d", "+d,+e,k", 0x78e00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"max_s.b", "+d,+e,+f", 0x7900000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_s.h", "+d,+e,+f", 0x7920000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_s.w", "+d,+e,+f", 0x7940000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_s.d", "+d,+e,+f", 0x7960000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"maxi_s.b", "+d,+e,+5", 0x79000006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"maxi_s.h", "+d,+e,+5", 0x79200006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"maxi_s.w", "+d,+e,+5", 0x79400006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"maxi_s.d", "+d,+e,+5", 0x79600006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"max_u.b", "+d,+e,+f", 0x7980000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_u.h", "+d,+e,+f", 0x79a0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_u.w", "+d,+e,+f", 0x79c0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_u.d", "+d,+e,+f", 0x79e0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"maxi_u.b", "+d,+e,k", 0x79800006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"maxi_u.h", "+d,+e,k", 0x79a00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"maxi_u.w", "+d,+e,k", 0x79c00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"maxi_u.d", "+d,+e,k", 0x79e00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"min_s.b", "+d,+e,+f", 0x7a00000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_s.h", "+d,+e,+f", 0x7a20000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_s.w", "+d,+e,+f", 0x7a40000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_s.d", "+d,+e,+f", 0x7a60000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mini_s.b", "+d,+e,+5", 0x7a000006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"mini_s.h", "+d,+e,+5", 0x7a200006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"mini_s.w", "+d,+e,+5", 0x7a400006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"mini_s.d", "+d,+e,+5", 0x7a600006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"min_u.b", "+d,+e,+f", 0x7a80000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_u.h", "+d,+e,+f", 0x7aa0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_u.w", "+d,+e,+f", 0x7ac0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_u.d", "+d,+e,+f", 0x7ae0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mini_u.b", "+d,+e,k", 0x7a800006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"mini_u.h", "+d,+e,k", 0x7aa00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"mini_u.w", "+d,+e,k", 0x7ac00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"mini_u.d", "+d,+e,k", 0x7ae00006, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"max_a.b", "+d,+e,+f", 0x7b00000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_a.h", "+d,+e,+f", 0x7b20000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_a.w", "+d,+e,+f", 0x7b40000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"max_a.d", "+d,+e,+f", 0x7b60000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_a.b", "+d,+e,+f", 0x7b80000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_a.h", "+d,+e,+f", 0x7ba0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_a.w", "+d,+e,+f", 0x7bc0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"min_a.d", "+d,+e,+f", 0x7be0000e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ceq.b", "+d,+e,+f", 0x7800000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ceq.h", "+d,+e,+f", 0x7820000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ceq.w", "+d,+e,+f", 0x7840000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ceq.d", "+d,+e,+f", 0x7860000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ceqi.b", "+d,+e,+5", 0x78000007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"ceqi.h", "+d,+e,+5", 0x78200007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"ceqi.w", "+d,+e,+5", 0x78400007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"ceqi.d", "+d,+e,+5", 0x78600007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clt_s.b", "+d,+e,+f", 0x7900000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clt_s.h", "+d,+e,+f", 0x7920000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clt_s.w", "+d,+e,+f", 0x7940000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clt_s.d", "+d,+e,+f", 0x7960000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clti_s.b", "+d,+e,+5", 0x79000007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clti_s.h", "+d,+e,+5", 0x79200007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clti_s.w", "+d,+e,+5", 0x79400007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clti_s.d", "+d,+e,+5", 0x79600007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clt_u.b", "+d,+e,+f", 0x7980000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clt_u.h", "+d,+e,+f", 0x79a0000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clt_u.w", "+d,+e,+f", 0x79c0000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clt_u.d", "+d,+e,+f", 0x79e0000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clti_u.b", "+d,+e,k", 0x79800007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clti_u.h", "+d,+e,k", 0x79a00007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clti_u.w", "+d,+e,k", 0x79c00007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clti_u.d", "+d,+e,k", 0x79e00007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"cle_s.b", "+d,+e,+f", 0x7a00000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"cle_s.h", "+d,+e,+f", 0x7a20000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"cle_s.w", "+d,+e,+f", 0x7a40000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"cle_s.d", "+d,+e,+f", 0x7a60000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clei_s.b", "+d,+e,+5", 0x7a000007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clei_s.h", "+d,+e,+5", 0x7a200007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clei_s.w", "+d,+e,+5", 0x7a400007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clei_s.d", "+d,+e,+5", 0x7a600007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"cle_u.b", "+d,+e,+f", 0x7a80000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"cle_u.h", "+d,+e,+f", 0x7aa0000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"cle_u.w", "+d,+e,+f", 0x7ac0000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"cle_u.d", "+d,+e,+f", 0x7ae0000f, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"clei_u.b", "+d,+e,k", 0x7a800007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clei_u.h", "+d,+e,k", 0x7aa00007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clei_u.w", "+d,+e,k", 0x7ac00007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"clei_u.d", "+d,+e,k", 0x7ae00007, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"ld.b", "+d,+^(d)", 0x78000020, 0xfc00003f, WR_VD|LDD, RD_d, MSA}, |
| {"ld.h", "+d,+#(d)", 0x78000021, 0xfc00003f, WR_VD|LDD, RD_d, MSA}, |
| {"ld.w", "+d,+$(d)", 0x78000022, 0xfc00003f, WR_VD|LDD, RD_d, MSA}, |
| {"ld.d", "+d,+%(d)", 0x78000023, 0xfc00003f, WR_VD|LDD, RD_d, MSA}, |
| {"st.b", "+d,+^(d)", 0x78000024, 0xfc00003f, RD_VD|SM, RD_d, MSA}, |
| {"st.h", "+d,+#(d)", 0x78000025, 0xfc00003f, RD_VD|SM, RD_d, MSA}, |
| {"st.w", "+d,+$(d)", 0x78000026, 0xfc00003f, RD_VD|SM, RD_d, MSA}, |
| {"st.d", "+d,+%(d)", 0x78000027, 0xfc00003f, RD_VD|SM, RD_d, MSA}, |
| {"sat_s.b", "+d,+e,+7", 0x7870000a, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"sat_s.h", "+d,+e,+8", 0x7860000a, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"sat_s.w", "+d,+e,+9", 0x7840000a, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"sat_s.d", "+d,+e,'", 0x7800000a, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"sat_u.b", "+d,+e,+7", 0x78f0000a, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"sat_u.h", "+d,+e,+8", 0x78e0000a, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"sat_u.w", "+d,+e,+9", 0x78c0000a, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"sat_u.d", "+d,+e,'", 0x7880000a, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"add_a.b", "+d,+e,+f", 0x78000010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"add_a.h", "+d,+e,+f", 0x78200010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"add_a.w", "+d,+e,+f", 0x78400010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"add_a.d", "+d,+e,+f", 0x78600010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_a.b", "+d,+e,+f", 0x78800010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_a.h", "+d,+e,+f", 0x78a00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_a.w", "+d,+e,+f", 0x78c00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_a.d", "+d,+e,+f", 0x78e00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_s.b", "+d,+e,+f", 0x79000010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_s.h", "+d,+e,+f", 0x79200010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_s.w", "+d,+e,+f", 0x79400010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_s.d", "+d,+e,+f", 0x79600010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_u.b", "+d,+e,+f", 0x79800010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_u.h", "+d,+e,+f", 0x79a00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_u.w", "+d,+e,+f", 0x79c00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"adds_u.d", "+d,+e,+f", 0x79e00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ave_s.b", "+d,+e,+f", 0x7a000010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ave_s.h", "+d,+e,+f", 0x7a200010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ave_s.w", "+d,+e,+f", 0x7a400010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ave_s.d", "+d,+e,+f", 0x7a600010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ave_u.b", "+d,+e,+f", 0x7a800010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ave_u.h", "+d,+e,+f", 0x7aa00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ave_u.w", "+d,+e,+f", 0x7ac00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ave_u.d", "+d,+e,+f", 0x7ae00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"aver_s.b", "+d,+e,+f", 0x7b000010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"aver_s.h", "+d,+e,+f", 0x7b200010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"aver_s.w", "+d,+e,+f", 0x7b400010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"aver_s.d", "+d,+e,+f", 0x7b600010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"aver_u.b", "+d,+e,+f", 0x7b800010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"aver_u.h", "+d,+e,+f", 0x7ba00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"aver_u.w", "+d,+e,+f", 0x7bc00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"aver_u.d", "+d,+e,+f", 0x7be00010, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subs_s.b", "+d,+e,+f", 0x78000011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subs_s.h", "+d,+e,+f", 0x78200011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subs_s.w", "+d,+e,+f", 0x78400011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subs_s.d", "+d,+e,+f", 0x78600011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subs_u.b", "+d,+e,+f", 0x78800011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subs_u.h", "+d,+e,+f", 0x78a00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subs_u.w", "+d,+e,+f", 0x78c00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subs_u.d", "+d,+e,+f", 0x78e00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subsus_u.b", "+d,+e,+f", 0x79000011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subsus_u.h", "+d,+e,+f", 0x79200011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subsus_u.w", "+d,+e,+f", 0x79400011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subsus_u.d", "+d,+e,+f", 0x79600011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subsuu_s.b", "+d,+e,+f", 0x79800011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subsuu_s.h", "+d,+e,+f", 0x79a00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subsuu_s.w", "+d,+e,+f", 0x79c00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"subsuu_s.d", "+d,+e,+f", 0x79e00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"asub_s.b", "+d,+e,+f", 0x7a000011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"asub_s.h", "+d,+e,+f", 0x7a200011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"asub_s.w", "+d,+e,+f", 0x7a400011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"asub_s.d", "+d,+e,+f", 0x7a600011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"asub_u.b", "+d,+e,+f", 0x7a800011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"asub_u.h", "+d,+e,+f", 0x7aa00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"asub_u.w", "+d,+e,+f", 0x7ac00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"asub_u.d", "+d,+e,+f", 0x7ae00011, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mulv.b", "+d,+e,+f", 0x78000012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mulv.h", "+d,+e,+f", 0x78200012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mulv.w", "+d,+e,+f", 0x78400012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mulv.d", "+d,+e,+f", 0x78600012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"maddv.b", "+d,+e,+f", 0x78800012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"maddv.h", "+d,+e,+f", 0x78a00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"maddv.w", "+d,+e,+f", 0x78c00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"maddv.d", "+d,+e,+f", 0x78e00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"msubv.b", "+d,+e,+f", 0x79000012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"msubv.h", "+d,+e,+f", 0x79200012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"msubv.w", "+d,+e,+f", 0x79400012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"msubv.d", "+d,+e,+f", 0x79600012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"div_s.b", "+d,+e,+f", 0x7a000012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"div_s.h", "+d,+e,+f", 0x7a200012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"div_s.w", "+d,+e,+f", 0x7a400012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"div_s.d", "+d,+e,+f", 0x7a600012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"div_u.b", "+d,+e,+f", 0x7a800012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"div_u.h", "+d,+e,+f", 0x7aa00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"div_u.w", "+d,+e,+f", 0x7ac00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"div_u.d", "+d,+e,+f", 0x7ae00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mod_s.b", "+d,+e,+f", 0x7b000012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mod_s.h", "+d,+e,+f", 0x7b200012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mod_s.w", "+d,+e,+f", 0x7b400012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mod_s.d", "+d,+e,+f", 0x7b600012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mod_u.b", "+d,+e,+f", 0x7b800012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mod_u.h", "+d,+e,+f", 0x7ba00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mod_u.w", "+d,+e,+f", 0x7bc00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mod_u.d", "+d,+e,+f", 0x7be00012, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dotp_s.h", "+d,+e,+f", 0x78200013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dotp_s.w", "+d,+e,+f", 0x78400013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dotp_s.d", "+d,+e,+f", 0x78600013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dotp_u.h", "+d,+e,+f", 0x78a00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dotp_u.w", "+d,+e,+f", 0x78c00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dotp_u.d", "+d,+e,+f", 0x78e00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpadd_s.h", "+d,+e,+f", 0x79200013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpadd_s.w", "+d,+e,+f", 0x79400013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpadd_s.d", "+d,+e,+f", 0x79600013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpadd_u.h", "+d,+e,+f", 0x79a00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpadd_u.w", "+d,+e,+f", 0x79c00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpadd_u.d", "+d,+e,+f", 0x79e00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpsub_s.h", "+d,+e,+f", 0x7a200013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpsub_s.w", "+d,+e,+f", 0x7a400013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpsub_s.d", "+d,+e,+f", 0x7a600013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpsub_u.h", "+d,+e,+f", 0x7aa00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpsub_u.w", "+d,+e,+f", 0x7ac00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"dpsub_u.d", "+d,+e,+f", 0x7ae00013, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"sld.b", "+d,+e[t]", 0x78000014, 0xffe0003f, WR_VD|RD_VS|RD_t, 0, MSA}, |
| {"sld.h", "+d,+e[t]", 0x78200014, 0xffe0003f, WR_VD|RD_VS|RD_t, 0, MSA}, |
| {"sld.w", "+d,+e[t]", 0x78400014, 0xffe0003f, WR_VD|RD_VS|RD_t, 0, MSA}, |
| {"sld.d", "+d,+e[t]", 0x78600014, 0xffe0003f, WR_VD|RD_VS|RD_t, 0, MSA}, |
| {"sldi.b", "+d,+e[+9]", 0x78000019, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"sldi.h", "+d,+e[+8]", 0x78200019, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"sldi.w", "+d,+e[+7]", 0x78300019, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"sldi.d", "+d,+e[+6]", 0x78380019, 0xfffc003f, WR_VD|RD_VS, 0, MSA}, |
| {"splat.b", "+d,+e[t]", 0x78800014, 0xffe0003f, WR_VD|RD_VS|RD_t, 0, MSA}, |
| {"splat.h", "+d,+e[t]", 0x78a00014, 0xffe0003f, WR_VD|RD_VS|RD_t, 0, MSA}, |
| {"splat.w", "+d,+e[t]", 0x78c00014, 0xffe0003f, WR_VD|RD_VS|RD_t, 0, MSA}, |
| {"splat.d", "+d,+e[t]", 0x78e00014, 0xffe0003f, WR_VD|RD_VS|RD_t, 0, MSA}, |
| {"splati.b", "+d,+e[+9]", 0x78400019, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"splati.h", "+d,+e[+8]", 0x78600019, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"splati.w", "+d,+e[+7]", 0x78700019, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"splati.d", "+d,+e[+6]", 0x78780019, 0xfffc003f, WR_VD|RD_VS, 0, MSA}, |
| {"pckev.b", "+d,+e,+f", 0x79000014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"pckev.h", "+d,+e,+f", 0x79200014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"pckev.w", "+d,+e,+f", 0x79400014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"pckev.d", "+d,+e,+f", 0x79600014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"pckod.b", "+d,+e,+f", 0x79800014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"pckod.h", "+d,+e,+f", 0x79a00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"pckod.w", "+d,+e,+f", 0x79c00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"pckod.d", "+d,+e,+f", 0x79e00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvl.b", "+d,+e,+f", 0x7a000014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvl.h", "+d,+e,+f", 0x7a200014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvl.w", "+d,+e,+f", 0x7a400014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvl.d", "+d,+e,+f", 0x7a600014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvr.b", "+d,+e,+f", 0x7a800014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvr.h", "+d,+e,+f", 0x7aa00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvr.w", "+d,+e,+f", 0x7ac00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvr.d", "+d,+e,+f", 0x7ae00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvev.b", "+d,+e,+f", 0x7b000014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvev.h", "+d,+e,+f", 0x7b200014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvev.w", "+d,+e,+f", 0x7b400014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvev.d", "+d,+e,+f", 0x7b600014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvod.b", "+d,+e,+f", 0x7b800014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvod.h", "+d,+e,+f", 0x7ba00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvod.w", "+d,+e,+f", 0x7bc00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ilvod.d", "+d,+e,+f", 0x7be00014, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"vshf.b", "+d,+e,+f", 0x78000015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"vshf.h", "+d,+e,+f", 0x78200015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"vshf.w", "+d,+e,+f", 0x78400015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"vshf.d", "+d,+e,+f", 0x78600015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srar.b", "+d,+e,+f", 0x78800015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srar.h", "+d,+e,+f", 0x78a00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srar.w", "+d,+e,+f", 0x78c00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srar.d", "+d,+e,+f", 0x78e00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srari.b", "+d,+e,+7", 0x7970000a, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"srari.h", "+d,+e,+8", 0x7960000a, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srari.w", "+d,+e,+9", 0x7940000a, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srari.d", "+d,+e,'", 0x7900000a, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srlr.b", "+d,+e,+f", 0x79000015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srlr.h", "+d,+e,+f", 0x79200015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srlr.w", "+d,+e,+f", 0x79400015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srlr.d", "+d,+e,+f", 0x79600015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"srlri.b", "+d,+e,+7", 0x79f0000a, 0xfff8003f, WR_VD|RD_VS, 0, MSA}, |
| {"srlri.h", "+d,+e,+8", 0x79e0000a, 0xfff0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srlri.w", "+d,+e,+9", 0x79c0000a, 0xffe0003f, WR_VD|RD_VS, 0, MSA}, |
| {"srlri.d", "+d,+e,'", 0x7980000a, 0xffc0003f, WR_VD|RD_VS, 0, MSA}, |
| {"hadd_s.h", "+d,+e,+f", 0x7a200015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hadd_s.w", "+d,+e,+f", 0x7a400015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hadd_s.d", "+d,+e,+f", 0x7a600015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hadd_u.h", "+d,+e,+f", 0x7aa00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hadd_u.w", "+d,+e,+f", 0x7ac00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hadd_u.d", "+d,+e,+f", 0x7ae00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hsub_s.h", "+d,+e,+f", 0x7b200015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hsub_s.w", "+d,+e,+f", 0x7b400015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hsub_s.d", "+d,+e,+f", 0x7b600015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hsub_u.h", "+d,+e,+f", 0x7ba00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hsub_u.w", "+d,+e,+f", 0x7bc00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"hsub_u.d", "+d,+e,+f", 0x7be00015, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"and.v", "+d,+e,+f", 0x7800001e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"andi.b", "+d,+e,5", 0x78000000, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"or.v", "+d,+e,+f", 0x7820001e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ori.b", "+d,+e,5", 0x79000000, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"nor.v", "+d,+e,+f", 0x7840001e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"nori.b", "+d,+e,5", 0x7a000000, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"xor.v", "+d,+e,+f", 0x7860001e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"xori.b", "+d,+e,5", 0x7b000000, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"bmnz.v", "+d,+e,+f", 0x7880001e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bmnzi.b", "+d,+e,5", 0x78000001, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"bmz.v", "+d,+e,+f", 0x78a0001e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bmzi.b", "+d,+e,5", 0x79000001, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"bsel.v", "+d,+e,+f", 0x78c0001e, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"bseli.b", "+d,+e,5", 0x7a000001, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"shf.b", "+d,+e,5", 0x78000002, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"shf.h", "+d,+e,5", 0x79000002, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"shf.w", "+d,+e,5", 0x7a000002, 0xff00003f, WR_VD|RD_VS, 0, MSA}, |
| {"bnz.v", "+f,p", 0x45e00000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"bz.v", "+f,p", 0x45600000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"fill.b", "+d,d", 0x7b00001e, 0xffff003f, WR_VD, RD_d, MSA}, |
| {"fill.h", "+d,d", 0x7b01001e, 0xffff003f, WR_VD, RD_d, MSA}, |
| {"fill.w", "+d,d", 0x7b02001e, 0xffff003f, WR_VD, RD_d, MSA}, |
| {"fill.d", "+d,d", 0x7b03001e, 0xffff003f, WR_VD, RD_d, MSA64}, |
| {"pcnt.b", "+d,+e", 0x7b04001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"pcnt.h", "+d,+e", 0x7b05001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"pcnt.w", "+d,+e", 0x7b06001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"pcnt.d", "+d,+e", 0x7b07001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"nloc.b", "+d,+e", 0x7b08001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"nloc.h", "+d,+e", 0x7b09001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"nloc.w", "+d,+e", 0x7b0a001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"nloc.d", "+d,+e", 0x7b0b001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"nlzc.b", "+d,+e", 0x7b0c001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"nlzc.h", "+d,+e", 0x7b0d001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"nlzc.w", "+d,+e", 0x7b0e001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"nlzc.d", "+d,+e", 0x7b0f001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"copy_s.b", "+i,+e[+9]", 0x78800019, 0xffe0003f, RD_VS, RD_rd6, MSA}, |
| {"copy_s.h", "+i,+e[+8]", 0x78a00019, 0xfff0003f, RD_VS, RD_rd6, MSA}, |
| {"copy_s.w", "+i,+e[+7]", 0x78b00019, 0xfff8003f, RD_VS, RD_rd6, MSA}, |
| {"copy_s.d", "+i,+e[+6]", 0x78b80019, 0xfffc003f, RD_VS, RD_rd6, MSA64}, |
| {"copy_u.b", "+i,+e[+9]", 0x78c00019, 0xffe0003f, RD_VS, RD_rd6, MSA}, |
| {"copy_u.h", "+i,+e[+8]", 0x78e00019, 0xfff0003f, RD_VS, RD_rd6, MSA}, |
| {"copy_u.w", "+i,+e[+7]", 0x78f00019, 0xfff8003f, RD_VS, RD_rd6, MSA}, |
| {"copy_u.d", "+i,+e[+6]", 0x78f80019, 0xfffc003f, RD_VS, RD_rd6, MSA64}, |
| {"insert.b", "+d[+9],d", 0x79000019, 0xffe0003f, WR_VD|RD_VD, RD_d, MSA}, |
| {"insert.h", "+d[+8],d", 0x79200019, 0xfff0003f, WR_VD|RD_VD, RD_d, MSA}, |
| {"insert.w", "+d[+7],d", 0x79300019, 0xfff8003f, WR_VD|RD_VD, RD_d, MSA}, |
| {"insert.d", "+d[+6],d", 0x79380019, 0xfffc003f, WR_VD|RD_VD, RD_d, MSA64}, |
| {"insve.b", "+d[+9],+e[+~]", 0x79400019, 0xffe0003f, WR_VD|RD_VD|RD_VS, 0, MSA}, |
| {"insve.h", "+d[+8],+e[+~]", 0x79600019, 0xfff0003f, WR_VD|RD_VD|RD_VS, 0, MSA}, |
| {"insve.w", "+d[+7],+e[+~]", 0x79700019, 0xfff8003f, WR_VD|RD_VD|RD_VS, 0, MSA}, |
| {"insve.d", "+d[+6],+e[+~]", 0x79780019, 0xfffc003f, WR_VD|RD_VD|RD_VS, 0, MSA}, |
| {"bnz.b", "+f,p", 0x47800000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"bnz.h", "+f,p", 0x47a00000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"bnz.w", "+f,p", 0x47c00000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"bnz.d", "+f,p", 0x47e00000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"bz.b", "+f,p", 0x47000000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"bz.h", "+f,p", 0x47200000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"bz.w", "+f,p", 0x47400000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"bz.d", "+f,p", 0x47600000, 0xffe00000, CBD|RD_VT, 0, MSA}, |
| {"ldi.b", "+d,+0", 0x7b000007, 0xffe0003f, WR_VD, 0, MSA}, |
| {"ldi.h", "+d,+0", 0x7b200007, 0xffe0003f, WR_VD, 0, MSA}, |
| {"ldi.w", "+d,+0", 0x7b400007, 0xffe0003f, WR_VD, 0, MSA}, |
| {"ldi.d", "+d,+0", 0x7b600007, 0xffe0003f, WR_VD, 0, MSA}, |
| {"fcaf.w", "+d,+e,+f", 0x7800001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcaf.d", "+d,+e,+f", 0x7820001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcun.w", "+d,+e,+f", 0x7840001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcun.d", "+d,+e,+f", 0x7860001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fceq.w", "+d,+e,+f", 0x7880001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fceq.d", "+d,+e,+f", 0x78a0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcueq.w", "+d,+e,+f", 0x78c0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcueq.d", "+d,+e,+f", 0x78e0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fclt.w", "+d,+e,+f", 0x7900001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fclt.d", "+d,+e,+f", 0x7920001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcult.w", "+d,+e,+f", 0x7940001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcult.d", "+d,+e,+f", 0x7960001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcle.w", "+d,+e,+f", 0x7980001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcle.d", "+d,+e,+f", 0x79a0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcule.w", "+d,+e,+f", 0x79c0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcule.d", "+d,+e,+f", 0x79e0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsaf.w", "+d,+e,+f", 0x7a00001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsaf.d", "+d,+e,+f", 0x7a20001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsun.w", "+d,+e,+f", 0x7a40001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsun.d", "+d,+e,+f", 0x7a60001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fseq.w", "+d,+e,+f", 0x7a80001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fseq.d", "+d,+e,+f", 0x7aa0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsueq.w", "+d,+e,+f", 0x7ac0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsueq.d", "+d,+e,+f", 0x7ae0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fslt.w", "+d,+e,+f", 0x7b00001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fslt.d", "+d,+e,+f", 0x7b20001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsult.w", "+d,+e,+f", 0x7b40001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsult.d", "+d,+e,+f", 0x7b60001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsle.w", "+d,+e,+f", 0x7b80001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsle.d", "+d,+e,+f", 0x7ba0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsule.w", "+d,+e,+f", 0x7bc0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsule.d", "+d,+e,+f", 0x7be0001a, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fadd.w", "+d,+e,+f", 0x7800001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fadd.d", "+d,+e,+f", 0x7820001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsub.w", "+d,+e,+f", 0x7840001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsub.d", "+d,+e,+f", 0x7860001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmul.w", "+d,+e,+f", 0x7880001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmul.d", "+d,+e,+f", 0x78a0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fdiv.w", "+d,+e,+f", 0x78c0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fdiv.d", "+d,+e,+f", 0x78e0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmadd.w", "+d,+e,+f", 0x7900001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmadd.d", "+d,+e,+f", 0x7920001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmsub.w", "+d,+e,+f", 0x7940001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmsub.d", "+d,+e,+f", 0x7960001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fexp2.w", "+d,+e,+f", 0x79c0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fexp2.d", "+d,+e,+f", 0x79e0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fexdo.h", "+d,+e,+f", 0x7a00001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fexdo.w", "+d,+e,+f", 0x7a20001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ftq.h", "+d,+e,+f", 0x7a80001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"ftq.w", "+d,+e,+f", 0x7aa0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmin.w", "+d,+e,+f", 0x7b00001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmin.d", "+d,+e,+f", 0x7b20001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmin_a.w", "+d,+e,+f", 0x7b40001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmin_a.d", "+d,+e,+f", 0x7b60001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmax.w", "+d,+e,+f", 0x7b80001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmax.d", "+d,+e,+f", 0x7ba0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmax_a.w", "+d,+e,+f", 0x7bc0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fmax_a.d", "+d,+e,+f", 0x7be0001b, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcor.w", "+d,+e,+f", 0x7840001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcor.d", "+d,+e,+f", 0x7860001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcune.w", "+d,+e,+f", 0x7880001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcune.d", "+d,+e,+f", 0x78a0001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcne.w", "+d,+e,+f", 0x78c0001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fcne.d", "+d,+e,+f", 0x78e0001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mul_q.h", "+d,+e,+f", 0x7900001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mul_q.w", "+d,+e,+f", 0x7920001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"madd_q.h", "+d,+e,+f", 0x7940001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"madd_q.w", "+d,+e,+f", 0x7960001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"msub_q.h", "+d,+e,+f", 0x7980001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"msub_q.w", "+d,+e,+f", 0x79a0001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsor.w", "+d,+e,+f", 0x7a40001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsor.d", "+d,+e,+f", 0x7a60001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsune.w", "+d,+e,+f", 0x7a80001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsune.d", "+d,+e,+f", 0x7aa0001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsne.w", "+d,+e,+f", 0x7ac0001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fsne.d", "+d,+e,+f", 0x7ae0001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mulr_q.h", "+d,+e,+f", 0x7b00001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"mulr_q.w", "+d,+e,+f", 0x7b20001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"maddr_q.h", "+d,+e,+f", 0x7b40001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"maddr_q.w", "+d,+e,+f", 0x7b60001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"msubr_q.h", "+d,+e,+f", 0x7b80001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"msubr_q.w", "+d,+e,+f", 0x7ba0001c, 0xffe0003f, WR_VD|RD_VS|RD_VT, 0, MSA}, |
| {"fclass.w", "+d,+e", 0x7b20001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"fclass.d", "+d,+e", 0x7b21001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"fsqrt.w", "+d,+e", 0x7b26001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"fsqrt.d", "+d,+e", 0x7b27001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"frsqrt.w", "+d,+e", 0x7b28001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"frsqrt.d", "+d,+e", 0x7b29001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"frcp.w", "+d,+e", 0x7b2a001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"frcp.d", "+d,+e", 0x7b2b001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"frint.w", "+d,+e", 0x7b2c001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"frint.d", "+d,+e", 0x7b2d001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"flog2.w", "+d,+e", 0x7b2e001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"flog2.d", "+d,+e", 0x7b2f001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"fexupl.w", "+d,+e", 0x7b30001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"fexupl.d", "+d,+e", 0x7b31001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"fexupr.w", "+d,+e", 0x7b32001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"fexupr.d", "+d,+e", 0x7b33001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ffql.w", "+d,+e", 0x7b34001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ffql.d", "+d,+e", 0x7b35001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ffqr.w", "+d,+e", 0x7b36001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ffqr.d", "+d,+e", 0x7b37001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ftint_s.w", "+d,+e", 0x7b38001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ftint_s.d", "+d,+e", 0x7b39001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ftint_u.w", "+d,+e", 0x7b3a001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ftint_u.d", "+d,+e", 0x7b3b001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ffint_s.w", "+d,+e", 0x7b3c001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ffint_s.d", "+d,+e", 0x7b3d001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ffint_u.w", "+d,+e", 0x7b3e001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ffint_u.d", "+d,+e", 0x7b3f001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ftrunc_s.w", "+d,+e", 0x7b40001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ftrunc_s.d", "+d,+e", 0x7b41001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ftrunc_u.w", "+d,+e", 0x7b42001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ftrunc_u.d", "+d,+e", 0x7b43001e, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"ctcmsa", "+h,d", 0x783e0019, 0xffff003f, COD, RD_d, MSA}, |
| {"cfcmsa", "+i,+g", 0x787e0019, 0xffff003f, COD, 0, MSA}, |
| {"move.v", "+d,+e", 0x78be0019, 0xffff003f, WR_VD|RD_VS, 0, MSA}, |
| {"lsa", "d,v,t,+@", 0x00000005, 0xfc00073f, WR_d|RD_s|RD_t, 0, MSA}, |
| {"dlsa", "d,v,t,+@", 0x00000015, 0xfc00073f, WR_d|RD_s|RD_t, 0, MSA64}, |
| |
| {"pref", "k,o(b)", 0xcc000000, 0xfc000000, RD_b, 0, I4|I32|G3 }, |
| {"prefx", "h,t(b)", 0x4c00000f, 0xfc0007ff, RD_b|RD_t, 0, I4|I33 }, |
| {"nop", "", 0x00000000, 0xffffffff, 0, INSN2_ALIAS, I1 }, /* sll */ |
| {"ssnop", "", 0x00000040, 0xffffffff, 0, INSN2_ALIAS, I32|N55 }, /* sll */ |
| {"ehb", "", 0x000000c0, 0xffffffff, 0, INSN2_ALIAS, I33 }, /* sll */ |
| {"li", "t,j", 0x24000000, 0xffe00000, WR_t, INSN2_ALIAS, I1 }, /* addiu */ |
| {"li", "t,i", 0x34000000, 0xffe00000, WR_t, INSN2_ALIAS, I1 }, /* ori */ |
| {"li", "t,I", 0, (int) M_LI, INSN_MACRO, 0, I1 }, |
| {"move", "d,s", 0, (int) M_MOVE, INSN_MACRO, 0, I1 }, |
| {"move", "d,s", 0x0000002d, 0xfc1f07ff, WR_d|RD_s, INSN2_ALIAS, I3 },/* daddu */ |
| {"move", "d,s", 0x00000021, 0xfc1f07ff, WR_d|RD_s, INSN2_ALIAS, I1 },/* addu */ |
| {"move", "d,s", 0x00000025, 0xfc1f07ff, WR_d|RD_s, INSN2_ALIAS, I1 },/* or */ |
| {"b", "p", 0x10000000, 0xffff0000, UBD, INSN2_ALIAS, I1 },/* beq 0,0 */ |
| {"b", "p", 0x04010000, 0xffff0000, UBD, INSN2_ALIAS, I1 },/* bgez 0 */ |
| {"bal", "p", 0x04110000, 0xffff0000, UBD|WR_31, INSN2_ALIAS, I1 },/* bgezal 0*/ |
| |
| {"abs", "d,v", 0, (int) M_ABS, INSN_MACRO, 0, I1 }, |
| {"abs.s", "D,V", 0x46000005, 0xffff003f, WR_D|RD_S|FP_S, 0, I1 }, |
| {"abs.d", "D,V", 0x46200005, 0xffff003f, WR_D|RD_S|FP_D, 0, I1 }, |
| {"abs.ps", "D,V", 0x46c00005, 0xffff003f, WR_D|RD_S|FP_D, 0, I5|I33 }, |
| {"add", "d,v,t", 0x00000020, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I1 }, |
| {"add", "t,r,I", 0, (int) M_ADD_I, INSN_MACRO, 0, I1 }, |
| {"add.s", "D,V,T", 0x46000000, 0xffe0003f, WR_D|RD_S|RD_T|FP_S, 0, I1 }, |
| {"add.d", "D,V,T", 0x46200000, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I1 }, |
| {"add.ob", "X,Y,Q", 0x7800000b, 0xfc20003f, WR_D|RD_S|RD_T|FP_D, 0, MX|SB1 }, |
| {"add.ob", "D,S,T", 0x4ac0000b, 0xffe0003f, WR_D|RD_S|RD_T, 0, N54 }, |
| {"add.ob", "D,S,T[e]", 0x4800000b, 0xfe20003f, WR_D|RD_S|RD_T, 0, N54 }, |
| {"add.ob", "D,S,k", 0x4bc0000b, 0xffe0003f, WR_D|RD_S|RD_T, 0, N54 }, |
| {"add.ps", "D,V,T", 0x46c00000, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, I5|I33 }, |
| {"add.qh", "X,Y,Q", 0x7820000b, 0xfc20003f, WR_D|RD_S|RD_T|FP_D, 0, MX }, |
| {"adda.ob", "Y,Q", 0x78000037, 0xfc2007ff, RD_S|RD_T|FP_D, WR_MACC, MX|SB1 }, |
| {"adda.qh", "Y,Q", 0x78200037, 0xfc2007ff, RD_S|RD_T|FP_D, WR_MACC, MX }, |
| {"addi", "t,r,j", 0x20000000, 0xfc000000, WR_t|RD_s, 0, I1 }, |
| {"addiu", "t,r,j", 0x24000000, 0xfc000000, WR_t|RD_s, 0, I1 }, |
| {"addl.ob", "Y,Q", 0x78000437, 0xfc2007ff, RD_S|RD_T|FP_D, WR_MACC, MX|SB1 }, |
| {"addl.qh", "Y,Q", 0x78200437, 0xfc2007ff, RD_S|RD_T|FP_D, WR_MACC, MX }, |
| {"addr.ps", "D,S,T", 0x46c00018, 0xffe0003f, WR_D|RD_S|RD_T|FP_D, 0, M3D }, |
| {"addu", "d,v,t", 0x00000021, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I1 }, |
| {"addu", "t,r,I", 0, (int) M_ADDU_I, INSN_MACRO, 0, I1 }, |
| {"alni.ob", "X,Y,Z,O", 0x78000018, 0xff00003f, WR_D|RD_S|RD_T|FP_D, 0, MX|SB1 }, |
| {"alni.ob", "D,S,T,%", 0x48000018, 0xff00003f, WR_D|RD_S|RD_T, 0, N54 }, |
| {"alni.qh", "X,Y,Z,O", 0x7800001a, 0xff00003f, WR_D|RD_S|RD_T|FP_D, 0, MX }, |
| {"alnv.ps", "D,V,T,s", 0x4c00001e, 0xfc00003f, WR_D|RD_S|RD_T|FP_D, 0, I5|I33 }, |
| {"alnv.ob", "X,Y,Z,s", 0x78000019, 0xfc00003f, WR_D|RD_S|RD_T|RD_s|FP_D, 0, MX|SB1 }, |
| {"alnv.qh", "X,Y,Z,s", 0x7800001b, 0xfc00003f, WR_D|RD_S|RD_T|RD_s|FP_D, 0, MX }, |
| {"and", "d,v,t", 0x00000024, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I1 }, |
| {"and", "t,r,I", 0, (int) M_AND_I, INSN_MACRO, 0, I1 }, |
| {"and.ob", "X,Y,Q", 0x7800000c, 0xfc20003f, WR_D|RD_S|RD_T|FP_D, 0, MX|SB1 }, |
| {"and.ob", "D,S,T", 0x4ac0000c, 0xffe0003f, WR_D|RD_S|RD_T, 0, N54 }, |
| {"and.ob", "D,S,T[e]", 0x4800000c, 0xfe20003f, WR_D|RD_S|RD_T, 0, N54 }, |
| {"and.ob", "D,S,k", 0x4bc0000c, 0xffe0003f, WR_D|RD_S|RD_T, 0, N54 }, |
| {"and.qh", "X,Y,Q", 0x7820000c, 0xfc20003f, WR_D|RD_S|RD_T|FP_D, 0, MX }, |
| {"andi", "t,r,i", 0x30000000, 0xfc000000, WR_t|RD_s, 0, I1 }, |
| /* b is at the top of the table. */ |
| /* bal is at the top of the table. */ |
| /* bc0[tf]l? are at the bottom of the table. */ |
| {"bc1any2f", "N,p", 0x45200000, 0xffe30000, CBD|RD_CC|FP_S, 0, M3D }, |
| {"bc1any2t", "N,p", 0x45210000, 0xffe30000, CBD|RD_CC|FP_S, 0, M3D }, |
| {"bc1any4f", "N,p", 0x45400000, 0xffe30000, CBD|RD_CC|FP_S, 0, M3D }, |
| {"bc1any4t", "N,p", 0x45410000, 0xffe30000, CBD|RD_CC|FP_S, 0, M3D }, |
| {"bc1f", "p", 0x45000000, 0xffff0000, CBD|RD_CC|FP_S, 0, I1 }, |
| {"bc1f", "N,p", 0x45000000, 0xffe30000, CBD|RD_CC|FP_S, 0, I4|I32 }, |
| {"bc1fl", "p", 0x45020000, 0xffff0000, CBL|RD_CC|FP_S, 0, I2|T3 }, |
| {"bc1fl", "N,p", 0x45020000, 0xffe30000, CBL|RD_CC|FP_S, 0, I4|I32 }, |
| {"bc1t", "p", 0x45010000, 0xffff0000, CBD|RD_CC|FP_S, 0, I1 }, |
| {"bc1t", "N,p", 0x45010000, 0xffe30000, CBD|RD_CC|FP_S, 0, I4|I32 }, |
| {"bc1tl", "p", 0x45030000, 0xffff0000, CBL|RD_CC|FP_S, 0, I2|T3 }, |
| {"bc1tl", "N,p", 0x45030000, 0xffe30000, CBL|RD_CC|FP_S, 0, I4|I32 }, |
| /* bc2* are at the bottom of the table. */ |
| /* bc3* are at the bottom of the table. */ |
| {"beqz", "s,p", 0x10000000, 0xfc1f0000, CBD|RD_s, 0, I1 }, |
| {"beqzl", "s,p", 0x50000000, 0xfc1f0000, CBL|RD_s, 0, I2|T3 }, |
| {"beq", "s,t,p", 0x10000000, 0xfc000000, CBD|RD_s|RD_t, 0, I1 }, |
| {"beq", "s,I,p", 0, (int) M_BEQ_I, INSN_MACRO, 0, I1 }, |
| {"beql", "s,t,p", 0x50000000, 0xfc000000, CBL|RD_s|RD_t, 0, I2|T3 }, |
| {"beql", "s,I,p", 0, (int) M_BEQL_I, INSN_MACRO, 0, I2|T3 }, |
| {"bge", "s,t,p", 0, (int) M_BGE, INSN_MACRO, 0, I1 }, |
| {"bge", "s,I,p", 0, (int) M_BGE_I, INSN_MACRO, 0, I1 }, |
| {"bgel", "s,t,p", 0, (int) M_BGEL, INSN_MACRO, 0, I2|T3 }, |
| {"bgel", "s,I,p", 0, (int) M_BGEL_I, INSN_MACRO, 0, I2|T3 }, |
| {"bgeu", "s,t,p", 0, (int) M_BGEU, INSN_MACRO, 0, I1 }, |
| {"bgeu", "s,I,p", 0, (int) M_BGEU_I, INSN_MACRO, 0, I1 }, |
| {"bgeul", "s,t,p", 0, (int) M_BGEUL, INSN_MACRO, 0, I2|T3 }, |
| {"bgeul", "s,I,p", 0, (int) M_BGEUL_I, INSN_MACRO, 0, I2|T3 }, |
| {"bgez", "s,p", 0x04010000, 0xfc1f0000, CBD|RD_s, 0, I1 }, |
| {"bgezl", "s,p", 0x04030000, 0xfc1f0000, CBL|RD_s, 0, I2|T3 }, |
| {"bgezal", "s,p", 0x04110000, 0xfc1f0000, CBD|RD_s|WR_31, 0, I1 }, |
| {"bgezall", "s,p", 0x04130000, 0xfc1f0000, CBL|RD_s|WR_31, 0, I2|T3 }, |
| {"bgt", "s,t,p", 0, (int) M_BGT, INSN_MACRO, 0, I1 }, |
| {"bgt", "s,I,p", 0, (int) M_BGT_I, INSN_MACRO, 0, I1 }, |
| {"bgtl", "s,t,p", 0, (int) M_BGTL, INSN_MACRO, 0, I2|T3 }, |
| {"bgtl", "s,I,p", 0, (int) M_BGTL_I, INSN_MACRO, 0, I2|T3 }, |
| {"bgtu", "s,t,p", 0, (int) M_BGTU, INSN_MACRO, 0, I1 }, |
| {"bgtu", "s,I,p", 0, (int) M_BGTU_I, INSN_MACRO, 0, I1 }, |
| {"bgtul", "s,t,p", 0, (int) M_BGTUL, INSN_MACRO, 0, I2|T3 }, |
| {"bgtul", "s,I,p", 0, (int) M_BGTUL_I, INSN_MACRO, 0, I2|T3 }, |
| {"bgtz", "s,p", 0x1c000000, 0xfc1f0000, CBD|RD_s, 0, I1 }, |
| {"bgtzl", "s,p", 0x5c000000, 0xfc1f0000, CBL|RD_s, 0, I2|T3 }, |
| {"ble", "s,t,p", 0, (int) M_BLE, INSN_MACRO, 0, I1 }, |
| {"ble", "s,I,p", 0, (int) M_BLE_I, INSN_MACRO, 0, I1 }, |
| {"blel", "s,t,p", 0, (int) M_BLEL, INSN_MACRO, 0, I2|T3 }, |
| {"blel", "s,I,p", 0, (int) M_BLEL_I, INSN_MACRO, 0, I2|T3 }, |
| {"bleu", "s,t,p", 0, (int) M_BLEU, INSN_MACRO, 0, I1 }, |
| {"bleu", "s,I,p", 0, (int) M_BLEU_I, INSN_MACRO, 0, I1 }, |
| {"bleul", "s,t,p", 0, (int) M_BLEUL, INSN_MACRO, 0, I2|T3 }, |
| {"bleul", "s,I,p", 0, (int) M_BLEUL_I, INSN_MACRO, 0, I2|T3 }, |
| {"blez", "s,p", 0x18000000, 0xfc1f0000, CBD|RD_s, 0, I1 }, |
| {"blezl", "s,p", 0x58000000, 0xfc1f0000, CBL|RD_s, 0, I2|T3 }, |
| {"blt", "s,t,p", 0, (int) M_BLT, INSN_MACRO, 0, I1 }, |
| {"blt", "s,I,p", 0, (int) M_BLT_I, INSN_MACRO, 0, I1 }, |
| {"bltl", "s,t,p", 0, (int) M_BLTL, INSN_MACRO, 0, I2|T3 }, |
| {"bltl", "s,I,p", 0, (int) M_BLTL_I, INSN_MACRO, 0, I2|T3 }, |
| {"bltu", "s,t,p", 0, (int) M_BLTU, INSN_MACRO, 0, I1 }, |
| {"bltu", "s,I,p", 0, (int) M_BLTU_I, INSN_MACRO, 0, I1 }, |
| {"bltul", "s,t,p", 0, (int) M_BLTUL, INSN_MACRO, 0, I2|T3 }, |
| {"bltul", "s,I,p", 0, (int) M_BLTUL_I, INSN_MACRO, 0, I2|T3 }, |
| {"bltz", "s,p", 0x04000000, 0xfc1f0000, CBD|RD_s, 0, I1 }, |
| {"bltzl", "s,p", 0x04020000, 0xfc1f0000, CBL|RD_s, 0, I2|T3 }, |
| {"bltzal", "s,p", 0x04100000, 0xfc1f0000, CBD|RD_s|WR_31, 0, I1 }, |
| {"bltzall", "s,p", 0x04120000, 0xfc1f0000, CBL|RD_s|WR_31, 0, I2|T3 }, |
| {"bnez", "s,p", 0x14000000, 0xfc1f0000, CBD|RD_s, 0, I1 }, |
| {"bnezl", "s,p", 0x54000000, 0xfc1f0000, CBL|RD_s, 0, I2|T3 }, |
| {"bne", "s,t,p", 0x14000000, 0xfc000000, CBD|RD_s|RD_t, 0, I1 }, |
| {"bne", "s,I,p", 0, (int) M_BNE_I, INSN_MACRO, 0, I1 }, |
| {"bnel", "s,t,p", 0x54000000, 0xfc000000, CBL|RD_s|RD_t, 0, I2|T3 }, |
| {"bnel", "s,I,p", 0, (int) M_BNEL_I, INSN_MACRO, 0, I2|T3 }, |
| {"break", "", 0x0000000d, 0xffffffff, TRAP, 0, I1 }, |
| {"break", "c", 0x0000000d, 0xfc00ffff, TRAP, 0, I1 }, |
| {"break", "c,q", 0x0000000d, 0xfc00003f, TRAP, 0, I1 }, |
| {"c.f.d", "S,T", 0x46200030, 0xffe007ff, RD_S|RD_T|WR_CC|FP_D, 0, I1 }, |
| {"c.f.d", "M,S,T", 0x46200030, 0xffe000ff, RD_S|RD_T|WR_CC|FP_D, 0, I4|I32 }, |
| {"c.f.s", "S,T", 0x46000030, 0xffe007ff, RD_S|RD_T|WR_CC|FP_S, 0, I1 }, |
| {"c.f.s", "M,S,T", 0x46000030, 0xffe000ff, RD_S|RD_T|WR_CC|FP_S, 0, I4|I32 }, |
| {"c.f.ps", "S,T", 0x46c00030, 0xffe007ff, RD_S|RD_T|WR_CC|FP_D, 0, I5|I33 }, |
| {"c.f.ps", "M,S,T", 0x46c00030, 0xffe000ff, RD_S|RD_T|WR_CC|FP_D, 0, I5|I33 }, |
| {"c.un.d", "S,T", 0x46200031, 0xffe007ff, RD_S|RD_T|WR_CC|FP_D, 0, I1 }, |
| {"c.un.d", "M,S,T", 0x46200031, 0xffe000ff, RD_S|RD_T|WR_CC|FP_D, 0, I4|I32 }, |
| {"c.un.s", "S,T", 0x46000031, 0xffe007ff, RD_S|RD_T|WR_CC|FP_S, 0, I1 }, |
| {"c.un.s", "M,S,T", 0x46000031, 0xffe000ff, RD_S|RD_T|WR_CC|FP_S, 0, I4|I32 }, |
| {"c.un.ps", "S,T", 0x46c00031, 0xffe007ff, RD_S|RD_T|WR_CC|FP_D, 0, I5|I33 }, |
| {"c.un.ps", "M,S,T", 0x46c00031, 0xffe000ff, RD_S|RD_T|WR_CC|FP_D, 0, I5|I33 }, |
| {"c.eq.d", "S,T", 0x46200032, 0xffe007ff, RD_S|RD_T|WR_CC|FP_D, 0, I1 }, |
| {"c.eq.d&
|