Home
last modified time | relevance | path

Searched refs:StopInfo (Results 1 – 18 of 18) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DStopInfo.cpp30 StopInfo::StopInfo(Thread &thread, uint64_t value) in StopInfo() function in StopInfo
37 bool StopInfo::IsValid() const { in IsValid()
44 void StopInfo::MakeStopInfoValid() { in MakeStopInfoValid()
52 bool StopInfo::HasTargetRunSinceMe() { in HasTargetRunSinceMe()
84 class StopInfoBreakpoint : public StopInfo {
87 : StopInfo(thread, break_id), m_should_stop(false), in StopInfoBreakpoint()
95 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint()
612 class StopInfoWatchpoint : public StopInfo {
660 : StopInfo(thread, watch_id), m_should_stop(false), in StopInfoWatchpoint()
943 class StopInfoUnixSignal : public StopInfo {
[all …]
DInstrumentationRuntimeStopInfo.cpp21 : StopInfo(thread, 0) { in InstrumentationRuntimeStopInfo()
DThreadPlanStepInRange.cpp476 SetStopInfo(StopInfo::CreateStopReasonToTrace(thread)); in DoWillResume()
DThread.cpp358 return StopInfo::CreateStopReasonWithPlan( in GetStopInfo()
472 StopInfo::CreateStopReasonWithSignal(*this, LLDB_INVALID_SIGNAL_NUMBER)); in SetStopInfoToNothing()
691 StopInfo *stop_info = GetPrivateStopInfo().get(); in ShouldResume()
DProcess.cpp891 ValueObjectSP valobj_sp = StopInfo::GetCrashingDereference( in HandleProcessStateChangedEvent()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
DStopInfo.h20 class StopInfo {
26 StopInfo(Thread &thread, uint64_t value);
28 virtual ~StopInfo() = default;
189 StopInfo(const StopInfo &) = delete;
190 const StopInfo &operator=(const StopInfo &) = delete;
DInstrumentationRuntimeStopInfo.h19 class InstrumentationRuntimeStopInfo : public StopInfo {
DProcess.h350 friend class StopInfo; variable
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
DStopInfoMachException.cpp311 return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID()); in GetStopInfoForHardwareBP()
327 return StopInfo::CreateStopReasonWithBreakpointSiteID(thread, in GetStopInfoForHardwareBP()
367 return StopInfo::CreateStopReasonWithExec(thread); in CreateStopReasonWithMachException()
371 return StopInfo::CreateStopReasonWithSignal(thread, exc_sub_code); in CreateStopReasonWithMachException()
426 return StopInfo::CreateStopReasonWithWatchpointID(thread, in CreateStopReasonWithMachException()
469 return StopInfo::CreateStopReasonWithWatchpointID(thread, in CreateStopReasonWithMachException()
475 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
514 return StopInfo::CreateStopReasonWithBreakpointSiteID( in CreateStopReasonWithMachException()
517 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
525 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
DStopInfoMachException.h18 class StopInfoMachException : public StopInfo {
24 : StopInfo(thread, exc_type), m_exc_data_count(exc_data_count), in StopInfoMachException()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1839 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo()
1843 StopInfo::CreateStopReasonToTrace(*thread_sp)); in SetThreadStopInfo()
1859 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo()
1896 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithWatchpointID( in SetThreadStopInfo()
1900 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithException( in SetThreadStopInfo()
1906 StopInfo::CreateStopReasonWithExec(*thread_sp)); in SetThreadStopInfo()
1909 thread_sp->SetStopInfo(StopInfo::CreateStopReasonProcessorTrace( in SetThreadStopInfo()
1925 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo()
1952 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo()
1965 StopInfo::CreateStopReasonToTrace(*thread_sp)); in SetThreadStopInfo()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/
Dlldb-forward.h193 class StopInfo; variable
413 typedef std::shared_ptr<lldb_private::StopInfo> StopInfoSP;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
DThreadElfCore.cpp232 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, m_signo)); in CalculateStopInfo()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp349 stop_info = StopInfo::CreateStopReasonWithSignal( in RefreshStateAfterStop()
365 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
DCommandObjectFrame.cpp157 valobj_sp = StopInfo::GetCrashingDereference(stop_info_sp); in DoExecute()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DFormatEntity.cpp1296 StopInfo::GetReturnValueObject(stop_info_sp); in Format()
1313 StopInfo::GetExpressionVariable(stop_info_sp); in Format()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBThread.cpp371 return_valobj_sp = StopInfo::GetReturnValueObject(stop_info_sp); in GetStopReturnValue()
/freebsd-12-stable/lib/clang/liblldb/
DMakefile601 SRCS+= Target/StopInfo.cpp