Home
last modified time | relevance | path

Searched refs:GetThread (Results 1 – 25 of 64) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadPlan.cpp41 Thread &ThreadPlan::GetThread() { in GetThread() function in ThreadPlan
122 RegisterContext *reg_ctx = GetThread().GetRegisterContext().get(); in WillResume()
132 __FUNCTION__, GetThread().GetIndexID(), in WillResume()
196 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ValidatePlan()
202 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ValidatePlan()
212 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ShouldStop()
218 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ShouldStop()
228 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in WillStop()
244 LLVM_PRETTY_FUNCTION, GetThread().GetID(), GetThread().GetProtocolID()); in DoPlanExplainsStop()
262 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in MischiefManaged()
[all …]
H A DThreadPlanTracer.cpp48 TargetSP target_sp(GetThread().CalculateTarget()); in GetLogStream()
55 Thread &ThreadPlanTracer::GetThread() { in GetThread() function in ThreadPlanTracer
70 GetThread().GetStackFrameAtIndex(0)->Dump(stream, show_frame_index, in Log()
79 lldb::StopInfoSP stop_info = GetThread().GetStopInfo(); in TracerExplainsStop()
137 RegisterContext *reg_ctx = GetThread().GetRegisterContext().get(); in Log()
146 pc_addr.Dump(stream, &GetThread(), Address::DumpStyleResolvedDescription, in Log()
199 if (abi->GetArgumentValues(GetThread(), value_list)) { in Log()
212 RegisterContext *reg_ctx = GetThread().GetRegisterContext().get(); in Log()
H A DThreadPlanBase.cpp61 StopInfoSP stop_info_sp = GetThread().GetStopInfo(); in ShouldReportStop()
100 GetThread().DiscardThreadPlans(false); in ShouldStop()
130 GetThread().DiscardThreadPlans(false); in ShouldStop()
142 GetThread().DiscardThreadPlans(false); in ShouldStop()
153 GetThread().DiscardThreadPlans(false); in ShouldStop()
H A DThreadPlanShouldStopHere.cpp47 m_owner->GetThread().GetRegisterContext()->GetPC(0); in InvokeShouldStopHereCallback()
61 StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get(); in DefaultShouldStopHereCallback()
103 StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get(); in DefaultStepFromHereCallback()
129 return_plan_sp = current_plan->GetThread().QueueThreadPlanForStepInRange( in DefaultStepFromHereCallback()
137 current_plan->GetThread().QueueThreadPlanForStepOutNoShouldStop( in DefaultStepFromHereCallback()
H A DThreadPlanStepInRange.cpp56 Thread &thread = GetThread(); in SetupAvoidNoDebug()
132 DumpAddress(s.AsRawOstream(), GetThread().GetRegisterContext()->GetPC(), in ShouldStop()
166 Thread &thread = GetThread(); in ShouldStop()
306 StackFrame *frame = GetThread().GetStackFrameAtIndex(0).get(); in FrameMatchesAvoidCriteria()
311 FileSpecList libraries_to_avoid(GetThread().GetLibrariesToAvoid()); in FrameMatchesAvoidCriteria()
332 avoid_regexp_to_use = GetThread().GetSymbolsToAvoidRegexp(); in FrameMatchesAvoidCriteria()
365 StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get(); in DefaultShouldStopHereCallback()
467 Thread &thread = GetThread(); in DoWillResume()
H A DThreadPlanStepOut.cpp172 avoid_nodebug = GetThread().GetStepOutAvoidsNoDebug(); in SetupAvoidNoDebug()
182 Thread &thread = GetThread(); in DidPush()
299 GetThread().GetStackFrameAtIndex(0)->GetStackID(); in DoPlanExplainsStop()
366 StackID frame_zero_id = GetThread().GetStackFrameAtIndex(0)->GetStackID(); in ShouldStop()
445 Thread &thread = GetThread(); in QueueInlinedStepPlan()
517 abi_sp->GetReturnValueObject(GetThread(), return_compiler_type); in CalculateReturnValue()
526 StackID frame_zero_id = GetThread().GetStackFrameAtIndex(0)->GetStackID(); in IsPlanStale()
H A DThreadPlanCallFunction.cpp149 RegisterContext *reg_ctx = GetThread().GetRegisterContext().get(); in ReportRegisterState()
181 Thread &thread = GetThread(); in DoTakedown()
370 GetThread().SetStopInfoToNothing(); in DidPush()
373 Thread &thread = GetThread(); in DidPush()
458 GetThread().RestoreThreadStateFromCheckpoint(m_stored_thread_state); in RestoreThreadState()
466 abi->GetReturnValueObject(GetThread(), m_return_type, persistent); in SetReturnValue()
H A DThreadPlanStepThrough.cpp40 m_start_address = GetThread().GetRegisterContext()->GetPC(0); in ThreadPlanStepThrough()
80 Thread &thread = GetThread(); in LookForPlanToStepThroughFromCurrentPC()
99 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(0); in LookForPlanToStepThroughFromCurrentPC()
244 Thread &thread = GetThread(); in HitOurBackstopBreakpoint()
H A DThreadPlanStepOverBreakpoint.cpp79 lldb::addr_t pc_addr = GetThread().GetRegisterContext()->GetPC(); in DoPlanExplainsStop()
132 lldb::addr_t pc_addr = GetThread().GetRegisterContext()->GetPC(); in MischiefManaged()
172 return GetThread().GetRegisterContext()->GetPC() != m_breakpoint_addr; in IsPlanStale()
H A DThreadPlanStepInstruction.cpp40 Thread &thread = GetThread(); in SetUpState()
100 Thread &thread = GetThread(); in IsPlanStale()
129 Thread &thread = GetThread(); in ShouldStop()
H A DThreadPlanStepRange.cpp103 Thread &thread = GetThread(); in InRange()
196 lldb::addr_t cur_pc = GetThread().GetRegisterContext()->GetPC(); in InSymbol()
217 Thread &thread = GetThread(); in CompareCurrentFrameToStartFrame()
319 lldb::addr_t cur_addr = GetThread().GetRegisterContext()->GetPC(); in SetNextBranchBreakpoint()
482 lldb::addr_t addr = GetThread().GetRegisterContext()->GetPC() - 1; in IsPlanStale()
H A DThreadPlanStepOverRange.cpp88 avoid_nodebug = GetThread().GetStepOutAvoidsNoDebug(); in SetupAvoidNoDebug()
128 Thread &thread = GetThread(); in ShouldStop()
372 Thread &thread = GetThread(); in DoWillResume()
H A DThreadPlanCallOnFunctionExit.cpp30 m_step_out_threadplan_sp = GetThread().QueueThreadPlanForStepOut( in DidPush()
H A DStackFrame.cpp174 ThreadSP thread_sp = GetThread(); in GetFrameIndex()
196 ThreadSP thread_sp(GetThread()); in GetFrameCodeAddress()
253 ThreadSP thread_sp(GetThread()); in ChangePC()
1126 ThreadSP thread_sp(GetThread()); in GetRegisterContext()
1734 ThreadSP thread_sp(GetThread()); in CalculateTarget()
1745 ThreadSP thread_sp(GetThread()); in CalculateProcess()
1751 ThreadSP StackFrame::CalculateThread() { return GetThread(); } in CalculateThread()
1830 assert(GetThread() == curr_frame.GetThread()); in UpdatePreviousFrameFromCurrentFrame()
1935 m_recognized_frame_sp = GetThread() in GetRecognizedFrame()
H A DThreadPlanCallFunctionUsingABI.cpp64 abi->GetReturnValueObject(GetThread(), m_return_type, persistent); in SetReturnValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp68 GetThread().CalculateExecutionContext(exc_ctx); in InitializeFunctionCaller()
132 GetThread().CalculateExecutionContext(exc_ctx); in ShouldStop()
157 m_run_to_sp = GetThread().QueueThreadPlanForStepOutNoShouldStop( in ShouldStop()
169 ObjCLanguageRuntime::Get(*GetThread().GetProcess()); in ShouldStop()
180 GetThread(), target_so_addr, false); in ShouldStop()
183 } else if (GetThread().IsThreadPlanDone(m_run_to_sp.get())) { in ShouldStop()
242 m_msgSend_bkpts.back()->SetThreadID(GetThread().GetID()); in AppleThreadPlanStepThroughDirectDispatch()
249 if (GetThread().GetStepInAvoidsNoDebug()) in AppleThreadPlanStepThroughDirectDispatch()
302 ProcessSP process_sp = GetThread().GetProcess(); in DoPlanExplainsStop()
386 objc_runtime->GetStepThroughTrampolinePlan(GetThread(), false); in ShouldStop()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBThreadPlan.cpp136 SBThread SBThreadPlan::GetThread() const { in GetThread() function in SBThreadPlan
137 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBThread, SBThreadPlan, GetThread); in GetThread()
142 SBThread(thread_plan_sp->GetThread().shared_from_this())); in GetThread()
254 thread_plan_sp->GetThread().QueueThreadPlanForStepOverRange( in QueueThreadPlanForStepOverRange()
300 SBThreadPlan(thread_plan_sp->GetThread().QueueThreadPlanForStepInRange( in QueueThreadPlanForStepInRange()
336 sc = thread_plan_sp->GetThread().GetStackFrameAtIndex(0)->GetSymbolContext( in QueueThreadPlanForStepOut()
341 SBThreadPlan(thread_plan_sp->GetThread().QueueThreadPlanForStepOut( in QueueThreadPlanForStepOut()
379 SBThreadPlan(thread_plan_sp->GetThread().QueueThreadPlanForRunToAddress( in QueueThreadPlanForRunToAddress()
415 SBThreadPlan(thread_plan_sp->GetThread().QueueThreadPlanForStepScripted( in QueueThreadPlanForStepScripted()
442 SBThreadPlan(thread_plan_sp->GetThread().QueueThreadPlanForStepScripted( in QueueThreadPlanForStepScripted()
[all …]
H A DSBExecutionContext.cpp110 SBThread SBExecutionContext::GetThread() const { in GetThread() function in SBExecutionContext
112 GetThread); in GetThread()
156 LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBExecutionContext, GetThread, in RegisterMethods()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlan.h315 Thread &GetThread();
496 GetThread().PushPlan(thread_plan_sp); in PushPlan()
505 ThreadPlan *GetPreviousPlan() { return GetThread().GetPreviousPlan(this); } in GetPreviousPlan()
511 return GetThread().GetPrivateStopInfo(); in GetPrivateStopInfo()
515 GetThread().SetStopInfo(stop_reason_sp); in SetStopInfo()
H A DThreadPlanTracer.h53 Thread &GetThread();
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryUnwind.cpp45 &frame->GetThread()->GetProcess()->GetTarget()); in DoCreateRegisterContextForFrame()
48 *frame->GetThread().get(), frame->GetConcreteFrameIndex(), in DoCreateRegisterContextForFrame()
49 frame->GetThread()->GetProcess()->GetAddressByteSize(), pc); in DoCreateRegisterContextForFrame()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_mac.cpp35 thread_t GetThread(uptr index) const;
77 thread_resume(suspended_threads_list.GetThread(i)); in RunThread()
116 thread_t SuspendedThreadsListMac::GetThread(uptr index) const { in GetThread() function in __sanitizer::SuspendedThreadsListMac
146 thread_t thread = GetThread(index); in GetRegistersAndSP()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBExecutionContext.i38 GetThread () const;
47 …thread = property(GetThread, None, doc='''A read only property that returns the same result as Get…
H A DSBFrame.i199 GetThread () const;
354 …thread = property(GetThread, None, doc='''A read only property that returns an lldb object that re…
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBExecutionContext.h48 SBThread GetThread() const;

123