LLDB mainline
CommandObjectThread.cpp
Go to the documentation of this file.
1//===-- CommandObjectThread.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
10
11#include <memory>
12#include <optional>
13#include <sstream>
14
16#include "CommandObjectTrace.h"
29#include "lldb/Target/Process.h"
32#include "lldb/Target/Target.h"
33#include "lldb/Target/Thread.h"
36#include "lldb/Target/Trace.h"
38#include "lldb/Utility/State.h"
40
41using namespace lldb;
42using namespace lldb_private;
43
44// CommandObjectThreadBacktrace
45#define LLDB_OPTIONS_thread_backtrace
46#include "CommandOptions.inc"
47
49public:
50 class CommandOptions : public Options {
51 public:
53 // Keep default values of all options in one place: OptionParsingStarting
54 // ()
55 OptionParsingStarting(nullptr);
56 }
57
58 ~CommandOptions() override = default;
59
60 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
61 ExecutionContext *execution_context) override {
63 const int short_option = m_getopt_table[option_idx].val;
64
65 switch (short_option) {
66 case 'c':
67 if (option_arg.getAsInteger(0, m_count)) {
70 "invalid integer value for option '%c': %s", short_option,
71 option_arg.data());
72 }
73 // A count of 0 means all frames.
74 if (m_count == 0)
76 break;
77 case 's':
78 if (option_arg.getAsInteger(0, m_start))
80 "invalid integer value for option '%c': %s", short_option,
81 option_arg.data());
82 break;
83 case 'e': {
84 bool success;
86 OptionArgParser::ToBoolean(option_arg, false, &success);
87 if (!success)
89 "invalid boolean value for option '%c': %s", short_option,
90 option_arg.data());
91 } break;
92 case 'u':
94 break;
95 default:
96 llvm_unreachable("Unimplemented option");
97 }
98 return error;
99 }
100
101 void OptionParsingStarting(ExecutionContext *execution_context) override {
103 m_start = 0;
104 m_extended_backtrace = false;
106 }
107
108 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
109 return llvm::ArrayRef(g_thread_backtrace_options);
110 }
111
112 // Instance variables to hold the values for command options.
113 uint32_t m_count;
114 uint32_t m_start;
117 };
118
121 interpreter, "thread backtrace",
122 "Show backtraces of thread call stacks. Defaults to the current "
123 "thread, thread indexes can be specified as arguments.\n"
124 "Use the thread-index \"all\" to see all threads.\n"
125 "Use the thread-index \"unique\" to see threads grouped by unique "
126 "call stacks.\n"
127 "Use 'settings set frame-format' to customize the printing of "
128 "frames in the backtrace and 'settings set thread-format' to "
129 "customize the thread header.\n"
130 "Customizable frame recognizers may filter out less interesting "
131 "frames, which results in gaps in the numbering. "
132 "Use '-u' to see all frames.",
133 nullptr,
134 eCommandRequiresProcess | eCommandRequiresThread |
135 eCommandTryTargetAPILock | eCommandProcessMustBeLaunched |
136 eCommandProcessMustBePaused) {}
137
138 ~CommandObjectThreadBacktrace() override = default;
139
140 Options *GetOptions() override { return &m_options; }
141
142 std::optional<std::string> GetRepeatCommand(Args &current_args,
143 uint32_t index) override {
144 llvm::StringRef count_opt("--count");
145 llvm::StringRef start_opt("--start");
146
147 // If no "count" was provided, we are dumping the entire backtrace, so
148 // there isn't a repeat command. So we search for the count option in
149 // the args, and if we find it, we make a copy and insert or modify the
150 // start option's value to start count indices greater.
151
152 Args copy_args(current_args);
153 size_t num_entries = copy_args.GetArgumentCount();
154 // These two point at the index of the option value if found.
155 size_t count_idx = 0;
156 size_t start_idx = 0;
157 size_t count_val = 0;
158 size_t start_val = 0;
159
160 for (size_t idx = 0; idx < num_entries; idx++) {
161 llvm::StringRef arg_string = copy_args[idx].ref();
162 if (arg_string == "-c" || count_opt.starts_with(arg_string)) {
163 idx++;
164 if (idx == num_entries)
165 return std::nullopt;
166 count_idx = idx;
167 if (copy_args[idx].ref().getAsInteger(0, count_val))
168 return std::nullopt;
169 } else if (arg_string == "-s" || start_opt.starts_with(arg_string)) {
170 idx++;
171 if (idx == num_entries)
172 return std::nullopt;
173 start_idx = idx;
174 if (copy_args[idx].ref().getAsInteger(0, start_val))
175 return std::nullopt;
176 }
177 }
178 if (count_idx == 0)
179 return std::nullopt;
180
181 std::string new_start_val = llvm::formatv("{0}", start_val + count_val);
182 if (start_idx == 0) {
183 copy_args.AppendArgument(start_opt);
184 copy_args.AppendArgument(new_start_val);
185 } else {
186 copy_args.ReplaceArgumentAtIndex(start_idx, new_start_val);
187 }
188 std::string repeat_command;
189 if (!copy_args.GetQuotedCommandString(repeat_command))
190 return std::nullopt;
191 return repeat_command;
192 }
193
194protected:
196 SystemRuntime *runtime = thread->GetProcess()->GetSystemRuntime();
197 if (runtime) {
198 Stream &strm = result.GetOutputStream();
199 const std::vector<ConstString> &types =
200 runtime->GetExtendedBacktraceTypes();
201 for (auto type : types) {
202 ThreadSP ext_thread_sp = runtime->GetExtendedBacktraceThread(
203 thread->shared_from_this(), type);
204 if (ext_thread_sp && ext_thread_sp->IsValid()) {
205 const uint32_t num_frames_with_source = 0;
206 const bool stop_format = false;
207 strm.PutChar('\n');
208 if (ext_thread_sp->GetStatus(strm, m_options.m_start,
209 m_options.m_count,
210 num_frames_with_source, stop_format,
211 !m_options.m_filtered_backtrace)) {
212 DoExtendedBacktrace(ext_thread_sp.get(), result);
213 }
214 }
215 }
216 }
217 }
218
219 bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override {
220 ThreadSP thread_sp =
221 m_exe_ctx.GetProcessPtr()->GetThreadList().FindThreadByID(tid);
222 if (!thread_sp) {
224 "thread disappeared while computing backtraces: 0x%" PRIx64 "\n",
225 tid);
226 return false;
227 }
228
229 Thread *thread = thread_sp.get();
230
231 Stream &strm = result.GetOutputStream();
232
233 // Only dump stack info if we processing unique stacks.
234 const bool only_stacks = m_unique_stacks;
235
236 // Don't show source context when doing backtraces.
237 const uint32_t num_frames_with_source = 0;
238 const bool stop_format = true;
239 if (!thread->GetStatus(strm, m_options.m_start, m_options.m_count,
240 num_frames_with_source, stop_format,
241 !m_options.m_filtered_backtrace, only_stacks)) {
243 "error displaying backtrace for thread: \"0x%4.4x\"\n",
244 thread->GetIndexID());
245 return false;
246 }
247 if (m_options.m_extended_backtrace) {
249 "Interrupt skipped extended backtrace")) {
250 DoExtendedBacktrace(thread, result);
251 }
252 }
253
254 return true;
255 }
256
258};
259
260#define LLDB_OPTIONS_thread_step_scope
261#include "CommandOptions.inc"
262
264public:
266 // Keep default values of all options in one place: OptionParsingStarting
267 // ()
268 OptionParsingStarting(nullptr);
269 }
270
271 ~ThreadStepScopeOptionGroup() override = default;
272
273 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
274 return llvm::ArrayRef(g_thread_step_scope_options);
275 }
276
277 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
278 ExecutionContext *execution_context) override {
280 const int short_option =
281 g_thread_step_scope_options[option_idx].short_option;
282
283 switch (short_option) {
284 case 'a': {
285 bool success;
286 bool avoid_no_debug =
287 OptionArgParser::ToBoolean(option_arg, true, &success);
288 if (!success)
290 "invalid boolean value for option '%c': %s", short_option,
291 option_arg.data());
292 else {
294 }
295 } break;
296
297 case 'A': {
298 bool success;
299 bool avoid_no_debug =
300 OptionArgParser::ToBoolean(option_arg, true, &success);
301 if (!success)
303 "invalid boolean value for option '%c': %s", short_option,
304 option_arg.data());
305 else {
307 }
308 } break;
309
310 case 'c':
311 if (option_arg.getAsInteger(0, m_step_count))
313 "invalid integer value for option '%c': %s", short_option,
314 option_arg.data());
315 break;
316
317 case 'm': {
318 auto enum_values = GetDefinitions()[option_idx].enum_values;
320 option_arg, enum_values, eOnlyDuringStepping, error);
321 } break;
322
323 case 'e':
324 if (option_arg == "block") {
326 break;
327 }
328 if (option_arg.getAsInteger(0, m_end_line))
330 "invalid end line number '%s'", option_arg.str().c_str());
331 break;
332
333 case 'r':
334 m_avoid_regexp.clear();
335 m_avoid_regexp.assign(std::string(option_arg));
336 break;
337
338 case 't':
339 m_step_in_target.clear();
340 m_step_in_target.assign(std::string(option_arg));
341 break;
342
343 default:
344 llvm_unreachable("Unimplemented option");
345 }
346 return error;
347 }
348
349 void OptionParsingStarting(ExecutionContext *execution_context) override {
353
354 // Check if we are in Non-Stop mode
355 TargetSP target_sp =
356 execution_context ? execution_context->GetTargetSP() : TargetSP();
357 ProcessSP process_sp =
358 execution_context ? execution_context->GetProcessSP() : ProcessSP();
359 if (process_sp && process_sp->GetSteppingRunsAllThreads())
361
362 m_avoid_regexp.clear();
363 m_step_in_target.clear();
364 m_step_count = 1;
367 }
368
369 // Instance variables to hold the values for command options.
373 std::string m_avoid_regexp;
374 std::string m_step_in_target;
375 uint32_t m_step_count;
376 uint32_t m_end_line;
378};
379
381public:
383 const char *name, const char *help,
384 const char *syntax,
385 StepType step_type)
386 : CommandObjectParsed(interpreter, name, help, syntax,
387 eCommandRequiresProcess | eCommandRequiresThread |
388 eCommandTryTargetAPILock |
389 eCommandProcessMustBeLaunched |
390 eCommandProcessMustBePaused),
391 m_step_type(step_type), m_class_options("scripted step") {
393
394 if (step_type == eStepTypeScripted) {
397 }
398 m_all_options.Append(&m_options);
399 m_all_options.Finalize();
400 }
401
403
404 void
406 OptionElementVector &opt_element_vector) override {
407 if (request.GetCursorIndex())
408 return;
409 CommandObject::HandleArgumentCompletion(request, opt_element_vector);
410 }
411
412 Options *GetOptions() override { return &m_all_options; }
413
414protected:
415 void DoExecute(Args &command, CommandReturnObject &result) override {
416 Process *process = m_exe_ctx.GetProcessPtr();
417 bool synchronous_execution = m_interpreter.GetSynchronous();
418
419 const uint32_t num_threads = process->GetThreadList().GetSize();
420 Thread *thread = nullptr;
421
422 if (command.GetArgumentCount() == 0) {
423 thread = GetDefaultThread();
424
425 if (thread == nullptr) {
426 result.AppendError("no selected thread in process");
427 return;
428 }
429 } else {
430 const char *thread_idx_cstr = command.GetArgumentAtIndex(0);
431 uint32_t step_thread_idx;
432
433 if (!llvm::to_integer(thread_idx_cstr, step_thread_idx)) {
434 result.AppendErrorWithFormat("invalid thread index '%s'.\n",
435 thread_idx_cstr);
436 return;
437 }
438 thread =
439 process->GetThreadList().FindThreadByIndexID(step_thread_idx).get();
440 if (thread == nullptr) {
442 "Thread index %u is out of range (valid values are 0 - %u).\n",
443 step_thread_idx, num_threads);
444 return;
445 }
446 }
447
449 if (m_class_options.GetName().empty()) {
450 result.AppendErrorWithFormat("empty class name for scripted step.");
451 return;
452 } else if (!GetDebugger().GetScriptInterpreter()->CheckObjectExists(
453 m_class_options.GetName().c_str())) {
455 "class for scripted step: \"%s\" does not exist.",
456 m_class_options.GetName().c_str());
457 return;
458 }
459 }
460
461 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER &&
464 "end line option is only valid for step into");
465 return;
466 }
467
468 const bool abort_other_plans = false;
469 const lldb::RunMode stop_other_threads = m_options.m_run_mode;
470
471 // This is a bit unfortunate, but not all the commands in this command
472 // object support only while stepping, so I use the bool for them.
473 bool bool_stop_other_threads;
474 if (m_options.m_run_mode == eAllThreads)
475 bool_stop_other_threads = false;
476 else if (m_options.m_run_mode == eOnlyDuringStepping)
477 bool_stop_other_threads = (m_step_type != eStepTypeOut);
478 else
479 bool_stop_other_threads = true;
480
481 ThreadPlanSP new_plan_sp;
482 Status new_plan_status;
483
484 if (m_step_type == eStepTypeInto) {
485 StackFrame *frame = thread->GetStackFrameAtIndex(0).get();
486 assert(frame != nullptr);
487
488 if (frame->HasDebugInformation()) {
489 AddressRange range;
490 SymbolContext sc = frame->GetSymbolContext(eSymbolContextEverything);
491 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER) {
492 llvm::Error err =
493 sc.GetAddressRangeFromHereToEndLine(m_options.m_end_line, range);
494 if (err) {
495 result.AppendErrorWithFormatv("invalid end-line option: {0}.",
496 llvm::toString(std::move(err)));
497 return;
498 }
499 } else if (m_options.m_end_line_is_block_end) {
501 Block *block = frame->GetSymbolContext(eSymbolContextBlock).block;
502 if (!block) {
503 result.AppendErrorWithFormat("Could not find the current block.");
504 return;
505 }
506
507 AddressRange block_range;
508 Address pc_address = frame->GetFrameCodeAddress();
509 block->GetRangeContainingAddress(pc_address, block_range);
510 if (!block_range.GetBaseAddress().IsValid()) {
512 "Could not find the current block address.");
513 return;
514 }
515 lldb::addr_t pc_offset_in_block =
516 pc_address.GetFileAddress() -
517 block_range.GetBaseAddress().GetFileAddress();
518 lldb::addr_t range_length =
519 block_range.GetByteSize() - pc_offset_in_block;
520 range = AddressRange(pc_address, range_length);
521 } else {
522 range = sc.line_entry.range;
523 }
524
525 new_plan_sp = thread->QueueThreadPlanForStepInRange(
526 abort_other_plans, range,
527 frame->GetSymbolContext(eSymbolContextEverything),
528 m_options.m_step_in_target.c_str(), stop_other_threads,
529 new_plan_status, m_options.m_step_in_avoid_no_debug,
530 m_options.m_step_out_avoid_no_debug);
531
532 if (new_plan_sp && !m_options.m_avoid_regexp.empty()) {
533 ThreadPlanStepInRange *step_in_range_plan =
534 static_cast<ThreadPlanStepInRange *>(new_plan_sp.get());
535 step_in_range_plan->SetAvoidRegexp(m_options.m_avoid_regexp.c_str());
536 }
537 } else
538 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
539 false, abort_other_plans, bool_stop_other_threads, new_plan_status);
540 } else if (m_step_type == eStepTypeOver) {
541 StackFrame *frame = thread->GetStackFrameAtIndex(0).get();
542
543 if (frame->HasDebugInformation())
544 new_plan_sp = thread->QueueThreadPlanForStepOverRange(
545 abort_other_plans,
546 frame->GetSymbolContext(eSymbolContextEverything).line_entry,
547 frame->GetSymbolContext(eSymbolContextEverything),
548 stop_other_threads, new_plan_status,
549 m_options.m_step_out_avoid_no_debug);
550 else
551 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
552 true, abort_other_plans, bool_stop_other_threads, new_plan_status);
553 } else if (m_step_type == eStepTypeTrace) {
554 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
555 false, abort_other_plans, bool_stop_other_threads, new_plan_status);
556 } else if (m_step_type == eStepTypeTraceOver) {
557 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
558 true, abort_other_plans, bool_stop_other_threads, new_plan_status);
559 } else if (m_step_type == eStepTypeOut) {
560 new_plan_sp = thread->QueueThreadPlanForStepOut(
561 abort_other_plans, nullptr, false, bool_stop_other_threads, eVoteYes,
563 thread->GetSelectedFrameIndex(DoNoSelectMostRelevantFrame),
564 new_plan_status, m_options.m_step_out_avoid_no_debug);
565 } else if (m_step_type == eStepTypeScripted) {
566 new_plan_sp = thread->QueueThreadPlanForStepScripted(
567 abort_other_plans, m_class_options.GetName().c_str(),
568 m_class_options.GetStructuredData(), bool_stop_other_threads,
569 new_plan_status);
570 } else {
571 result.AppendError("step type is not supported");
572 return;
573 }
574
575 // If we got a new plan, then set it to be a controlling plan (User level
576 // Plans should be controlling plans so that they can be interruptible).
577 // Then resume the process.
578
579 if (new_plan_sp) {
580 new_plan_sp->SetIsControllingPlan(true);
581 new_plan_sp->SetOkayToDiscard(false);
582
583 if (m_options.m_step_count > 1) {
584 if (!new_plan_sp->SetIterationCount(m_options.m_step_count)) {
585 result.AppendWarning(
586 "step operation does not support iteration count.");
587 }
588 }
589
590 process->GetThreadList().SetSelectedThreadByID(thread->GetID());
591
592 const uint32_t iohandler_id = process->GetIOHandlerID();
593
594 StreamString stream;
596 if (synchronous_execution)
597 error = process->ResumeSynchronous(&stream);
598 else
599 error = process->Resume();
600
601 if (!error.Success()) {
602 result.AppendMessage(error.AsCString());
603 return;
604 }
605
606 // There is a race condition where this thread will return up the call
607 // stack to the main command handler and show an (lldb) prompt before
608 // HandlePrivateEvent (from PrivateStateThread) has a chance to call
609 // PushProcessIOHandler().
610 process->SyncIOHandler(iohandler_id, std::chrono::seconds(2));
611
612 if (synchronous_execution) {
613 // If any state changed events had anything to say, add that to the
614 // result
615 if (stream.GetSize() > 0)
616 result.AppendMessage(stream.GetString());
617
618 process->GetThreadList().SetSelectedThreadByID(thread->GetID());
619 result.SetDidChangeProcessState(true);
621 } else {
623 }
624 } else {
625 result.SetError(std::move(new_plan_status));
626 }
627 }
628
633};
634
635// CommandObjectThreadContinue
636
638public:
641 interpreter, "thread continue",
642 "Continue execution of the current target process. One "
643 "or more threads may be specified, by default all "
644 "threads continue.",
645 nullptr,
646 eCommandRequiresThread | eCommandTryTargetAPILock |
647 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {
649 }
650
651 ~CommandObjectThreadContinue() override = default;
652
653 void DoExecute(Args &command, CommandReturnObject &result) override {
654 bool synchronous_execution = m_interpreter.GetSynchronous();
655
656 Process *process = m_exe_ctx.GetProcessPtr();
657 if (process == nullptr) {
658 result.AppendError("no process exists. Cannot continue");
659 return;
660 }
661
662 StateType state = process->GetState();
663 if ((state == eStateCrashed) || (state == eStateStopped) ||
664 (state == eStateSuspended)) {
665 const size_t argc = command.GetArgumentCount();
666 if (argc > 0) {
667 // These two lines appear at the beginning of both blocks in this
668 // if..else, but that is because we need to release the lock before
669 // calling process->Resume below.
670 std::lock_guard<std::recursive_mutex> guard(
671 process->GetThreadList().GetMutex());
672 const uint32_t num_threads = process->GetThreadList().GetSize();
673 std::vector<Thread *> resume_threads;
674 for (auto &entry : command.entries()) {
675 uint32_t thread_idx;
676 if (entry.ref().getAsInteger(0, thread_idx)) {
678 "invalid thread index argument: \"%s\".\n", entry.c_str());
679 return;
680 }
681 Thread *thread =
682 process->GetThreadList().FindThreadByIndexID(thread_idx).get();
683
684 if (thread) {
685 resume_threads.push_back(thread);
686 } else {
687 result.AppendErrorWithFormat("invalid thread index %u.\n",
688 thread_idx);
689 return;
690 }
691 }
692
693 if (resume_threads.empty()) {
694 result.AppendError("no valid thread indexes were specified");
695 return;
696 } else {
697 if (resume_threads.size() == 1)
698 result.AppendMessageWithFormat("Resuming thread: ");
699 else
700 result.AppendMessageWithFormat("Resuming threads: ");
701
702 for (uint32_t idx = 0; idx < num_threads; ++idx) {
703 Thread *thread =
704 process->GetThreadList().GetThreadAtIndex(idx).get();
705 std::vector<Thread *>::iterator this_thread_pos =
706 find(resume_threads.begin(), resume_threads.end(), thread);
707
708 if (this_thread_pos != resume_threads.end()) {
709 resume_threads.erase(this_thread_pos);
710 if (!resume_threads.empty())
711 result.AppendMessageWithFormat("%u, ", thread->GetIndexID());
712 else
713 result.AppendMessageWithFormat("%u ", thread->GetIndexID());
714
715 const bool override_suspend = true;
716 thread->SetResumeState(eStateRunning, override_suspend);
717 } else {
718 thread->SetResumeState(eStateSuspended);
719 }
720 }
721 result.AppendMessageWithFormatv("in process {0}", process->GetID());
722 }
723 } else {
724 // These two lines appear at the beginning of both blocks in this
725 // if..else, but that is because we need to release the lock before
726 // calling process->Resume below.
727 std::lock_guard<std::recursive_mutex> guard(
728 process->GetThreadList().GetMutex());
729 const uint32_t num_threads = process->GetThreadList().GetSize();
730 Thread *current_thread = GetDefaultThread();
731 if (current_thread == nullptr) {
732 result.AppendError("the process doesn't have a current thread");
733 return;
734 }
735 // Set the actions that the threads should each take when resuming
736 for (uint32_t idx = 0; idx < num_threads; ++idx) {
737 Thread *thread = process->GetThreadList().GetThreadAtIndex(idx).get();
738 if (thread == current_thread) {
740 "Resuming thread {0:x4} in process {1}", thread->GetID(),
741 process->GetID());
742 const bool override_suspend = true;
743 thread->SetResumeState(eStateRunning, override_suspend);
744 } else {
745 thread->SetResumeState(eStateSuspended);
746 }
747 }
748 }
749
750 StreamString stream;
752 if (synchronous_execution)
753 error = process->ResumeSynchronous(&stream);
754 else
755 error = process->Resume();
756
757 // We should not be holding the thread list lock when we do this.
758 if (error.Success()) {
759 result.AppendMessageWithFormatv("Process {0} resuming",
760 process->GetID());
761 if (synchronous_execution) {
762 // If any state changed events had anything to say, add that to the
763 // result
764 if (stream.GetSize() > 0)
765 result.AppendMessage(stream.GetString());
766
767 result.SetDidChangeProcessState(true);
769 } else {
771 }
772 } else {
773 result.AppendErrorWithFormat("Failed to resume process: %s\n",
774 error.AsCString());
775 }
776 } else {
778 "Process cannot be continued from its current state (%s).\n",
779 StateAsCString(state));
780 }
781 }
782};
783
784// CommandObjectThreadUntil
785
786#define LLDB_OPTIONS_thread_until
787#include "CommandOptions.inc"
788
790public:
791 class CommandOptions : public Options {
792 public:
795
797 // Keep default values of all options in one place: OptionParsingStarting
798 // ()
799 OptionParsingStarting(nullptr);
800 }
801
802 ~CommandOptions() override = default;
803
804 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
805 ExecutionContext *execution_context) override {
807 const int short_option = m_getopt_table[option_idx].val;
808
809 switch (short_option) {
810 case 'a': {
812 execution_context, option_arg, LLDB_INVALID_ADDRESS, &error);
813 if (error.Success())
814 m_until_addrs.push_back(tmp_addr);
815 } break;
816 case 't':
817 if (option_arg.getAsInteger(0, m_thread_idx)) {
819 error = Status::FromErrorStringWithFormat("invalid thread index '%s'",
820 option_arg.str().c_str());
821 }
822 break;
823 case 'f':
824 if (option_arg.getAsInteger(0, m_frame_idx)) {
826 error = Status::FromErrorStringWithFormat("invalid frame index '%s'",
827 option_arg.str().c_str());
828 }
829 break;
830 case 'm': {
831 auto enum_values = GetDefinitions()[option_idx].enum_values;
833 option_arg, enum_values, eOnlyDuringStepping, error);
834
835 if (error.Success()) {
836 if (run_mode == eAllThreads)
837 m_stop_others = false;
838 else
839 m_stop_others = true;
840 }
841 } break;
842 default:
843 llvm_unreachable("Unimplemented option");
844 }
845 return error;
846 }
847
848 void OptionParsingStarting(ExecutionContext *execution_context) override {
850 m_frame_idx = 0;
851 m_stop_others = false;
852 m_until_addrs.clear();
853 }
854
855 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
856 return llvm::ArrayRef(g_thread_until_options);
857 }
858
859 bool m_stop_others = false;
860 std::vector<lldb::addr_t> m_until_addrs;
861
862 // Instance variables to hold the values for command options.
863 };
864
867 interpreter, "thread until",
868 "Continue until a line number or address is reached by the "
869 "current or specified thread. Stops when returning from "
870 "the current function as a safety measure. "
871 "The target line number(s) are given as arguments, and if more "
872 "than one"
873 " is provided, stepping will stop when the first one is hit.",
874 nullptr,
875 eCommandRequiresThread | eCommandTryTargetAPILock |
876 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {
878 }
879
880 ~CommandObjectThreadUntil() override = default;
881
882 Options *GetOptions() override { return &m_options; }
883
884protected:
885 void DoExecute(Args &command, CommandReturnObject &result) override {
886 bool synchronous_execution = m_interpreter.GetSynchronous();
887
888 Target *target = &GetTarget();
889
890 Process *process = m_exe_ctx.GetProcessPtr();
891 if (process == nullptr) {
892 result.AppendError("need a valid process to step");
893 } else {
894 Thread *thread = nullptr;
895 std::vector<uint32_t> line_numbers;
896
897 if (command.GetArgumentCount() >= 1) {
898 size_t num_args = command.GetArgumentCount();
899 for (size_t i = 0; i < num_args; i++) {
900 uint32_t line_number;
901 if (!llvm::to_integer(command.GetArgumentAtIndex(i), line_number)) {
902 result.AppendErrorWithFormat("invalid line number: '%s'.\n",
903 command.GetArgumentAtIndex(i));
904 return;
905 } else
906 line_numbers.push_back(line_number);
907 }
908 } else if (m_options.m_until_addrs.empty()) {
909 result.AppendErrorWithFormat("No line number or address provided:\n%s",
910 GetSyntax().str().c_str());
911 return;
912 }
913
914 if (m_options.m_thread_idx == LLDB_INVALID_THREAD_ID) {
915 thread = GetDefaultThread();
916 } else {
917 thread = process->GetThreadList()
918 .FindThreadByIndexID(m_options.m_thread_idx)
919 .get();
920 }
921
922 if (thread == nullptr) {
923 const uint32_t num_threads = process->GetThreadList().GetSize();
925 "Thread index %u is out of range (valid values are 0 - %u).\n",
926 m_options.m_thread_idx, num_threads);
927 return;
928 }
929
930 const bool abort_other_plans = false;
931
932 StackFrame *frame =
933 thread->GetStackFrameAtIndex(m_options.m_frame_idx).get();
934 if (frame == nullptr) {
936 "Frame index %u is out of range for thread id %" PRIu64 ".\n",
937 m_options.m_frame_idx, thread->GetID());
938 return;
939 }
940
941 ThreadPlanSP new_plan_sp;
942 Status new_plan_status;
943
944 if (frame->HasDebugInformation()) {
945 // Finally we got here... Translate the given line number to a bunch
946 // of addresses:
947 SymbolContext sc(frame->GetSymbolContext(eSymbolContextCompUnit));
948 LineTable *line_table = nullptr;
949 if (sc.comp_unit)
950 line_table = sc.comp_unit->GetLineTable();
951
952 if (line_table == nullptr) {
953 result.AppendErrorWithFormat("Failed to resolve the line table for "
954 "frame %u of thread id %" PRIu64 ".\n",
955 m_options.m_frame_idx, thread->GetID());
956 return;
957 }
958
959 LineEntry function_start;
960 std::vector<addr_t> address_list;
961
962 // Find the beginning & end index of the function, but first make
963 // sure it is valid:
964 if (!sc.function) {
965 result.AppendErrorWithFormat("Have debug information but no "
966 "function info - can't get until range.");
967 return;
968 }
969
970 RangeVector<uint32_t, uint32_t> line_idx_ranges;
971 for (const AddressRange &range : sc.function->GetAddressRanges()) {
972 auto [begin, end] = line_table->GetLineEntryIndexRange(range);
973 line_idx_ranges.Append(begin, end - begin);
974 }
975 line_idx_ranges.Sort();
976
977 bool found_something = false;
978
979 // Since not all source lines will contribute code, check if we are
980 // setting the breakpoint on the exact line number or the nearest
981 // subsequent line number and set breakpoints at all the line table
982 // entries of the chosen line number (exact or nearest subsequent).
983 for (uint32_t line_number : line_numbers) {
984 LineEntry line_entry;
985 bool exact = false;
986 if (sc.comp_unit->FindLineEntry(0, line_number, nullptr, exact,
987 &line_entry) == UINT32_MAX)
988 continue;
989
990 found_something = true;
991 line_number = line_entry.line;
992 exact = true;
993 uint32_t end_func_idx = line_idx_ranges.GetMaxRangeEnd(0);
994 uint32_t idx = sc.comp_unit->FindLineEntry(
995 line_idx_ranges.GetMinRangeBase(UINT32_MAX), line_number, nullptr,
996 exact, &line_entry);
997 while (idx < end_func_idx) {
998 if (line_idx_ranges.FindEntryIndexThatContains(idx) != UINT32_MAX) {
999 addr_t address =
1000 line_entry.range.GetBaseAddress().GetLoadAddress(target);
1001 if (address != LLDB_INVALID_ADDRESS)
1002 address_list.push_back(address);
1003 }
1004 idx = sc.comp_unit->FindLineEntry(idx + 1, line_number, nullptr,
1005 exact, &line_entry);
1006 }
1007 }
1008
1009 for (lldb::addr_t address : m_options.m_until_addrs) {
1010 AddressRange unused;
1011 if (sc.function->GetRangeContainingLoadAddress(address, *target,
1012 unused))
1013 address_list.push_back(address);
1014 }
1015
1016 if (address_list.empty()) {
1017 if (found_something)
1018 result.AppendErrorWithFormat(
1019 "Until target outside of the current function.\n");
1020 else
1021 result.AppendErrorWithFormat(
1022 "No line entries matching until target.\n");
1023
1024 return;
1025 }
1026
1027 new_plan_sp = thread->QueueThreadPlanForStepUntil(
1028 abort_other_plans, address_list, m_options.m_stop_others,
1029 m_options.m_frame_idx, new_plan_status);
1030 if (new_plan_sp) {
1031 // User level plans should be controlling plans so they can be
1032 // interrupted
1033 // (e.g. by hitting a breakpoint) and other plans executed by the
1034 // user (stepping around the breakpoint) and then a "continue" will
1035 // resume the original plan.
1036 new_plan_sp->SetIsControllingPlan(true);
1037 new_plan_sp->SetOkayToDiscard(false);
1038 } else {
1039 result.SetError(std::move(new_plan_status));
1040 return;
1041 }
1042 } else {
1043 result.AppendErrorWithFormat("Frame index %u of thread id %" PRIu64
1044 " has no debug information.\n",
1045 m_options.m_frame_idx, thread->GetID());
1046 return;
1047 }
1048
1049 if (!process->GetThreadList().SetSelectedThreadByID(thread->GetID())) {
1050 result.AppendErrorWithFormat(
1051 "Failed to set the selected thread to thread id %" PRIu64 ".\n",
1052 thread->GetID());
1053 return;
1054 }
1055
1056 StreamString stream;
1057 Status error;
1058 if (synchronous_execution)
1059 error = process->ResumeSynchronous(&stream);
1060 else
1061 error = process->Resume();
1062
1063 if (error.Success()) {
1064 result.AppendMessageWithFormatv("Process {0} resuming",
1065 process->GetID());
1066 if (synchronous_execution) {
1067 // If any state changed events had anything to say, add that to the
1068 // result
1069 if (stream.GetSize() > 0)
1070 result.AppendMessage(stream.GetString());
1071
1072 result.SetDidChangeProcessState(true);
1074 } else {
1076 }
1077 } else {
1078 result.AppendErrorWithFormat("Failed to resume process: %s.\n",
1079 error.AsCString());
1080 }
1081 }
1082 }
1083
1085};
1086
1087// CommandObjectThreadSelect
1088
1089#define LLDB_OPTIONS_thread_select
1090#include "CommandOptions.inc"
1091
1093public:
1095 public:
1097
1098 ~OptionGroupThreadSelect() override = default;
1099
1100 void OptionParsingStarting(ExecutionContext *execution_context) override {
1102 }
1103
1104 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1105 ExecutionContext *execution_context) override {
1106 const int short_option = g_thread_select_options[option_idx].short_option;
1107 switch (short_option) {
1108 case 't': {
1109 if (option_arg.getAsInteger(0, m_thread_id)) {
1111 return Status::FromErrorStringWithFormat("Invalid thread ID: '%s'.",
1112 option_arg.str().c_str());
1113 }
1114 break;
1115 }
1116
1117 default:
1118 llvm_unreachable("Unimplemented option");
1119 }
1120
1121 return {};
1122 }
1123
1124 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1125 return llvm::ArrayRef(g_thread_select_options);
1126 }
1127
1129 };
1130
1132 : CommandObjectParsed(interpreter, "thread select",
1133 "Change the currently selected thread.",
1134 "thread select <thread-index> (or -t <thread-id>)",
1135 eCommandRequiresProcess | eCommandTryTargetAPILock |
1136 eCommandProcessMustBeLaunched |
1137 eCommandProcessMustBePaused) {
1139 CommandArgumentData thread_idx_arg;
1140
1141 // Define the first (and only) variant of this arg.
1142 thread_idx_arg.arg_type = eArgTypeThreadIndex;
1143 thread_idx_arg.arg_repetition = eArgRepeatPlain;
1144 thread_idx_arg.arg_opt_set_association = LLDB_OPT_SET_1;
1145
1146 // There is only one variant this argument could be; put it into the
1147 // argument entry.
1148 arg.push_back(thread_idx_arg);
1149
1150 // Push the data for the first argument into the m_arguments vector.
1151 m_arguments.push_back(arg);
1152
1154 m_option_group.Finalize();
1155 }
1156
1157 ~CommandObjectThreadSelect() override = default;
1158
1159 void
1161 OptionElementVector &opt_element_vector) override {
1162 if (request.GetCursorIndex())
1163 return;
1164
1167 nullptr);
1168 }
1169
1170 Options *GetOptions() override { return &m_option_group; }
1171
1172protected:
1173 void DoExecute(Args &command, CommandReturnObject &result) override {
1174 Process *process = m_exe_ctx.GetProcessPtr();
1175 if (process == nullptr) {
1176 result.AppendError("no process");
1177 return;
1178 } else if (m_options.m_thread_id == LLDB_INVALID_THREAD_ID &&
1179 command.GetArgumentCount() != 1) {
1180 result.AppendErrorWithFormat(
1181 "'%s' takes exactly one thread index argument, or a thread ID "
1182 "option:\nUsage: %s\n",
1183 m_cmd_name.c_str(), m_cmd_syntax.c_str());
1184 return;
1185 } else if (m_options.m_thread_id != LLDB_INVALID_THREAD_ID &&
1186 command.GetArgumentCount() != 0) {
1187 result.AppendErrorWithFormat("'%s' cannot take both a thread ID option "
1188 "and a thread index argument:\nUsage: %s\n",
1189 m_cmd_name.c_str(), m_cmd_syntax.c_str());
1190 return;
1191 }
1192
1193 Thread *new_thread = nullptr;
1194 if (command.GetArgumentCount() == 1) {
1195 uint32_t index_id;
1196 if (!llvm::to_integer(command.GetArgumentAtIndex(0), index_id)) {
1197 result.AppendErrorWithFormat("Invalid thread index '%s'",
1198 command.GetArgumentAtIndex(0));
1199 return;
1200 }
1201 new_thread = process->GetThreadList().FindThreadByIndexID(index_id).get();
1202 if (new_thread == nullptr) {
1203 result.AppendErrorWithFormat("Invalid thread index #%s.\n",
1204 command.GetArgumentAtIndex(0));
1205 return;
1206 }
1207 } else {
1208 new_thread =
1209 process->GetThreadList().FindThreadByID(m_options.m_thread_id).get();
1210 if (new_thread == nullptr) {
1211 result.AppendErrorWithFormat("Invalid thread ID %" PRIu64 ".\n",
1212 m_options.m_thread_id);
1213 return;
1214 }
1215 }
1216
1217 process->GetThreadList().SetSelectedThreadByID(new_thread->GetID(), true);
1219 }
1220
1223};
1224
1225// CommandObjectThreadList
1226
1228public:
1231 interpreter, "thread list",
1232 "Show a summary of each thread in the current target process. "
1233 "Use 'settings set thread-format' to customize the individual "
1234 "thread listings.",
1235 "thread list",
1236 eCommandRequiresProcess | eCommandTryTargetAPILock |
1237 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {}
1238
1239 ~CommandObjectThreadList() override = default;
1240
1241protected:
1242 void DoExecute(Args &command, CommandReturnObject &result) override {
1243 Stream &strm = result.GetOutputStream();
1245 Process *process = m_exe_ctx.GetProcessPtr();
1246 const bool only_threads_with_stop_reason = false;
1247 const uint32_t start_frame = 0;
1248 const uint32_t num_frames = 0;
1249 const uint32_t num_frames_with_source = 0;
1250 process->GetStatus(strm);
1251 process->GetThreadStatus(strm, only_threads_with_stop_reason, start_frame,
1252 num_frames, num_frames_with_source, false);
1253 }
1254};
1255
1256// CommandObjectThreadInfo
1257#define LLDB_OPTIONS_thread_info
1258#include "CommandOptions.inc"
1259
1261public:
1262 class CommandOptions : public Options {
1263 public:
1265
1266 ~CommandOptions() override = default;
1267
1268 void OptionParsingStarting(ExecutionContext *execution_context) override {
1269 m_json_thread = false;
1270 m_json_stopinfo = false;
1271 m_backing_thread = false;
1272 }
1273
1274 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1275 ExecutionContext *execution_context) override {
1276 const int short_option = m_getopt_table[option_idx].val;
1277 Status error;
1278
1279 switch (short_option) {
1280 case 'j':
1281 m_json_thread = true;
1282 break;
1283
1284 case 's':
1285 m_json_stopinfo = true;
1286 break;
1287
1288 case 'b':
1289 m_backing_thread = true;
1290 break;
1291
1292 default:
1293 llvm_unreachable("Unimplemented option");
1294 }
1295 return error;
1296 }
1297
1298 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1299 return llvm::ArrayRef(g_thread_info_options);
1300 }
1301
1305 };
1306
1309 interpreter, "thread info",
1310 "Show an extended summary of one or "
1311 "more threads. Defaults to the "
1312 "current thread.",
1313 "thread info",
1314 eCommandRequiresProcess | eCommandTryTargetAPILock |
1315 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {
1316 m_add_return = false;
1317 }
1318
1319 ~CommandObjectThreadInfo() override = default;
1320
1321 void
1328
1329 Options *GetOptions() override { return &m_options; }
1330
1332 ThreadSP thread_sp =
1333 m_exe_ctx.GetProcessPtr()->GetThreadList().FindThreadByID(tid);
1334 if (!thread_sp) {
1335 result.AppendErrorWithFormat("thread no longer exists: 0x%" PRIx64 "\n",
1336 tid);
1337 return false;
1338 }
1339
1340 Thread *thread = thread_sp.get();
1341 if (m_options.m_backing_thread && thread->GetBackingThread())
1342 thread = thread->GetBackingThread().get();
1343
1344 Stream &strm = result.GetOutputStream();
1345 if (!thread->GetDescription(strm, eDescriptionLevelFull,
1346 m_options.m_json_thread,
1347 m_options.m_json_stopinfo)) {
1348 result.AppendErrorWithFormat("error displaying info for thread: \"%d\"\n",
1349 thread->GetIndexID());
1350 return false;
1351 }
1352 return true;
1353 }
1354
1356};
1357
1358// CommandObjectThreadException
1359
1361public:
1364 interpreter, "thread exception",
1365 "Display the current exception object for a thread. Defaults to "
1366 "the current thread.",
1367 "thread exception",
1368 eCommandRequiresProcess | eCommandTryTargetAPILock |
1369 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {}
1370
1371 ~CommandObjectThreadException() override = default;
1372
1373 void
1380
1382 ThreadSP thread_sp =
1383 m_exe_ctx.GetProcessPtr()->GetThreadList().FindThreadByID(tid);
1384 if (!thread_sp) {
1385 result.AppendErrorWithFormat("thread no longer exists: 0x%" PRIx64 "\n",
1386 tid);
1387 return false;
1388 }
1389
1390 Stream &strm = result.GetOutputStream();
1391 ValueObjectSP exception_object_sp = thread_sp->GetCurrentException();
1392 if (exception_object_sp) {
1393 if (llvm::Error error = exception_object_sp->Dump(strm)) {
1394 result.AppendError(toString(std::move(error)));
1395 return false;
1396 }
1397 }
1398
1399 ThreadSP exception_thread_sp = thread_sp->GetCurrentExceptionBacktrace();
1400 if (exception_thread_sp && exception_thread_sp->IsValid()) {
1401 const uint32_t num_frames_with_source = 0;
1402 const bool stop_format = false;
1403 exception_thread_sp->GetStatus(strm, 0, UINT32_MAX,
1404 num_frames_with_source, stop_format,
1405 /*filtered*/ false);
1406 }
1407
1408 return true;
1409 }
1410};
1411
1413public:
1416 interpreter, "thread siginfo",
1417 "Display the current siginfo object for a thread. Defaults to "
1418 "the current thread.",
1419 "thread siginfo",
1420 eCommandRequiresProcess | eCommandTryTargetAPILock |
1421 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {}
1422
1423 ~CommandObjectThreadSiginfo() override = default;
1424
1425 void
1432
1434 ThreadSP thread_sp =
1435 m_exe_ctx.GetProcessPtr()->GetThreadList().FindThreadByID(tid);
1436 if (!thread_sp) {
1437 result.AppendErrorWithFormat("thread no longer exists: 0x%" PRIx64 "\n",
1438 tid);
1439 return false;
1440 }
1441
1442 Stream &strm = result.GetOutputStream();
1443 if (!thread_sp->GetDescription(strm, eDescriptionLevelFull, false, false)) {
1444 result.AppendErrorWithFormat("error displaying info for thread: \"%d\"\n",
1445 thread_sp->GetIndexID());
1446 return false;
1447 }
1448 ValueObjectSP exception_object_sp = thread_sp->GetSiginfoValue();
1449 if (exception_object_sp) {
1450 if (llvm::Error error = exception_object_sp->Dump(strm)) {
1451 result.AppendError(toString(std::move(error)));
1452 return false;
1453 }
1454 } else
1455 strm.Printf("(no siginfo)\n");
1456 strm.PutChar('\n');
1457
1458 return true;
1459 }
1460};
1461
1462// CommandObjectThreadReturn
1463#define LLDB_OPTIONS_thread_return
1464#include "CommandOptions.inc"
1465
1467public:
1468 class CommandOptions : public Options {
1469 public:
1471 // Keep default values of all options in one place: OptionParsingStarting
1472 // ()
1473 OptionParsingStarting(nullptr);
1474 }
1475
1476 ~CommandOptions() override = default;
1477
1478 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1479 ExecutionContext *execution_context) override {
1480 Status error;
1481 const int short_option = m_getopt_table[option_idx].val;
1482
1483 switch (short_option) {
1484 case 'x': {
1485 bool success;
1486 bool tmp_value =
1487 OptionArgParser::ToBoolean(option_arg, false, &success);
1488 if (success)
1489 m_from_expression = tmp_value;
1490 else {
1492 "invalid boolean value '%s' for 'x' option",
1493 option_arg.str().c_str());
1494 }
1495 } break;
1496 default:
1497 llvm_unreachable("Unimplemented option");
1498 }
1499 return error;
1500 }
1501
1502 void OptionParsingStarting(ExecutionContext *execution_context) override {
1503 m_from_expression = false;
1504 }
1505
1506 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1507 return llvm::ArrayRef(g_thread_return_options);
1508 }
1509
1510 bool m_from_expression = false;
1511
1512 // Instance variables to hold the values for command options.
1513 };
1514
1516 : CommandObjectRaw(interpreter, "thread return",
1517 "Prematurely return from a stack frame, "
1518 "short-circuiting execution of newer frames "
1519 "and optionally yielding a specified value. Defaults "
1520 "to the exiting the current stack "
1521 "frame.",
1522 "thread return",
1523 eCommandRequiresFrame | eCommandTryTargetAPILock |
1524 eCommandProcessMustBeLaunched |
1525 eCommandProcessMustBePaused) {
1527 }
1528
1529 ~CommandObjectThreadReturn() override = default;
1530
1531 Options *GetOptions() override { return &m_options; }
1532
1533protected:
1534 void DoExecute(llvm::StringRef command,
1535 CommandReturnObject &result) override {
1536 // I am going to handle this by hand, because I don't want you to have to
1537 // say:
1538 // "thread return -- -5".
1539 if (command.starts_with("-x")) {
1540 if (command.size() != 2U)
1541 result.AppendWarning("Return values ignored when returning from user "
1542 "called expressions");
1543
1544 Thread *thread = m_exe_ctx.GetThreadPtr();
1545 Status error;
1546 error = thread->UnwindInnermostExpression();
1547 if (!error.Success()) {
1548 result.AppendErrorWithFormat("Unwinding expression failed - %s.",
1549 error.AsCString());
1550 } else {
1551 bool success =
1552 thread->SetSelectedFrameByIndexNoisily(0, result.GetOutputStream());
1553 if (success) {
1554 m_exe_ctx.SetFrameSP(
1555 thread->GetSelectedFrame(DoNoSelectMostRelevantFrame));
1557 } else {
1558 result.AppendErrorWithFormat(
1559 "Could not select 0th frame after unwinding expression.");
1560 }
1561 }
1562 return;
1563 }
1564
1565 ValueObjectSP return_valobj_sp;
1566
1567 StackFrameSP frame_sp = m_exe_ctx.GetFrameSP();
1568 uint32_t frame_idx = frame_sp->GetFrameIndex();
1569
1570 if (frame_sp->IsInlined()) {
1571 result.AppendError("don't know how to return from inlined frames");
1572 return;
1573 }
1574
1575 if (!command.empty()) {
1576 Target *target = m_exe_ctx.GetTargetPtr();
1578
1579 options.SetUnwindOnError(true);
1581
1583 exe_results = target->EvaluateExpression(command, frame_sp.get(),
1584 return_valobj_sp, options);
1585 if (exe_results != eExpressionCompleted) {
1586 if (return_valobj_sp)
1587 result.AppendErrorWithFormat(
1588 "Error evaluating result expression: %s",
1589 return_valobj_sp->GetError().AsCString());
1590 else
1591 result.AppendErrorWithFormat(
1592 "Unknown error evaluating result expression.");
1593 return;
1594 }
1595 }
1596
1597 Status error;
1598 ThreadSP thread_sp = m_exe_ctx.GetThreadSP();
1599 const bool broadcast = true;
1600 error = thread_sp->ReturnFromFrame(frame_sp, return_valobj_sp, broadcast);
1601 if (!error.Success()) {
1602 result.AppendErrorWithFormat(
1603 "Error returning from frame %d of thread %d: %s.", frame_idx,
1604 thread_sp->GetIndexID(), error.AsCString());
1605 return;
1606 }
1607
1609 }
1610
1612};
1613
1614// CommandObjectThreadJump
1615#define LLDB_OPTIONS_thread_jump
1616#include "CommandOptions.inc"
1617
1619public:
1620 class CommandOptions : public Options {
1621 public:
1623
1624 ~CommandOptions() override = default;
1625
1626 void OptionParsingStarting(ExecutionContext *execution_context) override {
1627 m_filenames.Clear();
1628 m_line_num = 0;
1629 m_line_offset = 0;
1631 m_force = false;
1632 }
1633
1634 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1635 ExecutionContext *execution_context) override {
1636 const int short_option = m_getopt_table[option_idx].val;
1637 Status error;
1638
1639 switch (short_option) {
1640 case 'f':
1641 m_filenames.AppendIfUnique(FileSpec(option_arg));
1642 if (m_filenames.GetSize() > 1)
1643 return Status::FromErrorString("only one source file expected.");
1644 break;
1645 case 'l':
1646 if (option_arg.getAsInteger(0, m_line_num))
1647 return Status::FromErrorStringWithFormat("invalid line number: '%s'.",
1648 option_arg.str().c_str());
1649 break;
1650 case 'b': {
1651 option_arg.consume_front("+");
1652
1653 if (option_arg.getAsInteger(0, m_line_offset))
1654 return Status::FromErrorStringWithFormat("invalid line offset: '%s'.",
1655 option_arg.str().c_str());
1656 break;
1657 }
1658 case 'a':
1659 m_load_addr = OptionArgParser::ToAddress(execution_context, option_arg,
1661 break;
1662 case 'r':
1663 m_force = true;
1664 break;
1665 default:
1666 llvm_unreachable("Unimplemented option");
1667 }
1668 return error;
1669 }
1670
1671 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1672 return llvm::ArrayRef(g_thread_jump_options);
1673 }
1674
1676 uint32_t m_line_num;
1680 };
1681
1684 interpreter, "thread jump",
1685 "Sets the program counter to a new address.", "thread jump",
1686 eCommandRequiresFrame | eCommandTryTargetAPILock |
1687 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {}
1688
1689 ~CommandObjectThreadJump() override = default;
1690
1691 Options *GetOptions() override { return &m_options; }
1692
1693protected:
1694 void DoExecute(Args &args, CommandReturnObject &result) override {
1695 RegisterContext *reg_ctx = m_exe_ctx.GetRegisterContext();
1696 StackFrame *frame = m_exe_ctx.GetFramePtr();
1697 Thread *thread = m_exe_ctx.GetThreadPtr();
1698 Target *target = m_exe_ctx.GetTargetPtr();
1699 const SymbolContext &sym_ctx =
1700 frame->GetSymbolContext(eSymbolContextLineEntry);
1701
1702 if (m_options.m_load_addr != LLDB_INVALID_ADDRESS) {
1703 // Use this address directly.
1704 Address dest = Address(m_options.m_load_addr);
1705
1706 lldb::addr_t callAddr = dest.GetCallableLoadAddress(target);
1707 if (callAddr == LLDB_INVALID_ADDRESS) {
1708 result.AppendErrorWithFormat("Invalid destination address.");
1709 return;
1710 }
1711
1712 if (!reg_ctx->SetPC(callAddr)) {
1713 result.AppendErrorWithFormat("Error changing PC value for thread %d.",
1714 thread->GetIndexID());
1715 return;
1716 }
1717 } else {
1718 // Pick either the absolute line, or work out a relative one.
1719 int32_t line = (int32_t)m_options.m_line_num;
1720 if (line == 0)
1721 line = sym_ctx.line_entry.line + m_options.m_line_offset;
1722
1723 // Try the current file, but override if asked.
1724 FileSpec file = sym_ctx.line_entry.GetFile();
1725 if (m_options.m_filenames.GetSize() == 1)
1726 file = m_options.m_filenames.GetFileSpecAtIndex(0);
1727
1728 if (!file) {
1729 result.AppendErrorWithFormat(
1730 "No source file available for the current location.");
1731 return;
1732 }
1733
1734 std::string warnings;
1735 Status err = thread->JumpToLine(file, line, m_options.m_force, &warnings);
1736
1737 if (err.Fail()) {
1738 result.SetError(std::move(err));
1739 return;
1740 }
1741
1742 if (!warnings.empty())
1743 result.AppendWarning(warnings.c_str());
1744 }
1745
1747 }
1748
1750};
1751
1752// Next are the subcommands of CommandObjectMultiwordThreadPlan
1753
1754// CommandObjectThreadPlanList
1755#define LLDB_OPTIONS_thread_plan_list
1756#include "CommandOptions.inc"
1757
1759public:
1760 class CommandOptions : public Options {
1761 public:
1763 // Keep default values of all options in one place: OptionParsingStarting
1764 // ()
1765 OptionParsingStarting(nullptr);
1766 }
1767
1768 ~CommandOptions() override = default;
1769
1770 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1771 ExecutionContext *execution_context) override {
1772 const int short_option = m_getopt_table[option_idx].val;
1773
1774 switch (short_option) {
1775 case 'i':
1776 m_internal = true;
1777 break;
1778 case 't':
1779 lldb::tid_t tid;
1780 if (option_arg.getAsInteger(0, tid))
1781 return Status::FromErrorStringWithFormat("invalid tid: '%s'.",
1782 option_arg.str().c_str());
1783 m_tids.push_back(tid);
1784 break;
1785 case 'u':
1786 m_unreported = false;
1787 break;
1788 case 'v':
1789 m_verbose = true;
1790 break;
1791 default:
1792 llvm_unreachable("Unimplemented option");
1793 }
1794 return {};
1795 }
1796
1797 void OptionParsingStarting(ExecutionContext *execution_context) override {
1798 m_verbose = false;
1799 m_internal = false;
1800 m_unreported = true; // The variable is "skip unreported" and we want to
1801 // skip unreported by default.
1802 m_tids.clear();
1803 }
1804
1805 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1806 return llvm::ArrayRef(g_thread_plan_list_options);
1807 }
1808
1809 // Instance variables to hold the values for command options.
1813 std::vector<lldb::tid_t> m_tids;
1814 };
1815
1818 interpreter, "thread plan list",
1819 "Show thread plans for one or more threads. If no threads are "
1820 "specified, show the "
1821 "current thread. Use the thread-index \"all\" to see all threads.",
1822 nullptr,
1823 eCommandRequiresProcess | eCommandRequiresThread |
1824 eCommandTryTargetAPILock | eCommandProcessMustBeLaunched |
1825 eCommandProcessMustBePaused) {}
1826
1827 ~CommandObjectThreadPlanList() override = default;
1828
1829 Options *GetOptions() override { return &m_options; }
1830
1831 void DoExecute(Args &command, CommandReturnObject &result) override {
1832 // If we are reporting all threads, dispatch to the Process to do that:
1833 if (command.GetArgumentCount() == 0 && m_options.m_tids.empty()) {
1834 Stream &strm = result.GetOutputStream();
1835 DescriptionLevel desc_level = m_options.m_verbose
1838 m_exe_ctx.GetProcessPtr()->DumpThreadPlans(
1839 strm, desc_level, m_options.m_internal, true, m_options.m_unreported);
1841 return;
1842 } else {
1843 // Do any TID's that the user may have specified as TID, then do any
1844 // Thread Indexes...
1845 if (!m_options.m_tids.empty()) {
1846 Process *process = m_exe_ctx.GetProcessPtr();
1847 StreamString tmp_strm;
1848 for (lldb::tid_t tid : m_options.m_tids) {
1849 bool success = process->DumpThreadPlansForTID(
1850 tmp_strm, tid, eDescriptionLevelFull, m_options.m_internal,
1851 true /* condense_trivial */, m_options.m_unreported);
1852 // If we didn't find a TID, stop here and return an error.
1853 if (!success) {
1854 result.AppendError("Error dumping plans:");
1855 result.AppendError(tmp_strm.GetString());
1856 return;
1857 }
1858 // Otherwise, add our data to the output:
1859 result.GetOutputStream() << tmp_strm.GetString();
1860 }
1861 }
1862 return CommandObjectIterateOverThreads::DoExecute(command, result);
1863 }
1864 }
1865
1866protected:
1868 // If we have already handled this from a -t option, skip it here.
1869 if (llvm::is_contained(m_options.m_tids, tid))
1870 return true;
1871
1872 Process *process = m_exe_ctx.GetProcessPtr();
1873
1874 Stream &strm = result.GetOutputStream();
1876 if (m_options.m_verbose)
1877 desc_level = eDescriptionLevelVerbose;
1878
1879 process->DumpThreadPlansForTID(strm, tid, desc_level, m_options.m_internal,
1880 true /* condense_trivial */,
1881 m_options.m_unreported);
1882 return true;
1883 }
1884
1886};
1887
1889public:
1891 : CommandObjectParsed(interpreter, "thread plan discard",
1892 "Discards thread plans up to and including the "
1893 "specified index (see 'thread plan list'.) "
1894 "Only user visible plans can be discarded.",
1895 nullptr,
1896 eCommandRequiresProcess | eCommandRequiresThread |
1897 eCommandTryTargetAPILock |
1898 eCommandProcessMustBeLaunched |
1899 eCommandProcessMustBePaused) {
1901 }
1902
1904
1905 void
1907 OptionElementVector &opt_element_vector) override {
1908 if (!m_exe_ctx.HasThreadScope() || request.GetCursorIndex())
1909 return;
1910
1911 m_exe_ctx.GetThreadPtr()->AutoCompleteThreadPlans(request);
1912 }
1913
1914 void DoExecute(Args &args, CommandReturnObject &result) override {
1915 Thread *thread = m_exe_ctx.GetThreadPtr();
1916 if (args.GetArgumentCount() != 1) {
1917 result.AppendErrorWithFormat("Too many arguments, expected one - the "
1918 "thread plan index - but got %zu.",
1919 args.GetArgumentCount());
1920 return;
1921 }
1922
1923 uint32_t thread_plan_idx;
1924 if (!llvm::to_integer(args.GetArgumentAtIndex(0), thread_plan_idx)) {
1925 result.AppendErrorWithFormat(
1926 "Invalid thread index: \"%s\" - should be unsigned int.",
1927 args.GetArgumentAtIndex(0));
1928 return;
1929 }
1930
1931 if (thread_plan_idx == 0) {
1932 result.AppendErrorWithFormat(
1933 "You wouldn't really want me to discard the base thread plan.");
1934 return;
1935 }
1936
1937 if (thread->DiscardUserThreadPlansUpToIndex(thread_plan_idx)) {
1939 } else {
1940 result.AppendErrorWithFormat(
1941 "Could not find User thread plan with index %s.",
1942 args.GetArgumentAtIndex(0));
1943 }
1944 }
1945};
1946
1948public:
1950 : CommandObjectParsed(interpreter, "thread plan prune",
1951 "Removes any thread plans associated with "
1952 "currently unreported threads. "
1953 "Specify one or more TID's to remove, or if no "
1954 "TID's are provides, remove threads for all "
1955 "unreported threads",
1956 nullptr,
1957 eCommandRequiresProcess |
1958 eCommandTryTargetAPILock |
1959 eCommandProcessMustBeLaunched |
1960 eCommandProcessMustBePaused) {
1962 }
1963
1964 ~CommandObjectThreadPlanPrune() override = default;
1965
1966 void DoExecute(Args &args, CommandReturnObject &result) override {
1967 Process *process = m_exe_ctx.GetProcessPtr();
1968
1969 if (args.GetArgumentCount() == 0) {
1970 process->PruneThreadPlans();
1972 return;
1973 }
1974
1975 const size_t num_args = args.GetArgumentCount();
1976
1977 std::lock_guard<std::recursive_mutex> guard(
1978 process->GetThreadList().GetMutex());
1979
1980 for (size_t i = 0; i < num_args; i++) {
1981 lldb::tid_t tid;
1982 if (!llvm::to_integer(args.GetArgumentAtIndex(i), tid)) {
1983 result.AppendErrorWithFormat("invalid thread specification: \"%s\"\n",
1984 args.GetArgumentAtIndex(i));
1985 return;
1986 }
1987 if (!process->PruneThreadPlansForTID(tid)) {
1988 result.AppendErrorWithFormat("Could not find unreported tid: \"%s\"\n",
1989 args.GetArgumentAtIndex(i));
1990 return;
1991 }
1992 }
1994 }
1995};
1996
1997// CommandObjectMultiwordThreadPlan
1998
2000public:
2003 interpreter, "plan",
2004 "Commands for managing thread plans that control execution.",
2005 "thread plan <subcommand> [<subcommand objects]") {
2007 "list", CommandObjectSP(new CommandObjectThreadPlanList(interpreter)));
2009 "discard",
2012 "prune",
2014 }
2015
2017};
2018
2019// Next are the subcommands of CommandObjectMultiwordTrace
2020
2021// CommandObjectTraceExport
2022
2024public:
2027 interpreter, "trace thread export",
2028 "Commands for exporting traces of the threads in the current "
2029 "process to different formats.",
2030 "thread trace export <export-plugin> [<subcommand objects>]") {
2031
2032 for (auto &cbs : PluginManager::GetTraceExporterCallbacks()) {
2033 if (cbs.create_thread_trace_export_command)
2034 LoadSubCommand(cbs.name,
2035 cbs.create_thread_trace_export_command(interpreter));
2036 }
2037 }
2038};
2039
2040// CommandObjectTraceStart
2041
2043public:
2046 /*live_debug_session_only=*/true, interpreter, "thread trace start",
2047 "Start tracing threads with the corresponding trace "
2048 "plug-in for the current process.",
2049 "thread trace start [<trace-options>]") {}
2050
2051protected:
2055};
2056
2057// CommandObjectTraceStop
2058
2060public:
2063 interpreter, "thread trace stop",
2064 "Stop tracing threads, including the ones traced with the "
2065 "\"process trace start\" command."
2066 "Defaults to the current thread. Thread indices can be "
2067 "specified as arguments.\n Use the thread-index \"all\" to stop "
2068 "tracing "
2069 "for all existing threads.",
2070 "thread trace stop [<thread-index> <thread-index> ...]",
2071 eCommandRequiresProcess | eCommandTryTargetAPILock |
2072 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused |
2073 eCommandProcessMustBeTraced) {}
2074
2075 ~CommandObjectTraceStop() override = default;
2076
2078 llvm::ArrayRef<lldb::tid_t> tids) override {
2079 ProcessSP process_sp = m_exe_ctx.GetProcessSP();
2080
2081 TraceSP trace_sp = process_sp->GetTarget().GetTrace();
2082
2083 if (llvm::Error err = trace_sp->Stop(tids))
2084 result.AppendError(toString(std::move(err)));
2085 else
2087
2088 return result.Succeeded();
2089 }
2090};
2091
2093 CommandReturnObject &result) {
2094 if (args.GetArgumentCount() == 0)
2095 return exe_ctx.GetThreadSP();
2096
2097 const char *arg = args.GetArgumentAtIndex(0);
2098 uint32_t thread_idx;
2099
2100 if (!llvm::to_integer(arg, thread_idx)) {
2101 result.AppendErrorWithFormat("invalid thread specification: \"%s\"\n", arg);
2102 return nullptr;
2103 }
2104 ThreadSP thread_sp =
2105 exe_ctx.GetProcessRef().GetThreadList().FindThreadByIndexID(thread_idx);
2106 if (!thread_sp)
2107 result.AppendErrorWithFormat("no thread with index: \"%s\"\n", arg);
2108 return thread_sp;
2109}
2110
2111// CommandObjectTraceDumpFunctionCalls
2112#define LLDB_OPTIONS_thread_trace_dump_function_calls
2113#include "CommandOptions.inc"
2114
2116public:
2117 class CommandOptions : public Options {
2118 public:
2120
2121 ~CommandOptions() override = default;
2122
2123 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
2124 ExecutionContext *execution_context) override {
2125 Status error;
2126 const int short_option = m_getopt_table[option_idx].val;
2127
2128 switch (short_option) {
2129 case 'j': {
2130 m_dumper_options.json = true;
2131 break;
2132 }
2133 case 'J': {
2134 m_dumper_options.json = true;
2135 m_dumper_options.pretty_print_json = true;
2136 break;
2137 }
2138 case 'F': {
2139 m_output_file.emplace(option_arg);
2140 break;
2141 }
2142 default:
2143 llvm_unreachable("Unimplemented option");
2144 }
2145 return error;
2146 }
2147
2148 void OptionParsingStarting(ExecutionContext *execution_context) override {
2149 m_dumper_options = {};
2150 m_output_file = std::nullopt;
2151 }
2152
2153 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
2154 return llvm::ArrayRef(g_thread_trace_dump_function_calls_options);
2155 }
2156
2157 static const size_t kDefaultCount = 20;
2158
2159 // Instance variables to hold the values for command options.
2161 std::optional<FileSpec> m_output_file;
2162 };
2163
2166 interpreter, "thread trace dump function-calls",
2167 "Dump the traced function-calls for one thread. If no "
2168 "thread is specified, the current thread is used.",
2169 nullptr,
2170 eCommandRequiresProcess | eCommandRequiresThread |
2171 eCommandTryTargetAPILock | eCommandProcessMustBeLaunched |
2172 eCommandProcessMustBePaused | eCommandProcessMustBeTraced) {
2174 }
2175
2177
2178 Options *GetOptions() override { return &m_options; }
2179
2180protected:
2181 void DoExecute(Args &args, CommandReturnObject &result) override {
2182 ThreadSP thread_sp = GetSingleThreadFromArgs(m_exe_ctx, args, result);
2183 if (!thread_sp) {
2184 result.AppendError("invalid thread\n");
2185 return;
2186 }
2187
2188 llvm::Expected<TraceCursorSP> cursor_or_error =
2189 m_exe_ctx.GetTargetSP()->GetTrace()->CreateNewCursor(*thread_sp);
2190
2191 if (!cursor_or_error) {
2192 result.AppendError(llvm::toString(cursor_or_error.takeError()));
2193 return;
2194 }
2195 TraceCursorSP &cursor_sp = *cursor_or_error;
2196
2197 std::optional<StreamFile> out_file;
2198 if (m_options.m_output_file) {
2199 out_file.emplace(m_options.m_output_file->GetPath().c_str(),
2202 }
2203
2204 m_options.m_dumper_options.forwards = true;
2205
2206 TraceDumper dumper(std::move(cursor_sp),
2207 out_file ? *out_file : result.GetOutputStream(),
2208 m_options.m_dumper_options);
2209
2210 dumper.DumpFunctionCalls();
2211 }
2212
2214};
2215
2216// CommandObjectTraceDumpInstructions
2217#define LLDB_OPTIONS_thread_trace_dump_instructions
2218#include "CommandOptions.inc"
2219
2221public:
2222 class CommandOptions : public Options {
2223 public:
2225
2226 ~CommandOptions() override = default;
2227
2228 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
2229 ExecutionContext *execution_context) override {
2230 Status error;
2231 const int short_option = m_getopt_table[option_idx].val;
2232
2233 switch (short_option) {
2234 case 'c': {
2235 int32_t count;
2236 if (option_arg.empty() || option_arg.getAsInteger(0, count) ||
2237 count < 0)
2239 "invalid integer value for option '%s'",
2240 option_arg.str().c_str());
2241 else
2242 m_count = count;
2243 break;
2244 }
2245 case 'a': {
2246 m_count = std::numeric_limits<decltype(m_count)>::max();
2247 break;
2248 }
2249 case 's': {
2250 int32_t skip;
2251 if (option_arg.empty() || option_arg.getAsInteger(0, skip) || skip < 0)
2253 "invalid integer value for option '%s'",
2254 option_arg.str().c_str());
2255 else
2256 m_dumper_options.skip = skip;
2257 break;
2258 }
2259 case 'i': {
2260 uint64_t id;
2261 if (option_arg.empty() || option_arg.getAsInteger(0, id))
2263 "invalid integer value for option '%s'",
2264 option_arg.str().c_str());
2265 else
2266 m_dumper_options.id = id;
2267 break;
2268 }
2269 case 'F': {
2270 m_output_file.emplace(option_arg);
2271 break;
2272 }
2273 case 'r': {
2274 m_dumper_options.raw = true;
2275 break;
2276 }
2277 case 'f': {
2278 m_dumper_options.forwards = true;
2279 break;
2280 }
2281 case 'k': {
2282 m_dumper_options.show_control_flow_kind = true;
2283 break;
2284 }
2285 case 't': {
2286 m_dumper_options.show_timestamps = true;
2287 break;
2288 }
2289 case 'e': {
2290 m_dumper_options.show_events = true;
2291 break;
2292 }
2293 case 'j': {
2294 m_dumper_options.json = true;
2295 break;
2296 }
2297 case 'J': {
2298 m_dumper_options.pretty_print_json = true;
2299 m_dumper_options.json = true;
2300 break;
2301 }
2302 case 'E': {
2303 m_dumper_options.only_events = true;
2304 m_dumper_options.show_events = true;
2305 break;
2306 }
2307 case 'C': {
2308 m_continue = true;
2309 break;
2310 }
2311 default:
2312 llvm_unreachable("Unimplemented option");
2313 }
2314 return error;
2315 }
2316
2317 void OptionParsingStarting(ExecutionContext *execution_context) override {
2319 m_continue = false;
2320 m_output_file = std::nullopt;
2321 m_dumper_options = {};
2322 }
2323
2324 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
2325 return llvm::ArrayRef(g_thread_trace_dump_instructions_options);
2326 }
2327
2328 static const size_t kDefaultCount = 20;
2329
2330 // Instance variables to hold the values for command options.
2331 size_t m_count;
2333 std::optional<FileSpec> m_output_file;
2335 };
2336
2339 interpreter, "thread trace dump instructions",
2340 "Dump the traced instructions for one thread. If no "
2341 "thread is specified, show the current thread.",
2342 nullptr,
2343 eCommandRequiresProcess | eCommandRequiresThread |
2344 eCommandTryTargetAPILock | eCommandProcessMustBeLaunched |
2345 eCommandProcessMustBePaused | eCommandProcessMustBeTraced) {
2347 }
2348
2350
2351 Options *GetOptions() override { return &m_options; }
2352
2353 std::optional<std::string> GetRepeatCommand(Args &current_command_args,
2354 uint32_t index) override {
2355 std::string cmd;
2356 current_command_args.GetCommandString(cmd);
2357 if (cmd.find(" --continue") == std::string::npos)
2358 cmd += " --continue";
2359 return cmd;
2360 }
2361
2362protected:
2363 void DoExecute(Args &args, CommandReturnObject &result) override {
2364 ThreadSP thread_sp = GetSingleThreadFromArgs(m_exe_ctx, args, result);
2365 if (!thread_sp) {
2366 result.AppendError("invalid thread\n");
2367 return;
2368 }
2369
2370 if (m_options.m_continue && m_last_id) {
2371 // We set up the options to continue one instruction past where
2372 // the previous iteration stopped.
2373 m_options.m_dumper_options.skip = 1;
2374 m_options.m_dumper_options.id = m_last_id;
2375 }
2376
2377 llvm::Expected<TraceCursorSP> cursor_or_error =
2378 m_exe_ctx.GetTargetSP()->GetTrace()->CreateNewCursor(*thread_sp);
2379
2380 if (!cursor_or_error) {
2381 result.AppendError(llvm::toString(cursor_or_error.takeError()));
2382 return;
2383 }
2384 TraceCursorSP &cursor_sp = *cursor_or_error;
2385
2386 if (m_options.m_dumper_options.id &&
2387 !cursor_sp->HasId(*m_options.m_dumper_options.id)) {
2388 result.AppendError("invalid instruction id\n");
2389 return;
2390 }
2391
2392 std::optional<StreamFile> out_file;
2393 if (m_options.m_output_file) {
2394 out_file.emplace(m_options.m_output_file->GetPath().c_str(),
2397 }
2398
2399 if (m_options.m_continue && !m_last_id) {
2400 // We need to stop processing data when we already ran out of instructions
2401 // in a previous command. We can fake this by setting the cursor past the
2402 // end of the trace.
2403 cursor_sp->Seek(1, lldb::eTraceCursorSeekTypeEnd);
2404 }
2405
2406 TraceDumper dumper(std::move(cursor_sp),
2407 out_file ? *out_file : result.GetOutputStream(),
2408 m_options.m_dumper_options);
2409
2410 m_last_id = dumper.DumpInstructions(m_options.m_count);
2411 }
2412
2414 // Last traversed id used to continue a repeat command. std::nullopt means
2415 // that all the trace has been consumed.
2416 std::optional<lldb::user_id_t> m_last_id;
2417};
2418
2419// CommandObjectTraceDumpInfo
2420#define LLDB_OPTIONS_thread_trace_dump_info
2421#include "CommandOptions.inc"
2422
2424public:
2425 class CommandOptions : public Options {
2426 public:
2428
2429 ~CommandOptions() override = default;
2430
2431 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
2432 ExecutionContext *execution_context) override {
2433 Status error;
2434 const int short_option = m_getopt_table[option_idx].val;
2435
2436 switch (short_option) {
2437 case 'v': {
2438 m_verbose = true;
2439 break;
2440 }
2441 case 'j': {
2442 m_json = true;
2443 break;
2444 }
2445 default:
2446 llvm_unreachable("Unimplemented option");
2447 }
2448 return error;
2449 }
2450
2451 void OptionParsingStarting(ExecutionContext *execution_context) override {
2452 m_verbose = false;
2453 m_json = false;
2454 }
2455
2456 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
2457 return llvm::ArrayRef(g_thread_trace_dump_info_options);
2458 }
2459
2460 // Instance variables to hold the values for command options.
2463 };
2464
2467 interpreter, "thread trace dump info",
2468 "Dump the traced information for one or more threads. If no "
2469 "threads are specified, show the current thread. Use the "
2470 "thread-index \"all\" to see all threads.",
2471 nullptr,
2472 eCommandRequiresProcess | eCommandTryTargetAPILock |
2473 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused |
2474 eCommandProcessMustBeTraced) {}
2475
2476 ~CommandObjectTraceDumpInfo() override = default;
2477
2478 Options *GetOptions() override { return &m_options; }
2479
2480protected:
2482 const TraceSP &trace_sp = m_exe_ctx.GetTargetSP()->GetTrace();
2483 ThreadSP thread_sp =
2484 m_exe_ctx.GetProcessPtr()->GetThreadList().FindThreadByID(tid);
2485 trace_sp->DumpTraceInfo(*thread_sp, result.GetOutputStream(),
2486 m_options.m_verbose, m_options.m_json);
2487 return true;
2488 }
2489
2491};
2492
2493// CommandObjectMultiwordTraceDump
2495public:
2498 interpreter, "dump",
2499 "Commands for displaying trace information of the threads "
2500 "in the current process.",
2501 "thread trace dump <subcommand> [<subcommand objects>]") {
2503 "instructions",
2506 "function-calls",
2509 "info", CommandObjectSP(new CommandObjectTraceDumpInfo(interpreter)));
2510 }
2512};
2513
2514// CommandObjectMultiwordTrace
2516public:
2519 interpreter, "trace",
2520 "Commands for operating on traces of the threads in the current "
2521 "process.",
2522 "thread trace <subcommand> [<subcommand objects>]") {
2524 interpreter)));
2525 LoadSubCommand("start",
2526 CommandObjectSP(new CommandObjectTraceStart(interpreter)));
2527 LoadSubCommand("stop",
2528 CommandObjectSP(new CommandObjectTraceStop(interpreter)));
2529 LoadSubCommand("export",
2530 CommandObjectSP(new CommandObjectTraceExport(interpreter)));
2531 }
2532
2533 ~CommandObjectMultiwordTrace() override = default;
2534};
2535
2536// CommandObjectMultiwordThread
2537
2539 CommandInterpreter &interpreter)
2540 : CommandObjectMultiword(interpreter, "thread",
2541 "Commands for operating on "
2542 "one or more threads in "
2543 "the current process.",
2544 "thread <subcommand> [<subcommand-options>]") {
2546 interpreter)));
2547 LoadSubCommand("continue",
2549 LoadSubCommand("list",
2550 CommandObjectSP(new CommandObjectThreadList(interpreter)));
2551 LoadSubCommand("return",
2552 CommandObjectSP(new CommandObjectThreadReturn(interpreter)));
2553 LoadSubCommand("jump",
2554 CommandObjectSP(new CommandObjectThreadJump(interpreter)));
2555 LoadSubCommand("select",
2556 CommandObjectSP(new CommandObjectThreadSelect(interpreter)));
2557 LoadSubCommand("until",
2558 CommandObjectSP(new CommandObjectThreadUntil(interpreter)));
2559 LoadSubCommand("info",
2560 CommandObjectSP(new CommandObjectThreadInfo(interpreter)));
2562 interpreter)));
2563 LoadSubCommand("siginfo",
2565 LoadSubCommand("step-in",
2567 interpreter, "thread step-in",
2568 "Source level single step, stepping into calls. Defaults "
2569 "to current thread unless specified.",
2570 nullptr, eStepTypeInto)));
2571
2572 LoadSubCommand("step-out",
2574 interpreter, "thread step-out",
2575 "Finish executing the current stack frame and stop after "
2576 "returning. Defaults to current thread unless specified.",
2577 nullptr, eStepTypeOut)));
2578
2579 LoadSubCommand("step-over",
2581 interpreter, "thread step-over",
2582 "Source level single step, stepping over calls. Defaults "
2583 "to current thread unless specified.",
2584 nullptr, eStepTypeOver)));
2585
2586 LoadSubCommand("step-inst",
2588 interpreter, "thread step-inst",
2589 "Instruction level single step, stepping into calls. "
2590 "Defaults to current thread unless specified.",
2591 nullptr, eStepTypeTrace)));
2592
2593 LoadSubCommand("step-inst-over",
2595 interpreter, "thread step-inst-over",
2596 "Instruction level single step, stepping over calls. "
2597 "Defaults to current thread unless specified.",
2598 nullptr, eStepTypeTraceOver)));
2599
2601 "step-scripted",
2603 interpreter, "thread step-scripted",
2604 "Step as instructed by the script class passed in the -C option. "
2605 "You can also specify a dictionary of key (-k) and value (-v) pairs "
2606 "that will be used to populate an SBStructuredData Dictionary, which "
2607 "will be passed to the constructor of the class implementing the "
2608 "scripted step. See the Python Reference for more details.",
2609 nullptr, eStepTypeScripted)));
2610
2612 interpreter)));
2613 LoadSubCommand("trace",
2615}
2616
static ThreadSP GetSingleThreadFromArgs(ExecutionContext &exe_ctx, Args &args, CommandReturnObject &result)
static llvm::raw_ostream & error(Stream &strm)
#define INTERRUPT_REQUESTED(debugger,...)
This handy define will keep you from having to generate a report for the interruption by hand.
Definition Debugger.h:494
static void skip(TSLexer *lexer)
~CommandObjectMultiwordThreadPlan() override=default
CommandObjectMultiwordThreadPlan(CommandInterpreter &interpreter)
~CommandObjectMultiwordTraceDump() override=default
CommandObjectMultiwordTraceDump(CommandInterpreter &interpreter)
CommandObjectMultiwordTrace(CommandInterpreter &interpreter)
~CommandObjectMultiwordTrace() override=default
void OptionParsingStarting(ExecutionContext *execution_context) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
CommandObjectThreadBacktrace(CommandInterpreter &interpreter)
std::optional< std::string > GetRepeatCommand(Args &current_args, uint32_t index) override
Get the command that appropriate for a "repeat" of the current command.
void DoExtendedBacktrace(Thread *thread, CommandReturnObject &result)
bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override
~CommandObjectThreadBacktrace() override=default
~CommandObjectThreadContinue() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectThreadContinue(CommandInterpreter &interpreter)
CommandObjectThreadException(CommandInterpreter &interpreter)
bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override
~CommandObjectThreadException() override=default
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
void OptionParsingStarting(ExecutionContext *execution_context) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
CommandObjectThreadInfo(CommandInterpreter &interpreter)
bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override
~CommandObjectThreadInfo() override=default
Options * GetOptions() override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
void OptionParsingStarting(ExecutionContext *execution_context) override
CommandObjectThreadJump(CommandInterpreter &interpreter)
void DoExecute(Args &args, CommandReturnObject &result) override
~CommandObjectThreadJump() override=default
Options * GetOptions() override
void DoExecute(Args &command, CommandReturnObject &result) override
~CommandObjectThreadList() override=default
CommandObjectThreadList(CommandInterpreter &interpreter)
void DoExecute(Args &args, CommandReturnObject &result) override
CommandObjectThreadPlanDiscard(CommandInterpreter &interpreter)
~CommandObjectThreadPlanDiscard() override=default
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
CommandObjectThreadPlanList(CommandInterpreter &interpreter)
bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override
~CommandObjectThreadPlanList() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectThreadPlanPrune(CommandInterpreter &interpreter)
~CommandObjectThreadPlanPrune() override=default
void DoExecute(Args &args, CommandReturnObject &result) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
CommandObjectThreadReturn(CommandInterpreter &interpreter)
void DoExecute(llvm::StringRef command, CommandReturnObject &result) override
~CommandObjectThreadReturn() override=default
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
void OptionParsingStarting(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
void DoExecute(Args &command, CommandReturnObject &result) override
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
CommandObjectThreadSelect(CommandInterpreter &interpreter)
~CommandObjectThreadSelect() override=default
OptionGroupThreadSelect m_options
~CommandObjectThreadSiginfo() override=default
bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override
CommandObjectThreadSiginfo(CommandInterpreter &interpreter)
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
OptionGroupPythonClassWithDict m_class_options
~CommandObjectThreadStepWithTypeAndScope() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
CommandObjectThreadStepWithTypeAndScope(CommandInterpreter &interpreter, const char *name, const char *help, const char *syntax, StepType step_type)
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
Options * GetOptions() override
CommandObjectThreadUntil(CommandInterpreter &interpreter)
~CommandObjectThreadUntil() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
void OptionParsingStarting(ExecutionContext *execution_context) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void DoExecute(Args &args, CommandReturnObject &result) override
CommandObjectTraceDumpFunctionCalls(CommandInterpreter &interpreter)
~CommandObjectTraceDumpFunctionCalls() override=default
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
~CommandObjectTraceDumpInfo() override=default
bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override
CommandObjectTraceDumpInfo(CommandInterpreter &interpreter)
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
CommandObjectTraceDumpInstructions(CommandInterpreter &interpreter)
~CommandObjectTraceDumpInstructions() override=default
std::optional< std::string > GetRepeatCommand(Args &current_command_args, uint32_t index) override
Get the command that appropriate for a "repeat" of the current command.
void DoExecute(Args &args, CommandReturnObject &result) override
std::optional< lldb::user_id_t > m_last_id
CommandObjectTraceExport(CommandInterpreter &interpreter)
lldb::CommandObjectSP GetDelegateCommand(Trace &trace) override
CommandObjectTraceStart(CommandInterpreter &interpreter)
~CommandObjectTraceStop() override=default
bool DoExecuteOnThreads(Args &command, CommandReturnObject &result, llvm::ArrayRef< lldb::tid_t > tids) override
CommandObjectTraceStop(CommandInterpreter &interpreter)
void OptionParsingStarting(ExecutionContext *execution_context) override
~ThreadStepScopeOptionGroup() override=default
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
A section + offset based address range class.
Address & GetBaseAddress()
Get accessor for the base address of the range.
lldb::addr_t GetByteSize() const
Get accessor for the byte size of this range.
A section + offset based address class.
Definition Address.h:62
lldb::addr_t GetLoadAddress(Target *target) const
Get the load address.
Definition Address.cpp:301
lldb::addr_t GetCallableLoadAddress(Target *target, bool is_indirect=false) const
Get the load address as a callable code load address.
Definition Address.cpp:326
lldb::addr_t GetFileAddress() const
Get the file address.
Definition Address.cpp:281
bool IsValid() const
Check if the object state is valid.
Definition Address.h:355
A command line argument class.
Definition Args.h:33
size_t GetArgumentCount() const
Gets the number of arguments left in this command object.
Definition Args.h:120
void ReplaceArgumentAtIndex(size_t idx, llvm::StringRef arg_str, char quote_char='\0')
Replaces the argument value at index idx to arg_str if idx is a valid argument index.
Definition Args.cpp:347
void AppendArgument(llvm::StringRef arg_str, char quote_char='\0')
Appends a new argument to the end of the list argument list.
Definition Args.cpp:332
llvm::ArrayRef< ArgEntry > entries() const
Definition Args.h:132
const char * GetArgumentAtIndex(size_t idx) const
Gets the NULL terminated C string argument pointer for the argument at index idx.
Definition Args.cpp:273
bool GetCommandString(std::string &command) const
Definition Args.cpp:215
bool GetQuotedCommandString(std::string &command) const
Definition Args.cpp:232
A class that describes a single lexical block.
Definition Block.h:41
bool GetRangeContainingAddress(const Address &addr, AddressRange &range)
Definition Block.cpp:248
static bool InvokeCommonCompletionCallbacks(CommandInterpreter &interpreter, uint32_t completion_mask, lldb_private::CompletionRequest &request, SearchFilter *searcher)
CommandObjectIterateOverThreads(CommandInterpreter &interpreter, const char *name, const char *help, const char *syntax, uint32_t flags)
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectMultipleThreads(CommandInterpreter &interpreter, const char *name, const char *help, const char *syntax, uint32_t flags)
CommandObjectMultiwordThread(CommandInterpreter &interpreter)
bool LoadSubCommand(llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_obj) override
CommandObjectMultiword(CommandInterpreter &interpreter, const char *name, const char *help=nullptr, const char *syntax=nullptr, uint32_t flags=0)
CommandObjectParsed(CommandInterpreter &interpreter, const char *name, const char *help=nullptr, const char *syntax=nullptr, uint32_t flags=0)
CommandObjectRaw(CommandInterpreter &interpreter, llvm::StringRef name, llvm::StringRef help="", llvm::StringRef syntax="", uint32_t flags=0)
CommandObjectTraceProxy(bool live_debug_session_only, CommandInterpreter &interpreter, const char *name, const char *help=nullptr, const char *syntax=nullptr, uint32_t flags=0)
std::vector< CommandArgumentData > CommandArgumentEntry
void AddSimpleArgumentList(lldb::CommandArgumentType arg_type, ArgumentRepetitionType repetition_type=eArgRepeatPlain)
std::vector< CommandArgumentEntry > m_arguments
CommandInterpreter & GetCommandInterpreter()
CommandInterpreter & m_interpreter
virtual void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector)
The default version handles argument definitions that have only one argument type,...
virtual llvm::StringRef GetSyntax()
void AppendMessage(llvm::StringRef in_string)
void void AppendError(llvm::StringRef in_string)
void SetStatus(lldb::ReturnStatus status)
void AppendErrorWithFormat(const char *format,...) __attribute__((format(printf
void AppendMessageWithFormat(const char *format,...) __attribute__((format(printf
void void AppendMessageWithFormatv(const char *format, Args &&...args)
void void AppendWarning(llvm::StringRef in_string)
void AppendErrorWithFormatv(const char *format, Args &&...args)
uint32_t FindLineEntry(uint32_t start_idx, uint32_t line, const FileSpec *file_spec_ptr, bool exact, LineEntry *line_entry)
Find the line entry by line and optional inlined file spec.
LineTable * GetLineTable()
Get the line table for the compile unit.
"lldb/Utility/ArgCompletionRequest.h"
void SetUnwindOnError(bool unwind=false)
Definition Target.h:373
void SetUseDynamic(lldb::DynamicValueType dynamic=lldb::eDynamicCanRunTarget)
Definition Target.h:388
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
const lldb::TargetSP & GetTargetSP() const
Get accessor to get the target shared pointer.
const lldb::ProcessSP & GetProcessSP() const
Get accessor to get the process shared pointer.
Process & GetProcessRef() const
Returns a reference to the process object.
const lldb::ThreadSP & GetThreadSP() const
Get accessor to get the thread shared pointer.
A file collection class.
A file utility class.
Definition FileSpec.h:57
@ eOpenOptionWriteOnly
Definition File.h:52
@ eOpenOptionCanCreate
Definition File.h:56
@ eOpenOptionTruncate
Definition File.h:57
bool GetRangeContainingLoadAddress(lldb::addr_t load_addr, Target &target, AddressRange &range)
Definition Function.h:455
AddressRanges GetAddressRanges()
Definition Function.h:448
A line table class.
Definition LineTable.h:25
std::pair< uint32_t, uint32_t > GetLineEntryIndexRange(const AddressRange &range) const
Returns the (half-open) range of line entry indexes which overlap the given address range.
A command line option parsing protocol class.
Definition Options.h:58
std::vector< Option > m_getopt_table
Definition Options.h:198
static llvm::SmallVector< TraceExporterCallbacks > GetTraceExporterCallbacks()
A plug-in interface definition class for debugging a process.
Definition Process.h:354
lldb::pid_t GetID() const
Returns the pid of the process or LLDB_INVALID_PROCESS_ID if there is no known pid.
Definition Process.h:537
ThreadList & GetThreadList()
Definition Process.h:2269
Status Resume()
Resumes all of a process's threads as configured using the Thread run control functions.
Definition Process.cpp:1302
void PruneThreadPlans()
Prune ThreadPlanStacks for all unreported threads.
Definition Process.cpp:1196
bool PruneThreadPlansForTID(lldb::tid_t tid)
Prune ThreadPlanStacks for unreported threads.
Definition Process.cpp:1192
virtual SystemRuntime * GetSystemRuntime()
Get the system runtime plug-in for this process.
Definition Process.cpp:2932
bool DumpThreadPlansForTID(Stream &strm, lldb::tid_t tid, lldb::DescriptionLevel desc_level, bool internal, bool condense_trivial, bool skip_unreported_plans)
Dump the thread plans associated with thread with tid.
Definition Process.cpp:1200
Status ResumeSynchronous(Stream *stream)
Resume a process, and wait for it to stop.
Definition Process.cpp:1319
size_t GetThreadStatus(Stream &ostrm, bool only_threads_with_stop_reason, uint32_t start_frame, uint32_t num_frames, uint32_t num_frames_with_source, bool stop_format)
Definition Process.cpp:5913
lldb::StateType GetState()
Get accessor for the current process state.
Definition Process.cpp:1252
void GetStatus(Stream &ostrm)
Definition Process.cpp:5893
uint32_t GetIOHandlerID() const
Definition Process.h:2331
void SyncIOHandler(uint32_t iohandler_id, const Timeout< std::micro > &timeout)
Waits for the process state to be running within a given msec timeout.
Definition Process.cpp:641
uint32_t FindEntryIndexThatContains(B addr) const
Definition RangeMap.h:316
BaseType GetMaxRangeEnd(BaseType fail_value) const
Definition RangeMap.h:272
void Append(const Entry &entry)
Definition RangeMap.h:179
BaseType GetMinRangeBase(BaseType fail_value) const
Definition RangeMap.h:261
Process * GetProcess()
Definition Runtime.h:22
This base class provides an interface to stack frames.
Definition StackFrame.h:44
virtual const SymbolContext & GetSymbolContext(lldb::SymbolContextItem resolve_scope)
Provide a SymbolContext for this StackFrame's current pc value.
virtual bool HasDebugInformation()
Determine whether this StackFrame has debug information available or not.
virtual const Address & GetFrameCodeAddress()
Get an Address for the current pc value in this StackFrame.
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:293
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
Definition Stream.h:28
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition Stream.cpp:134
size_t PutChar(char ch)
Definition Stream.cpp:131
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.
Block * block
The Block 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.
virtual const std::vector< ConstString > & GetExtendedBacktraceTypes()
Return a list of thread origin extended backtraces that may be available.
lldb::ExpressionResults EvaluateExpression(llvm::StringRef expression, ExecutionContextScope *exe_scope, lldb::ValueObjectSP &result_valobj_sp, const EvaluateExpressionOptions &options=EvaluateExpressionOptions(), std::string *fixed_expression=nullptr, ValueObject *ctx_obj=nullptr)
Definition Target.cpp:2845
uint32_t GetSize(bool can_update=true)
bool SetSelectedThreadByID(lldb::tid_t tid, bool notify=false)
lldb::ThreadSP FindThreadByIndexID(uint32_t index_id, bool can_update=true)
lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update=true)
std::recursive_mutex & GetMutex() const override
lldb::ThreadSP FindThreadByID(lldb::tid_t tid, bool can_update=true)
Class used to dump the instructions of a TraceCursor using its current state and granularity.
Definition TraceDumper.h:51
std::optional< lldb::user_id_t > DumpInstructions(size_t count)
Dump count instructions of the thread trace starting at the current cursor position.
void DumpFunctionCalls()
Dump all function calls forwards chronologically and hierarchically.
A plug-in interface definition class for trace information.
Definition Trace.h:48
virtual lldb::CommandObjectSP GetThreadTraceStartCommand(CommandInterpreter &interpreter)=0
Get the command handle for the "thread trace start" command.
#define LLDB_OPT_SET_1
#define LLDB_OPT_SET_2
#define LLDB_INVALID_LINE_NUMBER
#define LLDB_INVALID_THREAD_ID
#define LLDB_INVALID_INDEX32
#define LLDB_OPT_SET_ALL
#define LLDB_INVALID_ADDRESS
#define UINT32_MAX
#define LLDB_INVALID_FRAME_ID
@ DoNoSelectMostRelevantFrame
A class that represents a running process on the host machine.
std::vector< OptionArgElement > OptionElementVector
Definition Options.h:43
const char * StateAsCString(lldb::StateType state)
Converts a StateType to a C string.
Definition State.cpp:14
std::string toString(FormatterBytecode::OpCodes op)
@ eStepTypeTraceOver
Single step one instruction, stepping over.
@ eStepTypeOut
Single step out a specified context.
@ eStepTypeScripted
A step type implemented by the script interpreter.
@ eStepTypeInto
Single step into a specified context.
@ eStepTypeOver
Single step over a specified context.
@ eStepTypeTrace
Single step one instruction.
@ eThreadIndexCompletion
std::shared_ptr< lldb_private::Trace > TraceSP
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
@ eDescriptionLevelFull
@ eDescriptionLevelVerbose
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::CommandObject > CommandObjectSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
StateType
Process and Thread States.
@ eStateStopped
Process or thread is stopped and can be examined.
@ 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.
@ eStateCrashed
Process or thread has crashed and can be examined.
ExpressionResults
The results of expression evaluation.
@ eExpressionCompleted
@ eExpressionSetupError
std::shared_ptr< lldb_private::Process > ProcessSP
@ eReturnStatusSuccessContinuingNoResult
@ eReturnStatusSuccessFinishResult
@ eReturnStatusSuccessFinishNoResult
@ eArgTypeThreadIndex
@ eArgTypeUnsignedInteger
@ eTraceCursorSeekTypeEnd
The end of the trace, i.e the most recent item.
std::shared_ptr< lldb_private::TraceCursor > TraceCursorSP
uint64_t addr_t
Definition lldb-types.h:80
std::shared_ptr< lldb_private::Target > TargetSP
RunMode
Thread Run Modes.
@ eOnlyDuringStepping
uint64_t tid_t
Definition lldb-types.h:84
Used to build individual command argument lists.
uint32_t arg_opt_set_association
This arg might be associated only with some particular option set(s).
A line table entry class.
Definition LineEntry.h:21
AddressRange range
The section offset address range for this line entry.
Definition LineEntry.h:137
uint32_t line
The source line number, or LLDB_INVALID_LINE_NUMBER if there is no line number information.
Definition LineEntry.h:151
const FileSpec & GetFile() const
Helper to access the file.
Definition LineEntry.h:134
static int64_t ToOptionEnum(llvm::StringRef s, const OptionEnumValues &enum_values, int32_t fail_value, Status &error)
static lldb::addr_t ToAddress(const ExecutionContext *exe_ctx, llvm::StringRef s, lldb::addr_t fail_value, Status *error_ptr)
Try to parse an address.
static bool ToBoolean(llvm::StringRef s, bool fail_value, bool *success_ptr)
Class that holds the configuration used by TraceDumper for traversing and dumping instructions.
Definition TraceDumper.h:21
lldb::user_id_t GetID() const
Get accessor for the user ID.
Definition UserID.h:47