Lines Matching defs:opcode
36 bool __kprobes simulate_jal(u32 opcode, unsigned long addr, struct pt_regs *regs) in simulate_jal()
61 bool __kprobes simulate_jalr(u32 opcode, unsigned long addr, struct pt_regs *regs) in simulate_jalr()
87 #define auipc_rd_idx(opcode) \ argument
90 #define auipc_imm(opcode) \ argument
94 #define auipc_offset(opcode) sign_extend64(auipc_imm(opcode), 31) argument
96 #define auipc_offset(opcode) auipc_imm(opcode) argument
101 bool __kprobes simulate_auipc(u32 opcode, unsigned long addr, struct pt_regs *regs) in simulate_auipc()
121 #define branch_rs1_idx(opcode) \ argument
124 #define branch_rs2_idx(opcode) \ argument
127 #define branch_funct3(opcode) \ argument
130 #define branch_imm(opcode) \ argument
136 #define branch_offset(opcode) \ argument
139 bool __kprobes simulate_branch(u32 opcode, unsigned long addr, struct pt_regs *regs) in simulate_branch()