Searched refs:current_sp (Results 1 – 5 of 5) sorted by relevance
32 const register unsigned long current_sp __asm__ ("sp"); in walk_stackframe()34 sp = current_sp; in walk_stackframe()76 const register unsigned long current_sp __asm__ ("sp"); in walk_stackframe()77 sp = current_sp; in walk_stackframe()
110 register unsigned long current_sp asm("sp"); in save_stack_trace_tsk()114 frame.sp = current_sp; in save_stack_trace_tsk()
34 #define current_sp() ({ void *sp; __asm__("movq %%rsp, %0" : "=r" (sp) : ); sp; }) macro
50 #define current_sp() ({ void *sp; __asm__("movl %%esp, %0" : "=r" (sp) : ); sp; }) macro
37 return segv_regs ? (unsigned long *)PT_REGS_SP(segv_regs) : current_sp(); in get_stack_pointer()