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