Home
last modified time | relevance | path

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

/linux-6.15/arch/loongarch/kernel/
H A Dsignal.c841 unsigned long new_sp = sp; in setup_extcontext() local
848 new_sp -= sizeof(struct sctx_info); in setup_extcontext()
849 extctx->end.addr = (void *)new_sp; in setup_extcontext()
855 new_sp = extframe_alloc(extctx, &extctx->lasx, in setup_extcontext()
858 new_sp = extframe_alloc(extctx, &extctx->lsx, in setup_extcontext()
859 sizeof(struct lsx_context), LSX_CTX_ALIGN, new_sp); in setup_extcontext()
861 new_sp = extframe_alloc(extctx, &extctx->fpu, in setup_extcontext()
862 sizeof(struct fpu_context), FPU_CTX_ALIGN, new_sp); in setup_extcontext()
867 new_sp = extframe_alloc(extctx, &extctx->lbt, in setup_extcontext()
868 sizeof(struct lbt_context), LBT_CTX_ALIGN, new_sp); in setup_extcontext()
[all …]
/linux-6.15/fs/
H A Dcompat_binfmt_elf.c114 #define COMPAT_START_THREAD(ex, regs, new_ip, new_sp) \ argument
115 compat_start_thread(regs, new_ip, new_sp)
/linux-6.15/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.c649 unsigned long new_sp = regs->sp - sizeof_long(regs); in emulate_push_stack() local
651 if (copy_to_user((void __user *)new_sp, &val, sizeof_long(regs))) in emulate_push_stack()
654 regs->sp = new_sp; in emulate_push_stack()
/linux-6.15/arch/x86/include/asm/
H A Delf.h176 void compat_start_thread(struct pt_regs *regs, u32 new_ip, u32 new_sp, bool x32);
177 #define COMPAT_START_THREAD(ex, regs, new_ip, new_sp) \ argument
178 compat_start_thread(regs, new_ip, new_sp, ex->e_machine == EM_X86_64)
H A Dprocessor.h672 unsigned long new_sp);
/linux-6.15/arch/xtensa/include/asm/
H A Dprocessor.h196 #define start_thread(regs, new_pc, new_sp) \ argument
205 (regs)->areg[1] = (new_sp); \
/linux-6.15/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-6.15/arch/parisc/include/asm/
H A Dprocessor.h241 #define start_thread(regs, new_pc, new_sp) do { \ argument
242 elf_addr_t *sp = (elf_addr_t *)new_sp; \
/linux-6.15/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);