Home
last modified time | relevance | path

Searched refs:new_sp (Results 1 – 9 of 9) sorted by relevance

/linux/arch/loongarch/kernel/
H A Dsignal.c862 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/fs/
H A Dcompat_binfmt_elf.c104 #define COMPAT_START_THREAD(ex, regs, new_ip, new_sp) \ argument
105 compat_start_thread(regs, new_ip, new_sp)
/linux/arch/x86/kernel/
H A Dprocess_64.c531 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 Dprocess_32.c112 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 Duprobes.c645 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 Delf.h175 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)
/linux/arch/xtensa/include/asm/
H A Dprocessor.h198 #define start_thread(regs, new_pc, new_sp) \ argument
207 (regs)->areg[1] = (new_sp); \
/linux/arch/sh/kernel/
H A Dprocess_32.c63 unsigned long new_sp) in start_thread() argument
68 regs->regs[15] = new_sp; in start_thread()
/linux/arch/sh/include/asm/
H A Dprocessor_32.h129 extern void start_thread(struct pt_regs *regs, unsigned long new_pc, unsigned long new_sp);