Home
last modified time | relevance | path

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

/openbmc/linux/arch/xtensa/kernel/
H A Dstacktrace.c101 if (!access_ok(&SPILL_SLOT(a1, 0), 8)) in xtensa_backtrace_user()
104 if (__get_user(a0, &SPILL_SLOT(a1, 0)) || in xtensa_backtrace_user()
105 __get_user(a1, &SPILL_SLOT(a1, 1))) in xtensa_backtrace_user()
162 a0 = SPILL_SLOT(a1, 0); in xtensa_backtrace_kernel()
163 a1 = SPILL_SLOT(a1, 1); in xtensa_backtrace_kernel()
187 a0 = SPILL_SLOT(a1, 0); in walk_stackframe()
188 a1 = SPILL_SLOT(a1, 1); in walk_stackframe()
H A Dprocess.c281 SPILL_SLOT(childregs, 1) = (unsigned long)childregs; in copy_thread()
282 SPILL_SLOT(childregs, 0) = 0; in copy_thread()
344 SPILL_SLOT(childregs, 2) = (unsigned long)args->fn; in copy_thread()
345 SPILL_SLOT(childregs, 3) = (unsigned long)args->fn_arg; in copy_thread()
396 pc = MAKE_PC_FROM_RA(SPILL_SLOT(sp, 0), _text); in __get_wchan()
397 sp = SPILL_SLOT(sp, 1); in __get_wchan()
H A Dsignal.c110 if (copy_to_user(&SPILL_SLOT(sp, 0), &regs->areg[base * 4], 16)) in flush_window_regs_user()
/openbmc/linux/arch/xtensa/include/asm/
H A Dprocessor.h141 #define SPILL_SLOT(sp, reg) (*(((unsigned long *)(sp)) - 4 + (reg))) macro