Home | History | Annotate | Download | only in include

Lines Matching refs:rs2

225 	 *	1 bit of imm=0 + 8 bits of asi + 5 bits of rs2 [reg & mem]
227 * 9 bits of copressor `opf' opcode + 5 bits of rs2 [reg only]
289 * 1 bit of imm=0 + 8 bits of asi + 5 bits of rs2 [reg & mem]
291 * 9 bits of copressor `opf' opcode + 5 bits of rs2 [reg only] */
351 #define _I_OP3_LS_RAR(rd, op3, rs1, asi, rs2) \
352 _I_OP3_GEN(IOP_mem, rd, op3, rs1, (asi) << 5 | (rs2))
355 #define _I_OP3_LS_RR(rd, op3, rs1, rs2) \
356 _I_OP3_GEN(IOP_mem, rd, op3, rs1, rs2)
357 #define _I_OP3_R_RAR(rd, op3, rs1, asi, rs2) \
358 _I_OP3_GEN(IOP_reg, rd, op3, rs1, (asi) << 5 | (rs2))
361 #define _I_OP3_R_RR(rd, op3, rs1, rs2) \
362 _I_OP3_GEN(IOP_reg, rd, op3, rs1, rs2)
390 #define I_ORrr(rd, rs1, rs2) _I_OP3_R_RR(rd, IOP3_OR, rs1, rs2)
398 #define I_JMPLrr(rd, rs1, rs2) _I_OP3_R_RR(rd, IOP3_JMPL, rs1, rs2)