Home | History | Annotate | Download | only in processor

Lines Matching defs:new_frame

627   scoped_ptr<StackFrameX86> new_frame;
633 new_frame.reset(GetCallerByWindowsFrameInfo(frames, windows_frame_info,
637 if (!new_frame.get()) {
641 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info));
645 if (!new_frame.get())
646 new_frame.reset(GetCallerByEBPAtBase(frames, stack_scan_allowed));
649 if (!new_frame.get())
653 if (new_frame->context.eip == 0)
659 if (new_frame->context.esp <= last_frame->context.esp)
662 // new_frame->context.eip is the return address, which is the instruction
664 // new_frame->instruction to one less than that, so it points within the
667 new_frame->instruction = new_frame->context.eip - 1;
669 return new_frame.release();