Home
last modified time | relevance | path

Searched refs:stop_info_sp (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanBase.cpp62 StopInfoSP stop_info_sp = GetThread().GetStopInfo(); in ShouldReportStop() local
63 if (stop_info_sp) { in ShouldReportStop()
79 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop() local
80 if (stop_info_sp) { in ShouldStop()
81 StopReason reason = stop_info_sp->GetStopReason(); in ShouldStop()
92 if (stop_info_sp->ShouldStopSynchronous(event_ptr)) { in ShouldStop()
109 if (stop_info_sp->ShouldNotify(event_ptr)) { in ShouldStop()
130 m_tid, stop_info_sp->GetDescription()); in ShouldStop()
148 if (stop_info_sp->ShouldStop(event_ptr)) { in ShouldStop()
153 m_tid, stop_info_sp->GetDescription()); in ShouldStop()
[all …]
H A DThreadPlanCallUserExpression.cpp100 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); in GetRealStopInfo() local
102 if (stop_info_sp) { in GetRealStopInfo()
108 stop_info_sp->SetDescription(s.GetData()); in GetRealStopInfo()
111 return stop_info_sp; in GetRealStopInfo()
H A DThreadPlanStepUntil.cpp148 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in AnalyzeStop() local
152 if (stop_info_sp) { in AnalyzeStop()
153 StopReason reason = stop_info_sp->GetStopReason(); in AnalyzeStop()
159 m_process.GetBreakpointSiteList().FindByID(stop_info_sp->GetValue()); in AnalyzeStop()
265 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop() local
266 if (!stop_info_sp || stop_info_sp->GetStopReason() == eStopReasonNone) in ShouldStop()
H A DStopInfo.cpp705 m_stop_info_sp(stop_info_sp), m_watch_sp(watch_sp) { in ThreadPlanStepOverWatchpoint()
724 StopInfoSP stop_info_sp = GetThread().GetPrivateStopInfo(); in DoPlanExplainsStop() local
728 if (stop_info_sp in DoPlanExplainsStop()
1434 if (stop_info_sp && in GetReturnValueObject()
1437 static_cast<StopInfoThreadPlan *>(stop_info_sp.get()); in GetReturnValueObject()
1444 if (stop_info_sp && in GetExpressionVariable()
1447 static_cast<StopInfoThreadPlan *>(stop_info_sp.get()); in GetExpressionVariable()
1454 StopInfo::GetCrashingDereference(StopInfoSP &stop_info_sp, in GetCrashingDereference() argument
1456 if (!stop_info_sp) { in GetCrashingDereference()
1460 const char *description = stop_info_sp->GetDescription(); in GetCrashingDereference()
[all …]
H A DThreadPlanStepThrough.cpp246 StopInfoSP stop_info_sp(thread.GetStopInfo()); in HitOurBackstopBreakpoint() local
247 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) { in HitOurBackstopBreakpoint()
248 break_id_t stop_value = (break_id_t)stop_info_sp->GetValue(); in HitOurBackstopBreakpoint()
H A DThreadPlanStepOverBreakpoint.cpp51 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop() local
52 if (stop_info_sp) { in DoPlanExplainsStop()
53 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
H A DThreadPlanStepInstruction.cpp90 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop() local
91 if (stop_info_sp) { in DoPlanExplainsStop()
92 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
H A DThreadPlanStepOverRange.cpp346 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop() local
349 if (stop_info_sp) { in DoPlanExplainsStop()
350 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
355 return_value = NextRangeBreakpointExplainsStop(stop_info_sp); in DoPlanExplainsStop()
H A DThread.cpp429 lldb::StopInfoSP stop_info_sp(GetStopInfo()); in GetStopReason() local
430 if (stop_info_sp) in GetStopReason()
431 return stop_info_sp->GetStopReason(); in GetStopReason()
451 m_stop_info_sp = stop_info_sp; in SetStopInfo()
468 stop_info_sp ? stop_info_sp->GetDescription() : "<NULL>", in SetStopInfo()
508 saved_state.stop_info_sp = GetStopInfo(); in CheckpointThreadState()
543 if (saved_state.stop_info_sp) in RestoreThreadStateFromCheckpoint()
544 saved_state.stop_info_sp->MakeStopInfoValid(); in RestoreThreadStateFromCheckpoint()
545 SetStopInfo(saved_state.stop_info_sp); in RestoreThreadStateFromCheckpoint()
584 StopInfoSP stop_info_sp = GetStopInfo(); in GetStopDescriptionRaw() local
[all …]
H A DThreadPlanStepInRange.cpp436 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop() local
437 if (stop_info_sp) { in DoPlanExplainsStop()
438 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
441 if (NextRangeBreakpointExplainsStop(stop_info_sp)) { in DoPlanExplainsStop()
H A DThreadPlanCallFunction.cpp433 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in BreakpointsExplainStop() local
438 stop_info_sp)) || in BreakpointsExplainStop()
441 stop_info_sp))) { in BreakpointsExplainStop()
451 stop_info_sp->OverrideShouldStop(true); in BreakpointsExplainStop()
H A DThreadPlanStepOut.cpp288 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop() local
289 if (stop_info_sp) { in DoPlanExplainsStop()
290 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
295 m_process.GetBreakpointSiteList().FindByID(stop_info_sp->GetValue())); in DoPlanExplainsStop()
H A DStackFrameList.cpp130 StopInfoSP stop_info_sp = m_thread.GetStopInfo(); in ResetCurrentInlinedDepth() local
131 if (!stop_info_sp) in ResetCurrentInlinedDepth()
133 switch (stop_info_sp->GetStopReason()) { in ResetCurrentInlinedDepth()
154 uint32_t bp_site_id = stop_info_sp->GetValue(); in ResetCurrentInlinedDepth()
H A DProcess.cpp4044 StopInfoSP stop_info_sp = thread_sp->GetStopInfo(); in ShouldStop() local
4045 if (stop_info_sp && stop_info_sp->IsValid()) { in ShouldStop()
4048 if (stop_info_sp->GetOverrideShouldStop()) { in ShouldStop()
4050 stop_info_sp->GetOverriddenShouldStopValue(); in ShouldStop()
4052 stop_info_sp->PerformAction(event_ptr); in ShouldStop()
4060 if (stop_info_sp->HasTargetRunSinceMe()) { in ShouldStop()
4700 StopInfoSP stop_info_sp = thread_sp->GetStopInfo(); in HandleStoppedEvent() local
4701 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint && in HandleStoppedEvent()
4702 stop_info_sp->ShouldNotify(event_sp.get())) { in HandleStoppedEvent()
5418 if (stop_info_sp) { in RunThreadPlan()
[all …]
H A DThreadPlanStepRange.cpp389 lldb::StopInfoSP stop_info_sp) { in NextRangeBreakpointExplainsStop() argument
394 break_id_t bp_site_id = stop_info_sp->GetValue(); in NextRangeBreakpointExplainsStop()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.cpp232 lldb::StopInfoSP stop_info_sp; in CalculateStopInfo() local
255 stop_info_sp = in CalculateStopInfo()
266 stop_info_sp = in CalculateStopInfo()
270 stop_info_sp = StopInfo::CreateStopReasonToTrace(*this); in CalculateStopInfo()
302 stop_info_sp = StopInfoMachException::CreateStopReasonWithMachException( in CalculateStopInfo()
311 stop_info_sp = in CalculateStopInfo()
323 if (!stop_info_sp) in CalculateStopInfo()
326 SetStopInfo(stop_info_sp); in CalculateStopInfo()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp163 if (stop_info_sp) { in GetStopReasonDataCount()
179 break_id_t site_id = stop_info_sp->GetValue(); in GetStopReasonDataCount()
220 StopInfoSP stop_info_sp = thread->GetStopInfo(); in GetStopReasonDataAtIndex() local
221 if (stop_info_sp) { in GetStopReasonDataAtIndex()
237 break_id_t site_id = stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
259 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
262 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
265 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
268 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
271 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h147 GetReturnValueObject(lldb::StopInfoSP &stop_info_sp);
150 GetExpressionVariable(lldb::StopInfoSP &stop_info_sp);
153 GetCrashingDereference(lldb::StopInfoSP &stop_info_sp,
H A DThreadPlanStepRange.h63 bool NextRangeBreakpointExplainsStop(lldb::StopInfoSP stop_info_sp);
H A DThread.h123 lldb::StopInfoSP stop_info_sp; // You have to restore the stop info or you member
1184 void SetStopInfo(const lldb::StopInfoSP &stop_info_sp);
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp313 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop() local
318 if (stop_info_sp) in DoPlanExplainsStop()
319 stop_reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
324 uint64_t break_site_id = stop_info_sp->GetValue(); in DoPlanExplainsStop()
/freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp355 stop_info_sp; //(StopInfo::CreateStopReasonWithSignal (*thread, SIGSTOP)); in CreateThreadStopReason() local
356 return stop_info_sp; in CreateThreadStopReason()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp593 StopInfoSP stop_info_sp = thread_sp->GetStopInfo(); in AddExceptions() local
595 if (stop_info_sp) { in AddExceptions()
596 switch (stop_info_sp->GetStopReason()) { in AddExceptions()
609 StopInfoSP stop_info_sp = thread_sp->GetStopInfo(); in AddExceptions() local
613 static_cast<llvm::support::ulittle32_t>(stop_info_sp->GetValue()); in AddExceptions()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1357 StopInfoSP stop_info_sp = thread->GetStopInfo(); in Format() local
1358 if (stop_info_sp && stop_info_sp->IsValid()) { in Format()
1360 StopInfo::GetReturnValueObject(stop_info_sp); in Format()
1374 StopInfoSP stop_info_sp = thread->GetStopInfo(); in Format() local
1375 if (stop_info_sp && stop_info_sp->IsValid()) { in Format()
1377 StopInfo::GetExpressionVariable(stop_info_sp); in Format()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp153 StopInfoSP stop_info_sp = thread->GetStopInfo(); in DoExecute() local
154 if (!stop_info_sp) { in DoExecute()
159 valobj_sp = StopInfo::GetCrashingDereference(stop_info_sp); in DoExecute()

12