1 //===-- CommandObject.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 "lldb/Interpreter/CommandObject.h"
11 
12 #include <map>
13 #include <sstream>
14 #include <string>
15 
16 #include <ctype.h>
17 #include <stdlib.h>
18 
19 #include "lldb/Core/Address.h"
20 #include "lldb/Interpreter/Options.h"
21 #include "lldb/Utility/ArchSpec.h"
22 
23 // These are for the Sourcename completers.
24 // FIXME: Make a separate file for the completers.
25 #include "lldb/Core/FileSpecList.h"
26 #include "lldb/DataFormatters/FormatManager.h"
27 #include "lldb/Target/Process.h"
28 #include "lldb/Target/Target.h"
29 #include "lldb/Utility/FileSpec.h"
30 
31 #include "lldb/Target/Language.h"
32 
33 #include "lldb/Interpreter/CommandInterpreter.h"
34 #include "lldb/Interpreter/CommandReturnObject.h"
35 
36 using namespace lldb;
37 using namespace lldb_private;
38 
39 //-------------------------------------------------------------------------
40 // CommandObject
41 //-------------------------------------------------------------------------
42 
43 CommandObject::CommandObject(CommandInterpreter &interpreter, llvm::StringRef name,
44   llvm::StringRef help, llvm::StringRef syntax, uint32_t flags)
45     : m_interpreter(interpreter), m_cmd_name(name),
46       m_cmd_help_short(), m_cmd_help_long(), m_cmd_syntax(), m_flags(flags),
47       m_arguments(), m_deprecated_command_override_callback(nullptr),
48       m_command_override_callback(nullptr), m_command_override_baton(nullptr) {
49   m_cmd_help_short = help;
50   m_cmd_syntax = syntax;
51 }
52 
53 CommandObject::~CommandObject() {}
54 
55 llvm::StringRef CommandObject::GetHelp() { return m_cmd_help_short; }
56 
57 llvm::StringRef CommandObject::GetHelpLong() { return m_cmd_help_long; }
58 
59 llvm::StringRef CommandObject::GetSyntax() {
60   if (!m_cmd_syntax.empty())
61     return m_cmd_syntax;
62 
63   StreamString syntax_str;
64   syntax_str.PutCString(GetCommandName());
65 
66   if (!IsDashDashCommand() && GetOptions() != nullptr)
67     syntax_str.PutCString(" <cmd-options>");
68 
69   if (!m_arguments.empty()) {
70     syntax_str.PutCString(" ");
71 
72     if (!IsDashDashCommand() && WantsRawCommandString() && GetOptions() &&
73         GetOptions()->NumCommandOptions())
74       syntax_str.PutCString("-- ");
75     GetFormattedCommandArguments(syntax_str);
76   }
77   m_cmd_syntax = syntax_str.GetString();
78 
79   return m_cmd_syntax;
80 }
81 
82 llvm::StringRef CommandObject::GetCommandName() const { return m_cmd_name; }
83 
84 void CommandObject::SetCommandName(llvm::StringRef name) { m_cmd_name = name; }
85 
86 void CommandObject::SetHelp(llvm::StringRef str) { m_cmd_help_short = str; }
87 
88 void CommandObject::SetHelpLong(llvm::StringRef str) { m_cmd_help_long = str; }
89 
90 void CommandObject::SetSyntax(llvm::StringRef str) { m_cmd_syntax = str; }
91 
92 Options *CommandObject::GetOptions() {
93   // By default commands don't have options unless this virtual function is
94   // overridden by base classes.
95   return nullptr;
96 }
97 
98 bool CommandObject::ParseOptions(Args &args, CommandReturnObject &result) {
99   // See if the subclass has options?
100   Options *options = GetOptions();
101   if (options != nullptr) {
102     Status error;
103 
104     auto exe_ctx = GetCommandInterpreter().GetExecutionContext();
105     options->NotifyOptionParsingStarting(&exe_ctx);
106 
107     const bool require_validation = true;
108     llvm::Expected<Args> args_or = options->Parse(
109         args, &exe_ctx, GetCommandInterpreter().GetPlatform(true),
110         require_validation);
111 
112     if (args_or) {
113       args = std::move(*args_or);
114       error = options->NotifyOptionParsingFinished(&exe_ctx);
115     } else
116       error = args_or.takeError();
117 
118     if (error.Success()) {
119       if (options->VerifyOptions(result))
120         return true;
121     } else {
122       const char *error_cstr = error.AsCString();
123       if (error_cstr) {
124         // We got an error string, lets use that
125         result.AppendError(error_cstr);
126       } else {
127         // No error string, output the usage information into result
128         options->GenerateOptionUsage(
129             result.GetErrorStream(), this,
130             GetCommandInterpreter().GetDebugger().GetTerminalWidth());
131       }
132     }
133     result.SetStatus(eReturnStatusFailed);
134     return false;
135   }
136   return true;
137 }
138 
139 bool CommandObject::CheckRequirements(CommandReturnObject &result) {
140 #ifdef LLDB_CONFIGURATION_DEBUG
141   // Nothing should be stored in m_exe_ctx between running commands as
142   // m_exe_ctx has shared pointers to the target, process, thread and frame and
143   // we don't want any CommandObject instances to keep any of these objects
144   // around longer than for a single command. Every command should call
145   // CommandObject::Cleanup() after it has completed
146   assert(m_exe_ctx.GetTargetPtr() == NULL);
147   assert(m_exe_ctx.GetProcessPtr() == NULL);
148   assert(m_exe_ctx.GetThreadPtr() == NULL);
149   assert(m_exe_ctx.GetFramePtr() == NULL);
150 #endif
151 
152   // Lock down the interpreter's execution context prior to running the command
153   // so we guarantee the selected target, process, thread and frame can't go
154   // away during the execution
155   m_exe_ctx = m_interpreter.GetExecutionContext();
156 
157   const uint32_t flags = GetFlags().Get();
158   if (flags & (eCommandRequiresTarget | eCommandRequiresProcess |
159                eCommandRequiresThread | eCommandRequiresFrame |
160                eCommandTryTargetAPILock)) {
161 
162     if ((flags & eCommandRequiresTarget) && !m_exe_ctx.HasTargetScope()) {
163       result.AppendError(GetInvalidTargetDescription());
164       return false;
165     }
166 
167     if ((flags & eCommandRequiresProcess) && !m_exe_ctx.HasProcessScope()) {
168       if (!m_exe_ctx.HasTargetScope())
169         result.AppendError(GetInvalidTargetDescription());
170       else
171         result.AppendError(GetInvalidProcessDescription());
172       return false;
173     }
174 
175     if ((flags & eCommandRequiresThread) && !m_exe_ctx.HasThreadScope()) {
176       if (!m_exe_ctx.HasTargetScope())
177         result.AppendError(GetInvalidTargetDescription());
178       else if (!m_exe_ctx.HasProcessScope())
179         result.AppendError(GetInvalidProcessDescription());
180       else
181         result.AppendError(GetInvalidThreadDescription());
182       return false;
183     }
184 
185     if ((flags & eCommandRequiresFrame) && !m_exe_ctx.HasFrameScope()) {
186       if (!m_exe_ctx.HasTargetScope())
187         result.AppendError(GetInvalidTargetDescription());
188       else if (!m_exe_ctx.HasProcessScope())
189         result.AppendError(GetInvalidProcessDescription());
190       else if (!m_exe_ctx.HasThreadScope())
191         result.AppendError(GetInvalidThreadDescription());
192       else
193         result.AppendError(GetInvalidFrameDescription());
194       return false;
195     }
196 
197     if ((flags & eCommandRequiresRegContext) &&
198         (m_exe_ctx.GetRegisterContext() == nullptr)) {
199       result.AppendError(GetInvalidRegContextDescription());
200       return false;
201     }
202 
203     if (flags & eCommandTryTargetAPILock) {
204       Target *target = m_exe_ctx.GetTargetPtr();
205       if (target)
206         m_api_locker =
207             std::unique_lock<std::recursive_mutex>(target->GetAPIMutex());
208     }
209   }
210 
211   if (GetFlags().AnySet(eCommandProcessMustBeLaunched |
212                         eCommandProcessMustBePaused)) {
213     Process *process = m_interpreter.GetExecutionContext().GetProcessPtr();
214     if (process == nullptr) {
215       // A process that is not running is considered paused.
216       if (GetFlags().Test(eCommandProcessMustBeLaunched)) {
217         result.AppendError("Process must exist.");
218         result.SetStatus(eReturnStatusFailed);
219         return false;
220       }
221     } else {
222       StateType state = process->GetState();
223       switch (state) {
224       case eStateInvalid:
225       case eStateSuspended:
226       case eStateCrashed:
227       case eStateStopped:
228         break;
229 
230       case eStateConnected:
231       case eStateAttaching:
232       case eStateLaunching:
233       case eStateDetached:
234       case eStateExited:
235       case eStateUnloaded:
236         if (GetFlags().Test(eCommandProcessMustBeLaunched)) {
237           result.AppendError("Process must be launched.");
238           result.SetStatus(eReturnStatusFailed);
239           return false;
240         }
241         break;
242 
243       case eStateRunning:
244       case eStateStepping:
245         if (GetFlags().Test(eCommandProcessMustBePaused)) {
246           result.AppendError("Process is running.  Use 'process interrupt' to "
247                              "pause execution.");
248           result.SetStatus(eReturnStatusFailed);
249           return false;
250         }
251       }
252     }
253   }
254   return true;
255 }
256 
257 void CommandObject::Cleanup() {
258   m_exe_ctx.Clear();
259   if (m_api_locker.owns_lock())
260     m_api_locker.unlock();
261 }
262 
263 int CommandObject::HandleCompletion(CompletionRequest &request) {
264   // Default implementation of WantsCompletion() is !WantsRawCommandString().
265   // Subclasses who want raw command string but desire, for example, argument
266   // completion should override WantsCompletion() to return true, instead.
267   if (WantsRawCommandString() && !WantsCompletion()) {
268     // FIXME: Abstract telling the completion to insert the completion
269     // character.
270     request.GetMatches().Clear();
271     return -1;
272   } else {
273     // Can we do anything generic with the options?
274     Options *cur_options = GetOptions();
275     CommandReturnObject result;
276     OptionElementVector opt_element_vector;
277 
278     if (cur_options != nullptr) {
279       opt_element_vector = cur_options->ParseForCompletion(
280           request.GetParsedLine(), request.GetCursorIndex());
281 
282       bool handled_by_options;
283       bool word_complete = request.GetWordComplete();
284       handled_by_options = cur_options->HandleOptionCompletion(
285           request.GetParsedLine(), opt_element_vector, request.GetCursorIndex(),
286           request.GetCursorCharPosition(), request.GetMatchStartPoint(),
287           request.GetMaxReturnElements(), GetCommandInterpreter(),
288           word_complete, request.GetMatches());
289       request.SetWordComplete(word_complete);
290       if (handled_by_options)
291         return request.GetMatches().GetSize();
292     }
293 
294     // If we got here, the last word is not an option or an option argument.
295     return HandleArgumentCompletion(request, opt_element_vector);
296   }
297 }
298 
299 bool CommandObject::HelpTextContainsWord(llvm::StringRef search_word,
300                                          bool search_short_help,
301                                          bool search_long_help,
302                                          bool search_syntax,
303                                          bool search_options) {
304   std::string options_usage_help;
305 
306   bool found_word = false;
307 
308   llvm::StringRef short_help = GetHelp();
309   llvm::StringRef long_help = GetHelpLong();
310   llvm::StringRef syntax_help = GetSyntax();
311 
312   if (search_short_help && short_help.contains_lower(search_word))
313     found_word = true;
314   else if (search_long_help && long_help.contains_lower(search_word))
315     found_word = true;
316   else if (search_syntax && syntax_help.contains_lower(search_word))
317     found_word = true;
318 
319   if (!found_word && search_options && GetOptions() != nullptr) {
320     StreamString usage_help;
321     GetOptions()->GenerateOptionUsage(
322         usage_help, this,
323         GetCommandInterpreter().GetDebugger().GetTerminalWidth());
324     if (!usage_help.Empty()) {
325       llvm::StringRef usage_text = usage_help.GetString();
326       if (usage_text.contains_lower(search_word))
327         found_word = true;
328     }
329   }
330 
331   return found_word;
332 }
333 
334 bool CommandObject::ParseOptionsAndNotify(Args &args,
335                                           CommandReturnObject &result,
336                                           OptionGroupOptions &group_options,
337                                           ExecutionContext &exe_ctx) {
338   if (!ParseOptions(args, result))
339     return false;
340 
341   Status error(group_options.NotifyOptionParsingFinished(&exe_ctx));
342   if (error.Fail()) {
343     result.AppendError(error.AsCString());
344     result.SetStatus(eReturnStatusFailed);
345     return false;
346   }
347   return true;
348 }
349 
350 int CommandObject::GetNumArgumentEntries() { return m_arguments.size(); }
351 
352 CommandObject::CommandArgumentEntry *
353 CommandObject::GetArgumentEntryAtIndex(int idx) {
354   if (static_cast<size_t>(idx) < m_arguments.size())
355     return &(m_arguments[idx]);
356 
357   return nullptr;
358 }
359 
360 const CommandObject::ArgumentTableEntry *
361 CommandObject::FindArgumentDataByType(CommandArgumentType arg_type) {
362   const ArgumentTableEntry *table = CommandObject::GetArgumentTable();
363 
364   for (int i = 0; i < eArgTypeLastArg; ++i)
365     if (table[i].arg_type == arg_type)
366       return &(table[i]);
367 
368   return nullptr;
369 }
370 
371 void CommandObject::GetArgumentHelp(Stream &str, CommandArgumentType arg_type,
372                                     CommandInterpreter &interpreter) {
373   const ArgumentTableEntry *table = CommandObject::GetArgumentTable();
374   const ArgumentTableEntry *entry = &(table[arg_type]);
375 
376   // The table is *supposed* to be kept in arg_type order, but someone *could*
377   // have messed it up...
378 
379   if (entry->arg_type != arg_type)
380     entry = CommandObject::FindArgumentDataByType(arg_type);
381 
382   if (!entry)
383     return;
384 
385   StreamString name_str;
386   name_str.Printf("<%s>", entry->arg_name);
387 
388   if (entry->help_function) {
389     llvm::StringRef help_text = entry->help_function();
390     if (!entry->help_function.self_formatting) {
391       interpreter.OutputFormattedHelpText(str, name_str.GetString(), "--",
392                                           help_text, name_str.GetSize());
393     } else {
394       interpreter.OutputHelpText(str, name_str.GetString(), "--", help_text,
395                                  name_str.GetSize());
396     }
397   } else
398     interpreter.OutputFormattedHelpText(str, name_str.GetString(), "--",
399                                         entry->help_text, name_str.GetSize());
400 }
401 
402 const char *CommandObject::GetArgumentName(CommandArgumentType arg_type) {
403   const ArgumentTableEntry *entry =
404       &(CommandObject::GetArgumentTable()[arg_type]);
405 
406   // The table is *supposed* to be kept in arg_type order, but someone *could*
407   // have messed it up...
408 
409   if (entry->arg_type != arg_type)
410     entry = CommandObject::FindArgumentDataByType(arg_type);
411 
412   if (entry)
413     return entry->arg_name;
414 
415   return nullptr;
416 }
417 
418 bool CommandObject::IsPairType(ArgumentRepetitionType arg_repeat_type) {
419   if ((arg_repeat_type == eArgRepeatPairPlain) ||
420       (arg_repeat_type == eArgRepeatPairOptional) ||
421       (arg_repeat_type == eArgRepeatPairPlus) ||
422       (arg_repeat_type == eArgRepeatPairStar) ||
423       (arg_repeat_type == eArgRepeatPairRange) ||
424       (arg_repeat_type == eArgRepeatPairRangeOptional))
425     return true;
426 
427   return false;
428 }
429 
430 static CommandObject::CommandArgumentEntry
431 OptSetFiltered(uint32_t opt_set_mask,
432                CommandObject::CommandArgumentEntry &cmd_arg_entry) {
433   CommandObject::CommandArgumentEntry ret_val;
434   for (unsigned i = 0; i < cmd_arg_entry.size(); ++i)
435     if (opt_set_mask & cmd_arg_entry[i].arg_opt_set_association)
436       ret_val.push_back(cmd_arg_entry[i]);
437   return ret_val;
438 }
439 
440 // Default parameter value of opt_set_mask is LLDB_OPT_SET_ALL, which means
441 // take all the argument data into account.  On rare cases where some argument
442 // sticks with certain option sets, this function returns the option set
443 // filtered args.
444 void CommandObject::GetFormattedCommandArguments(Stream &str,
445                                                  uint32_t opt_set_mask) {
446   int num_args = m_arguments.size();
447   for (int i = 0; i < num_args; ++i) {
448     if (i > 0)
449       str.Printf(" ");
450     CommandArgumentEntry arg_entry =
451         opt_set_mask == LLDB_OPT_SET_ALL
452             ? m_arguments[i]
453             : OptSetFiltered(opt_set_mask, m_arguments[i]);
454     int num_alternatives = arg_entry.size();
455 
456     if ((num_alternatives == 2) && IsPairType(arg_entry[0].arg_repetition)) {
457       const char *first_name = GetArgumentName(arg_entry[0].arg_type);
458       const char *second_name = GetArgumentName(arg_entry[1].arg_type);
459       switch (arg_entry[0].arg_repetition) {
460       case eArgRepeatPairPlain:
461         str.Printf("<%s> <%s>", first_name, second_name);
462         break;
463       case eArgRepeatPairOptional:
464         str.Printf("[<%s> <%s>]", first_name, second_name);
465         break;
466       case eArgRepeatPairPlus:
467         str.Printf("<%s> <%s> [<%s> <%s> [...]]", first_name, second_name,
468                    first_name, second_name);
469         break;
470       case eArgRepeatPairStar:
471         str.Printf("[<%s> <%s> [<%s> <%s> [...]]]", first_name, second_name,
472                    first_name, second_name);
473         break;
474       case eArgRepeatPairRange:
475         str.Printf("<%s_1> <%s_1> ... <%s_n> <%s_n>", first_name, second_name,
476                    first_name, second_name);
477         break;
478       case eArgRepeatPairRangeOptional:
479         str.Printf("[<%s_1> <%s_1> ... <%s_n> <%s_n>]", first_name, second_name,
480                    first_name, second_name);
481         break;
482       // Explicitly test for all the rest of the cases, so if new types get
483       // added we will notice the missing case statement(s).
484       case eArgRepeatPlain:
485       case eArgRepeatOptional:
486       case eArgRepeatPlus:
487       case eArgRepeatStar:
488       case eArgRepeatRange:
489         // These should not be reached, as they should fail the IsPairType test
490         // above.
491         break;
492       }
493     } else {
494       StreamString names;
495       for (int j = 0; j < num_alternatives; ++j) {
496         if (j > 0)
497           names.Printf(" | ");
498         names.Printf("%s", GetArgumentName(arg_entry[j].arg_type));
499       }
500 
501       std::string name_str = names.GetString();
502       switch (arg_entry[0].arg_repetition) {
503       case eArgRepeatPlain:
504         str.Printf("<%s>", name_str.c_str());
505         break;
506       case eArgRepeatPlus:
507         str.Printf("<%s> [<%s> [...]]", name_str.c_str(), name_str.c_str());
508         break;
509       case eArgRepeatStar:
510         str.Printf("[<%s> [<%s> [...]]]", name_str.c_str(), name_str.c_str());
511         break;
512       case eArgRepeatOptional:
513         str.Printf("[<%s>]", name_str.c_str());
514         break;
515       case eArgRepeatRange:
516         str.Printf("<%s_1> .. <%s_n>", name_str.c_str(), name_str.c_str());
517         break;
518       // Explicitly test for all the rest of the cases, so if new types get
519       // added we will notice the missing case statement(s).
520       case eArgRepeatPairPlain:
521       case eArgRepeatPairOptional:
522       case eArgRepeatPairPlus:
523       case eArgRepeatPairStar:
524       case eArgRepeatPairRange:
525       case eArgRepeatPairRangeOptional:
526         // These should not be hit, as they should pass the IsPairType test
527         // above, and control should have gone into the other branch of the if
528         // statement.
529         break;
530       }
531     }
532   }
533 }
534 
535 CommandArgumentType
536 CommandObject::LookupArgumentName(llvm::StringRef arg_name) {
537   CommandArgumentType return_type = eArgTypeLastArg;
538 
539   arg_name = arg_name.ltrim('<').rtrim('>');
540 
541   const ArgumentTableEntry *table = GetArgumentTable();
542   for (int i = 0; i < eArgTypeLastArg; ++i)
543     if (arg_name == table[i].arg_name)
544       return_type = g_arguments_data[i].arg_type;
545 
546   return return_type;
547 }
548 
549 static llvm::StringRef RegisterNameHelpTextCallback() {
550   return "Register names can be specified using the architecture specific "
551          "names.  "
552          "They can also be specified using generic names.  Not all generic "
553          "entities have "
554          "registers backing them on all architectures.  When they don't the "
555          "generic name "
556          "will return an error.\n"
557          "The generic names defined in lldb are:\n"
558          "\n"
559          "pc       - program counter register\n"
560          "ra       - return address register\n"
561          "fp       - frame pointer register\n"
562          "sp       - stack pointer register\n"
563          "flags    - the flags register\n"
564          "arg{1-6} - integer argument passing registers.\n";
565 }
566 
567 static llvm::StringRef BreakpointIDHelpTextCallback() {
568   return "Breakpoints are identified using major and minor numbers; the major "
569          "number corresponds to the single entity that was created with a "
570          "'breakpoint "
571          "set' command; the minor numbers correspond to all the locations that "
572          "were "
573          "actually found/set based on the major breakpoint.  A full breakpoint "
574          "ID might "
575          "look like 3.14, meaning the 14th location set for the 3rd "
576          "breakpoint.  You "
577          "can specify all the locations of a breakpoint by just indicating the "
578          "major "
579          "breakpoint number. A valid breakpoint ID consists either of just the "
580          "major "
581          "number, or the major number followed by a dot and the location "
582          "number (e.g. "
583          "3 or 3.2 could both be valid breakpoint IDs.)";
584 }
585 
586 static llvm::StringRef BreakpointIDRangeHelpTextCallback() {
587   return "A 'breakpoint ID list' is a manner of specifying multiple "
588          "breakpoints. "
589          "This can be done through several mechanisms.  The easiest way is to "
590          "just "
591          "enter a space-separated list of breakpoint IDs.  To specify all the "
592          "breakpoint locations under a major breakpoint, you can use the major "
593          "breakpoint number followed by '.*', eg. '5.*' means all the "
594          "locations under "
595          "breakpoint 5.  You can also indicate a range of breakpoints by using "
596          "<start-bp-id> - <end-bp-id>.  The start-bp-id and end-bp-id for a "
597          "range can "
598          "be any valid breakpoint IDs.  It is not legal, however, to specify a "
599          "range "
600          "using specific locations that cross major breakpoint numbers.  I.e. "
601          "3.2 - 3.7"
602          " is legal; 2 - 5 is legal; but 3.2 - 4.4 is not legal.";
603 }
604 
605 static llvm::StringRef BreakpointNameHelpTextCallback() {
606   return "A name that can be added to a breakpoint when it is created, or "
607          "later "
608          "on with the \"breakpoint name add\" command.  "
609          "Breakpoint names can be used to specify breakpoints in all the "
610          "places breakpoint IDs "
611          "and breakpoint ID ranges can be used.  As such they provide a "
612          "convenient way to group breakpoints, "
613          "and to operate on breakpoints you create without having to track the "
614          "breakpoint number.  "
615          "Note, the attributes you set when using a breakpoint name in a "
616          "breakpoint command don't "
617          "adhere to the name, but instead are set individually on all the "
618          "breakpoints currently tagged with that "
619          "name.  Future breakpoints "
620          "tagged with that name will not pick up the attributes previously "
621          "given using that name.  "
622          "In order to distinguish breakpoint names from breakpoint IDs and "
623          "ranges, "
624          "names must start with a letter from a-z or A-Z and cannot contain "
625          "spaces, \".\" or \"-\".  "
626          "Also, breakpoint names can only be applied to breakpoints, not to "
627          "breakpoint locations.";
628 }
629 
630 static llvm::StringRef GDBFormatHelpTextCallback() {
631   return "A GDB format consists of a repeat count, a format letter and a size "
632          "letter. "
633          "The repeat count is optional and defaults to 1. The format letter is "
634          "optional "
635          "and defaults to the previous format that was used. The size letter "
636          "is optional "
637          "and defaults to the previous size that was used.\n"
638          "\n"
639          "Format letters include:\n"
640          "o - octal\n"
641          "x - hexadecimal\n"
642          "d - decimal\n"
643          "u - unsigned decimal\n"
644          "t - binary\n"
645          "f - float\n"
646          "a - address\n"
647          "i - instruction\n"
648          "c - char\n"
649          "s - string\n"
650          "T - OSType\n"
651          "A - float as hex\n"
652          "\n"
653          "Size letters include:\n"
654          "b - 1 byte  (byte)\n"
655          "h - 2 bytes (halfword)\n"
656          "w - 4 bytes (word)\n"
657          "g - 8 bytes (giant)\n"
658          "\n"
659          "Example formats:\n"
660          "32xb - show 32 1 byte hexadecimal integer values\n"
661          "16xh - show 16 2 byte hexadecimal integer values\n"
662          "64   - show 64 2 byte hexadecimal integer values (format and size "
663          "from the last format)\n"
664          "dw   - show 1 4 byte decimal integer value\n";
665 }
666 
667 static llvm::StringRef FormatHelpTextCallback() {
668   static std::string help_text;
669 
670   if (!help_text.empty())
671     return help_text;
672 
673   StreamString sstr;
674   sstr << "One of the format names (or one-character names) that can be used "
675           "to show a variable's value:\n";
676   for (Format f = eFormatDefault; f < kNumFormats; f = Format(f + 1)) {
677     if (f != eFormatDefault)
678       sstr.PutChar('\n');
679 
680     char format_char = FormatManager::GetFormatAsFormatChar(f);
681     if (format_char)
682       sstr.Printf("'%c' or ", format_char);
683 
684     sstr.Printf("\"%s\"", FormatManager::GetFormatAsCString(f));
685   }
686 
687   sstr.Flush();
688 
689   help_text = sstr.GetString();
690 
691   return help_text;
692 }
693 
694 static llvm::StringRef LanguageTypeHelpTextCallback() {
695   static std::string help_text;
696 
697   if (!help_text.empty())
698     return help_text;
699 
700   StreamString sstr;
701   sstr << "One of the following languages:\n";
702 
703   Language::PrintAllLanguages(sstr, "  ", "\n");
704 
705   sstr.Flush();
706 
707   help_text = sstr.GetString();
708 
709   return help_text;
710 }
711 
712 static llvm::StringRef SummaryStringHelpTextCallback() {
713   return "A summary string is a way to extract information from variables in "
714          "order to present them using a summary.\n"
715          "Summary strings contain static text, variables, scopes and control "
716          "sequences:\n"
717          "  - Static text can be any sequence of non-special characters, i.e. "
718          "anything but '{', '}', '$', or '\\'.\n"
719          "  - Variables are sequences of characters beginning with ${, ending "
720          "with } and that contain symbols in the format described below.\n"
721          "  - Scopes are any sequence of text between { and }. Anything "
722          "included in a scope will only appear in the output summary if there "
723          "were no errors.\n"
724          "  - Control sequences are the usual C/C++ '\\a', '\\n', ..., plus "
725          "'\\$', '\\{' and '\\}'.\n"
726          "A summary string works by copying static text verbatim, turning "
727          "control sequences into their character counterpart, expanding "
728          "variables and trying to expand scopes.\n"
729          "A variable is expanded by giving it a value other than its textual "
730          "representation, and the way this is done depends on what comes after "
731          "the ${ marker.\n"
732          "The most common sequence if ${var followed by an expression path, "
733          "which is the text one would type to access a member of an aggregate "
734          "types, given a variable of that type"
735          " (e.g. if type T has a member named x, which has a member named y, "
736          "and if t is of type T, the expression path would be .x.y and the way "
737          "to fit that into a summary string would be"
738          " ${var.x.y}). You can also use ${*var followed by an expression path "
739          "and in that case the object referred by the path will be "
740          "dereferenced before being displayed."
741          " If the object is not a pointer, doing so will cause an error. For "
742          "additional details on expression paths, you can type 'help "
743          "expr-path'. \n"
744          "By default, summary strings attempt to display the summary for any "
745          "variable they reference, and if that fails the value. If neither can "
746          "be shown, nothing is displayed."
747          "In a summary string, you can also use an array index [n], or a "
748          "slice-like range [n-m]. This can have two different meanings "
749          "depending on what kind of object the expression"
750          " path refers to:\n"
751          "  - if it is a scalar type (any basic type like int, float, ...) the "
752          "expression is a bitfield, i.e. the bits indicated by the indexing "
753          "operator are extracted out of the number"
754          " and displayed as an individual variable\n"
755          "  - if it is an array or pointer the array items indicated by the "
756          "indexing operator are shown as the result of the variable. if the "
757          "expression is an array, real array items are"
758          " printed; if it is a pointer, the pointer-as-array syntax is used to "
759          "obtain the values (this means, the latter case can have no range "
760          "checking)\n"
761          "If you are trying to display an array for which the size is known, "
762          "you can also use [] instead of giving an exact range. This has the "
763          "effect of showing items 0 thru size - 1.\n"
764          "Additionally, a variable can contain an (optional) format code, as "
765          "in ${var.x.y%code}, where code can be any of the valid formats "
766          "described in 'help format', or one of the"
767          " special symbols only allowed as part of a variable:\n"
768          "    %V: show the value of the object by default\n"
769          "    %S: show the summary of the object by default\n"
770          "    %@: show the runtime-provided object description (for "
771          "Objective-C, it calls NSPrintForDebugger; for C/C++ it does "
772          "nothing)\n"
773          "    %L: show the location of the object (memory address or a "
774          "register name)\n"
775          "    %#: show the number of children of the object\n"
776          "    %T: show the type of the object\n"
777          "Another variable that you can use in summary strings is ${svar . "
778          "This sequence works exactly like ${var, including the fact that "
779          "${*svar is an allowed sequence, but uses"
780          " the object's synthetic children provider instead of the actual "
781          "objects. For instance, if you are using STL synthetic children "
782          "providers, the following summary string would"
783          " count the number of actual elements stored in an std::list:\n"
784          "type summary add -s \"${svar%#}\" -x \"std::list<\"";
785 }
786 
787 static llvm::StringRef ExprPathHelpTextCallback() {
788   return "An expression path is the sequence of symbols that is used in C/C++ "
789          "to access a member variable of an aggregate object (class).\n"
790          "For instance, given a class:\n"
791          "  class foo {\n"
792          "      int a;\n"
793          "      int b; .\n"
794          "      foo* next;\n"
795          "  };\n"
796          "the expression to read item b in the item pointed to by next for foo "
797          "aFoo would be aFoo.next->b.\n"
798          "Given that aFoo could just be any object of type foo, the string "
799          "'.next->b' is the expression path, because it can be attached to any "
800          "foo instance to achieve the effect.\n"
801          "Expression paths in LLDB include dot (.) and arrow (->) operators, "
802          "and most commands using expression paths have ways to also accept "
803          "the star (*) operator.\n"
804          "The meaning of these operators is the same as the usual one given to "
805          "them by the C/C++ standards.\n"
806          "LLDB also has support for indexing ([ ]) in expression paths, and "
807          "extends the traditional meaning of the square brackets operator to "
808          "allow bitfield extraction:\n"
809          "for objects of native types (int, float, char, ...) saying '[n-m]' "
810          "as an expression path (where n and m are any positive integers, e.g. "
811          "[3-5]) causes LLDB to extract"
812          " bits n thru m from the value of the variable. If n == m, [n] is "
813          "also allowed as a shortcut syntax. For arrays and pointers, "
814          "expression paths can only contain one index"
815          " and the meaning of the operation is the same as the one defined by "
816          "C/C++ (item extraction). Some commands extend bitfield-like syntax "
817          "for arrays and pointers with the"
818          " meaning of array slicing (taking elements n thru m inside the array "
819          "or pointed-to memory).";
820 }
821 
822 void CommandObject::FormatLongHelpText(Stream &output_strm,
823                                        llvm::StringRef long_help) {
824   CommandInterpreter &interpreter = GetCommandInterpreter();
825   std::stringstream lineStream(long_help);
826   std::string line;
827   while (std::getline(lineStream, line)) {
828     if (line.empty()) {
829       output_strm << "\n";
830       continue;
831     }
832     size_t result = line.find_first_not_of(" \t");
833     if (result == std::string::npos) {
834       result = 0;
835     }
836     std::string whitespace_prefix = line.substr(0, result);
837     std::string remainder = line.substr(result);
838     interpreter.OutputFormattedHelpText(output_strm, whitespace_prefix.c_str(),
839                                         remainder.c_str());
840   }
841 }
842 
843 void CommandObject::GenerateHelpText(CommandReturnObject &result) {
844   GenerateHelpText(result.GetOutputStream());
845 
846   result.SetStatus(eReturnStatusSuccessFinishNoResult);
847 }
848 
849 void CommandObject::GenerateHelpText(Stream &output_strm) {
850   CommandInterpreter &interpreter = GetCommandInterpreter();
851   if (WantsRawCommandString()) {
852     std::string help_text(GetHelp());
853     help_text.append("  Expects 'raw' input (see 'help raw-input'.)");
854     interpreter.OutputFormattedHelpText(output_strm, "", "", help_text.c_str(),
855                                         1);
856   } else
857     interpreter.OutputFormattedHelpText(output_strm, "", "", GetHelp(), 1);
858   output_strm << "\nSyntax: " << GetSyntax() << "\n";
859   Options *options = GetOptions();
860   if (options != nullptr) {
861     options->GenerateOptionUsage(
862         output_strm, this,
863         GetCommandInterpreter().GetDebugger().GetTerminalWidth());
864   }
865   llvm::StringRef long_help = GetHelpLong();
866   if (!long_help.empty()) {
867     FormatLongHelpText(output_strm, long_help);
868   }
869   if (!IsDashDashCommand() && options && options->NumCommandOptions() > 0) {
870     if (WantsRawCommandString() && !WantsCompletion()) {
871       // Emit the message about using ' -- ' between the end of the command
872       // options and the raw input conditionally, i.e., only if the command
873       // object does not want completion.
874       interpreter.OutputFormattedHelpText(
875           output_strm, "", "",
876           "\nImportant Note: Because this command takes 'raw' input, if you "
877           "use any command options"
878           " you must use ' -- ' between the end of the command options and the "
879           "beginning of the raw input.",
880           1);
881     } else if (GetNumArgumentEntries() > 0) {
882       // Also emit a warning about using "--" in case you are using a command
883       // that takes options and arguments.
884       interpreter.OutputFormattedHelpText(
885           output_strm, "", "",
886           "\nThis command takes options and free-form arguments.  If your "
887           "arguments resemble"
888           " option specifiers (i.e., they start with a - or --), you must use "
889           "' -- ' between"
890           " the end of the command options and the beginning of the arguments.",
891           1);
892     }
893   }
894 }
895 
896 void CommandObject::AddIDsArgumentData(CommandArgumentEntry &arg,
897                                        CommandArgumentType ID,
898                                        CommandArgumentType IDRange) {
899   CommandArgumentData id_arg;
900   CommandArgumentData id_range_arg;
901 
902   // Create the first variant for the first (and only) argument for this
903   // command.
904   id_arg.arg_type = ID;
905   id_arg.arg_repetition = eArgRepeatOptional;
906 
907   // Create the second variant for the first (and only) argument for this
908   // command.
909   id_range_arg.arg_type = IDRange;
910   id_range_arg.arg_repetition = eArgRepeatOptional;
911 
912   // The first (and only) argument for this command could be either an id or an
913   // id_range. Push both variants into the entry for the first argument for
914   // this command.
915   arg.push_back(id_arg);
916   arg.push_back(id_range_arg);
917 }
918 
919 const char *CommandObject::GetArgumentTypeAsCString(
920     const lldb::CommandArgumentType arg_type) {
921   assert(arg_type < eArgTypeLastArg &&
922          "Invalid argument type passed to GetArgumentTypeAsCString");
923   return g_arguments_data[arg_type].arg_name;
924 }
925 
926 const char *CommandObject::GetArgumentDescriptionAsCString(
927     const lldb::CommandArgumentType arg_type) {
928   assert(arg_type < eArgTypeLastArg &&
929          "Invalid argument type passed to GetArgumentDescriptionAsCString");
930   return g_arguments_data[arg_type].help_text;
931 }
932 
933 Target *CommandObject::GetDummyTarget() {
934   return m_interpreter.GetDebugger().GetDummyTarget();
935 }
936 
937 Target *CommandObject::GetSelectedOrDummyTarget(bool prefer_dummy) {
938   return m_interpreter.GetDebugger().GetSelectedOrDummyTarget(prefer_dummy);
939 }
940 
941 Thread *CommandObject::GetDefaultThread() {
942   Thread *thread_to_use = m_exe_ctx.GetThreadPtr();
943   if (thread_to_use)
944     return thread_to_use;
945 
946   Process *process = m_exe_ctx.GetProcessPtr();
947   if (!process) {
948     Target *target = m_exe_ctx.GetTargetPtr();
949     if (!target) {
950       target = m_interpreter.GetDebugger().GetSelectedTarget().get();
951     }
952     if (target)
953       process = target->GetProcessSP().get();
954   }
955 
956   if (process)
957     return process->GetThreadList().GetSelectedThread().get();
958   else
959     return nullptr;
960 }
961 
962 bool CommandObjectParsed::Execute(const char *args_string,
963                                   CommandReturnObject &result) {
964   bool handled = false;
965   Args cmd_args(args_string);
966   if (HasOverrideCallback()) {
967     Args full_args(GetCommandName());
968     full_args.AppendArguments(cmd_args);
969     handled =
970         InvokeOverrideCallback(full_args.GetConstArgumentVector(), result);
971   }
972   if (!handled) {
973     for (auto entry : llvm::enumerate(cmd_args.entries())) {
974       if (!entry.value().ref.empty() && entry.value().ref.front() == '`') {
975         cmd_args.ReplaceArgumentAtIndex(
976             entry.index(),
977             m_interpreter.ProcessEmbeddedScriptCommands(entry.value().c_str()));
978       }
979     }
980 
981     if (CheckRequirements(result)) {
982       if (ParseOptions(cmd_args, result)) {
983         // Call the command-specific version of 'Execute', passing it the
984         // already processed arguments.
985         handled = DoExecute(cmd_args, result);
986       }
987     }
988 
989     Cleanup();
990   }
991   return handled;
992 }
993 
994 bool CommandObjectRaw::Execute(const char *args_string,
995                                CommandReturnObject &result) {
996   bool handled = false;
997   if (HasOverrideCallback()) {
998     std::string full_command(GetCommandName());
999     full_command += ' ';
1000     full_command += args_string;
1001     const char *argv[2] = {nullptr, nullptr};
1002     argv[0] = full_command.c_str();
1003     handled = InvokeOverrideCallback(argv, result);
1004   }
1005   if (!handled) {
1006     if (CheckRequirements(result))
1007       handled = DoExecute(args_string, result);
1008 
1009     Cleanup();
1010   }
1011   return handled;
1012 }
1013 
1014 static llvm::StringRef arch_helper() {
1015   static StreamString g_archs_help;
1016   if (g_archs_help.Empty()) {
1017     StringList archs;
1018     ArchSpec::AutoComplete(llvm::StringRef(), archs);
1019     g_archs_help.Printf("These are the supported architecture names:\n");
1020     archs.Join("\n", g_archs_help);
1021   }
1022   return g_archs_help.GetString();
1023 }
1024 
1025 CommandObject::ArgumentTableEntry CommandObject::g_arguments_data[] = {
1026     // clang-format off
1027     { eArgTypeAddress, "address", CommandCompletions::eNoCompletion, { nullptr, false }, "A valid address in the target program's execution space." },
1028     { eArgTypeAddressOrExpression, "address-expression", CommandCompletions::eNoCompletion, { nullptr, false }, "An expression that resolves to an address." },
1029     { eArgTypeAliasName, "alias-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of an abbreviation (alias) for a debugger command." },
1030     { eArgTypeAliasOptions, "options-for-aliased-command", CommandCompletions::eNoCompletion, { nullptr, false }, "Command options to be used as part of an alias (abbreviation) definition.  (See 'help commands alias' for more information.)" },
1031     { eArgTypeArchitecture, "arch", CommandCompletions::eArchitectureCompletion, { arch_helper, true }, "The architecture name, e.g. i386 or x86_64." },
1032     { eArgTypeBoolean, "boolean", CommandCompletions::eNoCompletion, { nullptr, false }, "A Boolean value: 'true' or 'false'" },
1033     { eArgTypeBreakpointID, "breakpt-id", CommandCompletions::eNoCompletion, { BreakpointIDHelpTextCallback, false }, nullptr },
1034     { eArgTypeBreakpointIDRange, "breakpt-id-list", CommandCompletions::eNoCompletion, { BreakpointIDRangeHelpTextCallback, false }, nullptr },
1035     { eArgTypeBreakpointName, "breakpoint-name", CommandCompletions::eNoCompletion, { BreakpointNameHelpTextCallback, false }, nullptr },
1036     { eArgTypeByteSize, "byte-size", CommandCompletions::eNoCompletion, { nullptr, false }, "Number of bytes to use." },
1037     { eArgTypeClassName, "class-name", CommandCompletions::eNoCompletion, { nullptr, false }, "Then name of a class from the debug information in the program." },
1038     { eArgTypeCommandName, "cmd-name", CommandCompletions::eNoCompletion, { nullptr, false }, "A debugger command (may be multiple words), without any options or arguments." },
1039     { eArgTypeCount, "count", CommandCompletions::eNoCompletion, { nullptr, false }, "An unsigned integer." },
1040     { eArgTypeDirectoryName, "directory", CommandCompletions::eDiskDirectoryCompletion, { nullptr, false }, "A directory name." },
1041     { eArgTypeDisassemblyFlavor, "disassembly-flavor", CommandCompletions::eNoCompletion, { nullptr, false }, "A disassembly flavor recognized by your disassembly plugin.  Currently the only valid options are \"att\" and \"intel\" for Intel targets" },
1042     { eArgTypeDescriptionVerbosity, "description-verbosity", CommandCompletions::eNoCompletion, { nullptr, false }, "How verbose the output of 'po' should be." },
1043     { eArgTypeEndAddress, "end-address", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1044     { eArgTypeExpression, "expr", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1045     { eArgTypeExpressionPath, "expr-path", CommandCompletions::eNoCompletion, { ExprPathHelpTextCallback, true }, nullptr },
1046     { eArgTypeExprFormat, "expression-format", CommandCompletions::eNoCompletion, { nullptr, false }, "[ [bool|b] | [bin] | [char|c] | [oct|o] | [dec|i|d|u] | [hex|x] | [float|f] | [cstr|s] ]" },
1047     { eArgTypeFilename, "filename", CommandCompletions::eDiskFileCompletion, { nullptr, false }, "The name of a file (can include path)." },
1048     { eArgTypeFormat, "format", CommandCompletions::eNoCompletion, { FormatHelpTextCallback, true }, nullptr },
1049     { eArgTypeFrameIndex, "frame-index", CommandCompletions::eNoCompletion, { nullptr, false }, "Index into a thread's list of frames." },
1050     { eArgTypeFullName, "fullname", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1051     { eArgTypeFunctionName, "function-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a function." },
1052     { eArgTypeFunctionOrSymbol, "function-or-symbol", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a function or symbol." },
1053     { eArgTypeGDBFormat, "gdb-format", CommandCompletions::eNoCompletion, { GDBFormatHelpTextCallback, true }, nullptr },
1054     { eArgTypeHelpText, "help-text", CommandCompletions::eNoCompletion, { nullptr, false }, "Text to be used as help for some other entity in LLDB" },
1055     { eArgTypeIndex, "index", CommandCompletions::eNoCompletion, { nullptr, false }, "An index into a list." },
1056     { eArgTypeLanguage, "source-language", CommandCompletions::eNoCompletion, { LanguageTypeHelpTextCallback, true }, nullptr },
1057     { eArgTypeLineNum, "linenum", CommandCompletions::eNoCompletion, { nullptr, false }, "Line number in a source file." },
1058     { eArgTypeLogCategory, "log-category", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a category within a log channel, e.g. all (try \"log list\" to see a list of all channels and their categories." },
1059     { eArgTypeLogChannel, "log-channel", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a log channel, e.g. process.gdb-remote (try \"log list\" to see a list of all channels and their categories)." },
1060     { eArgTypeMethod, "method", CommandCompletions::eNoCompletion, { nullptr, false }, "A C++ method name." },
1061     { eArgTypeName, "name", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1062     { eArgTypeNewPathPrefix, "new-path-prefix", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1063     { eArgTypeNumLines, "num-lines", CommandCompletions::eNoCompletion, { nullptr, false }, "The number of lines to use." },
1064     { eArgTypeNumberPerLine, "number-per-line", CommandCompletions::eNoCompletion, { nullptr, false }, "The number of items per line to display." },
1065     { eArgTypeOffset, "offset", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1066     { eArgTypeOldPathPrefix, "old-path-prefix", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1067     { eArgTypeOneLiner, "one-line-command", CommandCompletions::eNoCompletion, { nullptr, false }, "A command that is entered as a single line of text." },
1068     { eArgTypePath, "path", CommandCompletions::eDiskFileCompletion, { nullptr, false }, "Path." },
1069     { eArgTypePermissionsNumber, "perms-numeric", CommandCompletions::eNoCompletion, { nullptr, false }, "Permissions given as an octal number (e.g. 755)." },
1070     { eArgTypePermissionsString, "perms=string", CommandCompletions::eNoCompletion, { nullptr, false }, "Permissions given as a string value (e.g. rw-r-xr--)." },
1071     { eArgTypePid, "pid", CommandCompletions::eNoCompletion, { nullptr, false }, "The process ID number." },
1072     { eArgTypePlugin, "plugin", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1073     { eArgTypeProcessName, "process-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of the process." },
1074     { eArgTypePythonClass, "python-class", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a Python class." },
1075     { eArgTypePythonFunction, "python-function", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a Python function." },
1076     { eArgTypePythonScript, "python-script", CommandCompletions::eNoCompletion, { nullptr, false }, "Source code written in Python." },
1077     { eArgTypeQueueName, "queue-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of the thread queue." },
1078     { eArgTypeRegisterName, "register-name", CommandCompletions::eNoCompletion, { RegisterNameHelpTextCallback, true }, nullptr },
1079     { eArgTypeRegularExpression, "regular-expression", CommandCompletions::eNoCompletion, { nullptr, false }, "A regular expression." },
1080     { eArgTypeRunArgs, "run-args", CommandCompletions::eNoCompletion, { nullptr, false }, "Arguments to be passed to the target program when it starts executing." },
1081     { eArgTypeRunMode, "run-mode", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1082     { eArgTypeScriptedCommandSynchronicity, "script-cmd-synchronicity", CommandCompletions::eNoCompletion, { nullptr, false }, "The synchronicity to use to run scripted commands with regard to LLDB event system." },
1083     { eArgTypeScriptLang, "script-language", CommandCompletions::eNoCompletion, { nullptr, false }, "The scripting language to be used for script-based commands.  Currently only Python is valid." },
1084     { eArgTypeSearchWord, "search-word", CommandCompletions::eNoCompletion, { nullptr, false }, "Any word of interest for search purposes." },
1085     { eArgTypeSelector, "selector", CommandCompletions::eNoCompletion, { nullptr, false }, "An Objective-C selector name." },
1086     { eArgTypeSettingIndex, "setting-index", CommandCompletions::eNoCompletion, { nullptr, false }, "An index into a settings variable that is an array (try 'settings list' to see all the possible settings variables and their types)." },
1087     { eArgTypeSettingKey, "setting-key", CommandCompletions::eNoCompletion, { nullptr, false }, "A key into a settings variables that is a dictionary (try 'settings list' to see all the possible settings variables and their types)." },
1088     { eArgTypeSettingPrefix, "setting-prefix", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a settable internal debugger variable up to a dot ('.'), e.g. 'target.process.'" },
1089     { eArgTypeSettingVariableName, "setting-variable-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a settable internal debugger variable.  Type 'settings list' to see a complete list of such variables." },
1090     { eArgTypeShlibName, "shlib-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a shared library." },
1091     { eArgTypeSourceFile, "source-file", CommandCompletions::eSourceFileCompletion, { nullptr, false }, "The name of a source file.." },
1092     { eArgTypeSortOrder, "sort-order", CommandCompletions::eNoCompletion, { nullptr, false }, "Specify a sort order when dumping lists." },
1093     { eArgTypeStartAddress, "start-address", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1094     { eArgTypeSummaryString, "summary-string", CommandCompletions::eNoCompletion, { SummaryStringHelpTextCallback, true }, nullptr },
1095     { eArgTypeSymbol, "symbol", CommandCompletions::eSymbolCompletion, { nullptr, false }, "Any symbol name (function name, variable, argument, etc.)" },
1096     { eArgTypeThreadID, "thread-id", CommandCompletions::eNoCompletion, { nullptr, false }, "Thread ID number." },
1097     { eArgTypeThreadIndex, "thread-index", CommandCompletions::eNoCompletion, { nullptr, false }, "Index into the process' list of threads." },
1098     { eArgTypeThreadName, "thread-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The thread's name." },
1099     { eArgTypeTypeName, "type-name", CommandCompletions::eNoCompletion, { nullptr, false }, "A type name." },
1100     { eArgTypeUnsignedInteger, "unsigned-integer", CommandCompletions::eNoCompletion, { nullptr, false }, "An unsigned integer." },
1101     { eArgTypeUnixSignal, "unix-signal", CommandCompletions::eNoCompletion, { nullptr, false }, "A valid Unix signal name or number (e.g. SIGKILL, KILL or 9)." },
1102     { eArgTypeVarName, "variable-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a variable in your program." },
1103     { eArgTypeValue, "value", CommandCompletions::eNoCompletion, { nullptr, false }, "A value could be anything, depending on where and how it is used." },
1104     { eArgTypeWidth, "width", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1105     { eArgTypeNone, "none", CommandCompletions::eNoCompletion, { nullptr, false }, "No help available for this." },
1106     { eArgTypePlatform, "platform-name", CommandCompletions::ePlatformPluginCompletion, { nullptr, false }, "The name of an installed platform plug-in . Type 'platform list' to see a complete list of installed platforms." },
1107     { eArgTypeWatchpointID, "watchpt-id", CommandCompletions::eNoCompletion, { nullptr, false }, "Watchpoint IDs are positive integers." },
1108     { eArgTypeWatchpointIDRange, "watchpt-id-list", CommandCompletions::eNoCompletion, { nullptr, false }, "For example, '1-3' or '1 to 3'." },
1109     { eArgTypeWatchType, "watch-type", CommandCompletions::eNoCompletion, { nullptr, false }, "Specify the type for a watchpoint." },
1110     { eArgRawInput, "raw-input", CommandCompletions::eNoCompletion, { nullptr, false }, "Free-form text passed to a command without prior interpretation, allowing spaces without requiring quotes.  To pass arguments and free form text put two dashes ' -- ' between the last argument and any raw input." },
1111     { eArgTypeCommand, "command", CommandCompletions::eNoCompletion, { nullptr, false }, "An LLDB Command line command." }
1112     // clang-format on
1113 };
1114 
1115 const CommandObject::ArgumentTableEntry *CommandObject::GetArgumentTable() {
1116   // If this assertion fires, then the table above is out of date with the
1117   // CommandArgumentType enumeration
1118   assert((sizeof(CommandObject::g_arguments_data) /
1119           sizeof(CommandObject::ArgumentTableEntry)) == eArgTypeLastArg);
1120   return CommandObject::g_arguments_data;
1121 }
1122