/linux/fs/ |
H A 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/arch/loongarch/kernel/ |
H A D | signal.c | 862 unsigned long new_sp = sp; in setup_extcontext() local 869 new_sp -= sizeof(struct sctx_info); in setup_extcontext() 870 extctx->end.addr = (void *)new_sp; in setup_extcontext() 876 new_sp = extframe_alloc(extctx, &extctx->lasx, in setup_extcontext() 877 sizeof(struct lasx_context), LASX_CTX_ALIGN, new_sp); in setup_extcontext() 879 new_sp = extframe_alloc(extctx, &extctx->lsx, in setup_extcontext() 880 sizeof(struct lsx_context), LSX_CTX_ALIGN, new_sp); in setup_extcontext() 882 new_sp = extframe_alloc(extctx, &extctx->fpu, in setup_extcontext() 883 sizeof(struct fpu_context), FPU_CTX_ALIGN, new_sp); in setup_extcontext() 888 new_sp = extframe_alloc(extctx, &extctx->lbt, in setup_extcontext() [all …]
|
/linux/arch/x86/kernel/ |
H A D | process_64.c | 531 unsigned long new_sp, in start_thread_common() argument 550 regs->sp = new_sp; in start_thread_common() 582 start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp) in start_thread() argument 584 start_thread_common(regs, new_ip, new_sp, in start_thread() 590 void compat_start_thread(struct pt_regs *regs, u32 new_ip, u32 new_sp, bool x32) in compat_start_thread() argument 592 start_thread_common(regs, new_ip, new_sp, in compat_start_thread()
|
H A 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()
|
H A D | uprobes.c | 645 unsigned long new_sp = regs->sp - sizeof_long(regs); in emulate_push_stack() local 647 if (copy_to_user((void __user *)new_sp, &val, sizeof_long(regs))) in emulate_push_stack() 650 regs->sp = new_sp; in emulate_push_stack()
|
/linux/arch/x86/include/asm/ |
H A D | elf.h | 175 void compat_start_thread(struct pt_regs *regs, u32 new_ip, u32 new_sp, bool x32); 176 #define COMPAT_START_THREAD(ex, regs, new_ip, new_sp) \ argument 177 compat_start_thread(regs, new_ip, new_sp, ex->e_machine == EM_X86_64)
|
H A D | processor.h | 664 unsigned long new_sp);
|
/linux/arch/xtensa/include/asm/ |
H A D | processor.h | 198 #define start_thread(regs, new_pc, new_sp) \ argument 207 (regs)->areg[1] = (new_sp); \
|
/linux/arch/sh/kernel/ |
H A D | process_32.c | 63 unsigned long new_sp) in start_thread() argument 68 regs->regs[15] = new_sp; in start_thread()
|
/linux/arch/parisc/include/asm/ |
H A D | processor.h | 241 #define start_thread(regs, new_pc, new_sp) do { \ argument 242 elf_addr_t *sp = (elf_addr_t *)new_sp; \
|
/linux/arch/sh/include/asm/ |
H A D | processor_32.h | 129 extern void start_thread(struct pt_regs *regs, unsigned long new_pc, unsigned long new_sp);
|