Home
last modified time | relevance | path

Searched refs:r_tmp (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.10/arch/mips/net/
Dbpf_jit.c191 emit_load_imm(r_tmp, imm, ctx); in emit_ori()
192 emit_or(dst, src, r_tmp, ctx); in emit_ori()
212 emit_load_imm(r_tmp, imm, ctx); in emit_addiu()
213 emit_addu(dst, r_tmp, src, ctx); in emit_addiu()
230 emit_load_imm(r_tmp, imm, ctx); in emit_andi()
231 emit_and(dst, src, r_tmp, ctx); in emit_andi()
247 emit_load_imm(r_tmp, imm, ctx); in emit_xori()
248 emit_xor(dst, src, r_tmp, ctx); in emit_xori()
321 emit_load_imm(r_tmp, imm, ctx); in emit_sltiu()
322 emit_sltu(dst, src, r_tmp, ctx); in emit_sltiu()
[all …]
Dbpf_jit.h61 #define r_tmp MIPS_R_T7 /* No need to preserve this */ macro