Searched refs:ISAOPC (Results 1 – 3 of 3) sorted by relevance
/arch/mips/include/asm/ |
D | uasm.h | 38 #define ISAOPC(op) CL_uasm_i##op macro 41 #define ISAOPC(op) uasm_i##op macro 46 #define ISAOPC(op) uasm_i##op macro 49 #define ISAOPC(op) MM_uasm_i##op macro 58 ISAOPC(op)(u32 **buf, unsigned int a, unsigned int b, unsigned int c) 62 ISAOPC(op)(u32 **buf, unsigned int a, unsigned int b, unsigned int c) 66 ISAOPC(op)(u32 **buf, unsigned int a, unsigned int b, unsigned int c) 70 ISAOPC(op)(u32 **buf, unsigned int a, unsigned int b, signed int c) 74 ISAOPC(op)(u32 **buf, unsigned int a, signed int b, unsigned int c) 78 ISAOPC(op)(u32 **buf, unsigned int a, unsigned int b, signed int c) [all …]
|
/arch/mips/mm/ |
D | uasm-micromips.c | 44 #define MM_uasm_i_b(buf, off) ISAOPC(_beq)(buf, 0, 0, off) 45 #define MM_uasm_i_beqz(buf, rs, off) ISAOPC(_beq)(buf, rs, 0, off) 46 #define MM_uasm_i_beqzl(buf, rs, off) ISAOPC(_beql)(buf, rs, 0, off) 47 #define MM_uasm_i_bnez(buf, rs, off) ISAOPC(_bne)(buf, rs, 0, off)
|
D | uasm-mips.c | 52 #define CL_uasm_i_b(buf, off) ISAOPC(_beq)(buf, 0, 0, off) 53 #define CL_uasm_i_beqz(buf, rs, off) ISAOPC(_beq)(buf, rs, 0, off) 54 #define CL_uasm_i_beqzl(buf, rs, off) ISAOPC(_beql)(buf, rs, 0, off) 55 #define CL_uasm_i_bnez(buf, rs, off) ISAOPC(_bne)(buf, rs, 0, off)
|