LLDB mainline
SBThread.cpp
Go to the documentation of this file.
1//===-- SBThread.cpp ------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "lldb/API/SBThread.h"
10#include "Utils.h"
11#include "lldb/API/SBAddress.h"
12#include "lldb/API/SBDebugger.h"
13#include "lldb/API/SBEvent.h"
14#include "lldb/API/SBFileSpec.h"
15#include "lldb/API/SBFormat.h"
16#include "lldb/API/SBFrame.h"
18#include "lldb/API/SBProcess.h"
19#include "lldb/API/SBStream.h"
24#include "lldb/API/SBValue.h"
26#include "lldb/Core/Debugger.h"
31#include "lldb/Target/Process.h"
32#include "lldb/Target/Queue.h"
35#include "lldb/Target/Target.h"
36#include "lldb/Target/Thread.h"
43#include "lldb/Utility/State.h"
44#include "lldb/Utility/Stream.h"
48
49#include <memory>
50
51using namespace lldb;
52using namespace lldb_private;
53
59
60// Constructors
64
65SBThread::SBThread(const ThreadSP &lldb_object_sp)
66 : m_opaque_sp(new ExecutionContextRef(lldb_object_sp)) {
67 LLDB_INSTRUMENT_VA(this, lldb_object_sp);
68}
69
71 LLDB_INSTRUMENT_VA(this, rhs);
72
74}
75
76// Assignment operator
77
79 LLDB_INSTRUMENT_VA(this, rhs);
80
81 if (this != &rhs)
83 return *this;
84}
85
86// Destructor
87SBThread::~SBThread() = default;
88
91
92 SBQueue sb_queue;
93 QueueSP queue_sp;
94 llvm::Expected<StoppedExecutionContext> exe_ctx =
96 if (!exe_ctx) {
97 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
98 return SBQueue();
99 }
100
101 if (exe_ctx->HasThreadScope()) {
102 queue_sp = exe_ctx->GetThreadPtr()->GetQueue();
103 if (queue_sp) {
104 sb_queue.SetQueue(queue_sp);
105 }
106 }
107
108 return sb_queue;
109}
110
111bool SBThread::IsValid() const {
112 LLDB_INSTRUMENT_VA(this);
113 return this->operator bool();
114}
115SBThread::operator bool() const {
116 LLDB_INSTRUMENT_VA(this);
117 if (!m_opaque_sp)
118 return false;
119
120 llvm::Expected<StoppedExecutionContext> exe_ctx =
122 if (!exe_ctx) {
123 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
124 return false;
125 }
126
127 return m_opaque_sp->GetThreadSP().get() != nullptr;
128}
129
131 LLDB_INSTRUMENT_VA(this);
132
133 m_opaque_sp->Clear();
134}
135
137 LLDB_INSTRUMENT_VA(this);
138
140 llvm::Expected<StoppedExecutionContext> exe_ctx =
142 if (!exe_ctx) {
143 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
144 return reason;
145 }
146
147 if (exe_ctx->HasThreadScope())
148 return exe_ctx->GetThreadPtr()->GetStopReason();
149
150 return reason;
151}
152
154 LLDB_INSTRUMENT_VA(this);
155
156 llvm::Expected<StoppedExecutionContext> exe_ctx =
158 if (exe_ctx) {
159 if (exe_ctx->HasThreadScope()) {
160 StopInfoSP stop_info_sp = exe_ctx->GetThreadPtr()->GetStopInfo();
161 if (stop_info_sp)
162 return stop_info_sp->GetStopReasonDataCount();
163 }
164 } else {
165 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
166 return 0;
167 }
168 return 0;
169}
170
172 LLDB_INSTRUMENT_VA(this, idx);
173
174 llvm::Expected<StoppedExecutionContext> exe_ctx =
176 if (exe_ctx) {
177 if (exe_ctx->HasThreadScope()) {
178 Thread *thread = exe_ctx->GetThreadPtr();
179 StopInfoSP stop_info_sp = thread->GetStopInfo();
180 if (stop_info_sp)
181 return stop_info_sp->GetStopReasonDataAtIndex(idx);
182 }
183 } else {
184 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
185 return 0;
186 }
187 return 0;
188}
189
191 LLDB_INSTRUMENT_VA(this, stream);
192
193 Stream &strm = stream.ref();
194
195 llvm::Expected<StoppedExecutionContext> exe_ctx =
197 if (!exe_ctx) {
198 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
199 return false;
200 }
201
202 if (!exe_ctx->HasThreadScope())
203 return false;
204
205 StopInfoSP stop_info = exe_ctx->GetThreadPtr()->GetStopInfo();
206 StructuredData::ObjectSP info = stop_info->GetExtendedInfo();
207 if (!info)
208 return false;
209
210 info->Dump(strm);
211
212 return true;
213}
214
217 LLDB_INSTRUMENT_VA(this, type);
218
219 SBThreadCollection threads;
220
221 llvm::Expected<StoppedExecutionContext> exe_ctx =
223 if (!exe_ctx) {
224 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
225 return SBThreadCollection();
226 }
227
228 if (!exe_ctx->HasThreadScope())
229 return SBThreadCollection();
230
231 ProcessSP process_sp = exe_ctx->GetProcessSP();
232
233 StopInfoSP stop_info = exe_ctx->GetThreadPtr()->GetStopInfo();
234 StructuredData::ObjectSP info = stop_info->GetExtendedInfo();
235 if (!info)
236 return threads;
237
238 threads = process_sp->GetInstrumentationRuntime(type)
239 ->GetBacktracesFromExtendedStopInfo(info);
240 return threads;
241}
242
244 LLDB_INSTRUMENT_VA(this, stream);
245
246 if (!m_opaque_sp)
247 return false;
248
249 llvm::Expected<StoppedExecutionContext> exe_ctx =
251 if (!exe_ctx) {
252 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
253 return false;
254 }
255
256 if (!exe_ctx->HasThreadScope())
257 return false;
258
259 Stream &strm = stream.ref();
260 const std::string stop_desc = exe_ctx->GetThreadPtr()->GetStopDescription();
261 strm.PutCString(stop_desc);
262
263 return true;
264}
265
266size_t SBThread::GetStopDescription(char *dst_or_null, size_t dst_len) {
267 LLDB_INSTRUMENT_VA(this, dst_or_null, dst_len);
268
269 if (dst_or_null)
270 *dst_or_null = 0;
271
272 llvm::Expected<StoppedExecutionContext> exe_ctx =
274 if (!exe_ctx) {
275 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
276 return 0;
277 }
278
279 if (!exe_ctx->HasThreadScope())
280 return 0;
281
282 std::string thread_stop_desc = exe_ctx->GetThreadPtr()->GetStopDescription();
283 if (thread_stop_desc.empty())
284 return 0;
285
286 if (dst_or_null)
287 return ::snprintf(dst_or_null, dst_len, "%s", thread_stop_desc.c_str()) + 1;
288
289 // NULL dst passed in, return the length needed to contain the
290 // description.
291 return thread_stop_desc.size() + 1; // Include the NULL byte for size
292}
293
295 LLDB_INSTRUMENT_VA(this);
296
297 ValueObjectSP return_valobj_sp;
298 llvm::Expected<StoppedExecutionContext> exe_ctx =
300 if (!exe_ctx) {
301 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
302 return SBValue();
303 }
304
305 if (exe_ctx->HasThreadScope()) {
306 StopInfoSP stop_info_sp = exe_ctx->GetThreadPtr()->GetStopInfo();
307 if (stop_info_sp) {
308 return_valobj_sp = StopInfo::GetReturnValueObject(stop_info_sp);
309 }
310 }
311
312 return SBValue(return_valobj_sp);
313}
314
315void SBThread::SetThread(const ThreadSP &lldb_object_sp) {
316 m_opaque_sp->SetThreadSP(lldb_object_sp);
317}
318
320 LLDB_INSTRUMENT_VA(this);
321
322 llvm::Expected<StoppedExecutionContext> exe_ctx =
324 if (!exe_ctx) {
325 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
327 }
328
329 ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
330 if (thread_sp)
331 return thread_sp->GetID();
333}
334
335uint32_t SBThread::GetIndexID() const {
336 LLDB_INSTRUMENT_VA(this);
337
338 llvm::Expected<StoppedExecutionContext> exe_ctx =
340 if (!exe_ctx) {
341 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
343 }
344
345 ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
346 if (thread_sp)
347 return thread_sp->GetIndexID();
349}
350
351const char *SBThread::GetName() const {
352 LLDB_INSTRUMENT_VA(this);
353
354 llvm::Expected<StoppedExecutionContext> exe_ctx =
356 if (!exe_ctx) {
357 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
358 return nullptr;
359 }
360
361 if (!exe_ctx->HasThreadScope())
362 return nullptr;
363
364 return ConstString(exe_ctx->GetThreadPtr()->GetName()).GetCString();
365}
366
367const char *SBThread::GetQueueName() const {
368 LLDB_INSTRUMENT_VA(this);
369
370 llvm::Expected<StoppedExecutionContext> exe_ctx =
372 if (!exe_ctx) {
373 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
374 return nullptr;
375 }
376
377 if (!exe_ctx->HasThreadScope())
378 return nullptr;
379
380 return ConstString(exe_ctx->GetThreadPtr()->GetQueueName()).GetCString();
381}
382
384 LLDB_INSTRUMENT_VA(this);
385
387 llvm::Expected<StoppedExecutionContext> exe_ctx =
389 if (!exe_ctx) {
390 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
391 return id;
392 }
393
394 if (exe_ctx->HasThreadScope()) {
395 id = exe_ctx->GetThreadPtr()->GetQueueID();
396 }
397
398 return id;
399}
400
401bool SBThread::GetInfoItemByPathAsString(const char *path, SBStream &strm) {
402 LLDB_INSTRUMENT_VA(this, path, strm);
403
404 bool success = false;
405 llvm::Expected<StoppedExecutionContext> exe_ctx =
407 if (exe_ctx) {
408 if (exe_ctx->HasThreadScope()) {
409 Thread *thread = exe_ctx->GetThreadPtr();
410 StructuredData::ObjectSP info_root_sp = thread->GetExtendedInfo();
411 if (info_root_sp) {
413 info_root_sp->GetObjectForDotSeparatedPath(path);
414 if (node) {
415 if (node->GetType() == eStructuredDataTypeString) {
416 strm.ref() << node->GetAsString()->GetValue();
417 success = true;
418 }
419 if (node->GetType() == eStructuredDataTypeInteger) {
420 strm.Printf("0x%" PRIx64, node->GetUnsignedIntegerValue());
421 success = true;
422 }
423 if (node->GetType() == eStructuredDataTypeFloat) {
424 strm.Printf("0x%f", node->GetAsFloat()->GetValue());
425 success = true;
426 }
427 if (node->GetType() == eStructuredDataTypeBoolean) {
428 if (node->GetAsBoolean()->GetValue())
429 strm.Printf("true");
430 else
431 strm.Printf("false");
432 success = true;
433 }
434 if (node->GetType() == eStructuredDataTypeNull) {
435 strm.Printf("null");
436 success = true;
437 }
438 }
439 }
440 }
441 } else {
442 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
443 return success;
444 }
445
446 return success;
447}
448
450 ThreadPlan *new_plan) {
451 Thread *thread = exe_ctx.GetThreadPtr();
452 if (!thread)
453 return Status::FromErrorString("No thread in SBThread::ResumeNewPlan");
454
455 // User level plans should be Controlling Plans so they can be interrupted,
456 // other plans executed, and then a "continue" will resume the plan.
457 if (new_plan != nullptr) {
458 new_plan->SetIsControllingPlan(true);
459 new_plan->SetOkayToDiscard(false);
460 }
461
462 // Why do we need to set the current thread by ID here???
463 Process *process = exe_ctx.GetProcessPtr();
464 process->GetThreadList().SetSelectedThreadByID(thread->GetID());
465
466 // Release the run lock but keep the API lock.
467 std::unique_lock<std::recursive_mutex> api_lock = exe_ctx.AllowResume();
468 if (process->GetTarget().GetDebugger().GetAsyncExecution())
469 return process->Resume();
470 return process->ResumeSynchronous(nullptr);
471}
472
473void SBThread::StepOver(lldb::RunMode stop_other_threads) {
474 LLDB_INSTRUMENT_VA(this, stop_other_threads);
475
476 SBError error; // Ignored
477 StepOver(stop_other_threads, error);
478}
479
480void SBThread::StepOver(lldb::RunMode stop_other_threads, SBError &error) {
481 LLDB_INSTRUMENT_VA(this, stop_other_threads, error);
482
483 llvm::Expected<StoppedExecutionContext> exe_ctx =
485 if (!exe_ctx) {
486 error = Status::FromError(exe_ctx.takeError());
487 return;
488 }
489
490 if (!exe_ctx->HasThreadScope()) {
491 error = Status::FromErrorString("this SBThread object is invalid");
492 return;
493 }
494
495 Thread *thread = exe_ctx->GetThreadPtr();
496 bool abort_other_plans = false;
497 StackFrameSP frame_sp(thread->GetStackFrameAtIndex(0));
498
499 Status new_plan_status;
500 ThreadPlanSP new_plan_sp;
501 if (frame_sp) {
502 if (frame_sp->HasDebugInformation()) {
503 const LazyBool avoid_no_debug = eLazyBoolCalculate;
504 SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything));
505 new_plan_sp = thread->QueueThreadPlanForStepOverRange(
506 abort_other_plans, sc.line_entry, sc, stop_other_threads,
507 new_plan_status, avoid_no_debug);
508 } else {
509 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
510 true, abort_other_plans, stop_other_threads, new_plan_status);
511 }
512 }
513 error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
514}
515
516void SBThread::StepInto(lldb::RunMode stop_other_threads) {
517 LLDB_INSTRUMENT_VA(this, stop_other_threads);
518
519 StepInto(nullptr, stop_other_threads);
520}
521
522void SBThread::StepInto(const char *target_name,
523 lldb::RunMode stop_other_threads) {
524 LLDB_INSTRUMENT_VA(this, target_name, stop_other_threads);
525
526 SBError error; // Ignored
527 StepInto(target_name, LLDB_INVALID_LINE_NUMBER, error, stop_other_threads);
528}
529
530void SBThread::StepInto(const char *target_name, uint32_t end_line,
531 SBError &error, lldb::RunMode stop_other_threads) {
532 LLDB_INSTRUMENT_VA(this, target_name, end_line, error, stop_other_threads);
533
534 llvm::Expected<StoppedExecutionContext> exe_ctx =
536 if (!exe_ctx) {
537 error = Status::FromError(exe_ctx.takeError());
538 return;
539 }
540
541 if (!exe_ctx->HasThreadScope()) {
542 error = Status::FromErrorString("this SBThread object is invalid");
543 return;
544 }
545
546 bool abort_other_plans = false;
547
548 Thread *thread = exe_ctx->GetThreadPtr();
549 StackFrameSP frame_sp(thread->GetStackFrameAtIndex(0));
550 ThreadPlanSP new_plan_sp;
551 Status new_plan_status;
552
553 if (frame_sp && frame_sp->HasDebugInformation()) {
554 SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything));
555 AddressRange range;
556 if (end_line == LLDB_INVALID_LINE_NUMBER)
557 range = sc.line_entry.range;
558 else {
559 llvm::Error err = sc.GetAddressRangeFromHereToEndLine(end_line, range);
560 if (err) {
561 error = Status::FromErrorString(llvm::toString(std::move(err)).c_str());
562 return;
563 }
564 }
565
566 const LazyBool step_out_avoids_code_without_debug_info =
568 const LazyBool step_in_avoids_code_without_debug_info =
570 new_plan_sp = thread->QueueThreadPlanForStepInRange(
571 abort_other_plans, range, sc, target_name, stop_other_threads,
572 new_plan_status, step_in_avoids_code_without_debug_info,
573 step_out_avoids_code_without_debug_info);
574 } else {
575 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
576 false, abort_other_plans, stop_other_threads, new_plan_status);
577 }
578
579 if (new_plan_status.Success())
580 error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
581 else
582 error = Status::FromErrorString(new_plan_status.AsCString());
583}
584
586 LLDB_INSTRUMENT_VA(this);
587
588 SBError error; // Ignored
589 StepOut(error);
590}
591
594
595 llvm::Expected<StoppedExecutionContext> exe_ctx =
597 if (!exe_ctx) {
598 error = Status::FromError(exe_ctx.takeError());
599 return;
600 }
601
602 if (!exe_ctx->HasThreadScope()) {
603 error = Status::FromErrorString("this SBThread object is invalid");
604 return;
605 }
606
607 bool abort_other_plans = false;
608 bool stop_other_threads = false;
609
610 Thread *thread = exe_ctx->GetThreadPtr();
611
612 const LazyBool avoid_no_debug = eLazyBoolCalculate;
613 Status new_plan_status;
614 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut(
615 abort_other_plans, nullptr, false, stop_other_threads, eVoteYes,
616 eVoteNoOpinion, 0, new_plan_status, avoid_no_debug));
617
618 if (new_plan_status.Success())
619 error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
620 else
621 error = Status::FromErrorString(new_plan_status.AsCString());
622}
623
625 LLDB_INSTRUMENT_VA(this, sb_frame);
626
627 SBError error; // Ignored
628 StepOutOfFrame(sb_frame, error);
629}
630
632 LLDB_INSTRUMENT_VA(this, sb_frame, error);
633
634 llvm::Expected<StoppedExecutionContext> exe_ctx =
636 if (!exe_ctx) {
637 error = Status::FromError(exe_ctx.takeError());
638 return;
639 }
640
641 if (!sb_frame.IsValid()) {
642 error = Status::FromErrorString("passed invalid SBFrame object");
643 return;
644 }
645
646 StackFrameSP frame_sp(sb_frame.GetFrameSP());
647
648 if (!exe_ctx->HasThreadScope()) {
649 error = Status::FromErrorString("this SBThread object is invalid");
650 return;
651 }
652
653 bool abort_other_plans = false;
654 bool stop_other_threads = false;
655 Thread *thread = exe_ctx->GetThreadPtr();
656 if (sb_frame.GetThread().GetThreadID() != thread->GetID()) {
657 error = Status::FromErrorString("passed a frame from another thread");
658 return;
659 }
660
661 Status new_plan_status;
662 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut(
663 abort_other_plans, nullptr, false, stop_other_threads, eVoteYes,
664 eVoteNoOpinion, frame_sp->GetFrameIndex(), new_plan_status));
665
666 if (new_plan_status.Success())
667 error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
668 else
669 error = Status::FromErrorString(new_plan_status.AsCString());
670}
671
672void SBThread::StepInstruction(bool step_over) {
673 LLDB_INSTRUMENT_VA(this, step_over);
674
675 SBError error; // Ignored
676 StepInstruction(step_over, error);
677}
678
680 LLDB_INSTRUMENT_VA(this, step_over, error);
681
682 llvm::Expected<StoppedExecutionContext> exe_ctx =
684 if (!exe_ctx) {
685 error = Status::FromError(exe_ctx.takeError());
686 return;
687 }
688
689 if (!exe_ctx->HasThreadScope()) {
690 error = Status::FromErrorString("this SBThread object is invalid");
691 return;
692 }
693
694 Thread *thread = exe_ctx->GetThreadPtr();
695 Status new_plan_status;
696 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepSingleInstruction(
697 step_over, false, true, new_plan_status));
698
699 if (new_plan_status.Success())
700 error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
701 else
702 error = Status::FromErrorString(new_plan_status.AsCString());
703}
704
706 LLDB_INSTRUMENT_VA(this, addr);
707
708 SBError error; // Ignored
709 RunToAddress(addr, error);
710}
711
713 LLDB_INSTRUMENT_VA(this, addr, error);
714
715 llvm::Expected<StoppedExecutionContext> exe_ctx =
717 if (!exe_ctx) {
718 error = Status::FromError(exe_ctx.takeError());
719 return;
720 }
721
722 if (!exe_ctx->HasThreadScope()) {
723 error = Status::FromErrorString("this SBThread object is invalid");
724 return;
725 }
726
727 bool abort_other_plans = false;
728 bool stop_other_threads = true;
729
730 Address target_addr(addr);
731
732 Thread *thread = exe_ctx->GetThreadPtr();
733
734 Status new_plan_status;
735 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForRunToAddress(
736 abort_other_plans, target_addr, stop_other_threads, new_plan_status));
737
738 if (new_plan_status.Success())
739 error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
740 else
741 error = Status::FromErrorString(new_plan_status.AsCString());
742}
743
745 lldb::SBFileSpec &sb_file_spec, uint32_t line) {
746 LLDB_INSTRUMENT_VA(this, sb_frame, sb_file_spec, line);
747
748 SBError sb_error;
749 char path[PATH_MAX];
750
751 llvm::Expected<StoppedExecutionContext> exe_ctx =
753 if (!exe_ctx)
754 return Status::FromError(exe_ctx.takeError());
755
756 StackFrameSP frame_sp(sb_frame.GetFrameSP());
757
758 if (exe_ctx->HasThreadScope()) {
759 Target *target = exe_ctx->GetTargetPtr();
760 Thread *thread = exe_ctx->GetThreadPtr();
761
762 if (line == 0) {
763 sb_error = Status::FromErrorString("invalid line argument");
764 return sb_error;
765 }
766
767 if (!frame_sp) {
768 // We don't want to run SelectMostRelevantFrame here, for instance if
769 // you called a sequence of StepOverUntil's you wouldn't want the
770 // frame changed out from under you because you stepped into a
771 // recognized frame.
772 frame_sp = thread->GetSelectedFrame(DoNoSelectMostRelevantFrame);
773 if (!frame_sp)
774 frame_sp = thread->GetStackFrameAtIndex(0);
775 }
776
777 SymbolContext frame_sc;
778 if (!frame_sp) {
779 sb_error = Status::FromErrorString("no valid frames in thread to step");
780 return sb_error;
781 }
782
783 // If we have a frame, get its line
784 frame_sc = frame_sp->GetSymbolContext(
785 eSymbolContextCompUnit | eSymbolContextFunction |
786 eSymbolContextLineEntry | eSymbolContextSymbol);
787
788 if (frame_sc.comp_unit == nullptr) {
790 "frame %u doesn't have debug information", frame_sp->GetFrameIndex());
791 return sb_error;
792 }
793
794 FileSpec step_file_spec;
795 if (sb_file_spec.IsValid()) {
796 // The file spec passed in was valid, so use it
797 step_file_spec = sb_file_spec.ref();
798 } else {
799 if (frame_sc.line_entry.IsValid())
800 step_file_spec = frame_sc.line_entry.GetFile();
801 else {
802 sb_error = Status::FromErrorString(
803 "invalid file argument or no file for frame");
804 return sb_error;
805 }
806 }
807
808 // Grab the current function, then we will make sure the "until" address is
809 // within the function. We discard addresses that are out of the current
810 // function, and then if there are no addresses remaining, give an
811 // appropriate error message.
812
813 bool all_in_function = true;
814
815 std::vector<addr_t> step_over_until_addrs;
816 const bool abort_other_plans = false;
817 const bool stop_other_threads = false;
818 // TODO: Handle SourceLocationSpec column information
819 SourceLocationSpec location_spec(
820 step_file_spec, line, /*column=*/std::nullopt, /*check_inlines=*/true,
821 /*exact_match=*/false);
822
823 SymbolContextList sc_list;
824 frame_sc.comp_unit->ResolveSymbolContext(location_spec,
825 eSymbolContextLineEntry, sc_list);
826 for (const SymbolContext &sc : sc_list) {
827 addr_t step_addr =
828 sc.line_entry.range.GetBaseAddress().GetLoadAddress(target);
829 if (step_addr != LLDB_INVALID_ADDRESS) {
830 AddressRange unused_range;
831 if (frame_sc.function->GetRangeContainingLoadAddress(step_addr, *target,
832 unused_range))
833 step_over_until_addrs.push_back(step_addr);
834 else
835 all_in_function = false;
836 }
837 }
838
839 if (step_over_until_addrs.empty()) {
840 if (all_in_function) {
841 step_file_spec.GetPath(path, sizeof(path));
843 "No line entries for %s:%u", path, line);
844 } else
845 sb_error = Status::FromErrorString(
846 "step until target not in current function");
847 } else {
848 Status new_plan_status;
849 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepUntil(
850 abort_other_plans, &step_over_until_addrs[0],
851 step_over_until_addrs.size(), stop_other_threads,
852 frame_sp->GetFrameIndex(), new_plan_status));
853
854 if (new_plan_status.Success())
855 sb_error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
856 else
857 sb_error = Status::FromErrorString(new_plan_status.AsCString());
858 }
859 } else {
860 sb_error = Status::FromErrorString("this SBThread object is invalid");
861 }
862 return sb_error;
863}
864
865SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name) {
866 LLDB_INSTRUMENT_VA(this, script_class_name);
867
868 return StepUsingScriptedThreadPlan(script_class_name, true);
869}
870
871SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name,
872 bool resume_immediately) {
873 LLDB_INSTRUMENT_VA(this, script_class_name, resume_immediately);
874
876 return StepUsingScriptedThreadPlan(script_class_name, no_data,
877 resume_immediately);
878}
879
880SBError SBThread::StepUsingScriptedThreadPlan(const char *script_class_name,
881 SBStructuredData &args_data,
882 bool resume_immediately) {
883 LLDB_INSTRUMENT_VA(this, script_class_name, args_data, resume_immediately);
884
886
887 llvm::Expected<StoppedExecutionContext> exe_ctx =
889 if (!exe_ctx)
890 return Status::FromError(exe_ctx.takeError());
891
892 if (!exe_ctx->HasThreadScope()) {
893 error = Status::FromErrorString("this SBThread object is invalid");
894 return error;
895 }
896
897 Thread *thread = exe_ctx->GetThreadPtr();
898 Status new_plan_status;
899 StructuredData::ObjectSP obj_sp = args_data.m_impl_up->GetObjectSP();
900
901 ThreadPlanSP new_plan_sp = thread->QueueThreadPlanForStepScripted(
902 false, script_class_name, obj_sp, false, new_plan_status);
903
904 if (new_plan_status.Fail()) {
905 error = Status::FromErrorString(new_plan_status.AsCString());
906 return error;
907 }
908
909 if (!resume_immediately)
910 return error;
911
912 if (new_plan_status.Success())
913 error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
914 else
915 error = Status::FromErrorString(new_plan_status.AsCString());
916
917 return error;
918}
919
921 LLDB_INSTRUMENT_VA(this, file_spec, line);
922
923 SBError sb_error;
924
925 llvm::Expected<StoppedExecutionContext> exe_ctx =
927 if (!exe_ctx)
928 return Status::FromError(exe_ctx.takeError());
929
930 if (!exe_ctx->HasThreadScope()) {
931 sb_error = Status::FromErrorString("this SBThread object is invalid");
932 return sb_error;
933 }
934
935 Thread *thread = exe_ctx->GetThreadPtr();
936
937 Status err = thread->JumpToLine(file_spec.ref(), line, true);
938 sb_error.SetError(std::move(err));
939 return sb_error;
940}
941
943 LLDB_INSTRUMENT_VA(this, frame, return_value);
944
945 SBError sb_error;
946
947 llvm::Expected<StoppedExecutionContext> exe_ctx =
949 if (!exe_ctx)
950 return Status::FromError(exe_ctx.takeError());
951
952 if (exe_ctx->HasThreadScope()) {
953 Thread *thread = exe_ctx->GetThreadPtr();
954 sb_error.SetError(
955 thread->ReturnFromFrame(frame.GetFrameSP(), return_value.GetSP()));
956 }
957
958 return sb_error;
959}
960
962 LLDB_INSTRUMENT_VA(this);
963
964 SBError sb_error;
965
966 llvm::Expected<StoppedExecutionContext> exe_ctx =
968 if (!exe_ctx)
969 return Status::FromError(exe_ctx.takeError());
970
971 if (exe_ctx->HasThreadScope()) {
972 Thread *thread = exe_ctx->GetThreadPtr();
973 sb_error.SetError(thread->UnwindInnermostExpression());
974 if (sb_error.Success())
975 thread->SetSelectedFrameByIndex(0, false);
976 }
977
978 return sb_error;
979}
980
982 LLDB_INSTRUMENT_VA(this);
983
984 SBError error; // Ignored
985 return Suspend(error);
986}
987
990
991 llvm::Expected<StoppedExecutionContext> exe_ctx =
993 if (!exe_ctx) {
994 error = Status::FromError(exe_ctx.takeError());
995 return false;
996 }
997
998 bool result = false;
999 if (exe_ctx->HasThreadScope()) {
1000 exe_ctx->GetThreadPtr()->SetResumeState(eStateSuspended);
1001 result = true;
1002 } else
1003 error = Status::FromErrorString("this SBThread object is invalid");
1004 return result;
1005}
1006
1008 LLDB_INSTRUMENT_VA(this);
1009
1010 SBError error; // Ignored
1011 return Resume(error);
1012}
1013
1016
1017 llvm::Expected<StoppedExecutionContext> exe_ctx =
1019 if (!exe_ctx) {
1020 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1021 error = Status::FromErrorString("process is running");
1022 return false;
1023 }
1024
1025 bool result = false;
1026 if (exe_ctx->HasThreadScope()) {
1027 const bool override_suspend = true;
1028 exe_ctx->GetThreadPtr()->SetResumeState(eStateRunning, override_suspend);
1029 result = true;
1030 } else
1031 error = Status::FromErrorString("this SBThread object is invalid");
1032 return result;
1033}
1034
1036 LLDB_INSTRUMENT_VA(this);
1037
1038 llvm::Expected<StoppedExecutionContext> exe_ctx =
1040 if (!exe_ctx) {
1041 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1042 return false;
1043 }
1044
1045 if (exe_ctx->HasThreadScope())
1046 return exe_ctx->GetThreadPtr()->GetResumeState() == eStateSuspended;
1047 return false;
1048}
1049
1051 LLDB_INSTRUMENT_VA(this);
1052
1053 llvm::Expected<StoppedExecutionContext> exe_ctx =
1055 if (!exe_ctx) {
1056 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1057 return false;
1058 }
1059
1060 if (exe_ctx->HasThreadScope())
1061 return StateIsStoppedState(exe_ctx->GetThreadPtr()->GetState(), true);
1062 return false;
1063}
1064
1066 LLDB_INSTRUMENT_VA(this);
1067
1068 SBProcess sb_process;
1069 llvm::Expected<StoppedExecutionContext> exe_ctx =
1071 if (!exe_ctx) {
1072 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1073 return SBProcess();
1074 }
1075
1076 if (exe_ctx->HasThreadScope()) {
1077 // Have to go up to the target so we can get a shared pointer to our
1078 // process...
1079 sb_process.SetSP(exe_ctx->GetProcessSP());
1080 }
1081
1082 return sb_process;
1083}
1084
1086 LLDB_INSTRUMENT_VA(this);
1087
1088 llvm::Expected<StoppedExecutionContext> exe_ctx =
1090 if (!exe_ctx) {
1091 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1092 return 0;
1093 }
1094
1095 if (exe_ctx->HasThreadScope())
1096 return exe_ctx->GetThreadPtr()->GetStackFrameCount();
1097
1098 return 0;
1099}
1100
1102 LLDB_INSTRUMENT_VA(this, idx);
1103
1104 SBFrame sb_frame;
1105 llvm::Expected<StoppedExecutionContext> exe_ctx =
1107 if (!exe_ctx) {
1108 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1109 return SBFrame();
1110 }
1111
1112 if (exe_ctx->HasThreadScope()) {
1113 StackFrameSP frame_sp = exe_ctx->GetThreadPtr()->GetStackFrameAtIndex(idx);
1114 sb_frame.SetFrameSP(frame_sp);
1115 }
1116
1117 return sb_frame;
1118}
1119
1121 LLDB_INSTRUMENT_VA(this);
1122
1123 SBFrameList sb_frame_list;
1124 llvm::Expected<StoppedExecutionContext> exe_ctx =
1126 if (!exe_ctx) {
1127 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1128 return SBFrameList();
1129 }
1130
1131 if (exe_ctx->HasThreadScope()) {
1132 StackFrameListSP frame_list_sp =
1133 exe_ctx->GetThreadPtr()->GetStackFrameList();
1134 sb_frame_list.SetFrameList(frame_list_sp);
1135 }
1136
1137 return sb_frame_list;
1138}
1139
1141 LLDB_INSTRUMENT_VA(this);
1142
1143 SBFrame sb_frame;
1144 llvm::Expected<StoppedExecutionContext> exe_ctx =
1146 if (!exe_ctx) {
1147 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1148 return SBFrame();
1149 }
1150
1151 if (exe_ctx->HasThreadScope()) {
1152 StackFrameSP frame_sp =
1153 exe_ctx->GetThreadPtr()->GetSelectedFrame(SelectMostRelevantFrame);
1154 sb_frame.SetFrameSP(frame_sp);
1155 }
1156
1157 return sb_frame;
1158}
1159
1161 LLDB_INSTRUMENT_VA(this, idx);
1162
1163 SBFrame sb_frame;
1164 StackFrameSP frame_sp;
1165 llvm::Expected<StoppedExecutionContext> exe_ctx =
1167 if (!exe_ctx) {
1168 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1169 return SBFrame();
1170 }
1171
1172 if (exe_ctx->HasThreadScope()) {
1173 Thread *thread = exe_ctx->GetThreadPtr();
1174 frame_sp = thread->GetStackFrameAtIndex(idx);
1175 if (frame_sp) {
1176 thread->SetSelectedFrame(frame_sp.get());
1177 sb_frame.SetFrameSP(frame_sp);
1178 }
1179 }
1180
1181 return sb_frame;
1182}
1183
1185 LLDB_INSTRUMENT_VA(event);
1186
1187 return Thread::ThreadEventData::GetEventDataFromEvent(event.get()) != nullptr;
1188}
1189
1195
1201
1202bool SBThread::operator==(const SBThread &rhs) const {
1203 LLDB_INSTRUMENT_VA(this, rhs);
1204
1205 return m_opaque_sp->GetThreadSP().get() ==
1206 rhs.m_opaque_sp->GetThreadSP().get();
1207}
1208
1209bool SBThread::operator!=(const SBThread &rhs) const {
1210 LLDB_INSTRUMENT_VA(this, rhs);
1211
1212 return m_opaque_sp->GetThreadSP().get() !=
1213 rhs.m_opaque_sp->GetThreadSP().get();
1214}
1215
1216bool SBThread::GetStatus(SBStream &status) const {
1217 LLDB_INSTRUMENT_VA(this, status);
1218
1219 Stream &strm = status.ref();
1220
1221 llvm::Expected<StoppedExecutionContext> exe_ctx =
1223 if (!exe_ctx) {
1224 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1225 return false;
1226 }
1227
1228 if (exe_ctx->HasThreadScope()) {
1229 exe_ctx->GetThreadPtr()->GetStatus(strm, 0, 1, 1, true,
1230 /*show_hidden=*/true);
1231 } else
1232 strm.PutCString("No status");
1233
1234 return true;
1235}
1236
1237bool SBThread::GetDescription(SBStream &description) const {
1238 LLDB_INSTRUMENT_VA(this, description);
1239
1240 return GetDescription(description, false);
1241}
1242
1243bool SBThread::GetDescription(SBStream &description, bool stop_format) const {
1244 LLDB_INSTRUMENT_VA(this, description, stop_format);
1245
1246 Stream &strm = description.ref();
1247
1248 llvm::Expected<StoppedExecutionContext> exe_ctx =
1250 if (!exe_ctx) {
1251 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1252 return false;
1253 }
1254
1255 if (exe_ctx->HasThreadScope()) {
1256 exe_ctx->GetThreadPtr()->DumpUsingSettingsFormat(
1257 strm, LLDB_INVALID_THREAD_ID, stop_format);
1258 } else
1259 strm.PutCString("No value");
1260
1261 return true;
1262}
1263
1265 SBStream &output) {
1266 Stream &strm = output.ref();
1267
1268 SBError error;
1269 if (!format) {
1270 error = Status::FromErrorString("The provided SBFormat object is invalid");
1271 return error;
1272 }
1273
1274 llvm::Expected<StoppedExecutionContext> exe_ctx =
1276 if (!exe_ctx) {
1277 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1278 return error;
1279 }
1280
1281 if (exe_ctx->HasThreadScope()) {
1282 if (exe_ctx->GetThreadPtr()->DumpUsingFormat(
1283 strm, LLDB_INVALID_THREAD_ID, format.GetFormatEntrySP().get())) {
1284 return error;
1285 }
1286 }
1287
1289 "It was not possible to generate a thread description with the given "
1290 "format string '%s'",
1291 format.GetFormatEntrySP()->string.c_str());
1292 return error;
1293}
1294
1296 LLDB_INSTRUMENT_VA(this, type);
1297
1298 llvm::Expected<StoppedExecutionContext> exe_ctx =
1300 SBThread sb_origin_thread;
1301 if (exe_ctx) {
1302 if (exe_ctx->HasThreadScope()) {
1303 ThreadSP real_thread(exe_ctx->GetThreadSP());
1304 if (real_thread) {
1305 ConstString type_const(type);
1306 Process *process = exe_ctx->GetProcessPtr();
1307 if (process) {
1308 SystemRuntime *runtime = process->GetSystemRuntime();
1309 if (runtime) {
1310 ThreadSP new_thread_sp(
1311 runtime->GetExtendedBacktraceThread(real_thread, type_const));
1312 if (new_thread_sp) {
1313 // Save this in the Process' ExtendedThreadList so a strong
1314 // pointer retains the object.
1315 process->GetExtendedThreadList().AddThread(new_thread_sp);
1316 sb_origin_thread.SetThread(new_thread_sp);
1317 }
1318 }
1319 }
1320 }
1321 }
1322 } else {
1323 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1324 }
1325
1326 return sb_origin_thread;
1327}
1328
1330 LLDB_INSTRUMENT_VA(this);
1331
1332 llvm::Expected<StoppedExecutionContext> exe_ctx =
1334 if (!exe_ctx) {
1335 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1336 return LLDB_INVALID_INDEX32;
1337 }
1338
1339 ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
1340 if (thread_sp)
1341 return thread_sp->GetExtendedBacktraceOriginatingIndexID();
1342 return LLDB_INVALID_INDEX32;
1343}
1344
1346 LLDB_INSTRUMENT_VA(this);
1347
1348 llvm::Expected<StoppedExecutionContext> exe_ctx =
1350 if (!exe_ctx) {
1351 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1352 return SBValue();
1353 }
1354
1355 ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
1356 if (!thread_sp)
1357 return SBValue();
1358
1359 return SBValue(thread_sp->GetCurrentException());
1360}
1361
1363 LLDB_INSTRUMENT_VA(this);
1364
1365 llvm::Expected<StoppedExecutionContext> exe_ctx =
1367 if (!exe_ctx) {
1368 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1369 return SBThread();
1370 }
1371
1372 ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
1373 if (!thread_sp)
1374 return SBThread();
1375
1376 return SBThread(thread_sp->GetCurrentExceptionBacktrace());
1377}
1378
1380 LLDB_INSTRUMENT_VA(this);
1381
1382 llvm::Expected<StoppedExecutionContext> exe_ctx =
1384 if (!exe_ctx) {
1385 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1386 return false;
1387 }
1388
1389 ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
1390 if (thread_sp)
1391 return thread_sp->SafeToCallFunctions();
1392 return true;
1393}
1394
1395lldb::ThreadSP SBThread::GetSP() const { return m_opaque_sp->GetThreadSP(); }
1396
1400
1402 return m_opaque_sp->GetThreadSP().get();
1403}
1404
1406 LLDB_INSTRUMENT_VA(this);
1407
1408 llvm::Expected<StoppedExecutionContext> exe_ctx =
1410 if (!exe_ctx) {
1411 LLDB_LOG_ERROR(GetLog(LLDBLog::API), exe_ctx.takeError(), "{0}");
1412 return SBValue();
1413 }
1414
1415 ThreadSP thread_sp = m_opaque_sp->GetThreadSP();
1416 if (!thread_sp)
1417 return SBValue();
1418 return thread_sp->GetSiginfoValue();
1419}
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_INSTRUMENT()
#define LLDB_INSTRUMENT_VA(...)
#define LLDB_LOG_ERROR(log, error,...)
Definition Log.h:392
static Status ResumeNewPlan(StoppedExecutionContext exe_ctx, ThreadPlan *new_plan)
Definition SBThread.cpp:449
bool Success() const
Definition SBError.cpp:81
void SetError(uint32_t err, lldb::ErrorType type)
Definition SBError.cpp:124
lldb_private::Event * get() const
Definition SBEvent.cpp:134
bool IsValid() const
const lldb_private::FileSpec & ref() const
Class that represents a format string that can be used to generate descriptions of objects like frame...
Definition SBFormat.h:28
lldb::FormatEntrySP GetFormatEntrySP() const
Definition SBFormat.cpp:44
Represents a list of SBFrame objects.
Definition SBFrameList.h:31
void SetFrameList(const lldb::StackFrameListSP &frame_list_sp)
bool IsValid() const
Definition SBFrame.cpp:94
void SetFrameSP(const lldb::StackFrameSP &lldb_object_sp)
Definition SBFrame.cpp:90
lldb::SBThread GetThread() const
Definition SBFrame.cpp:597
lldb::StackFrameSP GetFrameSP() const
Definition SBFrame.cpp:86
void SetSP(const lldb::ProcessSP &process_sp)
void SetQueue(const lldb::QueueSP &queue_sp)
Definition SBQueue.cpp:254
lldb_private::Stream & ref()
Definition SBStream.cpp:178
StructuredDataImplUP m_impl_up
static const char * GetBroadcasterClassName()
Definition SBThread.cpp:54
void StepInto(lldb::RunMode stop_other_threads=lldb::eOnlyDuringStepping)
Definition SBThread.cpp:516
bool Suspend()
LLDB currently supports process centric debugging which means when any thread in a process stops,...
Definition SBThread.cpp:981
const char * GetName() const
Definition SBThread.cpp:351
bool GetStopDescription(lldb::SBStream &stream) const
Gets a human-readable description of why the thread stopped.
Definition SBThread.cpp:243
const lldb::SBThread & operator=(const lldb::SBThread &rhs)
Definition SBThread.cpp:78
lldb::SBFrame SetSelectedFrame(uint32_t frame_idx)
SBError UnwindInnermostExpression()
Definition SBThread.cpp:961
friend class SBThreadCollection
Definition SBThread.h:255
bool IsValid() const
Definition SBThread.cpp:111
uint32_t GetNumFrames()
friend class SBProcess
Definition SBThread.h:250
const char * GetQueueName() const
Definition SBThread.cpp:367
SBValue GetSiginfo()
uint32_t GetIndexID() const
Definition SBThread.cpp:335
bool GetDescription(lldb::SBStream &description) const
static bool EventIsThreadEvent(const SBEvent &event)
lldb_private::Thread * operator->()
lldb_private::Thread * get()
void StepOutOfFrame(SBFrame &frame)
Definition SBThread.cpp:624
bool GetStatus(lldb::SBStream &status) const
friend class SBValue
Definition SBThread.h:252
static SBFrame GetStackFrameFromEvent(const SBEvent &event)
lldb::queue_id_t GetQueueID() const
Definition SBThread.cpp:383
lldb::SBFrameList GetFrames() const
bool GetInfoItemByPathAsString(const char *path, SBStream &strm)
Definition SBThread.cpp:401
lldb::SBFrame GetSelectedFrame()
friend class SBFrameList
Definition SBThread.h:249
bool operator!=(const lldb::SBThread &rhs) const
SBError StepUsingScriptedThreadPlan(const char *script_class_name)
Definition SBThread.cpp:865
lldb::tid_t GetThreadID() const
Definition SBThread.cpp:319
lldb::SBFrame GetFrameAtIndex(uint32_t idx)
uint32_t GetExtendedBacktraceOriginatingIndexID()
lldb::SBQueue GetQueue() const
Definition SBThread.cpp:89
bool SafeToCallFunctions()
lldb::SBProcess GetProcess()
size_t GetStopReasonDataCount()
Get the number of words associated with the stop reason.
Definition SBThread.cpp:153
void StepInstruction(bool step_over)
Definition SBThread.cpp:672
SBThread GetCurrentExceptionBacktrace()
friend class SBFrame
Definition SBThread.h:248
static SBThread GetThreadFromEvent(const SBEvent &event)
bool GetStopReasonExtendedInfoAsJSON(lldb::SBStream &stream)
Definition SBThread.cpp:190
lldb::StopReason GetStopReason()
Definition SBThread.cpp:136
SBValue GetStopReturnValue()
Definition SBThread.cpp:294
void StepOver(lldb::RunMode stop_other_threads=lldb::eOnlyDuringStepping)
Definition SBThread.cpp:473
SBError JumpToLine(lldb::SBFileSpec &file_spec, uint32_t line)
Definition SBThread.cpp:920
SBError GetDescriptionWithFormat(const SBFormat &format, SBStream &output)
Similar to GetDescription() but the format of the description can be configured via the format parame...
SBThreadCollection GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type)
Definition SBThread.cpp:216
SBValue GetCurrentException()
void SetThread(const lldb::ThreadSP &lldb_object_sp)
Definition SBThread.cpp:315
lldb::ThreadSP GetSP() const
SBThread GetExtendedBacktraceThread(const char *type)
lldb::ExecutionContextRefSP m_opaque_sp
Definition SBThread.h:268
void RunToAddress(lldb::addr_t addr)
Definition SBThread.cpp:705
uint64_t GetStopReasonDataAtIndex(uint32_t idx)
Get information associated with a stop reason.
Definition SBThread.cpp:171
SBError ReturnFromFrame(SBFrame &frame, SBValue &return_value)
Definition SBThread.cpp:942
bool operator==(const lldb::SBThread &rhs) const
SBError StepOverUntil(lldb::SBFrame &frame, lldb::SBFileSpec &file_spec, uint32_t line)
Definition SBThread.cpp:744
lldb::ValueObjectSP GetSP() const
Same as the protected version of GetSP that takes a locker, except that we make the locker locally in...
Definition SBValue.cpp:1107
A section + offset based address range class.
A section + offset based address class.
Definition Address.h:62
void ResolveSymbolContext(const SourceLocationSpec &src_location_spec, lldb::SymbolContextItem resolve_scope, SymbolContextList &sc_list, RealpathPrefixes *realpath_prefixes=nullptr)
Resolve symbol contexts by file and line.
A uniqued constant string class.
Definition ConstString.h:40
const char * AsCString(const char *value_if_empty=nullptr) const
Get the string value as a C string.
const char * GetCString() const
Get the string value as a C string.
Execution context objects refer to objects in the execution of the program that is being debugged.
Process * GetProcessPtr() const
Returns a pointer to the process object.
Thread * GetThreadPtr() const
Returns a pointer to the thread object.
A file utility class.
Definition FileSpec.h:57
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
Definition FileSpec.cpp:374
bool GetRangeContainingLoadAddress(lldb::addr_t load_addr, Target &target, AddressRange &range)
Definition Function.h:455
A plug-in interface definition class for debugging a process.
Definition Process.h:354
ThreadList & GetThreadList()
Definition Process.h:2275
Status Resume()
Resumes all of a process's threads as configured using the Thread run control functions.
Definition Process.cpp:1332
virtual SystemRuntime * GetSystemRuntime()
Get the system runtime plug-in for this process.
Definition Process.cpp:2947
ThreadList & GetExtendedThreadList()
Definition Process.h:2286
Status ResumeSynchronous(Stream *stream)
Resume a process, and wait for it to stop.
Definition Process.cpp:1349
Target & GetTarget()
Get the target object pointer for this module.
Definition Process.h:1267
"lldb/Core/SourceLocationSpec.h" A source location specifier class.
An error handling class.
Definition Status.h:118
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
Definition Status.cpp:106
static Status FromErrorString(const char *str)
Definition Status.h:141
bool Fail() const
Test for error condition.
Definition Status.cpp:294
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
Definition Status.cpp:195
static Status FromError(llvm::Error error)
Avoid using this in new code. Migrate APIs to llvm::Expected instead.
Definition Status.cpp:137
bool Success() const
Test for success condition.
Definition Status.cpp:304
static lldb::ValueObjectSP GetReturnValueObject(lldb::StopInfoSP &stop_info_sp)
A stream class that can stream formatted output to a file.
Definition Stream.h:28
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
Definition Stream.cpp:65
std::shared_ptr< Object > ObjectSP
Defines a list of symbol context objects.
Defines a symbol context baton that can be handed other debug core functions.
llvm::Error GetAddressRangeFromHereToEndLine(uint32_t end_line, AddressRange &range)
Function * function
The Function for a given query.
CompileUnit * comp_unit
The CompileUnit for a given query.
LineEntry line_entry
The LineEntry for a given query.
A plug-in interface definition class for system runtimes.
virtual lldb::ThreadSP GetExtendedBacktraceThread(lldb::ThreadSP thread, ConstString type)
Return a Thread which shows the origin of this thread's creation.
Debugger & GetDebugger() const
Definition Target.h:1194
void AddThread(const lldb::ThreadSP &thread_sp)
bool SetSelectedThreadByID(lldb::tid_t tid, bool notify=false)
void SetOkayToDiscard(bool value)
Definition ThreadPlan.h:427
bool SetIsControllingPlan(bool value)
Definition ThreadPlan.h:419
static const ThreadEventData * GetEventDataFromEvent(const Event *event_ptr)
Definition Thread.cpp:177
static lldb::ThreadSP GetThreadFromEvent(const Event *event_ptr)
Definition Thread.cpp:187
static lldb::StackFrameSP GetStackFrameFromEvent(const Event *event_ptr)
Definition Thread.cpp:204
static llvm::StringRef GetStaticBroadcasterClass()
Definition Thread.cpp:219
#define LLDB_INVALID_QUEUE_ID
#define LLDB_INVALID_LINE_NUMBER
#define LLDB_INVALID_THREAD_ID
#define LLDB_INVALID_INDEX32
#define LLDB_INVALID_ADDRESS
@ DoNoSelectMostRelevantFrame
@ SelectMostRelevantFrame
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition Log.h:332
bool StateIsStoppedState(lldb::StateType state, bool must_exist)
Check if a state represents a state where the process or thread is stopped.
Definition State.cpp:89
std::unique_ptr< T > clone(const std::unique_ptr< T > &src)
Definition Utils.h:17
llvm::Expected< StoppedExecutionContext > GetStoppedExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr)
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
std::shared_ptr< lldb_private::Queue > QueueSP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
@ eStateSuspended
Process or thread is in a suspended state as far as the debugger is concerned while other processes o...
@ eStateRunning
Process or thread is running and can't be examined.
std::shared_ptr< lldb_private::Process > ProcessSP
InstrumentationRuntimeType
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
uint64_t addr_t
Definition lldb-types.h:80
StopReason
Thread stop reasons.
@ eStructuredDataTypeFloat
@ eStructuredDataTypeInteger
@ eStructuredDataTypeNull
@ eStructuredDataTypeBoolean
@ eStructuredDataTypeString
class LLDB_API SBQueue
Definition SBDefines.h:101
RunMode
Thread Run Modes.
uint64_t tid_t
Definition lldb-types.h:84
uint64_t queue_id_t
Definition lldb-types.h:90
std::shared_ptr< lldb_private::StackFrameList > StackFrameListSP
bool IsValid() const
Check if a line entry object is valid.
Definition LineEntry.cpp:35
AddressRange range
The section offset address range for this line entry.
Definition LineEntry.h:137
const FileSpec & GetFile() const
Helper to access the file.
Definition LineEntry.h:134
A wrapper class representing an execution context with non-null Target and Process pointers,...
std::unique_lock< std::recursive_mutex > AllowResume()
Clears this context, unlocking the ProcessRunLock and returning the locked API lock,...
#define PATH_MAX