/kernel/linux/linux-5.10/arch/arc/kernel/ |
D | ptrace.c | 137 REG_IN_ONE(callee.r25, &cregs->r25); in genregs_set() 138 REG_IN_ONE(callee.r24, &cregs->r24); in genregs_set() 139 REG_IN_ONE(callee.r23, &cregs->r23); in genregs_set() 140 REG_IN_ONE(callee.r22, &cregs->r22); in genregs_set() 141 REG_IN_ONE(callee.r21, &cregs->r21); in genregs_set() 142 REG_IN_ONE(callee.r20, &cregs->r20); in genregs_set() 143 REG_IN_ONE(callee.r19, &cregs->r19); in genregs_set() 144 REG_IN_ONE(callee.r18, &cregs->r18); in genregs_set() 145 REG_IN_ONE(callee.r17, &cregs->r17); in genregs_set() 146 REG_IN_ONE(callee.r16, &cregs->r16); in genregs_set() [all …]
|
D | entry.S | 316 ; save/restore callee-saved regs. 318 ; However, here we need to explicitly save callee regs because 326 ; save location of saved Callee Regs @ thread_struct->callee
|
D | entry-arcv2.S | 150 ; TBD: optimize - do this only if a callee reg was involved
|
D | entry-compact.S | 291 ; TBD: optimize - do this only if a callee reg was involved
|
/kernel/linux/linux-5.10/arch/riscv/include/asm/ |
D | ftrace.h | 59 #define make_call(caller, callee, call) \ argument 61 call[0] = to_auipc_insn((unsigned int)((unsigned long)callee - \ 63 call[1] = to_jalr_insn((unsigned int)((unsigned long)callee - \
|
/kernel/linux/linux-5.10/arch/csky/kernel/ |
D | ftrace.c | 41 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()
|
/kernel/liteos_m/testsuites/sample/kernel/dynlink/lib/ |
D | dynamic_sym.c | 32 int callee(int a, int b) in callee() function 39 return 2021 + callee(a, b); in caller()
|
D | dynamic_initfini.c | 58 int callee(int a, int b) in callee() function 65 int c = callee(a, b); in test_api()
|
/kernel/linux/linux-5.10/scripts/tracing/ |
D | draw_functrace.py | 118 calltime, callee, caller = parseLine(line) 124 tree = tree.calls(callee, calltime)
|
/kernel/linux/linux-5.10/scripts/gcc-plugins/ |
D | gcc-common.h | 726 #define cgraph_create_edge(caller, callee, call_stmt, count, freq) \ argument 727 (caller)->create_edge((callee), (call_stmt), (count)) 729 #define cgraph_create_edge_including_clones(caller, callee, \ argument 731 (caller)->create_edge_including_clones((callee), \ 734 #define cgraph_create_edge(caller, callee, call_stmt, count, freq) \ argument 735 (caller)->create_edge((callee), (call_stmt), (count), (freq)) 737 #define cgraph_create_edge_including_clones(caller, callee, \ argument 739 (caller)->create_edge_including_clones((callee), \
|
/kernel/linux/linux-5.10/arch/arc/include/uapi/asm/ |
D | ptrace.h | 47 } callee; member
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/pmu/ebb/ |
D | ebb.h | 50 void setup_ebb_handler(void (*callee)(void));
|
D | ebb.c | 131 void setup_ebb_handler(void (*callee)(void)) in setup_ebb_handler() 149 ebb_user_func = callee; in setup_ebb_handler()
|
/kernel/linux/linux-5.10/Documentation/arm64/ |
D | sve.rst | 472 (*) callee-save: 474 FPCR contains callee-save and caller-save bits. See [4] for details. 485 * Z8 bits [63:0] .. Z15 bits [63:0] are callee-save. 526 (*) callee-save: 528 FPCR contains a mixture of callee-save and caller-save bits.
|
/kernel/linux/linux-5.10/tools/perf/util/ |
D | machine.c | 2252 bool callee, int end) in lbr_callchain_add_kernel_ip() argument 2258 if (callee) { in lbr_callchain_add_kernel_ip() 2311 bool callee) in lbr_callchain_add_lbr_ip() argument 2336 if (callee) { in lbr_callchain_add_lbr_ip() 2449 bool callee) in has_stitched_lbr() argument 2508 if (callee) in has_stitched_lbr() 2558 bool callee = (callchain_param.order == ORDER_CALLEE); in resolve_lbr_callchain_sample() local 2581 max_lbr, callee); in resolve_lbr_callchain_sample() 2590 if (callee) { in resolve_lbr_callchain_sample()
|
/kernel/linux/linux-5.10/tools/perf/Documentation/ |
D | perf-config.txt | 456 'callee' which means callee is printed at top and then followed by its 463 still default to 'callee'.
|
D | perf-report.txt | 244 - callee: callee based call graph. 246 Default is 'caller' when --children is used, otherwise 'callee'.
|
/kernel/linux/linux-5.10/kernel/bpf/ |
D | verifier.c | 5155 struct bpf_func_state *caller, *callee; in check_func_call() local 5207 callee = kzalloc(sizeof(*callee), GFP_KERNEL); in check_func_call() 5208 if (!callee) in check_func_call() 5210 state->frame[state->curframe + 1] = callee; in check_func_call() 5216 init_func_state(env, callee, in check_func_call() 5223 err = transfer_reference_state(callee, caller); in check_func_call() 5231 callee->regs[i] = caller->regs[i]; in check_func_call() 5245 print_verifier_state(env, callee); in check_func_call() 5253 struct bpf_func_state *caller, *callee; in prepare_func_exit() local 5257 callee = state->frame[state->curframe]; in prepare_func_exit() [all …]
|
/kernel/linux/linux-5.10/Documentation/networking/ |
D | filter.rst | 654 sparcv9/mips64 have 7 - 8 registers for arguments; x86_64 has 6 callee saved 655 registers, and aarch64/sparcv9/mips64 have 11 or more callee saved registers. 661 * R6 - R9 - callee saved registers that in-kernel function will preserve 716 a return value of the function. Since R6 - R9 are callee saved, their state 772 and rbx, r12 - r15 are callee saved. 1090 Since R6-R9 are callee saved, their state is preserved across the call. 1144 callee saved registers may not be enough for some programs.
|
D | strparser.rst | 174 is queued. The callee must consume the sk_buff; it can
|
/kernel/linux/patches/linux-5.10/imx8mm_patch/patches/ |
D | 0001_linux_arch.patch | 14658 * Register switch for AArch64. The callee-saved registers need to be saved
|