Lines Matching defs:frame
287 * We can build library with "-fno-omit-frame-pointer" to get a more accurate call stack.
313 unwind_info *frame = (unwind_info*)(current_frame_addr);
315 num_frames, current_frame_addr, stack_end, frame->fp, frame->lr);
316 if (!frame->lr) {
320 frame_buf[num_frames] = strip_pac_pc(frame->lr) - 4;
323 if (frame->fp == prev_fp || frame->lr == prev_lr || frame->fp < current_frame_addr + sizeof(unwind_info) ||
324 frame->fp >= stack_end || frame->fp % sizeof(void*) != 0) {
327 prev_fp = frame->fp;
328 prev_lr = frame->lr;
329 current_frame_addr = frame->fp;