Home
last modified time | relevance | path

Searched refs:PPC_RAW_LI (Results 1 – 8 of 8) sorted by relevance

/linux-6.15/arch/powerpc/net/
H A Dbpf_jit_comp32.c135 EMIT(PPC_RAW_LI(_R4, 0)); in bpf_jit_build_prologue()
507 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
526 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
527 EMIT(PPC_RAW_LI(dst_reg_h, 0)); in bpf_jit_build_body()
620 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
629 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
676 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
679 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
716 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
907 EMIT(PPC_RAW_LI(tmp_reg, off)); in bpf_jit_build_body()
[all …]
H A Dbpf_jit.h58 EMIT(PPC_RAW_LI(d, i)); \
72 EMIT(PPC_RAW_LI(d, ((uintptr_t)(i) >> 32) & \
H A Dbpf_jit_comp64.c143 EMIT(PPC_RAW_LI(bpf_to_ppc(TMP_REG_1), 0)); in bpf_jit_build_prologue()
533 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
755 EMIT(PPC_RAW_LI(tmp2_reg, 4)); in bpf_jit_build_body()
818 EMIT(PPC_RAW_LI(tmp1_reg, imm)); in bpf_jit_build_body()
826 EMIT(PPC_RAW_LI(tmp1_reg, imm)); in bpf_jit_build_body()
846 EMIT(PPC_RAW_LI(tmp2_reg, off)); in bpf_jit_build_body()
862 EMIT(PPC_RAW_LI(tmp1_reg, off)); in bpf_jit_build_body()
983 EMIT(PPC_RAW_LI(dst_reg, 0)); in bpf_jit_build_body()
1022 EMIT(PPC_RAW_LI(tmp1_reg, off)); in bpf_jit_build_body()
H A Dbpf_jit_comp.c357 fixup[0] = PPC_RAW_LI(dst_reg, 0); in bpf_add_extable_entry()
359 fixup[1] = PPC_RAW_LI(dst_reg - 1, 0); /* clear higher 32-bit register too */ in bpf_add_extable_entry()
549 EMIT(PPC_RAW_LI(_R3, 0)); in invoke_bpf_mod_ret()
828 EMIT(PPC_RAW_LI(_R3, nr_regs)); in __arch_prepare_bpf_trampoline()
/linux-6.15/arch/powerpc/kernel/
H A Dstatic_call.c33 err = patch_instruction(site, ppc_inst(PPC_RAW_LI(_R3, 0))); in arch_static_call_transform()
H A Dsignal_32.c789 unsafe_put_user(PPC_RAW_LI(_R0, __NR_rt_sigreturn), &mctx->mc_pad[0], failed); in handle_rt_signal32()
885 unsafe_put_user(PPC_RAW_LI(_R0, __NR_sigreturn), &mctx->mc_pad[0], failed); in handle_signal32()
H A Dsignal_64.c633 err |= __put_user(PPC_RAW_LI(_R0, syscall), &tramp[2]); in setup_trampoline()
/linux-6.15/arch/powerpc/include/asm/
H A Dppc-opcode.h501 #define PPC_RAW_LI(r, i) PPC_RAW_ADDI(r, 0, i) macro