Home
last modified time | relevance | path

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

/Linux-v5.10/arch/mips/net/
Dbpf_jit.c167 uasm_i_lui(&p, r_tmp_imm, (s32)imm >> 16); in emit_load_imm()
169 uasm_i_ori(&p, dst, r_tmp_imm, imm & 0xffff); in emit_load_imm()
437 emit_dsll(r_tmp_imm, r_tmp, 16, ctx); /* left shift by 16 */ in emit_load_func()
438 emit_ori(r_tmp, r_tmp_imm, (imm >> 16) & 0xffff, ctx); in emit_load_func()
439 emit_dsll(r_tmp_imm, r_tmp, 16, ctx); /* left shift by 16 */ in emit_load_func()
440 emit_ori(reg, r_tmp_imm, imm & 0xffff, ctx); in emit_load_func()
1107 emit_andi(r_tmp_imm, r_A, 0xff, ctx); in build_body()
1109 emit_sll(r_tmp, r_tmp_imm, 8, ctx); in build_body()
1111 emit_srl(r_tmp_imm, r_A, 8, ctx); in build_body()
1112 emit_andi(r_tmp_imm, r_tmp_imm, 0xff, ctx); in build_body()
[all …]
Dbpf_jit.h60 #define r_tmp_imm MIPS_R_T6 /* No need to preserve this */ macro