Lines Matching defs:frame
286 struct stackframe frame;
292 frame.fp = thread_saved_fp(p);
293 frame.sp = thread_saved_sp(p);
294 frame.lr = 0; /* recovered from the stack */
295 frame.pc = thread_saved_pc(p);
298 if (frame.sp < stack_page ||
299 frame.sp >= stack_page + THREAD_SIZE ||
300 unwind_frame(&frame) < 0)
302 if (!in_sched_functions(frame.pc))
303 return frame.pc;