Home
last modified time | relevance | path

Searched refs:callee (Results 1 – 25 of 26) sorted by relevance

12

/Linux-v6.6/arch/arc/kernel/
Dptrace.c220 REG_IN_ONE(callee.r25, &cregs->r25); in genregs_set()
221 REG_IN_ONE(callee.r24, &cregs->r24); in genregs_set()
222 REG_IN_ONE(callee.r23, &cregs->r23); in genregs_set()
223 REG_IN_ONE(callee.r22, &cregs->r22); in genregs_set()
224 REG_IN_ONE(callee.r21, &cregs->r21); in genregs_set()
225 REG_IN_ONE(callee.r20, &cregs->r20); in genregs_set()
226 REG_IN_ONE(callee.r19, &cregs->r19); in genregs_set()
227 REG_IN_ONE(callee.r18, &cregs->r18); in genregs_set()
228 REG_IN_ONE(callee.r17, &cregs->r17); in genregs_set()
229 REG_IN_ONE(callee.r16, &cregs->r16); in genregs_set()
[all …]
Dentry.S195 ; save callee regs in case tracer/gdb wants to peek
198 ; safekeep ref to callee regs
205 ; unwind stack to discard callee regs
Dentry-arcv2.S141 ; TBD: optimize - do this only if a callee reg was involved
Dentry-compact.S279 ; TBD: optimize - do this only if a callee reg was involved
/Linux-v6.6/arch/riscv/include/asm/
Dftrace.h98 #define make_call_t0(caller, callee, call) \ argument
101 (unsigned long) callee - (unsigned long) caller; \
114 #define make_call_ra(caller, callee, call) \ argument
117 (unsigned long) callee - (unsigned long) caller; \
/Linux-v6.6/scripts/gcc-plugins/
Dgcc-common.h190 #define cgraph_create_edge(caller, callee, call_stmt, count, freq) \ argument
191 (caller)->create_edge((callee), (call_stmt), (count))
193 #define cgraph_create_edge_including_clones(caller, callee, \ argument
195 (caller)->create_edge_including_clones((callee), \
198 #define cgraph_create_edge(caller, callee, call_stmt, count, freq) \ argument
199 (caller)->create_edge((callee), (call_stmt), (count), (freq))
201 #define cgraph_create_edge_including_clones(caller, callee, \ argument
203 (caller)->create_edge_including_clones((callee), \
/Linux-v6.6/arch/csky/kernel/
Dftrace.c41 static inline void make_jbsr(unsigned long callee, unsigned long pc, in make_jbsr() argument
48 offset = (long) callee - (long) pc; in make_jbsr()
52 call[2] = callee >> 16; in make_jbsr()
54 call[4] = callee & 0xffff; in make_jbsr()
/Linux-v6.6/scripts/tracing/
Ddraw_functrace.py118 calltime, callee, caller = parseLine(line)
124 tree = tree.calls(callee, calltime)
/Linux-v6.6/arch/arc/include/uapi/asm/
Dptrace.h47 } callee; member
/Linux-v6.6/tools/testing/selftests/powerpc/pmu/ebb/
Debb.h50 void setup_ebb_handler(void (*callee)(void));
Debb.c131 void setup_ebb_handler(void (*callee)(void)) in setup_ebb_handler()
149 ebb_user_func = callee; in setup_ebb_handler()
/Linux-v6.6/kernel/bpf/
Dverifier.c8846 struct bpf_func_state *callee,
8851 struct bpf_func_state *callee, int insn_idx);
8858 struct bpf_func_state *caller, *callee; in __check_func_call() local
8927 callee = async_cb->frame[0]; in __check_func_call()
8928 callee->async_entry_cnt = caller->async_entry_cnt + 1; in __check_func_call()
8931 err = set_callee_state_cb(env, caller, callee, *insn_idx); in __check_func_call()
8942 callee = kzalloc(sizeof(*callee), GFP_KERNEL); in __check_func_call()
8943 if (!callee) in __check_func_call()
8945 state->frame[state->curframe + 1] = callee; in __check_func_call()
8951 init_func_state(env, callee, in __check_func_call()
[all …]
/Linux-v6.6/Documentation/bpf/standardization/
Dabi.rst21 * R6 - R9: callee saved registers that function calls will preserve
/Linux-v6.6/arch/powerpc/kernel/
Dirq.c218 [callee] "i" (__do_softirq) in call_do_softirq()
276 [callee] "i" (__do_irq) in call_do_irq()
/Linux-v6.6/Documentation/bpf/
Dclassic_vs_extended.rst20 sparcv9/mips64 have 7 - 8 registers for arguments; x86_64 has 6 callee saved
21 registers, and aarch64/sparcv9/mips64 have 11 or more callee saved registers.
75 a return value of the function. Since R6 - R9 are callee saved, their state
131 and rbx, r12 - r15 are callee saved.
Dverifier.rst35 Since R6-R9 are callee saved, their state is preserved across the call.
89 callee saved registers may not be enough for some programs.
/Linux-v6.6/tools/perf/util/
Dmachine.c2489 bool callee, int end) in lbr_callchain_add_kernel_ip() argument
2495 if (callee) { in lbr_callchain_add_kernel_ip()
2548 bool callee) in lbr_callchain_add_lbr_ip() argument
2573 if (callee) { in lbr_callchain_add_lbr_ip()
2686 bool callee) in has_stitched_lbr() argument
2745 if (callee) in has_stitched_lbr()
2797 bool callee = (callchain_param.order == ORDER_CALLEE); in resolve_lbr_callchain_sample() local
2820 max_lbr, callee); in resolve_lbr_callchain_sample()
2829 if (callee) { in resolve_lbr_callchain_sample()
/Linux-v6.6/Documentation/arch/arm64/
Dsve.rst541 (*) callee-save:
543 FPCR contains callee-save and caller-save bits. See [4] for details.
554 * Z8 bits [63:0] .. Z15 bits [63:0] are callee-save.
595 (*) callee-save:
597 FPCR contains a mixture of callee-save and caller-save bits.
/Linux-v6.6/Documentation/livepatch/
Dreliable-stacktrace.rst296 ADR LR, <callee>
301 The ADR places the address of 'callee' into the LR, before the BLR branches to
302 this address. If a trace is made immediately after the ADR, 'callee' will
/Linux-v6.6/tools/perf/Documentation/
Dperf-config.txt473 'callee' which means callee is printed at top and then followed by its
480 still default to 'callee'.
Dperf-report.txt260 - callee: callee based call graph.
262 Default is 'caller' when --children is used, otherwise 'callee'.
/Linux-v6.6/Documentation/networking/
Dstrparser.rst174 is queued. The callee must consume the sk_buff; it can
/Linux-v6.6/include/linux/
Dbpf.h159 struct bpf_func_state *callee);
2278 struct bpf_func_state *callee);
/Linux-v6.6/Documentation/driver-api/media/
Dv4l2-subdev.rst608 the callee's active state with :c:func:`v4l2_subdev_lock_and_get_active_state()`,
/Linux-v6.6/arch/
DKconfig1428 start of its callee. This may avoid redundant work, and may

12