blob: a9a277e7841857f9f1b02512a7776a9ec05b7217 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- CommandObjectThread.cpp ---------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "CommandObjectThread.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016#include "lldb/Core/SourceManager.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000017#include "lldb/Core/State.h"
Zachary Turnera78bd7f2015-03-03 23:11:11 +000018#include "lldb/Core/ValueObject.h"
Greg Clayton7fb56d02011-02-01 01:31:41 +000019#include "lldb/Host/Host.h"
Zachary Turner3eb2b442017-03-22 23:33:16 +000020#include "lldb/Host/OptionParser.h"
Vince Harron5275aaa2015-01-15 20:08:35 +000021#include "lldb/Host/StringConvert.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000022#include "lldb/Interpreter/CommandInterpreter.h"
23#include "lldb/Interpreter/CommandReturnObject.h"
Pavel Labath47cbf4a2018-04-10 09:03:59 +000024#include "lldb/Interpreter/OptionArgParser.h"
Greg Clayton1f746072012-08-29 21:13:06 +000025#include "lldb/Interpreter/Options.h"
26#include "lldb/Symbol/CompileUnit.h"
27#include "lldb/Symbol/Function.h"
Greg Clayton1f746072012-08-29 21:13:06 +000028#include "lldb/Symbol/LineEntry.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000029#include "lldb/Symbol/LineTable.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000030#include "lldb/Target/Process.h"
31#include "lldb/Target/RegisterContext.h"
Jason Molenda750ea692013-11-12 07:02:07 +000032#include "lldb/Target/SystemRuntime.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000033#include "lldb/Target/Target.h"
34#include "lldb/Target/Thread.h"
35#include "lldb/Target/ThreadPlan.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000036#include "lldb/Target/ThreadPlanStepInRange.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037#include "lldb/Target/ThreadPlanStepInstruction.h"
38#include "lldb/Target/ThreadPlanStepOut.h"
39#include "lldb/Target/ThreadPlanStepRange.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000040#include "lldb/lldb-private.h"
Greg Clayton1f746072012-08-29 21:13:06 +000041
Chris Lattner30fdc8d2010-06-08 16:52:24 +000042using namespace lldb;
43using namespace lldb_private;
44
Chris Lattner30fdc8d2010-06-08 16:52:24 +000045//-------------------------------------------------------------------------
Pavel Labath7f1c1212017-06-12 16:25:24 +000046// CommandObjectIterateOverThreads
Chris Lattner30fdc8d2010-06-08 16:52:24 +000047//-------------------------------------------------------------------------
48
Kate Stoneb9c1b512016-09-06 20:57:50 +000049class CommandObjectIterateOverThreads : public CommandObjectParsed {
Pavel Labath7f1c1212017-06-12 16:25:24 +000050
51 class UniqueStack {
52
53 public:
54 UniqueStack(std::stack<lldb::addr_t> stack_frames, uint32_t thread_index_id)
55 : m_stack_frames(stack_frames) {
56 m_thread_index_ids.push_back(thread_index_id);
57 }
58
59 void AddThread(uint32_t thread_index_id) const {
60 m_thread_index_ids.push_back(thread_index_id);
61 }
62
63 const std::vector<uint32_t> &GetUniqueThreadIndexIDs() const {
64 return m_thread_index_ids;
65 }
66
67 lldb::tid_t GetRepresentativeThread() const {
68 return m_thread_index_ids.front();
69 }
70
71 friend bool inline operator<(const UniqueStack &lhs,
72 const UniqueStack &rhs) {
73 return lhs.m_stack_frames < rhs.m_stack_frames;
74 }
75
76 protected:
77 // Mark the thread index as mutable, as we don't care about it from a const
78 // perspective, we only care about m_stack_frames so we keep our std::set
79 // sorted.
80 mutable std::vector<uint32_t> m_thread_index_ids;
81 std::stack<lldb::addr_t> m_stack_frames;
82 };
83
Jim Ingham2bdbfd52014-09-29 23:17:18 +000084public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000085 CommandObjectIterateOverThreads(CommandInterpreter &interpreter,
86 const char *name, const char *help,
87 const char *syntax, uint32_t flags)
88 : CommandObjectParsed(interpreter, name, help, syntax, flags) {}
89
90 ~CommandObjectIterateOverThreads() override = default;
91
92 bool DoExecute(Args &command, CommandReturnObject &result) override {
93 result.SetStatus(m_success_return);
94
Pavel Labath7f1c1212017-06-12 16:25:24 +000095 bool all_threads = false;
Kate Stoneb9c1b512016-09-06 20:57:50 +000096 if (command.GetArgumentCount() == 0) {
97 Thread *thread = m_exe_ctx.GetThreadPtr();
Adrian McCarthy3887ba82017-09-19 18:07:33 +000098 if (!thread || !HandleOneThread(thread->GetID(), result))
Kate Stoneb9c1b512016-09-06 20:57:50 +000099 return false;
100 return result.Succeeded();
Pavel Labath7f1c1212017-06-12 16:25:24 +0000101 } else if (command.GetArgumentCount() == 1) {
102 all_threads = ::strcmp(command.GetArgumentAtIndex(0), "all") == 0;
103 m_unique_stacks = ::strcmp(command.GetArgumentAtIndex(0), "unique") == 0;
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000104 }
105
Kate Stoneb9c1b512016-09-06 20:57:50 +0000106 // Use tids instead of ThreadSPs to prevent deadlocking problems which
Adrian Prantl05097242018-04-30 16:49:04 +0000107 // result from JIT-ing code while iterating over the (locked) ThreadSP
108 // list.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000109 std::vector<lldb::tid_t> tids;
Bruce Mitchener13d21e92015-10-07 16:56:17 +0000110
Pavel Labath7f1c1212017-06-12 16:25:24 +0000111 if (all_threads || m_unique_stacks) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000112 Process *process = m_exe_ctx.GetProcessPtr();
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000113
Kate Stoneb9c1b512016-09-06 20:57:50 +0000114 for (ThreadSP thread_sp : process->Threads())
115 tids.push_back(thread_sp->GetID());
116 } else {
117 const size_t num_args = command.GetArgumentCount();
118 Process *process = m_exe_ctx.GetProcessPtr();
119
120 std::lock_guard<std::recursive_mutex> guard(
121 process->GetThreadList().GetMutex());
122
123 for (size_t i = 0; i < num_args; i++) {
124 bool success;
125
126 uint32_t thread_idx = StringConvert::ToUInt32(
127 command.GetArgumentAtIndex(i), 0, 0, &success);
128 if (!success) {
129 result.AppendErrorWithFormat("invalid thread specification: \"%s\"\n",
130 command.GetArgumentAtIndex(i));
131 result.SetStatus(eReturnStatusFailed);
132 return false;
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000133 }
Stephane Sezerf8104912016-03-17 18:52:41 +0000134
Kate Stoneb9c1b512016-09-06 20:57:50 +0000135 ThreadSP thread =
136 process->GetThreadList().FindThreadByIndexID(thread_idx);
Stephane Sezerf8104912016-03-17 18:52:41 +0000137
Kate Stoneb9c1b512016-09-06 20:57:50 +0000138 if (!thread) {
139 result.AppendErrorWithFormat("no thread with index: \"%s\"\n",
140 command.GetArgumentAtIndex(i));
141 result.SetStatus(eReturnStatusFailed);
142 return false;
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000143 }
Stephane Sezerf8104912016-03-17 18:52:41 +0000144
Kate Stoneb9c1b512016-09-06 20:57:50 +0000145 tids.push_back(thread->GetID());
146 }
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000147 }
148
Pavel Labath7f1c1212017-06-12 16:25:24 +0000149 if (m_unique_stacks) {
150 // Iterate over threads, finding unique stack buckets.
151 std::set<UniqueStack> unique_stacks;
152 for (const lldb::tid_t &tid : tids) {
153 if (!BucketThread(tid, unique_stacks, result)) {
154 return false;
155 }
156 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000157
Pavel Labath7f1c1212017-06-12 16:25:24 +0000158 // Write the thread id's and unique call stacks to the output stream
159 Stream &strm = result.GetOutputStream();
160 Process *process = m_exe_ctx.GetProcessPtr();
161 for (const UniqueStack &stack : unique_stacks) {
162 // List the common thread ID's
163 const std::vector<uint32_t> &thread_index_ids =
164 stack.GetUniqueThreadIndexIDs();
Pavel Labathef7aff52017-07-05 14:54:46 +0000165 strm.Format("{0} thread(s) ", thread_index_ids.size());
Pavel Labath7f1c1212017-06-12 16:25:24 +0000166 for (const uint32_t &thread_index_id : thread_index_ids) {
Pavel Labathef7aff52017-07-05 14:54:46 +0000167 strm.Format("#{0} ", thread_index_id);
Pavel Labath7f1c1212017-06-12 16:25:24 +0000168 }
169 strm.EOL();
Kate Stoneb9c1b512016-09-06 20:57:50 +0000170
Pavel Labath7f1c1212017-06-12 16:25:24 +0000171 // List the shared call stack for this set of threads
172 uint32_t representative_thread_id = stack.GetRepresentativeThread();
173 ThreadSP thread = process->GetThreadList().FindThreadByIndexID(
174 representative_thread_id);
175 if (!HandleOneThread(thread->GetID(), result)) {
176 return false;
177 }
178 }
179 } else {
180 uint32_t idx = 0;
181 for (const lldb::tid_t &tid : tids) {
182 if (idx != 0 && m_add_return)
183 result.AppendMessage("");
184
185 if (!HandleOneThread(tid, result))
186 return false;
187
188 ++idx;
189 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000190 }
191 return result.Succeeded();
192 }
193
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000194protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000195 // Override this to do whatever you need to do for one thread.
196 //
197 // If you return false, the iteration will stop, otherwise it will proceed.
198 // The result is set to m_success_return (defaults to
Adrian Prantl05097242018-04-30 16:49:04 +0000199 // eReturnStatusSuccessFinishResult) before the iteration, so you only need
200 // to set the return status in HandleOneThread if you want to indicate an
201 // error. If m_add_return is true, a blank line will be inserted between each
202 // of the listings (except the last one.)
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000203
Kate Stoneb9c1b512016-09-06 20:57:50 +0000204 virtual bool HandleOneThread(lldb::tid_t, CommandReturnObject &result) = 0;
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000205
Pavel Labath7f1c1212017-06-12 16:25:24 +0000206 bool BucketThread(lldb::tid_t tid, std::set<UniqueStack> &unique_stacks,
207 CommandReturnObject &result) {
208 // Grab the corresponding thread for the given thread id.
209 Process *process = m_exe_ctx.GetProcessPtr();
210 Thread *thread = process->GetThreadList().FindThreadByID(tid).get();
211 if (thread == nullptr) {
Pavel Labathef7aff52017-07-05 14:54:46 +0000212 result.AppendErrorWithFormatv("Failed to process thread #{0}.\n", tid);
Pavel Labath7f1c1212017-06-12 16:25:24 +0000213 result.SetStatus(eReturnStatusFailed);
214 return false;
215 }
216
217 // Collect the each frame's address for this call-stack
218 std::stack<lldb::addr_t> stack_frames;
219 const uint32_t frame_count = thread->GetStackFrameCount();
220 for (uint32_t frame_index = 0; frame_index < frame_count; frame_index++) {
221 const lldb::StackFrameSP frame_sp =
222 thread->GetStackFrameAtIndex(frame_index);
223 const lldb::addr_t pc = frame_sp->GetStackID().GetPC();
224 stack_frames.push(pc);
225 }
226
227 uint32_t thread_index_id = thread->GetIndexID();
228 UniqueStack new_unique_stack(stack_frames, thread_index_id);
229
230 // Try to match the threads stack to and existing entry.
231 std::set<UniqueStack>::iterator matching_stack =
232 unique_stacks.find(new_unique_stack);
233 if (matching_stack != unique_stacks.end()) {
234 matching_stack->AddThread(thread_index_id);
235 } else {
236 unique_stacks.insert(new_unique_stack);
237 }
238 return true;
239 }
240
Kate Stoneb9c1b512016-09-06 20:57:50 +0000241 ReturnStatus m_success_return = eReturnStatusSuccessFinishResult;
Pavel Labath7f1c1212017-06-12 16:25:24 +0000242 bool m_unique_stacks = false;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000243 bool m_add_return = true;
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000244};
245
246//-------------------------------------------------------------------------
247// CommandObjectThreadBacktrace
248//-------------------------------------------------------------------------
249
Zachary Turner1f0f5b52016-09-22 20:22:55 +0000250static OptionDefinition g_thread_backtrace_options[] = {
251 // clang-format off
252 { LLDB_OPT_SET_1, false, "count", 'c', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeCount, "How many frames to display (-1 for all)" },
253 { LLDB_OPT_SET_1, false, "start", 's', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeFrameIndex, "Frame in which to start the backtrace" },
254 { LLDB_OPT_SET_1, false, "extended", 'e', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeBoolean, "Show the extended backtrace, if available" }
255 // clang-format on
256};
257
Kate Stoneb9c1b512016-09-06 20:57:50 +0000258class CommandObjectThreadBacktrace : public CommandObjectIterateOverThreads {
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000259public:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000260 class CommandOptions : public Options {
261 public:
262 CommandOptions() : Options() {
263 // Keep default values of all options in one place: OptionParsingStarting
264 // ()
265 OptionParsingStarting(nullptr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000266 }
267
Kate Stoneb9c1b512016-09-06 20:57:50 +0000268 ~CommandOptions() override = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000269
Zachary Turner97206d52017-05-12 04:51:55 +0000270 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
271 ExecutionContext *execution_context) override {
272 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000273 const int short_option = m_getopt_table[option_idx].val;
274
275 switch (short_option) {
276 case 'c': {
Zachary Turnerfe114832016-11-12 16:56:47 +0000277 int32_t input_count = 0;
278 if (option_arg.getAsInteger(0, m_count)) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000279 m_count = UINT32_MAX;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000280 error.SetErrorStringWithFormat(
281 "invalid integer value for option '%c'", short_option);
Zachary Turnerfe114832016-11-12 16:56:47 +0000282 } else if (input_count < 0)
283 m_count = UINT32_MAX;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000284 } break;
Zachary Turnerfe114832016-11-12 16:56:47 +0000285 case 's':
286 if (option_arg.getAsInteger(0, m_start))
287 error.SetErrorStringWithFormat(
288 "invalid integer value for option '%c'", short_option);
289 break;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000290 case 'e': {
291 bool success;
292 m_extended_backtrace =
Pavel Labath47cbf4a2018-04-10 09:03:59 +0000293 OptionArgParser::ToBoolean(option_arg, false, &success);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000294 if (!success)
295 error.SetErrorStringWithFormat(
296 "invalid boolean value for option '%c'", short_option);
297 } break;
298 default:
299 error.SetErrorStringWithFormat("invalid short option character '%c'",
300 short_option);
301 break;
302 }
303 return error;
Jim Inghame2e0b452010-08-26 23:36:03 +0000304 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000305
Kate Stoneb9c1b512016-09-06 20:57:50 +0000306 void OptionParsingStarting(ExecutionContext *execution_context) override {
307 m_count = UINT32_MAX;
308 m_start = 0;
309 m_extended_backtrace = false;
310 }
311
Zachary Turner1f0f5b52016-09-22 20:22:55 +0000312 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
Zachary Turner70602432016-09-22 21:06:13 +0000313 return llvm::makeArrayRef(g_thread_backtrace_options);
Zachary Turner1f0f5b52016-09-22 20:22:55 +0000314 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000315
316 // Instance variables to hold the values for command options.
317 uint32_t m_count;
318 uint32_t m_start;
319 bool m_extended_backtrace;
320 };
321
322 CommandObjectThreadBacktrace(CommandInterpreter &interpreter)
323 : CommandObjectIterateOverThreads(
324 interpreter, "thread backtrace",
325 "Show thread call stacks. Defaults to the current thread, thread "
Pavel Labath7f1c1212017-06-12 16:25:24 +0000326 "indexes can be specified as arguments.\n"
327 "Use the thread-index \"all\" to see all threads.\n"
328 "Use the thread-index \"unique\" to see threads grouped by unique "
329 "call stacks.",
Kate Stoneb9c1b512016-09-06 20:57:50 +0000330 nullptr,
331 eCommandRequiresProcess | eCommandRequiresThread |
332 eCommandTryTargetAPILock | eCommandProcessMustBeLaunched |
333 eCommandProcessMustBePaused),
334 m_options() {}
335
336 ~CommandObjectThreadBacktrace() override = default;
337
338 Options *GetOptions() override { return &m_options; }
339
Jim Ingham5a988412012-06-08 21:56:10 +0000340protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000341 void DoExtendedBacktrace(Thread *thread, CommandReturnObject &result) {
342 SystemRuntime *runtime = thread->GetProcess()->GetSystemRuntime();
343 if (runtime) {
344 Stream &strm = result.GetOutputStream();
345 const std::vector<ConstString> &types =
346 runtime->GetExtendedBacktraceTypes();
347 for (auto type : types) {
348 ThreadSP ext_thread_sp = runtime->GetExtendedBacktraceThread(
349 thread->shared_from_this(), type);
350 if (ext_thread_sp && ext_thread_sp->IsValid()) {
351 const uint32_t num_frames_with_source = 0;
Jim Ingham6a9767c2016-11-08 20:36:40 +0000352 const bool stop_format = false;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000353 if (ext_thread_sp->GetStatus(strm, m_options.m_start,
354 m_options.m_count,
Jim Ingham6a9767c2016-11-08 20:36:40 +0000355 num_frames_with_source,
356 stop_format)) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000357 DoExtendedBacktrace(ext_thread_sp.get(), result);
358 }
Jason Molenda750ea692013-11-12 07:02:07 +0000359 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000360 }
361 }
362 }
363
364 bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override {
365 ThreadSP thread_sp =
366 m_exe_ctx.GetProcessPtr()->GetThreadList().FindThreadByID(tid);
367 if (!thread_sp) {
368 result.AppendErrorWithFormat(
369 "thread disappeared while computing backtraces: 0x%" PRIx64 "\n",
370 tid);
371 result.SetStatus(eReturnStatusFailed);
372 return false;
Jason Molenda750ea692013-11-12 07:02:07 +0000373 }
374
Kate Stoneb9c1b512016-09-06 20:57:50 +0000375 Thread *thread = thread_sp.get();
Stephane Sezerf8104912016-03-17 18:52:41 +0000376
Kate Stoneb9c1b512016-09-06 20:57:50 +0000377 Stream &strm = result.GetOutputStream();
Stephane Sezerf8104912016-03-17 18:52:41 +0000378
Pavel Labath7f1c1212017-06-12 16:25:24 +0000379 // Only dump stack info if we processing unique stacks.
380 const bool only_stacks = m_unique_stacks;
381
Kate Stoneb9c1b512016-09-06 20:57:50 +0000382 // Don't show source context when doing backtraces.
383 const uint32_t num_frames_with_source = 0;
Jim Ingham4f243e82016-11-08 23:43:36 +0000384 const bool stop_format = true;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000385 if (!thread->GetStatus(strm, m_options.m_start, m_options.m_count,
Pavel Labath7f1c1212017-06-12 16:25:24 +0000386 num_frames_with_source, stop_format, only_stacks)) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000387 result.AppendErrorWithFormat(
388 "error displaying backtrace for thread: \"0x%4.4x\"\n",
389 thread->GetIndexID());
390 result.SetStatus(eReturnStatusFailed);
391 return false;
392 }
393 if (m_options.m_extended_backtrace) {
394 DoExtendedBacktrace(thread, result);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000395 }
Jim Ingham5a988412012-06-08 21:56:10 +0000396
Kate Stoneb9c1b512016-09-06 20:57:50 +0000397 return true;
398 }
399
400 CommandOptions m_options;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000401};
402
Kate Stoneb9c1b512016-09-06 20:57:50 +0000403enum StepScope { eStepScopeSource, eStepScopeInstruction };
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000404
Zachary Turner1f0f5b52016-09-22 20:22:55 +0000405static OptionEnumValueElement g_tri_running_mode[] = {
406 {eOnlyThisThread, "this-thread", "Run only this thread"},
407 {eAllThreads, "all-threads", "Run all threads"},
408 {eOnlyDuringStepping, "while-stepping",
409 "Run only this thread while stepping"},
410 {0, nullptr, nullptr}};
411
412static OptionEnumValueElement g_duo_running_mode[] = {
413 {eOnlyThisThread, "this-thread", "Run only this thread"},
414 {eAllThreads, "all-threads", "Run all threads"},
415 {0, nullptr, nullptr}};
416
417static OptionDefinition g_thread_step_scope_options[] = {
418 // clang-format off
419 { LLDB_OPT_SET_1, false, "step-in-avoids-no-debug", 'a', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeBoolean, "A boolean value that sets whether stepping into functions will step over functions with no debug information." },
420 { LLDB_OPT_SET_1, false, "step-out-avoids-no-debug", 'A', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeBoolean, "A boolean value, if true stepping out of functions will continue to step out till it hits a function with debug information." },
421 { LLDB_OPT_SET_1, false, "count", 'c', OptionParser::eRequiredArgument, nullptr, nullptr, 1, eArgTypeCount, "How many times to perform the stepping operation - currently only supported for step-inst and next-inst." },
422 { LLDB_OPT_SET_1, false, "end-linenumber", 'e', OptionParser::eRequiredArgument, nullptr, nullptr, 1, eArgTypeLineNum, "The line at which to stop stepping - defaults to the next line and only supported for step-in and step-over. You can also pass the string 'block' to step to the end of the current block. This is particularly useful in conjunction with --step-target to step through a complex calling sequence." },
423 { LLDB_OPT_SET_1, false, "run-mode", 'm', OptionParser::eRequiredArgument, nullptr, g_tri_running_mode, 0, eArgTypeRunMode, "Determine how to run other threads while stepping the current thread." },
424 { LLDB_OPT_SET_1, false, "step-over-regexp", 'r', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeRegularExpression, "A regular expression that defines function names to not to stop at when stepping in." },
425 { LLDB_OPT_SET_1, false, "step-in-target", 't', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeFunctionName, "The name of the directly called function step in should stop at when stepping into." },
426 { LLDB_OPT_SET_2, false, "python-class", 'C', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypePythonClass, "The name of the class that will manage this step - only supported for Scripted Step." }
427 // clang-format on
428};
429
Kate Stoneb9c1b512016-09-06 20:57:50 +0000430class CommandObjectThreadStepWithTypeAndScope : public CommandObjectParsed {
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000431public:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000432 class CommandOptions : public Options {
433 public:
434 CommandOptions() : Options() {
435 // Keep default values of all options in one place: OptionParsingStarting
436 // ()
437 OptionParsingStarting(nullptr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000438 }
439
Kate Stoneb9c1b512016-09-06 20:57:50 +0000440 ~CommandOptions() override = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000441
Zachary Turner97206d52017-05-12 04:51:55 +0000442 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
443 ExecutionContext *execution_context) override {
444 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000445 const int short_option = m_getopt_table[option_idx].val;
446
447 switch (short_option) {
448 case 'a': {
449 bool success;
Pavel Labath47cbf4a2018-04-10 09:03:59 +0000450 bool avoid_no_debug =
451 OptionArgParser::ToBoolean(option_arg, true, &success);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000452 if (!success)
453 error.SetErrorStringWithFormat(
454 "invalid boolean value for option '%c'", short_option);
455 else {
456 m_step_in_avoid_no_debug =
457 avoid_no_debug ? eLazyBoolYes : eLazyBoolNo;
458 }
459 } break;
460
461 case 'A': {
462 bool success;
Pavel Labath47cbf4a2018-04-10 09:03:59 +0000463 bool avoid_no_debug =
464 OptionArgParser::ToBoolean(option_arg, true, &success);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000465 if (!success)
466 error.SetErrorStringWithFormat(
467 "invalid boolean value for option '%c'", short_option);
468 else {
469 m_step_out_avoid_no_debug =
470 avoid_no_debug ? eLazyBoolYes : eLazyBoolNo;
471 }
472 } break;
473
474 case 'c':
Zachary Turnerfe114832016-11-12 16:56:47 +0000475 if (option_arg.getAsInteger(0, m_step_count))
476 error.SetErrorStringWithFormat("invalid step count '%s'",
477 option_arg.str().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000478 break;
479
480 case 'C':
481 m_class_name.clear();
482 m_class_name.assign(option_arg);
483 break;
484
485 case 'm': {
486 OptionEnumValueElement *enum_values =
Zachary Turner1f0f5b52016-09-22 20:22:55 +0000487 GetDefinitions()[option_idx].enum_values;
Pavel Labath47cbf4a2018-04-10 09:03:59 +0000488 m_run_mode = (lldb::RunMode)OptionArgParser::ToOptionEnum(
Zachary Turnerfe114832016-11-12 16:56:47 +0000489 option_arg, enum_values, eOnlyDuringStepping, error);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000490 } break;
491
Zachary Turnerfe114832016-11-12 16:56:47 +0000492 case 'e':
493 if (option_arg == "block") {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000494 m_end_line_is_block_end = 1;
495 break;
496 }
Zachary Turnerfe114832016-11-12 16:56:47 +0000497 if (option_arg.getAsInteger(0, m_end_line))
Kate Stoneb9c1b512016-09-06 20:57:50 +0000498 error.SetErrorStringWithFormat("invalid end line number '%s'",
Zachary Turnerfe114832016-11-12 16:56:47 +0000499 option_arg.str().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000500 break;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000501
502 case 'r':
503 m_avoid_regexp.clear();
504 m_avoid_regexp.assign(option_arg);
505 break;
506
507 case 't':
508 m_step_in_target.clear();
509 m_step_in_target.assign(option_arg);
510 break;
511
512 default:
513 error.SetErrorStringWithFormat("invalid short option character '%c'",
514 short_option);
515 break;
516 }
517 return error;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000518 }
519
Kate Stoneb9c1b512016-09-06 20:57:50 +0000520 void OptionParsingStarting(ExecutionContext *execution_context) override {
521 m_step_in_avoid_no_debug = eLazyBoolCalculate;
522 m_step_out_avoid_no_debug = eLazyBoolCalculate;
523 m_run_mode = eOnlyDuringStepping;
524
525 // Check if we are in Non-Stop mode
526 TargetSP target_sp =
527 execution_context ? execution_context->GetTargetSP() : TargetSP();
528 if (target_sp && target_sp->GetNonStopModeEnabled())
529 m_run_mode = eOnlyThisThread;
530
531 m_avoid_regexp.clear();
532 m_step_in_target.clear();
533 m_class_name.clear();
534 m_step_count = 1;
535 m_end_line = LLDB_INVALID_LINE_NUMBER;
536 m_end_line_is_block_end = false;
537 }
538
Zachary Turner1f0f5b52016-09-22 20:22:55 +0000539 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
Zachary Turner70602432016-09-22 21:06:13 +0000540 return llvm::makeArrayRef(g_thread_step_scope_options);
Zachary Turner1f0f5b52016-09-22 20:22:55 +0000541 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000542
543 // Instance variables to hold the values for command options.
544 LazyBool m_step_in_avoid_no_debug;
545 LazyBool m_step_out_avoid_no_debug;
546 RunMode m_run_mode;
547 std::string m_avoid_regexp;
548 std::string m_step_in_target;
549 std::string m_class_name;
550 uint32_t m_step_count;
551 uint32_t m_end_line;
552 bool m_end_line_is_block_end;
553 };
554
555 CommandObjectThreadStepWithTypeAndScope(CommandInterpreter &interpreter,
556 const char *name, const char *help,
557 const char *syntax,
558 StepType step_type,
559 StepScope step_scope)
560 : CommandObjectParsed(interpreter, name, help, syntax,
561 eCommandRequiresProcess | eCommandRequiresThread |
562 eCommandTryTargetAPILock |
563 eCommandProcessMustBeLaunched |
564 eCommandProcessMustBePaused),
565 m_step_type(step_type), m_step_scope(step_scope), m_options() {
566 CommandArgumentEntry arg;
567 CommandArgumentData thread_id_arg;
568
569 // Define the first (and only) variant of this arg.
570 thread_id_arg.arg_type = eArgTypeThreadID;
571 thread_id_arg.arg_repetition = eArgRepeatOptional;
572
573 // There is only one variant this argument could be; put it into the
574 // argument entry.
575 arg.push_back(thread_id_arg);
576
577 // Push the data for the first argument into the m_arguments vector.
578 m_arguments.push_back(arg);
579 }
580
581 ~CommandObjectThreadStepWithTypeAndScope() override = default;
582
583 Options *GetOptions() override { return &m_options; }
584
Jim Ingham5a988412012-06-08 21:56:10 +0000585protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000586 bool DoExecute(Args &command, CommandReturnObject &result) override {
587 Process *process = m_exe_ctx.GetProcessPtr();
588 bool synchronous_execution = m_interpreter.GetSynchronous();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000589
Kate Stoneb9c1b512016-09-06 20:57:50 +0000590 const uint32_t num_threads = process->GetThreadList().GetSize();
591 Thread *thread = nullptr;
Greg Claytonf9fc6092013-01-09 19:44:40 +0000592
Kate Stoneb9c1b512016-09-06 20:57:50 +0000593 if (command.GetArgumentCount() == 0) {
594 thread = GetDefaultThread();
Jim Ingham8d94ba02016-03-12 02:45:34 +0000595
Kate Stoneb9c1b512016-09-06 20:57:50 +0000596 if (thread == nullptr) {
597 result.AppendError("no selected thread in process");
598 result.SetStatus(eReturnStatusFailed);
599 return false;
600 }
601 } else {
602 const char *thread_idx_cstr = command.GetArgumentAtIndex(0);
603 uint32_t step_thread_idx =
604 StringConvert::ToUInt32(thread_idx_cstr, LLDB_INVALID_INDEX32);
605 if (step_thread_idx == LLDB_INVALID_INDEX32) {
606 result.AppendErrorWithFormat("invalid thread index '%s'.\n",
607 thread_idx_cstr);
608 result.SetStatus(eReturnStatusFailed);
609 return false;
610 }
611 thread =
612 process->GetThreadList().FindThreadByIndexID(step_thread_idx).get();
613 if (thread == nullptr) {
614 result.AppendErrorWithFormat(
615 "Thread index %u is out of range (valid values are 0 - %u).\n",
616 step_thread_idx, num_threads);
617 result.SetStatus(eReturnStatusFailed);
618 return false;
619 }
620 }
Jim Ingham64e7ead2012-05-03 21:19:36 +0000621
Kate Stoneb9c1b512016-09-06 20:57:50 +0000622 if (m_step_type == eStepTypeScripted) {
623 if (m_options.m_class_name.empty()) {
624 result.AppendErrorWithFormat("empty class name for scripted step.");
625 result.SetStatus(eReturnStatusFailed);
626 return false;
627 } else if (!m_interpreter.GetScriptInterpreter()->CheckObjectExists(
628 m_options.m_class_name.c_str())) {
629 result.AppendErrorWithFormat(
630 "class for scripted step: \"%s\" does not exist.",
631 m_options.m_class_name.c_str());
632 result.SetStatus(eReturnStatusFailed);
633 return false;
634 }
635 }
Jim Ingham2bdbfd52014-09-29 23:17:18 +0000636
Kate Stoneb9c1b512016-09-06 20:57:50 +0000637 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER &&
638 m_step_type != eStepTypeInto) {
639 result.AppendErrorWithFormat(
640 "end line option is only valid for step into");
641 result.SetStatus(eReturnStatusFailed);
642 return false;
643 }
644
645 const bool abort_other_plans = false;
646 const lldb::RunMode stop_other_threads = m_options.m_run_mode;
647
648 // This is a bit unfortunate, but not all the commands in this command
Adrian Prantl05097242018-04-30 16:49:04 +0000649 // object support only while stepping, so I use the bool for them.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000650 bool bool_stop_other_threads;
651 if (m_options.m_run_mode == eAllThreads)
652 bool_stop_other_threads = false;
653 else if (m_options.m_run_mode == eOnlyDuringStepping)
654 bool_stop_other_threads =
655 (m_step_type != eStepTypeOut && m_step_type != eStepTypeScripted);
656 else
657 bool_stop_other_threads = true;
658
659 ThreadPlanSP new_plan_sp;
660
661 if (m_step_type == eStepTypeInto) {
662 StackFrame *frame = thread->GetStackFrameAtIndex(0).get();
663 assert(frame != nullptr);
664
665 if (frame->HasDebugInformation()) {
666 AddressRange range;
667 SymbolContext sc = frame->GetSymbolContext(eSymbolContextEverything);
668 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER) {
Zachary Turner97206d52017-05-12 04:51:55 +0000669 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000670 if (!sc.GetAddressRangeFromHereToEndLine(m_options.m_end_line, range,
671 error)) {
672 result.AppendErrorWithFormat("invalid end-line option: %s.",
673 error.AsCString());
Jim Inghamc17d6bd2016-02-10 03:25:24 +0000674 result.SetStatus(eReturnStatusFailed);
675 return false;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000676 }
677 } else if (m_options.m_end_line_is_block_end) {
Zachary Turner97206d52017-05-12 04:51:55 +0000678 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000679 Block *block = frame->GetSymbolContext(eSymbolContextBlock).block;
680 if (!block) {
681 result.AppendErrorWithFormat("Could not find the current block.");
682 result.SetStatus(eReturnStatusFailed);
Greg Claytonf9fc6092013-01-09 19:44:40 +0000683 return false;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000684 }
685
686 AddressRange block_range;
687 Address pc_address = frame->GetFrameCodeAddress();
688 block->GetRangeContainingAddress(pc_address, block_range);
689 if (!block_range.GetBaseAddress().IsValid()) {
690 result.AppendErrorWithFormat(
691 "Could not find the current block address.");
692 result.SetStatus(eReturnStatusFailed);
693 return false;
694 }
695 lldb::addr_t pc_offset_in_block =
696 pc_address.GetFileAddress() -
697 block_range.GetBaseAddress().GetFileAddress();
698 lldb::addr_t range_length =
699 block_range.GetByteSize() - pc_offset_in_block;
700 range = AddressRange(pc_address, range_length);
701 } else {
702 range = sc.line_entry.range;
Greg Claytonf9fc6092013-01-09 19:44:40 +0000703 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000704
Kate Stoneb9c1b512016-09-06 20:57:50 +0000705 new_plan_sp = thread->QueueThreadPlanForStepInRange(
706 abort_other_plans, range,
707 frame->GetSymbolContext(eSymbolContextEverything),
708 m_options.m_step_in_target.c_str(), stop_other_threads,
709 m_options.m_step_in_avoid_no_debug,
710 m_options.m_step_out_avoid_no_debug);
Greg Claytondc6224e2014-10-21 01:00:42 +0000711
Kate Stoneb9c1b512016-09-06 20:57:50 +0000712 if (new_plan_sp && !m_options.m_avoid_regexp.empty()) {
713 ThreadPlanStepInRange *step_in_range_plan =
714 static_cast<ThreadPlanStepInRange *>(new_plan_sp.get());
715 step_in_range_plan->SetAvoidRegexp(m_options.m_avoid_regexp.c_str());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000716 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000717 } else
718 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
719 false, abort_other_plans, bool_stop_other_threads);
720 } else if (m_step_type == eStepTypeOver) {
721 StackFrame *frame = thread->GetStackFrameAtIndex(0).get();
722
723 if (frame->HasDebugInformation())
724 new_plan_sp = thread->QueueThreadPlanForStepOverRange(
725 abort_other_plans,
726 frame->GetSymbolContext(eSymbolContextEverything).line_entry,
727 frame->GetSymbolContext(eSymbolContextEverything),
728 stop_other_threads, m_options.m_step_out_avoid_no_debug);
729 else
730 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
731 true, abort_other_plans, bool_stop_other_threads);
732 } else if (m_step_type == eStepTypeTrace) {
733 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
734 false, abort_other_plans, bool_stop_other_threads);
735 } else if (m_step_type == eStepTypeTraceOver) {
736 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
737 true, abort_other_plans, bool_stop_other_threads);
738 } else if (m_step_type == eStepTypeOut) {
739 new_plan_sp = thread->QueueThreadPlanForStepOut(
740 abort_other_plans, nullptr, false, bool_stop_other_threads, eVoteYes,
741 eVoteNoOpinion, thread->GetSelectedFrameIndex(),
742 m_options.m_step_out_avoid_no_debug);
743 } else if (m_step_type == eStepTypeScripted) {
744 new_plan_sp = thread->QueueThreadPlanForStepScripted(
745 abort_other_plans, m_options.m_class_name.c_str(),
746 bool_stop_other_threads);
747 } else {
748 result.AppendError("step type is not supported");
749 result.SetStatus(eReturnStatusFailed);
750 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000751 }
752
Kate Stoneb9c1b512016-09-06 20:57:50 +0000753 // If we got a new plan, then set it to be a master plan (User level Plans
Adrian Prantl05097242018-04-30 16:49:04 +0000754 // should be master plans so that they can be interruptible). Then resume
755 // the process.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000756
757 if (new_plan_sp) {
758 new_plan_sp->SetIsMasterPlan(true);
759 new_plan_sp->SetOkayToDiscard(false);
760
761 if (m_options.m_step_count > 1) {
Jim Inghamd2a7e852017-05-25 02:24:18 +0000762 if (!new_plan_sp->SetIterationCount(m_options.m_step_count)) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000763 result.AppendWarning(
764 "step operation does not support iteration count.");
765 }
766 }
767
768 process->GetThreadList().SetSelectedThreadByID(thread->GetID());
769
770 const uint32_t iohandler_id = process->GetIOHandlerID();
771
772 StreamString stream;
Zachary Turner97206d52017-05-12 04:51:55 +0000773 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000774 if (synchronous_execution)
775 error = process->ResumeSynchronous(&stream);
776 else
777 error = process->Resume();
778
Adrian McCarthy3887ba82017-09-19 18:07:33 +0000779 if (!error.Success()) {
780 result.AppendMessage(error.AsCString());
781 result.SetStatus(eReturnStatusFailed);
782 return false;
783 }
784
Kate Stoneb9c1b512016-09-06 20:57:50 +0000785 // There is a race condition where this thread will return up the call
Adrian Prantl05097242018-04-30 16:49:04 +0000786 // stack to the main command handler and show an (lldb) prompt before
787 // HandlePrivateEvent (from PrivateStateThread) has a chance to call
788 // PushProcessIOHandler().
Kate Stoneb9c1b512016-09-06 20:57:50 +0000789 process->SyncIOHandler(iohandler_id, 2000);
790
791 if (synchronous_execution) {
792 // If any state changed events had anything to say, add that to the
793 // result
Zachary Turnerc1564272016-11-16 21:15:24 +0000794 if (stream.GetSize() > 0)
795 result.AppendMessage(stream.GetString());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000796
797 process->GetThreadList().SetSelectedThreadByID(thread->GetID());
798 result.SetDidChangeProcessState(true);
799 result.SetStatus(eReturnStatusSuccessFinishNoResult);
800 } else {
801 result.SetStatus(eReturnStatusSuccessContinuingNoResult);
802 }
803 } else {
804 result.AppendError("Couldn't find thread plan to implement step type.");
805 result.SetStatus(eReturnStatusFailed);
806 }
807 return result.Succeeded();
808 }
809
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000810protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000811 StepType m_step_type;
812 StepScope m_step_scope;
813 CommandOptions m_options;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000814};
815
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000816//-------------------------------------------------------------------------
817// CommandObjectThreadContinue
818//-------------------------------------------------------------------------
819
Kate Stoneb9c1b512016-09-06 20:57:50 +0000820class CommandObjectThreadContinue : public CommandObjectParsed {
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000821public:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000822 CommandObjectThreadContinue(CommandInterpreter &interpreter)
823 : CommandObjectParsed(
824 interpreter, "thread continue",
825 "Continue execution of the current target process. One "
826 "or more threads may be specified, by default all "
827 "threads continue.",
828 nullptr,
829 eCommandRequiresThread | eCommandTryTargetAPILock |
830 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {
831 CommandArgumentEntry arg;
832 CommandArgumentData thread_idx_arg;
833
834 // Define the first (and only) variant of this arg.
835 thread_idx_arg.arg_type = eArgTypeThreadIndex;
836 thread_idx_arg.arg_repetition = eArgRepeatPlus;
837
838 // There is only one variant this argument could be; put it into the
839 // argument entry.
840 arg.push_back(thread_idx_arg);
841
842 // Push the data for the first argument into the m_arguments vector.
843 m_arguments.push_back(arg);
844 }
845
846 ~CommandObjectThreadContinue() override = default;
847
848 bool DoExecute(Args &command, CommandReturnObject &result) override {
849 bool synchronous_execution = m_interpreter.GetSynchronous();
850
851 if (!m_interpreter.GetDebugger().GetSelectedTarget()) {
852 result.AppendError("invalid target, create a debug target using the "
853 "'target create' command");
854 result.SetStatus(eReturnStatusFailed);
855 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000856 }
857
Kate Stoneb9c1b512016-09-06 20:57:50 +0000858 Process *process = m_exe_ctx.GetProcessPtr();
859 if (process == nullptr) {
860 result.AppendError("no process exists. Cannot continue");
861 result.SetStatus(eReturnStatusFailed);
862 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000863 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000864
865 StateType state = process->GetState();
866 if ((state == eStateCrashed) || (state == eStateStopped) ||
867 (state == eStateSuspended)) {
868 const size_t argc = command.GetArgumentCount();
869 if (argc > 0) {
Adrian Prantl05097242018-04-30 16:49:04 +0000870 // These two lines appear at the beginning of both blocks in this
871 // if..else, but that is because we need to release the lock before
872 // calling process->Resume below.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000873 std::lock_guard<std::recursive_mutex> guard(
874 process->GetThreadList().GetMutex());
875 const uint32_t num_threads = process->GetThreadList().GetSize();
876 std::vector<Thread *> resume_threads;
Zachary Turner97d2c402016-10-05 23:40:23 +0000877 for (auto &entry : command.entries()) {
878 uint32_t thread_idx;
879 if (entry.ref.getAsInteger(0, thread_idx)) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000880 result.AppendErrorWithFormat(
Zachary Turner97d2c402016-10-05 23:40:23 +0000881 "invalid thread index argument: \"%s\".\n", entry.c_str());
882 result.SetStatus(eReturnStatusFailed);
883 return false;
884 }
885 Thread *thread =
886 process->GetThreadList().FindThreadByIndexID(thread_idx).get();
887
888 if (thread) {
889 resume_threads.push_back(thread);
890 } else {
891 result.AppendErrorWithFormat("invalid thread index %u.\n",
892 thread_idx);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000893 result.SetStatus(eReturnStatusFailed);
894 return false;
895 }
896 }
897
898 if (resume_threads.empty()) {
899 result.AppendError("no valid thread indexes were specified");
900 result.SetStatus(eReturnStatusFailed);
901 return false;
902 } else {
903 if (resume_threads.size() == 1)
904 result.AppendMessageWithFormat("Resuming thread: ");
905 else
906 result.AppendMessageWithFormat("Resuming threads: ");
907
908 for (uint32_t idx = 0; idx < num_threads; ++idx) {
909 Thread *thread =
910 process->GetThreadList().GetThreadAtIndex(idx).get();
911 std::vector<Thread *>::iterator this_thread_pos =
912 find(resume_threads.begin(), resume_threads.end(), thread);
913
914 if (this_thread_pos != resume_threads.end()) {
915 resume_threads.erase(this_thread_pos);
916 if (!resume_threads.empty())
917 result.AppendMessageWithFormat("%u, ", thread->GetIndexID());
918 else
919 result.AppendMessageWithFormat("%u ", thread->GetIndexID());
920
921 const bool override_suspend = true;
922 thread->SetResumeState(eStateRunning, override_suspend);
923 } else {
924 thread->SetResumeState(eStateSuspended);
925 }
926 }
927 result.AppendMessageWithFormat("in process %" PRIu64 "\n",
928 process->GetID());
929 }
930 } else {
Adrian Prantl05097242018-04-30 16:49:04 +0000931 // These two lines appear at the beginning of both blocks in this
932 // if..else, but that is because we need to release the lock before
933 // calling process->Resume below.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000934 std::lock_guard<std::recursive_mutex> guard(
935 process->GetThreadList().GetMutex());
936 const uint32_t num_threads = process->GetThreadList().GetSize();
937 Thread *current_thread = GetDefaultThread();
938 if (current_thread == nullptr) {
939 result.AppendError("the process doesn't have a current thread");
940 result.SetStatus(eReturnStatusFailed);
941 return false;
942 }
943 // Set the actions that the threads should each take when resuming
944 for (uint32_t idx = 0; idx < num_threads; ++idx) {
945 Thread *thread = process->GetThreadList().GetThreadAtIndex(idx).get();
946 if (thread == current_thread) {
947 result.AppendMessageWithFormat("Resuming thread 0x%4.4" PRIx64
948 " in process %" PRIu64 "\n",
949 thread->GetID(), process->GetID());
950 const bool override_suspend = true;
951 thread->SetResumeState(eStateRunning, override_suspend);
952 } else {
953 thread->SetResumeState(eStateSuspended);
954 }
955 }
956 }
957
958 StreamString stream;
Zachary Turner97206d52017-05-12 04:51:55 +0000959 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000960 if (synchronous_execution)
961 error = process->ResumeSynchronous(&stream);
962 else
963 error = process->Resume();
964
965 // We should not be holding the thread list lock when we do this.
966 if (error.Success()) {
967 result.AppendMessageWithFormat("Process %" PRIu64 " resuming\n",
968 process->GetID());
969 if (synchronous_execution) {
970 // If any state changed events had anything to say, add that to the
971 // result
Zachary Turnerc1564272016-11-16 21:15:24 +0000972 if (stream.GetSize() > 0)
973 result.AppendMessage(stream.GetString());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000974
975 result.SetDidChangeProcessState(true);
976 result.SetStatus(eReturnStatusSuccessFinishNoResult);
977 } else {
978 result.SetStatus(eReturnStatusSuccessContinuingNoResult);
979 }
980 } else {
981 result.AppendErrorWithFormat("Failed to resume process: %s\n",
982 error.AsCString());
983 result.SetStatus(eReturnStatusFailed);
984 }
985 } else {
986 result.AppendErrorWithFormat(
987 "Process cannot be continued from its current state (%s).\n",
988 StateAsCString(state));
989 result.SetStatus(eReturnStatusFailed);
990 }
991
992 return result.Succeeded();
993 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000994};
995
996//-------------------------------------------------------------------------
997// CommandObjectThreadUntil
998//-------------------------------------------------------------------------
999
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001000static OptionDefinition g_thread_until_options[] = {
1001 // clang-format off
1002 { LLDB_OPT_SET_1, false, "frame", 'f', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeFrameIndex, "Frame index for until operation - defaults to 0" },
1003 { LLDB_OPT_SET_1, false, "thread", 't', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeThreadIndex, "Thread index for the thread for until operation" },
1004 { LLDB_OPT_SET_1, false, "run-mode",'m', OptionParser::eRequiredArgument, nullptr, g_duo_running_mode, 0, eArgTypeRunMode, "Determine how to run other threads while stepping this one" },
1005 { LLDB_OPT_SET_1, false, "address", 'a', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeAddressOrExpression, "Run until we reach the specified address, or leave the function - can be specified multiple times." }
1006 // clang-format on
1007};
1008
Kate Stoneb9c1b512016-09-06 20:57:50 +00001009class CommandObjectThreadUntil : public CommandObjectParsed {
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001010public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001011 class CommandOptions : public Options {
1012 public:
1013 uint32_t m_thread_idx;
1014 uint32_t m_frame_idx;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001015
Kate Stoneb9c1b512016-09-06 20:57:50 +00001016 CommandOptions()
1017 : Options(), m_thread_idx(LLDB_INVALID_THREAD_ID),
1018 m_frame_idx(LLDB_INVALID_FRAME_ID) {
1019 // Keep default values of all options in one place: OptionParsingStarting
1020 // ()
1021 OptionParsingStarting(nullptr);
1022 }
1023
1024 ~CommandOptions() override = default;
1025
Zachary Turner97206d52017-05-12 04:51:55 +00001026 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1027 ExecutionContext *execution_context) override {
1028 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001029 const int short_option = m_getopt_table[option_idx].val;
1030
1031 switch (short_option) {
1032 case 'a': {
Pavel Labath47cbf4a2018-04-10 09:03:59 +00001033 lldb::addr_t tmp_addr = OptionArgParser::ToAddress(
Kate Stoneb9c1b512016-09-06 20:57:50 +00001034 execution_context, option_arg, LLDB_INVALID_ADDRESS, &error);
1035 if (error.Success())
1036 m_until_addrs.push_back(tmp_addr);
1037 } break;
1038 case 't':
Zachary Turnerfe114832016-11-12 16:56:47 +00001039 if (option_arg.getAsInteger(0, m_thread_idx)) {
1040 m_thread_idx = LLDB_INVALID_INDEX32;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001041 error.SetErrorStringWithFormat("invalid thread index '%s'",
Zachary Turnerfe114832016-11-12 16:56:47 +00001042 option_arg.str().c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001043 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001044 break;
1045 case 'f':
Zachary Turnerfe114832016-11-12 16:56:47 +00001046 if (option_arg.getAsInteger(0, m_frame_idx)) {
1047 m_frame_idx = LLDB_INVALID_FRAME_ID;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001048 error.SetErrorStringWithFormat("invalid frame index '%s'",
Zachary Turnerfe114832016-11-12 16:56:47 +00001049 option_arg.str().c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001050 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001051 break;
1052 case 'm': {
1053 OptionEnumValueElement *enum_values =
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001054 GetDefinitions()[option_idx].enum_values;
Pavel Labath47cbf4a2018-04-10 09:03:59 +00001055 lldb::RunMode run_mode = (lldb::RunMode)OptionArgParser::ToOptionEnum(
Zachary Turnerfe114832016-11-12 16:56:47 +00001056 option_arg, enum_values, eOnlyDuringStepping, error);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001057
Kate Stoneb9c1b512016-09-06 20:57:50 +00001058 if (error.Success()) {
1059 if (run_mode == eAllThreads)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001060 m_stop_others = false;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001061 else
1062 m_stop_others = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001063 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001064 } break;
1065 default:
1066 error.SetErrorStringWithFormat("invalid short option character '%c'",
1067 short_option);
1068 break;
1069 }
1070 return error;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001071 }
1072
Kate Stoneb9c1b512016-09-06 20:57:50 +00001073 void OptionParsingStarting(ExecutionContext *execution_context) override {
1074 m_thread_idx = LLDB_INVALID_THREAD_ID;
1075 m_frame_idx = 0;
1076 m_stop_others = false;
1077 m_until_addrs.clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001078 }
1079
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001080 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
Zachary Turner70602432016-09-22 21:06:13 +00001081 return llvm::makeArrayRef(g_thread_until_options);
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001082 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001083
1084 uint32_t m_step_thread_idx;
1085 bool m_stop_others;
1086 std::vector<lldb::addr_t> m_until_addrs;
1087
Kate Stoneb9c1b512016-09-06 20:57:50 +00001088 // Instance variables to hold the values for command options.
1089 };
1090
1091 CommandObjectThreadUntil(CommandInterpreter &interpreter)
1092 : CommandObjectParsed(
1093 interpreter, "thread until",
1094 "Continue until a line number or address is reached by the "
1095 "current or specified thread. Stops when returning from "
Jim Ingham9ac82602016-11-18 22:06:10 +00001096 "the current function as a safety measure. "
1097 "The target line number(s) are given as arguments, and if more than one"
Adrian Kuegelecd760c2016-11-24 10:01:34 +00001098 " is provided, stepping will stop when the first one is hit.",
Kate Stoneb9c1b512016-09-06 20:57:50 +00001099 nullptr,
1100 eCommandRequiresThread | eCommandTryTargetAPILock |
1101 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused),
1102 m_options() {
1103 CommandArgumentEntry arg;
1104 CommandArgumentData line_num_arg;
1105
1106 // Define the first (and only) variant of this arg.
1107 line_num_arg.arg_type = eArgTypeLineNum;
1108 line_num_arg.arg_repetition = eArgRepeatPlain;
1109
1110 // There is only one variant this argument could be; put it into the
1111 // argument entry.
1112 arg.push_back(line_num_arg);
1113
1114 // Push the data for the first argument into the m_arguments vector.
1115 m_arguments.push_back(arg);
1116 }
1117
1118 ~CommandObjectThreadUntil() override = default;
1119
1120 Options *GetOptions() override { return &m_options; }
1121
Jim Ingham5a988412012-06-08 21:56:10 +00001122protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001123 bool DoExecute(Args &command, CommandReturnObject &result) override {
1124 bool synchronous_execution = m_interpreter.GetSynchronous();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001125
Kate Stoneb9c1b512016-09-06 20:57:50 +00001126 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
1127 if (target == nullptr) {
1128 result.AppendError("invalid target, create a debug target using the "
1129 "'target create' command");
1130 result.SetStatus(eReturnStatusFailed);
1131 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001132 }
Jim Ingham5a988412012-06-08 21:56:10 +00001133
Kate Stoneb9c1b512016-09-06 20:57:50 +00001134 Process *process = m_exe_ctx.GetProcessPtr();
1135 if (process == nullptr) {
1136 result.AppendError("need a valid process to step");
1137 result.SetStatus(eReturnStatusFailed);
1138 } else {
1139 Thread *thread = nullptr;
1140 std::vector<uint32_t> line_numbers;
1141
1142 if (command.GetArgumentCount() >= 1) {
1143 size_t num_args = command.GetArgumentCount();
1144 for (size_t i = 0; i < num_args; i++) {
1145 uint32_t line_number;
Jim Ingham9ac82602016-11-18 22:06:10 +00001146 line_number = StringConvert::ToUInt32(command.GetArgumentAtIndex(i),
Kate Stoneb9c1b512016-09-06 20:57:50 +00001147 UINT32_MAX);
1148 if (line_number == UINT32_MAX) {
1149 result.AppendErrorWithFormat("invalid line number: '%s'.\n",
Jim Ingham9ac82602016-11-18 22:06:10 +00001150 command.GetArgumentAtIndex(i));
Kate Stoneb9c1b512016-09-06 20:57:50 +00001151 result.SetStatus(eReturnStatusFailed);
1152 return false;
1153 } else
1154 line_numbers.push_back(line_number);
1155 }
1156 } else if (m_options.m_until_addrs.empty()) {
1157 result.AppendErrorWithFormat("No line number or address provided:\n%s",
Zachary Turner1e8016b2016-11-15 00:45:18 +00001158 GetSyntax().str().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001159 result.SetStatus(eReturnStatusFailed);
1160 return false;
1161 }
1162
1163 if (m_options.m_thread_idx == LLDB_INVALID_THREAD_ID) {
1164 thread = GetDefaultThread();
1165 } else {
1166 thread = process->GetThreadList()
1167 .FindThreadByIndexID(m_options.m_thread_idx)
1168 .get();
1169 }
1170
1171 if (thread == nullptr) {
1172 const uint32_t num_threads = process->GetThreadList().GetSize();
1173 result.AppendErrorWithFormat(
1174 "Thread index %u is out of range (valid values are 0 - %u).\n",
1175 m_options.m_thread_idx, num_threads);
1176 result.SetStatus(eReturnStatusFailed);
1177 return false;
1178 }
1179
1180 const bool abort_other_plans = false;
1181
1182 StackFrame *frame =
1183 thread->GetStackFrameAtIndex(m_options.m_frame_idx).get();
1184 if (frame == nullptr) {
1185 result.AppendErrorWithFormat(
1186 "Frame index %u is out of range for thread %u.\n",
1187 m_options.m_frame_idx, m_options.m_thread_idx);
1188 result.SetStatus(eReturnStatusFailed);
1189 return false;
1190 }
1191
1192 ThreadPlanSP new_plan_sp;
1193
1194 if (frame->HasDebugInformation()) {
Adrian Prantl05097242018-04-30 16:49:04 +00001195 // Finally we got here... Translate the given line number to a bunch
1196 // of addresses:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001197 SymbolContext sc(frame->GetSymbolContext(eSymbolContextCompUnit));
1198 LineTable *line_table = nullptr;
1199 if (sc.comp_unit)
1200 line_table = sc.comp_unit->GetLineTable();
1201
1202 if (line_table == nullptr) {
1203 result.AppendErrorWithFormat("Failed to resolve the line table for "
1204 "frame %u of thread index %u.\n",
1205 m_options.m_frame_idx,
1206 m_options.m_thread_idx);
1207 result.SetStatus(eReturnStatusFailed);
1208 return false;
1209 }
1210
1211 LineEntry function_start;
1212 uint32_t index_ptr = 0, end_ptr;
1213 std::vector<addr_t> address_list;
1214
1215 // Find the beginning & end index of the
1216 AddressRange fun_addr_range = sc.function->GetAddressRange();
1217 Address fun_start_addr = fun_addr_range.GetBaseAddress();
1218 line_table->FindLineEntryByAddress(fun_start_addr, function_start,
1219 &index_ptr);
1220
1221 Address fun_end_addr(fun_start_addr.GetSection(),
1222 fun_start_addr.GetOffset() +
1223 fun_addr_range.GetByteSize());
1224
1225 bool all_in_function = true;
1226
1227 line_table->FindLineEntryByAddress(fun_end_addr, function_start,
1228 &end_ptr);
1229
1230 for (uint32_t line_number : line_numbers) {
1231 uint32_t start_idx_ptr = index_ptr;
1232 while (start_idx_ptr <= end_ptr) {
1233 LineEntry line_entry;
1234 const bool exact = false;
1235 start_idx_ptr = sc.comp_unit->FindLineEntry(
1236 start_idx_ptr, line_number, sc.comp_unit, exact, &line_entry);
1237 if (start_idx_ptr == UINT32_MAX)
1238 break;
1239
1240 addr_t address =
1241 line_entry.range.GetBaseAddress().GetLoadAddress(target);
1242 if (address != LLDB_INVALID_ADDRESS) {
1243 if (fun_addr_range.ContainsLoadAddress(address, target))
1244 address_list.push_back(address);
1245 else
1246 all_in_function = false;
1247 }
1248 start_idx_ptr++;
1249 }
1250 }
1251
1252 for (lldb::addr_t address : m_options.m_until_addrs) {
1253 if (fun_addr_range.ContainsLoadAddress(address, target))
1254 address_list.push_back(address);
1255 else
1256 all_in_function = false;
1257 }
1258
1259 if (address_list.empty()) {
1260 if (all_in_function)
1261 result.AppendErrorWithFormat(
1262 "No line entries matching until target.\n");
1263 else
1264 result.AppendErrorWithFormat(
1265 "Until target outside of the current function.\n");
1266
1267 result.SetStatus(eReturnStatusFailed);
1268 return false;
1269 }
1270
1271 new_plan_sp = thread->QueueThreadPlanForStepUntil(
1272 abort_other_plans, &address_list.front(), address_list.size(),
1273 m_options.m_stop_others, m_options.m_frame_idx);
1274 // User level plans should be master plans so they can be interrupted
Adrian Prantl05097242018-04-30 16:49:04 +00001275 // (e.g. by hitting a breakpoint) and other plans executed by the user
1276 // (stepping around the breakpoint) and then a "continue" will resume
1277 // the original plan.
Kate Stoneb9c1b512016-09-06 20:57:50 +00001278 new_plan_sp->SetIsMasterPlan(true);
1279 new_plan_sp->SetOkayToDiscard(false);
1280 } else {
1281 result.AppendErrorWithFormat(
1282 "Frame index %u of thread %u has no debug information.\n",
1283 m_options.m_frame_idx, m_options.m_thread_idx);
1284 result.SetStatus(eReturnStatusFailed);
1285 return false;
1286 }
1287
1288 process->GetThreadList().SetSelectedThreadByID(m_options.m_thread_idx);
1289
1290 StreamString stream;
Zachary Turner97206d52017-05-12 04:51:55 +00001291 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001292 if (synchronous_execution)
1293 error = process->ResumeSynchronous(&stream);
1294 else
1295 error = process->Resume();
1296
1297 if (error.Success()) {
1298 result.AppendMessageWithFormat("Process %" PRIu64 " resuming\n",
1299 process->GetID());
1300 if (synchronous_execution) {
1301 // If any state changed events had anything to say, add that to the
1302 // result
Zachary Turnerc1564272016-11-16 21:15:24 +00001303 if (stream.GetSize() > 0)
1304 result.AppendMessage(stream.GetString());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001305
1306 result.SetDidChangeProcessState(true);
1307 result.SetStatus(eReturnStatusSuccessFinishNoResult);
1308 } else {
1309 result.SetStatus(eReturnStatusSuccessContinuingNoResult);
1310 }
1311 } else {
1312 result.AppendErrorWithFormat("Failed to resume process: %s.\n",
1313 error.AsCString());
1314 result.SetStatus(eReturnStatusFailed);
1315 }
1316 }
1317 return result.Succeeded();
1318 }
1319
1320 CommandOptions m_options;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001321};
1322
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001323//-------------------------------------------------------------------------
1324// CommandObjectThreadSelect
1325//-------------------------------------------------------------------------
1326
Kate Stoneb9c1b512016-09-06 20:57:50 +00001327class CommandObjectThreadSelect : public CommandObjectParsed {
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001328public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001329 CommandObjectThreadSelect(CommandInterpreter &interpreter)
1330 : CommandObjectParsed(interpreter, "thread select",
1331 "Change the currently selected thread.", nullptr,
1332 eCommandRequiresProcess | eCommandTryTargetAPILock |
1333 eCommandProcessMustBeLaunched |
1334 eCommandProcessMustBePaused) {
1335 CommandArgumentEntry arg;
1336 CommandArgumentData thread_idx_arg;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001337
Kate Stoneb9c1b512016-09-06 20:57:50 +00001338 // Define the first (and only) variant of this arg.
1339 thread_idx_arg.arg_type = eArgTypeThreadIndex;
1340 thread_idx_arg.arg_repetition = eArgRepeatPlain;
1341
1342 // There is only one variant this argument could be; put it into the
1343 // argument entry.
1344 arg.push_back(thread_idx_arg);
1345
1346 // Push the data for the first argument into the m_arguments vector.
1347 m_arguments.push_back(arg);
1348 }
1349
1350 ~CommandObjectThreadSelect() override = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001351
Jim Ingham5a988412012-06-08 21:56:10 +00001352protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001353 bool DoExecute(Args &command, CommandReturnObject &result) override {
1354 Process *process = m_exe_ctx.GetProcessPtr();
1355 if (process == nullptr) {
1356 result.AppendError("no process");
1357 result.SetStatus(eReturnStatusFailed);
1358 return false;
1359 } else if (command.GetArgumentCount() != 1) {
1360 result.AppendErrorWithFormat(
1361 "'%s' takes exactly one thread index argument:\nUsage: %s\n",
1362 m_cmd_name.c_str(), m_cmd_syntax.c_str());
1363 result.SetStatus(eReturnStatusFailed);
1364 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001365 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001366
1367 uint32_t index_id =
1368 StringConvert::ToUInt32(command.GetArgumentAtIndex(0), 0, 0);
1369
1370 Thread *new_thread =
1371 process->GetThreadList().FindThreadByIndexID(index_id).get();
1372 if (new_thread == nullptr) {
1373 result.AppendErrorWithFormat("invalid thread #%s.\n",
1374 command.GetArgumentAtIndex(0));
1375 result.SetStatus(eReturnStatusFailed);
1376 return false;
1377 }
1378
1379 process->GetThreadList().SetSelectedThreadByID(new_thread->GetID(), true);
1380 result.SetStatus(eReturnStatusSuccessFinishNoResult);
1381
1382 return result.Succeeded();
1383 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001384};
1385
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001386//-------------------------------------------------------------------------
1387// CommandObjectThreadList
1388//-------------------------------------------------------------------------
1389
Kate Stoneb9c1b512016-09-06 20:57:50 +00001390class CommandObjectThreadList : public CommandObjectParsed {
Greg Clayton66111032010-06-23 01:19:29 +00001391public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001392 CommandObjectThreadList(CommandInterpreter &interpreter)
1393 : CommandObjectParsed(
1394 interpreter, "thread list",
1395 "Show a summary of each thread in the current target process.",
1396 "thread list",
1397 eCommandRequiresProcess | eCommandTryTargetAPILock |
1398 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {}
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001399
Kate Stoneb9c1b512016-09-06 20:57:50 +00001400 ~CommandObjectThreadList() override = default;
Greg Clayton66111032010-06-23 01:19:29 +00001401
Jim Ingham5a988412012-06-08 21:56:10 +00001402protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001403 bool DoExecute(Args &command, CommandReturnObject &result) override {
1404 Stream &strm = result.GetOutputStream();
1405 result.SetStatus(eReturnStatusSuccessFinishNoResult);
1406 Process *process = m_exe_ctx.GetProcessPtr();
1407 const bool only_threads_with_stop_reason = false;
1408 const uint32_t start_frame = 0;
1409 const uint32_t num_frames = 0;
1410 const uint32_t num_frames_with_source = 0;
1411 process->GetStatus(strm);
1412 process->GetThreadStatus(strm, only_threads_with_stop_reason, start_frame,
Jim Ingham6a9767c2016-11-08 20:36:40 +00001413 num_frames, num_frames_with_source, false);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001414 return result.Succeeded();
1415 }
Greg Clayton66111032010-06-23 01:19:29 +00001416};
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001417
Jim Ingham93208b82013-01-31 21:46:01 +00001418//-------------------------------------------------------------------------
Jason Molenda705b1802014-06-13 02:37:02 +00001419// CommandObjectThreadInfo
1420//-------------------------------------------------------------------------
1421
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001422static OptionDefinition g_thread_info_options[] = {
1423 // clang-format off
1424 { LLDB_OPT_SET_ALL, false, "json", 'j', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Display the thread info in JSON format." },
1425 { LLDB_OPT_SET_ALL, false, "stop-info", 's', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Display the extended stop info in JSON format." }
1426 // clang-format on
1427};
1428
Kate Stoneb9c1b512016-09-06 20:57:50 +00001429class CommandObjectThreadInfo : public CommandObjectIterateOverThreads {
Jason Molenda705b1802014-06-13 02:37:02 +00001430public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001431 class CommandOptions : public Options {
1432 public:
1433 CommandOptions() : Options() { OptionParsingStarting(nullptr); }
Jason Molenda705b1802014-06-13 02:37:02 +00001434
Kate Stoneb9c1b512016-09-06 20:57:50 +00001435 ~CommandOptions() override = default;
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001436
Kate Stoneb9c1b512016-09-06 20:57:50 +00001437 void OptionParsingStarting(ExecutionContext *execution_context) override {
1438 m_json_thread = false;
1439 m_json_stopinfo = false;
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001440 }
1441
Zachary Turner97206d52017-05-12 04:51:55 +00001442 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1443 ExecutionContext *execution_context) override {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001444 const int short_option = m_getopt_table[option_idx].val;
Zachary Turner97206d52017-05-12 04:51:55 +00001445 Status error;
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001446
Kate Stoneb9c1b512016-09-06 20:57:50 +00001447 switch (short_option) {
1448 case 'j':
1449 m_json_thread = true;
1450 break;
1451
1452 case 's':
1453 m_json_stopinfo = true;
1454 break;
1455
1456 default:
Zachary Turner97206d52017-05-12 04:51:55 +00001457 return Status("invalid short option character '%c'", short_option);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001458 }
1459 return error;
Jason Molenda705b1802014-06-13 02:37:02 +00001460 }
1461
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001462 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
Zachary Turner70602432016-09-22 21:06:13 +00001463 return llvm::makeArrayRef(g_thread_info_options);
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001464 }
Stephane Sezerf8104912016-03-17 18:52:41 +00001465
Kate Stoneb9c1b512016-09-06 20:57:50 +00001466 bool m_json_thread;
1467 bool m_json_stopinfo;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001468 };
1469
1470 CommandObjectThreadInfo(CommandInterpreter &interpreter)
1471 : CommandObjectIterateOverThreads(
1472 interpreter, "thread info", "Show an extended summary of one or "
1473 "more threads. Defaults to the "
1474 "current thread.",
1475 "thread info",
1476 eCommandRequiresProcess | eCommandTryTargetAPILock |
1477 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused),
1478 m_options() {
1479 m_add_return = false;
1480 }
1481
1482 ~CommandObjectThreadInfo() override = default;
1483
1484 Options *GetOptions() override { return &m_options; }
1485
1486 bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override {
1487 ThreadSP thread_sp =
1488 m_exe_ctx.GetProcessPtr()->GetThreadList().FindThreadByID(tid);
1489 if (!thread_sp) {
1490 result.AppendErrorWithFormat("thread no longer exists: 0x%" PRIx64 "\n",
1491 tid);
1492 result.SetStatus(eReturnStatusFailed);
1493 return false;
Jason Molenda705b1802014-06-13 02:37:02 +00001494 }
1495
Kate Stoneb9c1b512016-09-06 20:57:50 +00001496 Thread *thread = thread_sp.get();
1497
1498 Stream &strm = result.GetOutputStream();
1499 if (!thread->GetDescription(strm, eDescriptionLevelFull,
1500 m_options.m_json_thread,
1501 m_options.m_json_stopinfo)) {
1502 result.AppendErrorWithFormat("error displaying info for thread: \"%d\"\n",
1503 thread->GetIndexID());
1504 result.SetStatus(eReturnStatusFailed);
1505 return false;
1506 }
1507 return true;
1508 }
1509
1510 CommandOptions m_options;
Jason Molenda705b1802014-06-13 02:37:02 +00001511};
1512
Jason Molenda705b1802014-06-13 02:37:02 +00001513//-------------------------------------------------------------------------
Jim Ingham93208b82013-01-31 21:46:01 +00001514// CommandObjectThreadReturn
1515//-------------------------------------------------------------------------
1516
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001517static OptionDefinition g_thread_return_options[] = {
1518 // clang-format off
1519 { LLDB_OPT_SET_ALL, false, "from-expression", 'x', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Return from the innermost expression evaluation." }
1520 // clang-format on
1521};
1522
Kate Stoneb9c1b512016-09-06 20:57:50 +00001523class CommandObjectThreadReturn : public CommandObjectRaw {
Jim Inghamcb640dd2012-09-14 02:14:15 +00001524public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001525 class CommandOptions : public Options {
1526 public:
1527 CommandOptions() : Options(), m_from_expression(false) {
1528 // Keep default values of all options in one place: OptionParsingStarting
1529 // ()
1530 OptionParsingStarting(nullptr);
Jim Inghamcb640dd2012-09-14 02:14:15 +00001531 }
Jim Inghamcb640dd2012-09-14 02:14:15 +00001532
Kate Stoneb9c1b512016-09-06 20:57:50 +00001533 ~CommandOptions() override = default;
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001534
Zachary Turner97206d52017-05-12 04:51:55 +00001535 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1536 ExecutionContext *execution_context) override {
1537 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001538 const int short_option = m_getopt_table[option_idx].val;
1539
1540 switch (short_option) {
1541 case 'x': {
1542 bool success;
Pavel Labath47cbf4a2018-04-10 09:03:59 +00001543 bool tmp_value =
1544 OptionArgParser::ToBoolean(option_arg, false, &success);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001545 if (success)
1546 m_from_expression = tmp_value;
1547 else {
1548 error.SetErrorStringWithFormat(
Zachary Turnerfe114832016-11-12 16:56:47 +00001549 "invalid boolean value '%s' for 'x' option",
1550 option_arg.str().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001551 }
1552 } break;
1553 default:
1554 error.SetErrorStringWithFormat("invalid short option character '%c'",
1555 short_option);
1556 break;
1557 }
1558 return error;
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001559 }
1560
Kate Stoneb9c1b512016-09-06 20:57:50 +00001561 void OptionParsingStarting(ExecutionContext *execution_context) override {
1562 m_from_expression = false;
1563 }
1564
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001565 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
Zachary Turner70602432016-09-22 21:06:13 +00001566 return llvm::makeArrayRef(g_thread_return_options);
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001567 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001568
1569 bool m_from_expression;
1570
Kate Stoneb9c1b512016-09-06 20:57:50 +00001571 // Instance variables to hold the values for command options.
1572 };
1573
1574 CommandObjectThreadReturn(CommandInterpreter &interpreter)
1575 : CommandObjectRaw(interpreter, "thread return",
1576 "Prematurely return from a stack frame, "
1577 "short-circuiting execution of newer frames "
1578 "and optionally yielding a specified value. Defaults "
1579 "to the exiting the current stack "
1580 "frame.",
1581 "thread return",
1582 eCommandRequiresFrame | eCommandTryTargetAPILock |
1583 eCommandProcessMustBeLaunched |
1584 eCommandProcessMustBePaused),
1585 m_options() {
1586 CommandArgumentEntry arg;
1587 CommandArgumentData expression_arg;
1588
1589 // Define the first (and only) variant of this arg.
1590 expression_arg.arg_type = eArgTypeExpression;
1591 expression_arg.arg_repetition = eArgRepeatOptional;
1592
1593 // There is only one variant this argument could be; put it into the
1594 // argument entry.
1595 arg.push_back(expression_arg);
1596
1597 // Push the data for the first argument into the m_arguments vector.
1598 m_arguments.push_back(arg);
1599 }
1600
1601 ~CommandObjectThreadReturn() override = default;
1602
1603 Options *GetOptions() override { return &m_options; }
1604
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001605protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001606 bool DoExecute(const char *command, CommandReturnObject &result) override {
1607 // I am going to handle this by hand, because I don't want you to have to
1608 // say:
1609 // "thread return -- -5".
1610 if (command[0] == '-' && command[1] == 'x') {
1611 if (command && command[2] != '\0')
1612 result.AppendWarning("Return values ignored when returning from user "
1613 "called expressions");
Jim Inghamcb640dd2012-09-14 02:14:15 +00001614
Kate Stoneb9c1b512016-09-06 20:57:50 +00001615 Thread *thread = m_exe_ctx.GetThreadPtr();
Zachary Turner97206d52017-05-12 04:51:55 +00001616 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001617 error = thread->UnwindInnermostExpression();
1618 if (!error.Success()) {
1619 result.AppendErrorWithFormat("Unwinding expression failed - %s.",
1620 error.AsCString());
1621 result.SetStatus(eReturnStatusFailed);
1622 } else {
1623 bool success =
1624 thread->SetSelectedFrameByIndexNoisily(0, result.GetOutputStream());
1625 if (success) {
1626 m_exe_ctx.SetFrameSP(thread->GetSelectedFrame());
1627 result.SetStatus(eReturnStatusSuccessFinishResult);
1628 } else {
1629 result.AppendErrorWithFormat(
1630 "Could not select 0th frame after unwinding expression.");
1631 result.SetStatus(eReturnStatusFailed);
Jim Inghamcb640dd2012-09-14 02:14:15 +00001632 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001633 }
1634 return result.Succeeded();
Jim Inghamcb640dd2012-09-14 02:14:15 +00001635 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001636
1637 ValueObjectSP return_valobj_sp;
1638
1639 StackFrameSP frame_sp = m_exe_ctx.GetFrameSP();
1640 uint32_t frame_idx = frame_sp->GetFrameIndex();
1641
1642 if (frame_sp->IsInlined()) {
1643 result.AppendError("Don't know how to return from inlined frames.");
1644 result.SetStatus(eReturnStatusFailed);
1645 return false;
1646 }
1647
1648 if (command && command[0] != '\0') {
1649 Target *target = m_exe_ctx.GetTargetPtr();
1650 EvaluateExpressionOptions options;
1651
1652 options.SetUnwindOnError(true);
1653 options.SetUseDynamic(eNoDynamicValues);
1654
1655 ExpressionResults exe_results = eExpressionSetupError;
1656 exe_results = target->EvaluateExpression(command, frame_sp.get(),
1657 return_valobj_sp, options);
1658 if (exe_results != eExpressionCompleted) {
1659 if (return_valobj_sp)
1660 result.AppendErrorWithFormat(
1661 "Error evaluating result expression: %s",
1662 return_valobj_sp->GetError().AsCString());
1663 else
1664 result.AppendErrorWithFormat(
1665 "Unknown error evaluating result expression.");
1666 result.SetStatus(eReturnStatusFailed);
1667 return false;
1668 }
1669 }
1670
Zachary Turner97206d52017-05-12 04:51:55 +00001671 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001672 ThreadSP thread_sp = m_exe_ctx.GetThreadSP();
1673 const bool broadcast = true;
1674 error = thread_sp->ReturnFromFrame(frame_sp, return_valobj_sp, broadcast);
1675 if (!error.Success()) {
1676 result.AppendErrorWithFormat(
1677 "Error returning from frame %d of thread %d: %s.", frame_idx,
1678 thread_sp->GetIndexID(), error.AsCString());
1679 result.SetStatus(eReturnStatusFailed);
1680 return false;
1681 }
1682
1683 result.SetStatus(eReturnStatusSuccessFinishResult);
1684 return true;
1685 }
1686
1687 CommandOptions m_options;
Jim Inghamcb640dd2012-09-14 02:14:15 +00001688};
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001689
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001690//-------------------------------------------------------------------------
Richard Mittonf86248d2013-09-12 02:20:34 +00001691// CommandObjectThreadJump
1692//-------------------------------------------------------------------------
1693
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001694static OptionDefinition g_thread_jump_options[] = {
1695 // clang-format off
1696 { LLDB_OPT_SET_1, false, "file", 'f', OptionParser::eRequiredArgument, nullptr, nullptr, CommandCompletions::eSourceFileCompletion, eArgTypeFilename, "Specifies the source file to jump to." },
1697 { LLDB_OPT_SET_1, true, "line", 'l', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeLineNum, "Specifies the line number to jump to." },
1698 { LLDB_OPT_SET_2, true, "by", 'b', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeOffset, "Jumps by a relative line offset from the current line." },
1699 { LLDB_OPT_SET_3, true, "address", 'a', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeAddressOrExpression, "Jumps to a specific address." },
1700 { LLDB_OPT_SET_1 | LLDB_OPT_SET_2 | LLDB_OPT_SET_3, false, "force", 'r', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Allows the PC to leave the current function." }
1701 // clang-format on
1702};
1703
Kate Stoneb9c1b512016-09-06 20:57:50 +00001704class CommandObjectThreadJump : public CommandObjectParsed {
Richard Mittonf86248d2013-09-12 02:20:34 +00001705public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001706 class CommandOptions : public Options {
1707 public:
1708 CommandOptions() : Options() { OptionParsingStarting(nullptr); }
Richard Mittonf86248d2013-09-12 02:20:34 +00001709
Kate Stoneb9c1b512016-09-06 20:57:50 +00001710 ~CommandOptions() override = default;
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001711
Kate Stoneb9c1b512016-09-06 20:57:50 +00001712 void OptionParsingStarting(ExecutionContext *execution_context) override {
1713 m_filenames.Clear();
1714 m_line_num = 0;
1715 m_line_offset = 0;
1716 m_load_addr = LLDB_INVALID_ADDRESS;
1717 m_force = false;
Richard Mittonf86248d2013-09-12 02:20:34 +00001718 }
1719
Zachary Turner97206d52017-05-12 04:51:55 +00001720 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1721 ExecutionContext *execution_context) override {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001722 const int short_option = m_getopt_table[option_idx].val;
Zachary Turner97206d52017-05-12 04:51:55 +00001723 Status error;
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001724
Kate Stoneb9c1b512016-09-06 20:57:50 +00001725 switch (short_option) {
1726 case 'f':
1727 m_filenames.AppendIfUnique(FileSpec(option_arg, false));
1728 if (m_filenames.GetSize() > 1)
Zachary Turner97206d52017-05-12 04:51:55 +00001729 return Status("only one source file expected.");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001730 break;
1731 case 'l':
Zachary Turnerfe114832016-11-12 16:56:47 +00001732 if (option_arg.getAsInteger(0, m_line_num))
Zachary Turner97206d52017-05-12 04:51:55 +00001733 return Status("invalid line number: '%s'.", option_arg.str().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001734 break;
1735 case 'b':
Zachary Turnerfe114832016-11-12 16:56:47 +00001736 if (option_arg.getAsInteger(0, m_line_offset))
Zachary Turner97206d52017-05-12 04:51:55 +00001737 return Status("invalid line offset: '%s'.", option_arg.str().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001738 break;
1739 case 'a':
Pavel Labath47cbf4a2018-04-10 09:03:59 +00001740 m_load_addr = OptionArgParser::ToAddress(execution_context, option_arg,
1741 LLDB_INVALID_ADDRESS, &error);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001742 break;
1743 case 'r':
1744 m_force = true;
1745 break;
1746 default:
Zachary Turner97206d52017-05-12 04:51:55 +00001747 return Status("invalid short option character '%c'", short_option);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001748 }
1749 return error;
Richard Mittonf86248d2013-09-12 02:20:34 +00001750 }
1751
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001752 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
Zachary Turner70602432016-09-22 21:06:13 +00001753 return llvm::makeArrayRef(g_thread_jump_options);
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001754 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001755
1756 FileSpecList m_filenames;
1757 uint32_t m_line_num;
1758 int32_t m_line_offset;
1759 lldb::addr_t m_load_addr;
1760 bool m_force;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001761 };
1762
1763 CommandObjectThreadJump(CommandInterpreter &interpreter)
1764 : CommandObjectParsed(
1765 interpreter, "thread jump",
1766 "Sets the program counter to a new address.", "thread jump",
1767 eCommandRequiresFrame | eCommandTryTargetAPILock |
1768 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused),
1769 m_options() {}
1770
1771 ~CommandObjectThreadJump() override = default;
1772
1773 Options *GetOptions() override { return &m_options; }
1774
Richard Mittonf86248d2013-09-12 02:20:34 +00001775protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001776 bool DoExecute(Args &args, CommandReturnObject &result) override {
1777 RegisterContext *reg_ctx = m_exe_ctx.GetRegisterContext();
1778 StackFrame *frame = m_exe_ctx.GetFramePtr();
1779 Thread *thread = m_exe_ctx.GetThreadPtr();
1780 Target *target = m_exe_ctx.GetTargetPtr();
1781 const SymbolContext &sym_ctx =
1782 frame->GetSymbolContext(eSymbolContextLineEntry);
Richard Mittonf86248d2013-09-12 02:20:34 +00001783
Kate Stoneb9c1b512016-09-06 20:57:50 +00001784 if (m_options.m_load_addr != LLDB_INVALID_ADDRESS) {
1785 // Use this address directly.
1786 Address dest = Address(m_options.m_load_addr);
Richard Mittonf86248d2013-09-12 02:20:34 +00001787
Kate Stoneb9c1b512016-09-06 20:57:50 +00001788 lldb::addr_t callAddr = dest.GetCallableLoadAddress(target);
1789 if (callAddr == LLDB_INVALID_ADDRESS) {
1790 result.AppendErrorWithFormat("Invalid destination address.");
1791 result.SetStatus(eReturnStatusFailed);
1792 return false;
1793 }
Richard Mittonf86248d2013-09-12 02:20:34 +00001794
Kate Stoneb9c1b512016-09-06 20:57:50 +00001795 if (!reg_ctx->SetPC(callAddr)) {
1796 result.AppendErrorWithFormat("Error changing PC value for thread %d.",
1797 thread->GetIndexID());
1798 result.SetStatus(eReturnStatusFailed);
1799 return false;
1800 }
1801 } else {
1802 // Pick either the absolute line, or work out a relative one.
1803 int32_t line = (int32_t)m_options.m_line_num;
1804 if (line == 0)
1805 line = sym_ctx.line_entry.line + m_options.m_line_offset;
Richard Mittonf86248d2013-09-12 02:20:34 +00001806
Kate Stoneb9c1b512016-09-06 20:57:50 +00001807 // Try the current file, but override if asked.
1808 FileSpec file = sym_ctx.line_entry.file;
1809 if (m_options.m_filenames.GetSize() == 1)
1810 file = m_options.m_filenames.GetFileSpecAtIndex(0);
Richard Mittonf86248d2013-09-12 02:20:34 +00001811
Kate Stoneb9c1b512016-09-06 20:57:50 +00001812 if (!file) {
1813 result.AppendErrorWithFormat(
1814 "No source file available for the current location.");
1815 result.SetStatus(eReturnStatusFailed);
1816 return false;
1817 }
Richard Mittonf86248d2013-09-12 02:20:34 +00001818
Kate Stoneb9c1b512016-09-06 20:57:50 +00001819 std::string warnings;
Zachary Turner97206d52017-05-12 04:51:55 +00001820 Status err = thread->JumpToLine(file, line, m_options.m_force, &warnings);
Richard Mittonf86248d2013-09-12 02:20:34 +00001821
Kate Stoneb9c1b512016-09-06 20:57:50 +00001822 if (err.Fail()) {
1823 result.SetError(err);
1824 return false;
1825 }
Richard Mittonf86248d2013-09-12 02:20:34 +00001826
Kate Stoneb9c1b512016-09-06 20:57:50 +00001827 if (!warnings.empty())
1828 result.AppendWarning(warnings.c_str());
Richard Mittonf86248d2013-09-12 02:20:34 +00001829 }
1830
Kate Stoneb9c1b512016-09-06 20:57:50 +00001831 result.SetStatus(eReturnStatusSuccessFinishResult);
1832 return true;
1833 }
1834
1835 CommandOptions m_options;
Richard Mittonf86248d2013-09-12 02:20:34 +00001836};
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001837
Richard Mittonf86248d2013-09-12 02:20:34 +00001838//-------------------------------------------------------------------------
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001839// Next are the subcommands of CommandObjectMultiwordThreadPlan
1840//-------------------------------------------------------------------------
1841
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001842//-------------------------------------------------------------------------
1843// CommandObjectThreadPlanList
1844//-------------------------------------------------------------------------
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001845
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001846static OptionDefinition g_thread_plan_list_options[] = {
1847 // clang-format off
1848 { LLDB_OPT_SET_1, false, "verbose", 'v', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Display more information about the thread plans" },
1849 { LLDB_OPT_SET_1, false, "internal", 'i', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Display internal as well as user thread plans" }
1850 // clang-format on
1851};
1852
Kate Stoneb9c1b512016-09-06 20:57:50 +00001853class CommandObjectThreadPlanList : public CommandObjectIterateOverThreads {
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001854public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001855 class CommandOptions : public Options {
1856 public:
1857 CommandOptions() : Options() {
1858 // Keep default values of all options in one place: OptionParsingStarting
1859 // ()
1860 OptionParsingStarting(nullptr);
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001861 }
1862
Kate Stoneb9c1b512016-09-06 20:57:50 +00001863 ~CommandOptions() override = default;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001864
Zachary Turner97206d52017-05-12 04:51:55 +00001865 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1866 ExecutionContext *execution_context) override {
1867 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001868 const int short_option = m_getopt_table[option_idx].val;
1869
1870 switch (short_option) {
1871 case 'i':
1872 m_internal = true;
1873 break;
1874 case 'v':
1875 m_verbose = true;
1876 break;
1877 default:
1878 error.SetErrorStringWithFormat("invalid short option character '%c'",
1879 short_option);
1880 break;
1881 }
1882 return error;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001883 }
1884
Kate Stoneb9c1b512016-09-06 20:57:50 +00001885 void OptionParsingStarting(ExecutionContext *execution_context) override {
1886 m_verbose = false;
1887 m_internal = false;
1888 }
1889
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001890 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
Zachary Turner70602432016-09-22 21:06:13 +00001891 return llvm::makeArrayRef(g_thread_plan_list_options);
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001892 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001893
1894 // Instance variables to hold the values for command options.
1895 bool m_verbose;
1896 bool m_internal;
1897 };
1898
1899 CommandObjectThreadPlanList(CommandInterpreter &interpreter)
1900 : CommandObjectIterateOverThreads(
1901 interpreter, "thread plan list",
1902 "Show thread plans for one or more threads. If no threads are "
1903 "specified, show the "
1904 "current thread. Use the thread-index \"all\" to see all threads.",
1905 nullptr,
1906 eCommandRequiresProcess | eCommandRequiresThread |
1907 eCommandTryTargetAPILock | eCommandProcessMustBeLaunched |
1908 eCommandProcessMustBePaused),
1909 m_options() {}
1910
1911 ~CommandObjectThreadPlanList() override = default;
1912
1913 Options *GetOptions() override { return &m_options; }
1914
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001915protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001916 bool HandleOneThread(lldb::tid_t tid, CommandReturnObject &result) override {
1917 ThreadSP thread_sp =
1918 m_exe_ctx.GetProcessPtr()->GetThreadList().FindThreadByID(tid);
1919 if (!thread_sp) {
1920 result.AppendErrorWithFormat("thread no longer exists: 0x%" PRIx64 "\n",
1921 tid);
1922 result.SetStatus(eReturnStatusFailed);
1923 return false;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001924 }
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00001925
Kate Stoneb9c1b512016-09-06 20:57:50 +00001926 Thread *thread = thread_sp.get();
1927
1928 Stream &strm = result.GetOutputStream();
1929 DescriptionLevel desc_level = eDescriptionLevelFull;
1930 if (m_options.m_verbose)
1931 desc_level = eDescriptionLevelVerbose;
1932
1933 thread->DumpThreadPlans(&strm, desc_level, m_options.m_internal, true);
1934 return true;
1935 }
1936
1937 CommandOptions m_options;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001938};
1939
Kate Stoneb9c1b512016-09-06 20:57:50 +00001940class CommandObjectThreadPlanDiscard : public CommandObjectParsed {
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001941public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00001942 CommandObjectThreadPlanDiscard(CommandInterpreter &interpreter)
1943 : CommandObjectParsed(interpreter, "thread plan discard",
1944 "Discards thread plans up to and including the "
1945 "specified index (see 'thread plan list'.) "
1946 "Only user visible plans can be discarded.",
1947 nullptr,
1948 eCommandRequiresProcess | eCommandRequiresThread |
1949 eCommandTryTargetAPILock |
1950 eCommandProcessMustBeLaunched |
1951 eCommandProcessMustBePaused) {
1952 CommandArgumentEntry arg;
1953 CommandArgumentData plan_index_arg;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001954
Kate Stoneb9c1b512016-09-06 20:57:50 +00001955 // Define the first (and only) variant of this arg.
1956 plan_index_arg.arg_type = eArgTypeUnsignedInteger;
1957 plan_index_arg.arg_repetition = eArgRepeatPlain;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001958
Kate Stoneb9c1b512016-09-06 20:57:50 +00001959 // There is only one variant this argument could be; put it into the
1960 // argument entry.
1961 arg.push_back(plan_index_arg);
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001962
Kate Stoneb9c1b512016-09-06 20:57:50 +00001963 // Push the data for the first argument into the m_arguments vector.
1964 m_arguments.push_back(arg);
1965 }
1966
1967 ~CommandObjectThreadPlanDiscard() override = default;
1968
1969 bool DoExecute(Args &args, CommandReturnObject &result) override {
1970 Thread *thread = m_exe_ctx.GetThreadPtr();
1971 if (args.GetArgumentCount() != 1) {
1972 result.AppendErrorWithFormat("Too many arguments, expected one - the "
1973 "thread plan index - but got %zu.",
1974 args.GetArgumentCount());
1975 result.SetStatus(eReturnStatusFailed);
1976 return false;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001977 }
1978
Kate Stoneb9c1b512016-09-06 20:57:50 +00001979 bool success;
1980 uint32_t thread_plan_idx =
1981 StringConvert::ToUInt32(args.GetArgumentAtIndex(0), 0, 0, &success);
1982 if (!success) {
1983 result.AppendErrorWithFormat(
1984 "Invalid thread index: \"%s\" - should be unsigned int.",
1985 args.GetArgumentAtIndex(0));
1986 result.SetStatus(eReturnStatusFailed);
1987 return false;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00001988 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001989
1990 if (thread_plan_idx == 0) {
1991 result.AppendErrorWithFormat(
1992 "You wouldn't really want me to discard the base thread plan.");
1993 result.SetStatus(eReturnStatusFailed);
1994 return false;
1995 }
1996
1997 if (thread->DiscardUserThreadPlansUpToIndex(thread_plan_idx)) {
1998 result.SetStatus(eReturnStatusSuccessFinishNoResult);
1999 return true;
2000 } else {
2001 result.AppendErrorWithFormat(
2002 "Could not find User thread plan with index %s.",
2003 args.GetArgumentAtIndex(0));
2004 result.SetStatus(eReturnStatusFailed);
2005 return false;
2006 }
2007 }
Jim Ingham2bdbfd52014-09-29 23:17:18 +00002008};
2009
2010//-------------------------------------------------------------------------
2011// CommandObjectMultiwordThreadPlan
2012//-------------------------------------------------------------------------
2013
Kate Stoneb9c1b512016-09-06 20:57:50 +00002014class CommandObjectMultiwordThreadPlan : public CommandObjectMultiword {
Jim Ingham2bdbfd52014-09-29 23:17:18 +00002015public:
Kate Stoneb9c1b512016-09-06 20:57:50 +00002016 CommandObjectMultiwordThreadPlan(CommandInterpreter &interpreter)
2017 : CommandObjectMultiword(
2018 interpreter, "plan",
2019 "Commands for managing thread plans that control execution.",
2020 "thread plan <subcommand> [<subcommand objects]") {
2021 LoadSubCommand(
2022 "list", CommandObjectSP(new CommandObjectThreadPlanList(interpreter)));
2023 LoadSubCommand(
2024 "discard",
2025 CommandObjectSP(new CommandObjectThreadPlanDiscard(interpreter)));
2026 }
Jim Ingham2bdbfd52014-09-29 23:17:18 +00002027
Kate Stoneb9c1b512016-09-06 20:57:50 +00002028 ~CommandObjectMultiwordThreadPlan() override = default;
Jim Ingham2bdbfd52014-09-29 23:17:18 +00002029};
2030
2031//-------------------------------------------------------------------------
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002032// CommandObjectMultiwordThread
2033//-------------------------------------------------------------------------
2034
Kate Stoneb9c1b512016-09-06 20:57:50 +00002035CommandObjectMultiwordThread::CommandObjectMultiwordThread(
2036 CommandInterpreter &interpreter)
2037 : CommandObjectMultiword(interpreter, "thread", "Commands for operating on "
2038 "one or more threads in "
2039 "the current process.",
2040 "thread <subcommand> [<subcommand-options>]") {
2041 LoadSubCommand("backtrace", CommandObjectSP(new CommandObjectThreadBacktrace(
2042 interpreter)));
2043 LoadSubCommand("continue",
2044 CommandObjectSP(new CommandObjectThreadContinue(interpreter)));
2045 LoadSubCommand("list",
2046 CommandObjectSP(new CommandObjectThreadList(interpreter)));
2047 LoadSubCommand("return",
2048 CommandObjectSP(new CommandObjectThreadReturn(interpreter)));
2049 LoadSubCommand("jump",
2050 CommandObjectSP(new CommandObjectThreadJump(interpreter)));
2051 LoadSubCommand("select",
2052 CommandObjectSP(new CommandObjectThreadSelect(interpreter)));
2053 LoadSubCommand("until",
2054 CommandObjectSP(new CommandObjectThreadUntil(interpreter)));
2055 LoadSubCommand("info",
2056 CommandObjectSP(new CommandObjectThreadInfo(interpreter)));
2057 LoadSubCommand("step-in",
2058 CommandObjectSP(new CommandObjectThreadStepWithTypeAndScope(
2059 interpreter, "thread step-in",
2060 "Source level single step, stepping into calls. Defaults "
2061 "to current thread unless specified.",
2062 nullptr, eStepTypeInto, eStepScopeSource)));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002063
Kate Stoneb9c1b512016-09-06 20:57:50 +00002064 LoadSubCommand("step-out",
2065 CommandObjectSP(new CommandObjectThreadStepWithTypeAndScope(
2066 interpreter, "thread step-out",
2067 "Finish executing the current stack frame and stop after "
2068 "returning. Defaults to current thread unless specified.",
2069 nullptr, eStepTypeOut, eStepScopeSource)));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002070
Kate Stoneb9c1b512016-09-06 20:57:50 +00002071 LoadSubCommand("step-over",
2072 CommandObjectSP(new CommandObjectThreadStepWithTypeAndScope(
2073 interpreter, "thread step-over",
2074 "Source level single step, stepping over calls. Defaults "
2075 "to current thread unless specified.",
2076 nullptr, eStepTypeOver, eStepScopeSource)));
Greg Clayton66111032010-06-23 01:19:29 +00002077
Kate Stoneb9c1b512016-09-06 20:57:50 +00002078 LoadSubCommand("step-inst",
2079 CommandObjectSP(new CommandObjectThreadStepWithTypeAndScope(
2080 interpreter, "thread step-inst",
2081 "Instruction level single step, stepping into calls. "
2082 "Defaults to current thread unless specified.",
2083 nullptr, eStepTypeTrace, eStepScopeInstruction)));
Kate Stone7428a182016-07-14 22:03:10 +00002084
Kate Stoneb9c1b512016-09-06 20:57:50 +00002085 LoadSubCommand("step-inst-over",
2086 CommandObjectSP(new CommandObjectThreadStepWithTypeAndScope(
2087 interpreter, "thread step-inst-over",
2088 "Instruction level single step, stepping over calls. "
2089 "Defaults to current thread unless specified.",
2090 nullptr, eStepTypeTraceOver, eStepScopeInstruction)));
Jim Ingham2bdbfd52014-09-29 23:17:18 +00002091
Kate Stoneb9c1b512016-09-06 20:57:50 +00002092 LoadSubCommand(
2093 "step-scripted",
2094 CommandObjectSP(new CommandObjectThreadStepWithTypeAndScope(
2095 interpreter, "thread step-scripted",
2096 "Step as instructed by the script class passed in the -C option.",
2097 nullptr, eStepTypeScripted, eStepScopeSource)));
Jim Ingham2bdbfd52014-09-29 23:17:18 +00002098
Kate Stoneb9c1b512016-09-06 20:57:50 +00002099 LoadSubCommand("plan", CommandObjectSP(new CommandObjectMultiwordThreadPlan(
2100 interpreter)));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002101}
2102
Eugene Zelenko50ff9fe2016-02-25 23:46:36 +00002103CommandObjectMultiwordThread::~CommandObjectMultiwordThread() = default;