| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBThreadPlan.cpp | 134 if (thread_plan_sp) { in GetThread() 144 if (thread_plan_sp) { in GetDescription() 160 if (thread_plan_sp) in SetPlanComplete() 168 if (thread_plan_sp) in IsPlanComplete() 177 if (thread_plan_sp) in IsPlanStale() 186 if (thread_plan_sp) in IsValid() 195 if (thread_plan_sp) in GetStopOthers() 204 if (thread_plan_sp) in SetStopOthers() 228 if (thread_plan_sp) { in QueueThreadPlanForStepOverRange() 268 if (thread_plan_sp) { in QueueThreadPlanForStepInRange() [all …]
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | Thread.cpp | 1234 return thread_plan_sp; in QueueBasePlan() 1243 return thread_plan_sp; in QueueThreadPlanForStepSingleInstruction() 1256 return thread_plan_sp; in QueueThreadPlanForStepOverRange() 1284 return thread_plan_sp; in QueueThreadPlanForStepInRange() 1313 return thread_plan_sp; in QueueThreadPlanForStepOut() 1332 return thread_plan_sp; in QueueThreadPlanForStepOutNoShouldStop() 1341 if (!thread_plan_sp || !thread_plan_sp->ValidatePlan(nullptr)) in QueueThreadPlanForStepThrough() 1345 return thread_plan_sp; in QueueThreadPlanForStepThrough() 1356 return thread_plan_sp; in QueueThreadPlanForRunToAddress() 1366 return thread_plan_sp; in QueueThreadPlanForStepUntil() [all …]
|
| H A D | Process.cpp | 4531 RestorePlanState(lldb::ThreadPlanSP thread_plan_sp) in RestorePlanState() argument 4532 : m_thread_plan_sp(thread_plan_sp) { in RestorePlanState() 4605 ThreadSP thread_sp = thread_plan_sp->GetTarget() in HandleStoppedEvent() 4638 thread_plan_sp->SetPrivate(false); in HandleStoppedEvent() 4663 if (!thread_plan_sp) { in RunThreadPlan() 4670 if (!thread_plan_sp->ValidatePlan(nullptr)) { in RunThreadPlan() 4704 thread_plan_sp->SetPrivate(false); in RunThreadPlan() 4710 thread_plan_sp->SetIsControllingPlan(true); in RunThreadPlan() 4711 thread_plan_sp->SetOkayToDiscard(false); in RunThreadPlan() 5197 thread_plan_sp->SetStopOthers(false); in RunThreadPlan() [all …]
|
| H A D | ThreadPlanStack.cpp | 389 for (lldb::ThreadPlanSP thread_plan_sp : m_plans) in ClearThreadCache() local 390 thread_plan_sp->ClearThreadCache(); in ClearThreadCache()
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | ThreadPlan.h | 500 void PushPlan(lldb::ThreadPlanSP &thread_plan_sp) { in PushPlan() argument 501 GetThread().PushPlan(thread_plan_sp); in PushPlan() 502 thread_plan_sp->SetPrivate(true); in PushPlan() 503 thread_plan_sp->SetIsControllingPlan(false); in PushPlan()
|
| H A D | Process.h | 1234 RunThreadPlan(ExecutionContext &exe_ctx, lldb::ThreadPlanSP &thread_plan_sp,
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 404 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local 411 return thread_plan_sp; in GetStepThroughTrampolinePlan() 416 return thread_plan_sp; in GetStepThroughTrampolinePlan() 425 return thread_plan_sp; in GetStepThroughTrampolinePlan() 446 thread_plan_sp = in GetStepThroughTrampolinePlan() 450 return thread_plan_sp; in GetStepThroughTrampolinePlan()
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DynamicLoaderPOSIXDYLD.cpp | 486 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local 493 return thread_plan_sp; in GetStepThroughTrampolinePlan() 497 return thread_plan_sp; in GetStepThroughTrampolinePlan() 506 return thread_plan_sp; in GetStepThroughTrampolinePlan() 527 thread_plan_sp = in GetStepThroughTrampolinePlan() 531 return thread_plan_sp; in GetStepThroughTrampolinePlan()
|
| /llvm-project-15.0.7/lldb/bindings/python/ |
| H A D | python-swigsafecast.swig | 48 PythonObject ToSWIGWrapper(lldb::ThreadPlanSP thread_plan_sp) { 49 return ToSWIGHelper(new lldb::SBThreadPlan(std::move(thread_plan_sp)),
|
| H A D | python-wrapper.swig | 294 std::string &error_string, const lldb::ThreadPlanSP &thread_plan_sp) { 312 PythonObject tp_arg = ToSWIGWrapper(thread_plan_sp);
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderDarwin.cpp | 851 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local 992 thread_plan_sp = std::make_shared<ThreadPlanRunToAddress>( in GetStepThroughTrampolinePlan() 999 return thread_plan_sp; in GetStepThroughTrampolinePlan() 1109 lldb::ThreadPlanSP thread_plan_sp(new ThreadPlanCallFunction( in GetThreadLocalData() local 1116 exe_ctx, thread_plan_sp, options, execution_errors); in GetThreadLocalData() 1120 thread_plan_sp->GetReturnValueObject(); in GetThreadLocalData()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 363 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local 365 thread_plan_sp = m_objc_trampoline_handler_up->GetStepThroughDispatchPlan( in GetStepThroughTrampolinePlan() 367 return thread_plan_sp; in GetStepThroughTrampolinePlan()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | SWIGPythonBridge.h | 98 const lldb::ThreadPlanSP &thread_plan_sp);
|
| H A D | ScriptInterpreterPython.cpp | 1731 std::string &error_str, lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument 1735 if (!thread_plan_sp.get()) in CreateScriptedThreadPlan() 1738 Debugger &debugger = thread_plan_sp->GetTarget().GetDebugger(); in CreateScriptedThreadPlan() 1749 error_str, thread_plan_sp); in CreateScriptedThreadPlan()
|
| /llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/ |
| H A D | PythonTestSuite.cpp | 92 const lldb::ThreadPlanSP &thread_plan_sp) { in LLDBSwigPythonCreateScriptedThreadPlan() argument
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 279 lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
| H A D | DynamicLoaderDarwinKernel.cpp | 1519 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local 1522 return thread_plan_sp; in GetStepThroughTrampolinePlan()
|
| /llvm-project-15.0.7/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 1560 auto thread_plan_sp = in InitCompletionHookCallback() local 1563 thread_sp->QueueThreadPlan(thread_plan_sp, abort_other_plans); in InitCompletionHookCallback()
|