Home
last modified time | relevance | path

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

/linux-6.1.9/arch/xtensa/kernel/ !
Dstacktrace.c99 if (!access_ok(&SPILL_SLOT(a1, 0), 8)) in xtensa_backtrace_user()
102 if (__get_user(a0, &SPILL_SLOT(a1, 0)) || in xtensa_backtrace_user()
103 __get_user(a1, &SPILL_SLOT(a1, 1))) in xtensa_backtrace_user()
160 a0 = SPILL_SLOT(a1, 0); in xtensa_backtrace_kernel()
161 a1 = SPILL_SLOT(a1, 1); in xtensa_backtrace_kernel()
185 a0 = SPILL_SLOT(a1, 0); in walk_stackframe()
186 a1 = SPILL_SLOT(a1, 1); in walk_stackframe()
Dprocess.c279 SPILL_SLOT(childregs, 1) = (unsigned long)childregs; in copy_thread()
280 SPILL_SLOT(childregs, 0) = 0; in copy_thread()
342 SPILL_SLOT(childregs, 2) = (unsigned long)args->fn; in copy_thread()
343 SPILL_SLOT(childregs, 3) = (unsigned long)args->fn_arg; in copy_thread()
394 pc = MAKE_PC_FROM_RA(SPILL_SLOT(sp, 0), sp); in __get_wchan()
395 sp = SPILL_SLOT(sp, 1); in __get_wchan()
Dsignal.c108 if (copy_to_user(&SPILL_SLOT(sp, 0), &regs->areg[base * 4], 16)) in flush_window_regs_user()
/linux-6.1.9/arch/xtensa/include/asm/ !
Dprocessor.h139 #define SPILL_SLOT(sp, reg) (*(((unsigned long *)(sp)) - 4 + (reg))) macro