/linux-6.12.1/tools/testing/selftests/powerpc/include/ |
D | fpu_asm.h | 10 #define PUSH_FPU(stack_size) \ argument 11 stfd f31,(stack_size + STACK_FRAME_MIN_SIZE)(%r1); \ 12 stfd f30,(stack_size + STACK_FRAME_MIN_SIZE - 8)(%r1); \ 13 stfd f29,(stack_size + STACK_FRAME_MIN_SIZE - 16)(%r1); \ 14 stfd f28,(stack_size + STACK_FRAME_MIN_SIZE - 24)(%r1); \ 15 stfd f27,(stack_size + STACK_FRAME_MIN_SIZE - 32)(%r1); \ 16 stfd f26,(stack_size + STACK_FRAME_MIN_SIZE - 40)(%r1); \ 17 stfd f25,(stack_size + STACK_FRAME_MIN_SIZE - 48)(%r1); \ 18 stfd f24,(stack_size + STACK_FRAME_MIN_SIZE - 56)(%r1); \ 19 stfd f23,(stack_size + STACK_FRAME_MIN_SIZE - 64)(%r1); \ [all …]
|
D | gpr_asm.h | 51 #define PUSH_NVREGS(stack_size) \ argument 52 __PUSH_NVREGS(stack_size + STACK_FRAME_MIN_SIZE) 55 #define PUSH_NVREGS_BELOW_FPU(stack_size) \ argument 56 __PUSH_NVREGS(stack_size + STACK_FRAME_MIN_SIZE - (18 * 8)) 58 #define POP_NVREGS(stack_size) \ argument 59 __POP_NVREGS(stack_size + STACK_FRAME_MIN_SIZE) 62 #define POP_NVREGS_BELOW_FPU(stack_size) \ argument 63 __POP_NVREGS(stack_size + STACK_FRAME_MIN_SIZE - (18 * 8))
|
/linux-6.12.1/tools/perf/arch/x86/tests/ |
D | dwarf-unwind.c | 19 u64 stack_size, *buf; in sample_ustack() local 36 stack_size = map__end(map) - sp; in sample_ustack() 38 stack_size = stack_size > STACK_SIZE ? STACK_SIZE : stack_size; in sample_ustack() 40 memcpy(buf, (void *) sp, stack_size); in sample_ustack() 46 __msan_unpoison(buf, stack_size); in sample_ustack() 49 stack->size = stack_size; in sample_ustack()
|
/linux-6.12.1/tools/testing/selftests/powerpc/mm/ |
D | stack_expansion_signal.c | 32 static int consume_stack(unsigned int stack_size, union pipe write_pipe) in consume_stack() argument 36 if ((stack_base_ptr - &stack_cur) < stack_size) in consume_stack() 37 return consume_stack(stack_size, write_pipe); in consume_stack() 50 static int child(unsigned int stack_size, union pipe write_pipe) in child() argument 63 FAIL_IF(consume_stack(stack_size, write_pipe)); in child() 66 stack_size, stack_base_ptr, stack_top_ptr, in child() 72 static int test_one_size(unsigned int stack_size) in test_one_size() argument 84 exit(child(stack_size, read_pipe)); in test_one_size()
|
/linux-6.12.1/tools/perf/arch/arm64/tests/ |
D | dwarf-unwind.c | 19 u64 stack_size, *buf; in sample_ustack() local 36 stack_size = map__end(map) - sp; in sample_ustack() 37 stack_size = stack_size > STACK_SIZE ? STACK_SIZE : stack_size; in sample_ustack() 39 memcpy(buf, (void *) sp, stack_size); in sample_ustack() 41 stack->size = stack_size; in sample_ustack()
|
/linux-6.12.1/tools/perf/arch/arm/tests/ |
D | dwarf-unwind.c | 19 u64 stack_size, *buf; in sample_ustack() local 36 stack_size = map__end(map) - sp; in sample_ustack() 37 stack_size = stack_size > STACK_SIZE ? STACK_SIZE : stack_size; in sample_ustack() 39 memcpy(buf, (void *) sp, stack_size); in sample_ustack() 41 stack->size = stack_size; in sample_ustack()
|
/linux-6.12.1/tools/perf/arch/powerpc/tests/ |
D | dwarf-unwind.c | 19 u64 stack_size, *buf; in sample_ustack() local 36 stack_size = map__end(map) - sp; in sample_ustack() 37 stack_size = stack_size > STACK_SIZE ? STACK_SIZE : stack_size; in sample_ustack() 39 memcpy(buf, (void *) sp, stack_size); in sample_ustack() 41 stack->size = stack_size; in sample_ustack()
|
/linux-6.12.1/tools/testing/selftests/sigaltstack/ |
D | sas.c | 33 static unsigned int stack_size; variable 51 sp >= (unsigned long)sstack + stack_size) { in my_usr1() 113 stack_size = getauxval(AT_MINSIGSTKSZ) + SIGSTKSZ; in main() 114 ksft_print_msg("[NOTE]\tthe stack size is %u\n", stack_size); in main() 125 sstack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, in main() 147 stk.ss_size = stack_size; in main() 169 ustack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, in main() 178 uc.uc_stack.ss_size = stack_size; in main()
|
/linux-6.12.1/samples/pidfd/ |
D | pidfd-metadata.c | 36 size_t stack_size = 1024; in pidfd_clone() local 40 return __clone2(do_child, stack, stack_size, flags | SIGCHLD, NULL, pidfd); in pidfd_clone() 42 return clone(do_child, stack + stack_size, flags | SIGCHLD, NULL, pidfd); in pidfd_clone()
|
/linux-6.12.1/arch/arm64/include/asm/ |
D | vmap_stack.h | 18 static inline unsigned long *arch_alloc_vmap_stack(size_t stack_size, int node) in arch_alloc_vmap_stack() argument 24 p = __vmalloc_node(stack_size, THREAD_ALIGN, THREADINFO_GFP, node, in arch_alloc_vmap_stack()
|
/linux-6.12.1/arch/riscv/net/ |
D | bpf_jit_comp64.c | 233 int stack_adjust = ctx->stack_size, store_offset = stack_adjust - 8; in __build_epilogue() 810 int stack_size = 0, nr_arg_slots = 0; in __arch_prepare_bpf_trampoline() local 873 stack_size += 16; in __arch_prepare_bpf_trampoline() 877 stack_size += 16; /* Save both A5 (BPF R0) and A0 */ in __arch_prepare_bpf_trampoline() 878 retval_off = stack_size; in __arch_prepare_bpf_trampoline() 881 stack_size += nr_arg_slots * 8; in __arch_prepare_bpf_trampoline() 882 args_off = stack_size; in __arch_prepare_bpf_trampoline() 884 stack_size += 8; in __arch_prepare_bpf_trampoline() 885 nregs_off = stack_size; in __arch_prepare_bpf_trampoline() 888 stack_size += 8; in __arch_prepare_bpf_trampoline() [all …]
|
/linux-6.12.1/arch/riscv/include/asm/ |
D | irq_stack.h | 23 static inline unsigned long *arch_alloc_vmap_stack(size_t stack_size, int node) in arch_alloc_vmap_stack() argument 27 p = __vmalloc_node(stack_size, THREAD_ALIGN, THREADINFO_GFP, node, in arch_alloc_vmap_stack()
|
/linux-6.12.1/arch/x86/net/ |
D | bpf_jit_comp.c | 2464 int stack_size) in clean_stack_garbage() argument 2498 off = -(stack_size - 4); in clean_stack_garbage() 2528 int stack_size, bool for_call_origin) in save_args() argument 2573 -stack_size); in save_args() 2576 first_off = stack_size; in save_args() 2577 stack_size -= 8; in save_args() 2594 -stack_size); in save_args() 2595 stack_size -= 8; in save_args() 2605 int stack_size) in restore_regs() argument 2623 -stack_size); in restore_regs() [all …]
|
/linux-6.12.1/arch/x86/include/asm/ |
D | shstk.h | 20 unsigned long stack_size); 32 unsigned long stack_size) { return 0; } in shstk_alloc_thread_stack() argument
|
/linux-6.12.1/arch/arm64/net/ |
D | bpf_jit_comp.c | 83 u32 stack_size; member 544 ctx->stack_size = round_up(prog->aux->stack_depth, 16); in build_prologue() 547 if (ctx->stack_size) in build_prologue() 548 emit(A64_SUB_I(1, A64_SP, A64_SP, ctx->stack_size), ctx); in build_prologue() 611 if (ctx->stack_size) in emit_bpf_tail_call() 612 emit(A64_ADD_I(1, A64_SP, A64_SP, ctx->stack_size), ctx); in emit_bpf_tail_call() 866 if (ctx->stack_size) in build_epilogue() 867 emit(A64_ADD_I(1, A64_SP, A64_SP, ctx->stack_size), ctx); in build_epilogue() 1444 off_adj = off + ctx->stack_size; in build_insn() 1537 off_adj = off + ctx->stack_size; in build_insn() [all …]
|
/linux-6.12.1/fs/ |
D | binfmt_elf_fdpic.c | 171 params->stack_size = phdr->p_memsz; in elf_fdpic_fetch_phdrs() 187 unsigned long stack_size, entryaddr; in load_elf_fdpic_binary() local 315 stack_size = exec_params.stack_size; in load_elf_fdpic_binary() 323 if (stack_size == 0 && interp_params.flags & ELF_FDPIC_FLAG_PRESENT) { in load_elf_fdpic_binary() 324 stack_size = interp_params.stack_size; in load_elf_fdpic_binary() 334 if (stack_size == 0) in load_elf_fdpic_binary() 335 stack_size = 131072UL; /* same as exec.c's default commit */ in load_elf_fdpic_binary() 410 stack_size = (stack_size + PAGE_SIZE - 1) & PAGE_MASK; in load_elf_fdpic_binary() 411 if (stack_size < PAGE_SIZE * 2) in load_elf_fdpic_binary() 412 stack_size = PAGE_SIZE * 2; in load_elf_fdpic_binary() [all …]
|
/linux-6.12.1/tools/testing/selftests/user_events/ |
D | abi_test.c | 400 int i, stack_size = 4096; in TEST_F() local 401 void *stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, in TEST_F() 410 ASSERT_NE(-1, clone(&clone_check, stack + stack_size, in TEST_F() 416 munmap(stack, stack_size); in TEST_F()
|
/linux-6.12.1/drivers/md/dm-vdo/indexer/ |
D | radix-sort.c | 211 unsigned int stack_size = count / INSERTION_SORT_THRESHOLD; in uds_make_radix_sorter() local 214 result = vdo_allocate_extended(struct radix_sorter, stack_size, struct task, in uds_make_radix_sorter() 220 radix_sorter->end_of_stack = radix_sorter->stack + stack_size; in uds_make_radix_sorter()
|
/linux-6.12.1/tools/objtool/ |
D | check.c | 2271 state->stack_size = initial_func_cfi.cfa.offset; in set_func_state() 2763 if (cfi->stack_size != initial_func_cfi.cfa.offset) in has_modified_stack_frame() 2934 regs[CFI_BP].offset = -cfi->stack_size; in update_cfi_state() 2951 cfi->vals[op->dest.reg].offset = -cfi->stack_size; in update_cfi_state() 2962 cfi->stack_size = -cfi->regs[CFI_BP].offset; in update_cfi_state() 2980 cfi->stack_size = cfa->offset; in update_cfi_state() 3030 cfi->stack_size += 8; in update_cfi_state() 3040 cfi->stack_size -= op->src.offset; in update_cfi_state() 3065 cfi->stack_size = -(op->src.offset + regs[CFI_BP].offset); in update_cfi_state() 3087 -cfi->stack_size + op->src.offset; in update_cfi_state() [all …]
|
/linux-6.12.1/tools/objtool/include/objtool/ |
D | cfi.h | 32 int stack_size; member
|
/linux-6.12.1/tools/testing/selftests/pidfd/ |
D | pidfd_test.c | 35 size_t stack_size = 1024; in pidfd_clone() local 39 return __clone2(fn, stack, stack_size, flags | SIGCHLD, NULL, pidfd); in pidfd_clone() 41 return clone(fn, stack + stack_size, flags | SIGCHLD, NULL, pidfd); in pidfd_clone()
|
/linux-6.12.1/arch/mips/include/asm/octeon/ |
D | cvmx-sysinfo.h | 63 uint32_t stack_size; member
|
/linux-6.12.1/include/linux/ |
D | elf-fdpic.h | 36 unsigned long stack_size; /* stack size requested (PT_GNU_STACK) */ member
|
D | flat.h | 34 __be32 stack_size; /* Size of stack, in bytes */ member
|
/linux-6.12.1/tools/testing/selftests/clone3/ |
D | clone3_selftests.h | 29 __aligned_u64 stack_size; member
|