Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp33 StopInfo::StopInfo(Thread &thread, uint64_t value) in StopInfo() function in StopInfo
40 bool StopInfo::IsValid() const { in IsValid()
47 void StopInfo::MakeStopInfoValid() { in MakeStopInfoValid()
55 bool StopInfo::HasTargetRunSinceMe() { in HasTargetRunSinceMe()
87 class StopInfoBreakpoint : public StopInfo {
90 : StopInfo(thread, break_id), m_should_stop(false), in StopInfoBreakpoint()
98 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint()
628 class StopInfoWatchpoint : public StopInfo {
675 : StopInfo(thread, watch_id), m_silently_skip_wp(silently_skip_wp) {} in StopInfoWatchpoint()
1047 class StopInfoUnixSignal : public StopInfo {
[all …]
H A DInstrumentationRuntimeStopInfo.cpp21 : StopInfo(thread, 0) { in InstrumentationRuntimeStopInfo()
H A DThreadPlanStepInRange.cpp473 SetStopInfo(StopInfo::CreateStopReasonToTrace(thread)); in DoWillResume()
H A DThread.cpp366 return StopInfo::CreateStopReasonWithPlan( in GetStopInfo()
495 StopInfo::CreateStopReasonWithSignal(*this, LLDB_INVALID_SIGNAL_NUMBER)); in SetStopInfoToNothing()
685 StopInfo *stop_info = GetPrivateStopInfo().get(); in ShouldResume()
H A DProcess.cpp948 ValueObjectSP valobj_sp = StopInfo::GetCrashingDereference( in HandleProcessStateChangedEvent()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h20 class StopInfo : public std::enable_shared_from_this<StopInfo> {
26 StopInfo(Thread &thread, uint64_t value);
28 virtual ~StopInfo() = default;
205 StopInfo(const StopInfo &) = delete;
206 const StopInfo &operator=(const StopInfo &) = delete;
H A DInstrumentationRuntimeStopInfo.h19 class InstrumentationRuntimeStopInfo : public StopInfo {
H A DProcess.h346 friend class StopInfo; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp502 return StopInfo::CreateStopReasonWithWatchpointID( in GetStopInfoForHardwareBP()
515 return StopInfo::CreateStopReasonWithBreakpointSiteID(thread, in GetStopInfoForHardwareBP()
628 return StopInfo::CreateStopReasonWithExec(thread); in CreateStopReasonWithMachException()
632 return StopInfo::CreateStopReasonWithSignal(thread, exc_sub_code); in CreateStopReasonWithMachException()
685 return StopInfo::CreateStopReasonWithWatchpointID(thread, in CreateStopReasonWithMachException()
742 return StopInfo::CreateStopReasonWithWatchpointID(thread, in CreateStopReasonWithMachException()
748 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
787 return StopInfo::CreateStopReasonWithBreakpointSiteID( in CreateStopReasonWithMachException()
790 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
798 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
H A DStopInfoMachException.h24 class StopInfoMachException : public StopInfo {
36 : StopInfo(thread, exc_type), m_exc_data_count(exc_data_count), in StopInfoMachException()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.cpp16 #include "lldb/Target/StopInfo.h"
256 StopInfo::CreateStopReasonWithBreakpointSiteID(*this, break_id); in CalculateStopInfo()
267 StopInfo::CreateStopReasonWithSignal(*this, signal, description.data()); in CalculateStopInfo()
270 stop_info_sp = StopInfo::CreateStopReasonToTrace(*this); in CalculateStopInfo()
312 StopInfo::CreateStopReasonWithException(*this, "EXC_BAD_ACCESS"); in CalculateStopInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1615 StopInfo::CreateStopReasonWithBreakpointSiteID( in CalculateThreadStopInfo()
1757 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo()
1761 StopInfo::CreateStopReasonToTrace(*thread_sp)); in SetThreadStopInfo()
1777 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo()
1847 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithWatchpointID( in SetThreadStopInfo()
1851 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithException( in SetThreadStopInfo()
1857 StopInfo::CreateStopReasonWithExec(*thread_sp)); in SetThreadStopInfo()
1860 thread_sp->SetStopInfo(StopInfo::CreateStopReasonProcessorTrace( in SetThreadStopInfo()
1868 StopInfo::CreateStopReasonFork(*thread_sp, child_pid, child_tid)); in SetThreadStopInfo()
1875 thread_sp->SetStopInfo(StopInfo::CreateStopReasonVFork( in SetThreadStopInfo()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h209 class StopInfo; variable
426 typedef std::shared_ptr<lldb_private::StopInfo> StopInfoSP;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp268 stop_info = StopInfo::CreateStopReasonWithSignal( in RefreshStateAfterStop()
284 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp250 SetStopInfo(StopInfo::CreateStopReasonWithSignal( in CalculateStopInfo()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp147 valobj_sp = StopInfo::GetCrashingDereference(stop_info_sp); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1402 StopInfo::GetReturnValueObject(stop_info_sp); in Format()
1422 StopInfo::GetExpressionVariable(stop_info_sp); in Format()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp364 return_valobj_sp = StopInfo::GetReturnValueObject(stop_info_sp); in GetStopReturnValue()
/freebsd/lib/clang/liblldb/
H A DMakefile660 SRCS+= Target/StopInfo.cpp