| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ThreadGDBRemote.cpp | 56 ProcessSP process_sp(GetProcess()); in ~ThreadGDBRemote() 106 ProcessSP process_sp(GetProcess()); in GetQueueName() 136 ProcessSP process_sp(GetProcess()); in GetQueueKind() 160 ProcessSP process_sp(GetProcess()); in GetQueueID() 175 ProcessSP process_sp(GetProcess()); in GetQueue() 187 ProcessSP process_sp(GetProcess()); in GetQueueLibdispatchQueueAddress() 227 ProcessSP process_sp(GetProcess()); in FetchThreadExtendedInfo() 243 ProcessSP process_sp(GetProcess()); in WillResume() 308 ProcessSP process_sp(GetProcess()); in CreateRegisterContextForFrame() 343 ProcessSP process_sp(GetProcess()); in CalculateStopInfo() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StopInfo.cpp | 36 m_stop_id(thread.GetProcess()->GetStopID()), in StopInfo() 37 m_resume_id(thread.GetProcess()->GetResumeID()), m_value(value), in StopInfo() 44 return thread_sp->GetProcess()->GetStopID() == m_stop_id; in IsValid() 51 m_stop_id = thread_sp->GetProcess()->GetStopID(); in MakeStopInfoValid() 52 m_resume_id = thread_sp->GetProcess()->GetResumeID(); in MakeStopInfoValid() 60 lldb::StateType ret_type = thread_sp->GetProcess()->GetPrivateState(); in HasTargetRunSinceMe() 72 uint32_t curr_resume_id = thread_sp->GetProcess()->GetResumeID(); in HasTargetRunSinceMe() 74 thread_sp->GetProcess()->GetLastUserExpressionResumeID(); in HasTargetRunSinceMe() 112 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value)); in StoreBPInfo() 140 ProcessSP process_sp(thread.GetProcess()); in IsValidForOperatingSystemThread() [all …]
|
| H A D | Thread.cpp | 311 const Debugger &debugger = GetProcess()->GetTarget().GetDebugger(); in SetSelectedFrameByIndexNoisily() 339 (GetProcess()->GetWarningsOptimization() || in FrameSelectedCallback() 340 GetProcess()->GetWarningsUnsupportedLanguage())) { in FrameSelectedCallback() 343 GetProcess()->PrintWarningOptimization(sc); in FrameSelectedCallback() 344 GetProcess()->PrintWarningUnsupportedLanguage(sc); in FrameSelectedCallback() 353 ProcessSP process_sp(GetProcess()); in GetStopInfo() 393 ProcessSP process_sp(GetProcess()); in GetPrivateStopInfo() 450 ProcessSP process_sp(GetProcess()); in StopInfoIsUpToDate() 474 ProcessSP process_sp(GetProcess()); in SetStopInfo() 523 ProcessSP process_sp(GetProcess()); in CheckpointThreadState() [all …]
|
| H A D | UnwindLLDB.cpp | 29 ProcessSP process_sp(thread.GetProcess()); in UnwindLLDB() 52 ProcessSP process_sp(m_thread.GetProcess()); in DoGetFrameCount() 75 ProcessSP process_sp(m_thread.GetProcess()); in AddFirstFrame() 404 ProcessSP process_sp(m_thread.GetProcess()); in DoGetFrameInfoAtIndex() 452 ProcessSP process_sp(m_thread.GetProcess()); in DoCreateRegisterContextForFrame()
|
| H A D | RegisterContext.cpp | 28 m_stop_id(thread.GetProcess()->GetStopID()) {} in RegisterContext() 33 ProcessSP process_sp(m_thread.GetProcess()); in InvalidateIfNeeded() 336 ProcessSP process_sp(m_thread.GetProcess()); in ReadRegisterValueFromMemory() 371 ProcessSP process_sp(m_thread.GetProcess()); in WriteRegisterValueToMemory()
|
| H A D | ThreadPlanShouldStopHere.cpp | 85 ProcessSP process_sp(current_plan->GetThread().GetProcess()); in DefaultShouldStopHereCallback() 134 ProcessSP process_sp(current_plan->GetThread().GetProcess()); in DefaultStepFromHereCallback()
|
| H A D | RegisterContextUnwind.cpp | 1752 if (ProcessSP process_sp = m_thread.GetProcess()) { in TryFallbackUnwindPlan() 1813 if (ProcessSP process_sp = m_thread.GetProcess()) { in TryFallbackUnwindPlan() 1958 ABISP abi_sp = m_thread.GetProcess()->GetABI(); in ReadFrameAddress() 2033 if (ABISP abi_sp = m_thread.GetProcess()->GetABI()) in ReadFrameAddress() 2045 Process &process = *m_thread.GetProcess(); in ReadFrameAddress() 2075 address = m_thread.GetProcess()->FixDataAddress(address); in ReadFrameAddress() 2091 if (ABISP abi_sp = m_thread.GetProcess()->GetABI()) in GetReturnAddressHint() 2156 ABISP abi_sp = m_thread.GetProcess()->GetABI(); in ReadGPRValue() 2191 if (ABISP abi_sp = m_thread.GetProcess()->GetABI()) { in ReadGPRValue() 2241 if (ABISP abi_sp = m_thread.GetProcess()->GetABI()) in ReadRegister() [all …]
|
| H A D | StructuredDataPlugin.cpp | 41 ProcessSP StructuredDataPlugin::GetProcess() const { in GetProcess() function in StructuredDataPlugin
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeRegisterContextFreeBSD.cpp | 23 NativeProcessFreeBSD &NativeRegisterContextFreeBSD::GetProcess() { in GetProcess() function in NativeRegisterContextFreeBSD 24 return static_cast<NativeProcessFreeBSD &>(m_thread.GetProcess()); in GetProcess() 28 return GetProcess().GetID(); in GetProcessPid()
|
| H A D | NativeRegisterContextFreeBSD.h | 35 virtual NativeProcessFreeBSD &GetProcess();
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeRegisterContextNetBSD.cpp | 28 NativeProcessNetBSD &NativeRegisterContextNetBSD::GetProcess() { in GetProcess() function in NativeRegisterContextNetBSD 29 return static_cast<NativeProcessNetBSD &>(m_thread.GetProcess()); in GetProcess() 33 return GetProcess().GetID(); in GetProcessPid()
|
| H A D | NativeRegisterContextNetBSD.h | 37 virtual NativeProcessNetBSD &GetProcess();
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBQueue.cpp | 91 if (stop_locker.TryLock(&queue_sp->GetProcess()->GetRunLock())) { in FetchThreads() 111 if (stop_locker.TryLock(&queue_sp->GetProcess()->GetRunLock())) { in FetchItems() 143 ProcessSP process_sp = queue_sp->GetProcess(); in GetThreadAtIndex() 183 lldb::SBProcess GetProcess() { in GetProcess() function in lldb_private::QueueImpl 187 result.SetSP(queue_sp->GetProcess()); in GetProcess() 308 SBProcess SBQueue::GetProcess() { in GetProcess() function in SBQueue 311 return m_opaque_sp->GetProcess(); in GetProcess()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | HistoryThread.cpp | 54 *this, 0, GetProcess()->GetAddressByteSize(), m_pcs[0]); in GetRegisterContext() 78 if (GetProcess()->HasAssignedIndexIDToThread( in GetExtendedBacktraceOriginatingIndexID() 80 return GetProcess()->AssignIndexIDToThread( in GetExtendedBacktraceOriginatingIndexID()
|
| H A D | HistoryUnwind.cpp | 45 &frame->GetThread()->GetProcess()->GetTarget()); in DoCreateRegisterContextForFrame() 49 frame->GetThread()->GetProcess()->GetAddressByteSize(), pc); in DoCreateRegisterContextForFrame()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 144 if (ABISP abi_sp = GetThread().GetProcess()->GetABI()) { in ShouldStop() 178 ObjCLanguageRuntime::Get(*GetThread().GetProcess()); in ShouldStop() 183 GetThread().GetProcess()->DeallocateMemory(m_sel_str_addr); in ShouldStop() 323 ProcessSP process_sp = GetThread().GetProcess(); in DoPlanExplainsStop() 402 = GetThread().GetProcess()->GetLanguageRuntime(eLanguageTypeObjC); in ShouldStop()
|
| H A D | AppleObjCClassDescriptorV2.cpp | 450 lldb_private::Process *process = m_runtime.GetProcess(); in ProcessMethodList() 480 lldb_private::Process *process = m_runtime.GetProcess(); in ProcessRelativeMethodLists() 530 lldb_private::Process *process = m_runtime.GetProcess(); in Describe() 603 lldb_private::Process *process = m_runtime.GetProcess(); in GetClassName() 622 lldb_private::Process *process = m_runtime.GetProcess(); in GetSuperclass() 637 lldb_private::Process *process = m_runtime.GetProcess(); in GetMetaclass() 654 lldb_private::Process *process = m_runtime.GetProcess(); in GetInstanceSize() 677 if (auto *process = m_runtime.GetProcess()) in GetImplementationLanguage() 704 Process *process(runtime.GetProcess()); in fill()
|
| H A D | AppleObjCRuntimeV2.cpp | 1570 Process *process = GetProcess(); in GetTaggedPointerObfuscator() 1601 Process *process = GetProcess(); in GetISAHashTablePointer() 1630 Process *process = runtime.GetProcess(); in CreateSharedCacheImageHeaders() 1703 Process *process = m_runtime.GetProcess(); in UpdateIfNeeded() 1883 if (Process *process = m_runtime.GetProcess()) { in ComputeHelper() 2007 Process *process = m_runtime.GetProcess(); in UpdateISAToDescriptorMap() 2274 Process *process = m_runtime.GetProcess(); in UpdateISAToDescriptorMap() 2474 Process *process = GetProcess(); in GetSharedCacheReadOnlyAddress() 2529 Process *process = GetProcess(); in UpdateISAToDescriptorMapIfNeeded() 2602 Process *process = GetProcess(); in RealizedClassGenerationCountChanged() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/AIX/ |
| H A D | NativeThreadAIX.h | 41 NativeProcessAIX &GetProcess(); 43 const NativeProcessAIX &GetProcess() const;
|
| H A D | NativeThreadAIX.cpp | 46 NativeProcessAIX &NativeThreadAIX::GetProcess() { in GetProcess() function in NativeThreadAIX 50 const NativeProcessAIX &NativeThreadAIX::GetProcess() const { in GetProcess() function in NativeThreadAIX
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/ |
| H A D | UnwindAssembly-x86.cpp | 51 ProcessSP process_sp(thread.GetProcess()); in GetNonCallSiteUnwindPlanFromAssembly() 75 ProcessSP process_sp(thread.GetProcess()); in AugmentUnwindPlanFromCallSite() 183 ProcessSP process_sp = thread.GetProcess(); in GetFastUnwindPlan()
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | SaveCoreOptions.cpp | 91 if (m_process_sp != thread_sp->GetProcess()) { in AddThread() 97 m_process_sp = thread_sp->GetProcess(); in AddThread()
|
| /freebsd/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBExecutionContextExtensions.i | 5 …process = property(GetProcess, None, doc='''A read only property that returns the same result as G…
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/common/ |
| H A D | ThreadPostMortemTrace.cpp | 36 *this, 0, GetProcess()->GetAddressByteSize(), LLDB_INVALID_ADDRESS); in CreateRegisterContextForFrame()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Runtime.h | 22 Process *GetProcess() { return m_process; } in GetProcess() function
|