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