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