Lines Matching defs:func7
25 .macro insn_r, opcode, func3, func7, rd, rs1, rs2
26 .insn r \opcode, \func3, \func7, \rd, \rs1, \rs2
37 .macro insn_r, opcode, func3, func7, rd, rs1, rs2
40 (\func7 << INSN_R_FUNC7_SHIFT) | \
63 #define __INSN_R(opcode, func3, func7, rd, rs1, rs2) \
64 ".insn r " opcode ", " func3 ", " func7 ", " rd ", " rs1 ", " rs2 "\n"
76 " .macro insn_r, opcode, func3, func7, rd, rs1, rs2\n" \
79 " (\\func7 << " __stringify(INSN_R_FUNC7_SHIFT) ") |" \
101 #define __INSN_R(opcode, func3, func7, rd, rs1, rs2) \
103 "insn_r " opcode ", " func3 ", " func7 ", " rd ", " rs1 ", " rs2 "\n" \
115 #define INSN_R(opcode, func3, func7, rd, rs1, rs2) \
116 __INSN_R(RV_##opcode, RV_##func3, RV_##func7, \