Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepOut.cpp54 StackFrameSP return_frame_sp(thread.GetStackFrameAtIndex(return_frame_index)); in ThreadPlanStepOut() local
57 if (!return_frame_sp || !immediate_return_from_sp) in ThreadPlanStepOut()
61 while (return_frame_sp->IsArtificial()) { in ThreadPlanStepOut()
62 m_stepped_past_frames.push_back(return_frame_sp); in ThreadPlanStepOut()
65 return_frame_sp = thread.GetStackFrameAtIndex(return_frame_index); in ThreadPlanStepOut()
69 if (!return_frame_sp) { in ThreadPlanStepOut()
75 m_step_out_to_id = return_frame_sp->GetStackID(); in ThreadPlanStepOut()
101 Address return_address(return_frame_sp->GetFrameCodeAddress()); in ThreadPlanStepOut()
H A DThreadPlanStepThrough.cpp47 StackFrameSP return_frame_sp = thread.GetFrameWithStackID(m_stack_id); in ThreadPlanStepThrough() local
49 if (return_frame_sp) { in ThreadPlanStepThrough()
50 m_backstop_addr = return_frame_sp->GetFrameCodeAddress().GetLoadAddress( in ThreadPlanStepThrough()
H A DThreadPlanStepUntil.cpp47 StackFrameSP return_frame_sp(thread.GetStackFrameAtIndex(frame_idx + 1)); in ThreadPlanStepUntil() local
48 if (return_frame_sp) { in ThreadPlanStepUntil()
50 m_return_addr = return_frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp105 StackFrameSP return_frame_sp( in SetupVariableWatchpointDisabler() local
107 if (!return_frame_sp) in SetupVariableWatchpointDisabler()
110 ExecutionContext exe_ctx(return_frame_sp); in SetupVariableWatchpointDisabler()
115 Address return_address(return_frame_sp->GetFrameCodeAddress()); in SetupVariableWatchpointDisabler()