MIPSInst           23 arch/mips/include/asm/inst.h #define MIPSInst_OPCODE(x) (MIPSInst(x) >> I_OPCODE_SFT)
MIPSInst           26 arch/mips/include/asm/inst.h #define MIPSInst_JTARGET(x) (MIPSInst(x) & 0x03ffffff)
MIPSInst           29 arch/mips/include/asm/inst.h #define MIPSInst_RS(x) ((MIPSInst(x) & 0x03e00000) >> I_RS_SFT)
MIPSInst           32 arch/mips/include/asm/inst.h #define MIPSInst_RT(x) ((MIPSInst(x) & 0x001f0000) >> I_RT_SFT)
MIPSInst           35 arch/mips/include/asm/inst.h #define MIPSInst_SIMM(x) ((int)((short)(MIPSInst(x) & 0xffff)))
MIPSInst           36 arch/mips/include/asm/inst.h #define MIPSInst_UIMM(x) (MIPSInst(x) & 0xffff)
MIPSInst           39 arch/mips/include/asm/inst.h #define MIPSInst_CACHEOP(x) ((MIPSInst(x) & 0x001c0000) >> I_CACHEOP_SFT)
MIPSInst           42 arch/mips/include/asm/inst.h #define MIPSInst_CACHESEL(x) ((MIPSInst(x) & 0x00030000) >> I_CACHESEL_SFT)
MIPSInst           45 arch/mips/include/asm/inst.h #define MIPSInst_RD(x) ((MIPSInst(x) & 0x0000f800) >> I_RD_SFT)
MIPSInst           48 arch/mips/include/asm/inst.h #define MIPSInst_RE(x) ((MIPSInst(x) & 0x000007c0) >> I_RE_SFT)
MIPSInst           51 arch/mips/include/asm/inst.h #define MIPSInst_FUNC(x) (MIPSInst(x) & 0x0000003f)
MIPSInst           54 arch/mips/include/asm/inst.h #define MIPSInst_FFMT(x) ((MIPSInst(x) & 0x01e00000) >> I_FFMT_SFT)
MIPSInst           57 arch/mips/include/asm/inst.h #define MIPSInst_FT(x) ((MIPSInst(x) & 0x001f0000) >> I_FT_SFT)
MIPSInst           60 arch/mips/include/asm/inst.h #define MIPSInst_FS(x) ((MIPSInst(x) & 0x0000f800) >> I_FS_SFT)
MIPSInst           63 arch/mips/include/asm/inst.h #define MIPSInst_FD(x) ((MIPSInst(x) & 0x000007c0) >> I_FD_SFT)
MIPSInst           66 arch/mips/include/asm/inst.h #define MIPSInst_FR(x) ((MIPSInst(x) & 0x03e00000) >> I_FR_SFT)
MIPSInst           69 arch/mips/include/asm/inst.h #define MIPSInst_FMA_FUNC(x) ((MIPSInst(x) & 0x0000003c) >> I_FMA_FUNC_SFT)
MIPSInst           72 arch/mips/include/asm/inst.h #define MIPSInst_FMA_FFMT(x) (MIPSInst(x) & 0x00000003)