Searched refs:is_call (Results 1 – 7 of 7) sorted by relevance
| /linux/tools/perf/util/annotate-arch/ |
| H A D | annotate-s390.c | 64 .is_call = true,
|
| H A D | annotate-loongarch.c | 65 .is_call = true,
|
| /linux/tools/perf/util/ |
| H A D | disasm.h | 98 bool is_call; member
|
| H A D | disasm.c | 312 .is_call = true, 317 return ins->ops && ins->ops->is_call; in ins__is_call()
|
| /linux/arch/riscv/net/ |
| H A D | bpf_jit_comp64.c | 807 static int gen_jump_or_nops(void *target, void *ip, u32 *insns, bool is_call) in gen_jump_or_nops() argument 822 return emit_jump_and_link(is_call ? RV_REG_T0 : RV_REG_ZERO, rvoff, false, &ctx); in gen_jump_or_nops() 830 bool is_call; in bpf_arch_text_poke() local 837 is_call = old_t == BPF_MOD_CALL; in bpf_arch_text_poke() 838 ret = gen_jump_or_nops(old_addr, ip, old_insns, is_call); in bpf_arch_text_poke() 845 is_call = new_t == BPF_MOD_CALL; in bpf_arch_text_poke() 846 ret = gen_jump_or_nops(new_addr, ip, new_insns, is_call); in bpf_arch_text_poke()
|
| /linux/tools/net/ynl/pyynl/lib/ |
| H A D | nlspec.py | 370 self.is_call = 'do' in yaml or 'dump' in yaml 372 self.is_resv = not self.is_async and not self.is_call
|
| /linux/arch/loongarch/net/ |
| H A D | bpf_jit.c | 1546 static int emit_jump_or_nops(void *target, void *ip, u32 *insns, bool is_call) in emit_jump_or_nops() argument 1560 return emit_jump_and_link(&ctx, is_call ? LOONGARCH_GPR_RA : LOONGARCH_GPR_ZERO, (u64)target); in emit_jump_or_nops() 1586 bool is_call; in bpf_arch_text_poke() local 1611 is_call = old_t == BPF_MOD_CALL; in bpf_arch_text_poke() 1612 ret = emit_jump_or_nops(old_addr, ip, old_insns, is_call); in bpf_arch_text_poke() 1619 is_call = new_t == BPF_MOD_CALL; in bpf_arch_text_poke() 1620 ret = emit_jump_or_nops(new_addr, ip, new_insns, is_call); in bpf_arch_text_poke()
|