Home
last modified time | relevance | path

Searched refs:return_frame_sp (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepOut.cpp54 StackFrameSP return_frame_sp( in ThreadPlanStepOut() local
59 if (!return_frame_sp || !immediate_return_from_sp) in ThreadPlanStepOut()
63 while (return_frame_sp->IsArtificial()) { in ThreadPlanStepOut()
64 m_stepped_past_frames.push_back(return_frame_sp); in ThreadPlanStepOut()
67 return_frame_sp = m_thread.GetStackFrameAtIndex(return_frame_index); in ThreadPlanStepOut()
71 if (!return_frame_sp) { in ThreadPlanStepOut()
77 m_step_out_to_id = return_frame_sp->GetStackID(); in ThreadPlanStepOut()
103 Address return_address(return_frame_sp->GetFrameCodeAddress()); in ThreadPlanStepOut()
H A DThreadPlanStepThrough.cpp51 StackFrameSP return_frame_sp = m_thread.GetFrameWithStackID(m_stack_id); in ThreadPlanStepThrough() local
53 if (return_frame_sp) { in ThreadPlanStepThrough()
54 m_backstop_addr = return_frame_sp->GetFrameCodeAddress().GetLoadAddress( in ThreadPlanStepThrough()
H A DThreadPlanStepUntil.cpp50 StackFrameSP return_frame_sp(m_thread.GetStackFrameAtIndex(frame_idx + 1)); in ThreadPlanStepUntil() local
51 if (return_frame_sp) { in ThreadPlanStepUntil()
53 m_return_addr = return_frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()