Home
last modified time | relevance | path

Searched refs:SPILL_SLOT (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/arch/xtensa/kernel/
Dstacktrace.c94 if (!access_ok(VERIFY_READ, &SPILL_SLOT(a1, 0), 8)) in xtensa_backtrace_user()
97 if (__get_user(a0, &SPILL_SLOT(a1, 0)) || in xtensa_backtrace_user()
98 __get_user(a1, &SPILL_SLOT(a1, 1))) in xtensa_backtrace_user()
155 a0 = SPILL_SLOT(a1, 0); in xtensa_backtrace_kernel()
156 a1 = SPILL_SLOT(a1, 1); in xtensa_backtrace_kernel()
180 a0 = SPILL_SLOT(a1, 0); in walk_stackframe()
181 a1 = SPILL_SLOT(a1, 1); in walk_stackframe()
Dprocess.c213 SPILL_SLOT(childregs, 1) = (unsigned long)childregs; in copy_thread()
214 SPILL_SLOT(childregs, 0) = 0; in copy_thread()
275 SPILL_SLOT(childregs, 3) = thread_fn_arg; in copy_thread()
276 SPILL_SLOT(childregs, 2) = usp_thread_fn; in copy_thread()
Dsignal.c107 if (copy_to_user(&SPILL_SLOT(sp, 0), &regs->areg[base * 4], 16)) in flush_window_regs_user()
/Linux-v4.19/arch/xtensa/include/asm/
Dprocessor.h118 #define SPILL_SLOT(sp, reg) (*(((unsigned long *)(sp)) - 4 + (reg))) macro