Searched refs:SPILL_SLOT (Results 1 – 4 of 4) sorted by relevance
/Linux-v6.6/arch/xtensa/kernel/ |
D | stacktrace.c | 100 if (!access_ok(&SPILL_SLOT(a1, 0), 8)) in xtensa_backtrace_user() 103 if (__get_user(a0, &SPILL_SLOT(a1, 0)) || in xtensa_backtrace_user() 104 __get_user(a1, &SPILL_SLOT(a1, 1))) in xtensa_backtrace_user() 161 a0 = SPILL_SLOT(a1, 0); in xtensa_backtrace_kernel() 162 a1 = SPILL_SLOT(a1, 1); in xtensa_backtrace_kernel() 186 a0 = SPILL_SLOT(a1, 0); in walk_stackframe() 187 a1 = SPILL_SLOT(a1, 1); in walk_stackframe()
|
D | process.c | 280 SPILL_SLOT(childregs, 1) = (unsigned long)childregs; in copy_thread() 281 SPILL_SLOT(childregs, 0) = 0; in copy_thread() 343 SPILL_SLOT(childregs, 2) = (unsigned long)args->fn; in copy_thread() 344 SPILL_SLOT(childregs, 3) = (unsigned long)args->fn_arg; in copy_thread() 395 pc = MAKE_PC_FROM_RA(SPILL_SLOT(sp, 0), sp); in __get_wchan() 396 sp = SPILL_SLOT(sp, 1); in __get_wchan()
|
D | signal.c | 110 if (copy_to_user(&SPILL_SLOT(sp, 0), ®s->areg[base * 4], 16)) in flush_window_regs_user()
|
/Linux-v6.6/arch/xtensa/include/asm/ |
D | processor.h | 141 #define SPILL_SLOT(sp, reg) (*(((unsigned long *)(sp)) - 4 + (reg))) macro
|