Searched refs:is_call (Results 1 – 3 of 3) sorted by relevance
| /linux/arch/loongarch/net/ |
| H A D | bpf_jit.c | 1273 static int emit_jump_or_nops(void *target, void *ip, u32 *insns, bool is_call) in emit_jump_or_nops() argument 1287 return emit_jump_and_link(&ctx, is_call ? LOONGARCH_GPR_RA : LOONGARCH_GPR_ZERO, (u64)target); in emit_jump_or_nops() 1311 bool is_call; in bpf_arch_text_poke() local 1336 is_call = old_t == BPF_MOD_CALL; in bpf_arch_text_poke() 1337 ret = emit_jump_or_nops(old_addr, ip, old_insns, is_call); in bpf_arch_text_poke() 1344 is_call = new_t == BPF_MOD_CALL; in bpf_arch_text_poke() 1345 ret = emit_jump_or_nops(new_addr, ip, new_insns, is_call); in bpf_arch_text_poke()
|
| /linux/arch/riscv/net/ |
| H A D | bpf_jit_comp64.c | 837 static int gen_jump_or_nops(void *target, void *ip, u32 *insns, bool is_call) in gen_jump_or_nops() argument 852 return emit_jump_and_link(is_call ? RV_REG_T0 : RV_REG_ZERO, rvoff, false, &ctx); in gen_jump_or_nops() 860 bool is_call; in bpf_arch_text_poke() local 867 is_call = old_t == BPF_MOD_CALL; in bpf_arch_text_poke() 868 ret = gen_jump_or_nops(old_addr, ip, old_insns, is_call); in bpf_arch_text_poke() 875 is_call = new_t == BPF_MOD_CALL; in bpf_arch_text_poke() 876 ret = gen_jump_or_nops(new_addr, ip, new_insns, is_call); in bpf_arch_text_poke()
|
| /linux/arch/arc/net/ |
| H A D | bpf_jit_arcv2.c | 2366 u32 mask_for_used_regs(u8 bpf_reg, bool is_call) in mask_for_used_regs() argument 2392 usage |= is_call ? BIT(ARC_R_BLINK) : 0; in mask_for_used_regs()
|