Lines Matching refs:sp
227 unsigned long sp, in __store_trace() argument
234 sp = sp & PSW_ADDR_INSN; in __store_trace()
235 if (sp < low || sp > high - sizeof(*sf)) in __store_trace()
236 return sp; in __store_trace()
237 sf = (struct stack_frame *) sp; in __store_trace()
241 low = sp; in __store_trace()
242 sp = sf->back_chain & PSW_ADDR_INSN; in __store_trace()
243 if (!sp) in __store_trace()
245 if (sp <= low || sp > high - sizeof(*sf)) in __store_trace()
246 return sp; in __store_trace()
247 sf = (struct stack_frame *) sp; in __store_trace()
252 sp = (unsigned long) (sf + 1); in __store_trace()
253 if (sp <= low || sp > high - sizeof(*regs)) in __store_trace()
254 return sp; in __store_trace()
255 regs = (struct pt_regs *) sp; in __store_trace()
257 low = sp; in __store_trace()
258 sp = regs->gprs[15]; in __store_trace()