/linux-6.1.9/arch/ia64/kernel/ ! |
D | signal.c | 229 unsigned long tramp_addr, new_rbs = 0, new_sp; in setup_frame() local 233 new_sp = scr->pt.r12; in setup_frame() 236 int onstack = sas_ss_flags(new_sp); in setup_frame() 239 new_sp = current->sas_ss_sp + current->sas_ss_size; in setup_frame() 257 check_sp = (new_sp - sizeof(*frame)) & -STACK_ALIGN; in setup_frame() 264 frame = (void __user *) ((new_sp - sizeof(*frame)) & -STACK_ALIGN); in setup_frame()
|
/linux-6.1.9/fs/ ! |
D | compat_binfmt_elf.c | 104 #define COMPAT_START_THREAD(ex, regs, new_ip, new_sp) \ argument 105 compat_start_thread(regs, new_ip, new_sp)
|
/linux-6.1.9/arch/loongarch/kernel/ ! |
D | signal.c | 365 unsigned long new_sp = sp; in setup_extcontext() local 372 new_sp -= sizeof(struct sctx_info); in setup_extcontext() 373 extctx->end.addr = (void *)new_sp; in setup_extcontext() 379 new_sp = extframe_alloc(extctx, &extctx->fpu, in setup_extcontext() 380 sizeof(struct fpu_context), FPU_CTX_ALIGN, new_sp); in setup_extcontext() 383 return new_sp; in setup_extcontext()
|
/linux-6.1.9/arch/x86/kernel/ ! |
D | process_64.c | 506 unsigned long new_sp, in start_thread_common() argument 523 regs->sp = new_sp; in start_thread_common() 530 start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp) in start_thread() argument 532 start_thread_common(regs, new_ip, new_sp, in start_thread() 538 void compat_start_thread(struct pt_regs *regs, u32 new_ip, u32 new_sp, bool x32) in compat_start_thread() argument 540 start_thread_common(regs, new_ip, new_sp, in compat_start_thread()
|
D | process_32.c | 112 start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp) in start_thread() argument 121 regs->sp = new_sp; in start_thread()
|
D | uprobes.c | 528 unsigned long new_sp = regs->sp - sizeof_long(regs); in emulate_push_stack() local 530 if (copy_to_user((void __user *)new_sp, &val, sizeof_long(regs))) in emulate_push_stack() 533 regs->sp = new_sp; in emulate_push_stack()
|
/linux-6.1.9/arch/x86/include/asm/ ! |
D | elf.h | 178 void compat_start_thread(struct pt_regs *regs, u32 new_ip, u32 new_sp, bool x32); 179 #define COMPAT_START_THREAD(ex, regs, new_ip, new_sp) \ argument 180 compat_start_thread(regs, new_ip, new_sp, ex->e_machine == EM_X86_64)
|
D | processor.h | 778 unsigned long new_sp);
|
/linux-6.1.9/arch/sh/kernel/ ! |
D | process_32.c | 63 unsigned long new_sp) in start_thread() argument 68 regs->regs[15] = new_sp; in start_thread()
|
/linux-6.1.9/arch/xtensa/include/asm/ ! |
D | processor.h | 205 #define start_thread(regs, new_pc, new_sp) \ argument 214 (regs)->areg[1] = (new_sp); \
|
/linux-6.1.9/arch/parisc/include/asm/ ! |
D | processor.h | 238 #define start_thread(regs, new_pc, new_sp) do { \ argument 239 elf_addr_t *sp = (elf_addr_t *)new_sp; \
|
/linux-6.1.9/arch/sh/include/asm/ ! |
D | processor_32.h | 128 extern void start_thread(struct pt_regs *regs, unsigned long new_pc, unsigned long new_sp);
|
/linux-6.1.9/arch/ia64/include/asm/ ! |
D | processor.h | 296 #define start_thread(regs,new_ip,new_sp) do { \ argument 306 regs->r12 = new_sp - 16; /* allocate 16 byte scratch area */ \
|