| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | StopInfo.h | 103 static lldb::StopInfoSP 109 static lldb::StopInfoSP CreateStopReasonWithBreakpointSiteID( 112 static lldb::StopInfoSP CreateStopReasonWithWatchpointID( 116 static lldb::StopInfoSP 122 static lldb::StopInfoSP 127 static lldb::StopInfoSP 132 static lldb::StopInfoSP 135 static lldb::StopInfoSP CreateStopReasonFork(Thread &thread, 146 GetReturnValueObject(lldb::StopInfoSP &stop_info_sp); 149 GetExpressionVariable(lldb::StopInfoSP &stop_info_sp); [all …]
|
| H A D | ThreadPlanCallFunction.h | 84 virtual lldb::StopInfoSP GetRealStopInfo() { in GetRealStopInfo() 131 lldb::StopInfoSP
|
| H A D | Thread.h | 123 lldb::StopInfoSP stop_info_sp; // You have to restore the stop info or you 243 lldb::StopInfoSP GetStopInfo(); 1124 virtual lldb::StopInfoSP GetPrivateStopInfo(); 1163 void SetStopInfo(const lldb::StopInfoSP &stop_info_sp); 1249 lldb::StopInfoSP m_stop_info_sp; ///< The private stop reason for this thread
|
| H A D | ThreadPlan.h | 515 lldb::StopInfoSP GetPrivateStopInfo() { in GetPrivateStopInfo() 519 void SetStopInfo(lldb::StopInfoSP stop_reason_sp) { in SetStopInfo()
|
| H A D | InstrumentationRuntimeStopInfo.h | 31 static lldb::StopInfoSP CreateStopReasonWithInstrumentationData(
|
| H A D | OperatingSystem.h | 56 virtual lldb::StopInfoSP CreateThreadStopReason(Thread *thread) = 0;
|
| H A D | ThreadPlanCallUserExpression.h | 37 lldb::StopInfoSP GetRealStopInfo() override;
|
| H A D | ThreadPlanStepRange.h | 63 bool NextRangeBreakpointExplainsStop(lldb::StopInfoSP stop_info_sp);
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | StopInfo.cpp | 1269 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID() 1278 StopInfoSP 1290 StopInfoSP StopInfo::CreateStopReasonToTrace(Thread &thread) { in CreateStopReasonToTrace() 1291 return StopInfoSP(new StopInfoTrace(thread)); in CreateStopReasonToTrace() 1294 StopInfoSP StopInfo::CreateStopReasonWithPlan( in CreateStopReasonWithPlan() 1311 StopInfoSP StopInfo::CreateStopReasonWithExec(Thread &thread) { in CreateStopReasonWithExec() 1312 return StopInfoSP(new StopInfoExec(thread)); in CreateStopReasonWithExec() 1315 StopInfoSP StopInfo::CreateStopReasonFork(Thread &thread, in CreateStopReasonFork() 1322 StopInfoSP StopInfo::CreateStopReasonVFork(Thread &thread, in CreateStopReasonVFork() 1329 return StopInfoSP(new StopInfoVForkDone(thread)); in CreateStopReasonVForkDone() [all …]
|
| H A D | InstrumentationRuntimeStopInfo.cpp | 30 StopInfoSP 34 return StopInfoSP( in CreateStopReasonWithInstrumentationData()
|
| H A D | ThreadPlanCallUserExpression.cpp | 99 StopInfoSP ThreadPlanCallUserExpression::GetRealStopInfo() { in GetRealStopInfo() 100 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); in GetRealStopInfo()
|
| H A D | ThreadPlanBase.cpp | 62 StopInfoSP stop_info_sp = GetThread().GetStopInfo(); in ShouldReportStop() 79 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
|
| H A D | ThreadPlanStepUntil.cpp | 148 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in AnalyzeStop() 265 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
|
| H A D | ThreadPlanStepOverBreakpoint.cpp | 51 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop()
|
| /llvm-project-15.0.7/lldb/unittests/Thread/ |
| H A D | ThreadTest.cpp | 114 StopInfoSP stopinfo_sp = in TEST_F() 149 StopInfoSP stopinfo_sp = in TEST_F() 160 StopInfoSP new_stopinfo_sp = thread_sp->GetPrivateStopInfo(); in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/ |
| H A D | StopInfoMachException.cpp | 484 static StopInfoSP GetStopInfoForHardwareBP(Thread &thread, Target *target, in GetStopInfoForHardwareBP() 522 StopInfoSP StopInfoMachException::CreateStopReasonWithMachException( in CreateStopReasonWithMachException() 527 return StopInfoSP(); in CreateStopReasonWithMachException() 579 if (StopInfoSP stop_info = in CreateStopReasonWithMachException() 706 return StopInfoSP(); in CreateStopReasonWithMachException() 724 return StopInfoSP(new StopInfoMachException(thread, exc_type, exc_data_count, in CreateStopReasonWithMachException()
|
| H A D | StopInfoMachException.h | 43 static lldb::StopInfoSP CreateStopReasonWithMachException(
|
| H A D | ThreadMemory.cpp | 70 lldb::StopInfoSP backing_stop_info_sp( in CalculateStopInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Architecture/Arm/ |
| H A D | ArchitectureArm.cpp | 105 thread.SetStopInfo (StopInfoSP()); in OverrideStopInfo() 118 thread.SetStopInfo(StopInfoSP()); in OverrideStopInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ThreadKDP.h | 67 lldb::StopInfoSP m_cached_stop_info_sp;
|
| /llvm-project-15.0.7/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.h | 57 lldb::StopInfoSP
|
| H A D | OperatingSystemPython.cpp | 355 StopInfoSP 360 StopInfoSP in CreateThreadStopReason()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.h | 67 bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override;
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/mach-core/ |
| H A D | ThreadMachCore.cpp | 110 StopInfoSP stop_info; in CalculateStopInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.h | 88 bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override;
|