| /linux/tools/testing/selftests/powerpc/include/ |
| H A 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 …]
|
| H A 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/tools/perf/arch/x86/tests/ |
| H A 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/tools/testing/selftests/powerpc/mm/ |
| H A 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/tools/perf/arch/arm64/tests/ |
| H A 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/tools/perf/arch/arm/tests/ |
| H A 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/tools/perf/arch/powerpc/tests/ |
| H A 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/tools/testing/selftests/signal/ |
| H A 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/samples/pidfd/ |
| H A 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/arch/riscv/include/asm/ |
| H A 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/arch/x86/include/asm/ |
| H A D | shstk.h | 20 unsigned long stack_size); 34 unsigned long stack_size) { return 0; } in shstk_alloc_thread_stack() argument
|
| /linux/fs/ |
| H A 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() 411 stack_size = (stack_size + PAGE_SIZE - 1) & PAGE_MASK; in load_elf_fdpic_binary() 412 if (stack_size < PAGE_SIZE * 2) in load_elf_fdpic_binary() 413 stack_size = PAGE_SIZE * 2; in load_elf_fdpic_binary() [all …]
|
| /linux/tools/testing/selftests/user_events/ |
| H A 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/drivers/md/dm-vdo/indexer/ |
| H A 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/tools/testing/selftests/kvm/lib/loongarch/ |
| H A D | processor.c | 361 size_t stack_size; in vm_arch_vcpu_add() local 367 stack_size = vm->page_size; in vm_arch_vcpu_add() 368 stack_vaddr = __vm_vaddr_alloc(vm, stack_size, in vm_arch_vcpu_add() 375 regs.gpr[3] = stack_vaddr + stack_size; in vm_arch_vcpu_add()
|
| /linux/tools/objtool/ |
| H A D | check.c | 2210 state->stack_size = initial_func_cfi.cfa.offset; in set_func_state() 2691 if (cfi->stack_size != initial_func_cfi.cfa.offset) in has_modified_stack_frame() 2862 regs[CFI_BP].offset = -cfi->stack_size; in update_cfi_state() 2879 cfi->vals[op->dest.reg].offset = -cfi->stack_size; in update_cfi_state() 2890 cfi->stack_size = -cfi->regs[CFI_BP].offset; in update_cfi_state() 2908 cfi->stack_size = cfa->offset; in update_cfi_state() 2958 cfi->stack_size += 8; in update_cfi_state() 2968 cfi->stack_size -= op->src.offset; in update_cfi_state() 2993 cfi->stack_size = -(op->src.offset + regs[CFI_BP].offset); in update_cfi_state() 3015 -cfi->stack_size + op->src.offset; in update_cfi_state() [all …]
|
| /linux/tools/objtool/include/objtool/ |
| H A D | cfi.h | 32 int stack_size; member
|
| /linux/tools/testing/selftests/pidfd/ |
| H A 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/include/linux/ |
| H A D | elf-fdpic.h | 36 unsigned long stack_size; /* stack size requested (PT_GNU_STACK) */ member
|
| H A D | flat.h | 34 __be32 stack_size; /* Size of stack, in bytes */ member
|
| /linux/arch/mips/include/asm/octeon/ |
| H A D | cvmx-sysinfo.h | 63 uint32_t stack_size; member
|
| H A D | octeon.h | 68 uint32_t stack_size; member 118 uint32_t stack_size;
|
| /linux/tools/testing/selftests/kvm/lib/s390/ |
| H A D | processor.c | 165 size_t stack_size = DEFAULT_STACK_PGS * getpagesize(); in vm_arch_vcpu_add() local 174 stack_vaddr = __vm_vaddr_alloc(vm, stack_size, in vm_arch_vcpu_add()
|
| /linux/tools/testing/selftests/kvm/lib/riscv/ |
| H A D | processor.c | 301 size_t stack_size; in vm_arch_vcpu_add() local 307 stack_size = vm->page_size == 4096 ? DEFAULT_STACK_PGS * vm->page_size : in vm_arch_vcpu_add() 309 stack_vaddr = __vm_vaddr_alloc(vm, stack_size, in vm_arch_vcpu_add() 331 vcpu_set_reg(vcpu, RISCV_CORE_REG(regs.sp), stack_vaddr + stack_size); in vm_arch_vcpu_add()
|
| /linux/tools/testing/selftests/clone3/ |
| H A D | clone3_selftests.h | 29 __aligned_u64 stack_size; member
|