LLDB mainline
|
Public Member Functions | |
CommandObjectTargetSymbolsAdd (CommandInterpreter &interpreter) | |
~CommandObjectTargetSymbolsAdd () override=default | |
Options * | GetOptions () override |
Public Member Functions inherited from lldb_private::CommandObjectParsed | |
CommandObjectParsed (CommandInterpreter &interpreter, const char *name, const char *help=nullptr, const char *syntax=nullptr, uint32_t flags=0) | |
~CommandObjectParsed () override=default | |
void | Execute (const char *args_string, CommandReturnObject &result) override |
Public Member Functions inherited from lldb_private::CommandObject | |
CommandObject (CommandInterpreter &interpreter, llvm::StringRef name, llvm::StringRef help="", llvm::StringRef syntax="", uint32_t flags=0) | |
virtual | ~CommandObject ()=default |
CommandInterpreter & | GetCommandInterpreter () |
Debugger & | GetDebugger () |
virtual llvm::StringRef | GetHelp () |
virtual llvm::StringRef | GetHelpLong () |
virtual llvm::StringRef | GetSyntax () |
llvm::StringRef | GetCommandName () const |
virtual void | SetHelp (llvm::StringRef str) |
virtual void | SetHelpLong (llvm::StringRef str) |
void | SetSyntax (llvm::StringRef str) |
virtual bool | IsRemovable () const |
virtual bool | IsMultiwordObject () |
bool | IsUserCommand () |
void | SetIsUserCommand (bool is_user) |
virtual CommandObjectMultiword * | GetAsMultiwordCommand () |
virtual bool | IsAlias () |
virtual bool | IsDashDashCommand () |
virtual lldb::CommandObjectSP | GetSubcommandSP (llvm::StringRef sub_cmd, StringList *matches=nullptr) |
virtual lldb::CommandObjectSP | GetSubcommandSPExact (llvm::StringRef sub_cmd) |
virtual CommandObject * | GetSubcommandObject (llvm::StringRef sub_cmd, StringList *matches=nullptr) |
void | FormatLongHelpText (Stream &output_strm, llvm::StringRef long_help) |
void | GenerateHelpText (CommandReturnObject &result) |
virtual void | GenerateHelpText (Stream &result) |
virtual bool | LoadSubCommand (llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_obj) |
virtual llvm::Error | LoadUserSubcommand (llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_obj, bool can_replace) |
virtual bool | WantsRawCommandString ()=0 |
virtual bool | WantsCompletion () |
virtual Options * | GetOptions () |
void | AddSimpleArgumentList (lldb::CommandArgumentType arg_type, ArgumentRepetitionType repetition_type=eArgRepeatPlain) |
void | AddIDsArgumentData (IDType type) |
int | GetNumArgumentEntries () |
CommandArgumentEntry * | GetArgumentEntryAtIndex (int idx) |
void | GetFormattedCommandArguments (Stream &str, uint32_t opt_set_mask=LLDB_OPT_SET_ALL) |
bool | ParseOptions (Args &args, CommandReturnObject &result) |
void | SetCommandName (llvm::StringRef name) |
virtual void | HandleCompletion (CompletionRequest &request) |
This default version handles calling option argument completions and then calls HandleArgumentCompletion if the cursor is on an argument, not an option. | |
virtual void | HandleArgumentCompletion (CompletionRequest &request, OptionElementVector &opt_element_vector) |
The default version handles argument definitions that have only one argument type, and use one of the argument types that have an entry in the CommonCompletions. | |
bool | HelpTextContainsWord (llvm::StringRef search_word, bool search_short_help=true, bool search_long_help=true, bool search_syntax=true, bool search_options=true) |
Flags & | GetFlags () |
The flags accessor. | |
const Flags & | GetFlags () const |
The flags const accessor. | |
virtual std::optional< std::string > | GetRepeatCommand (Args ¤t_command_args, uint32_t index) |
Get the command that appropriate for a "repeat" of the current command. | |
bool | HasOverrideCallback () const |
void | SetOverrideCallback (lldb::CommandOverrideCallback callback, void *baton) |
void | SetOverrideCallback (lldb_private::CommandOverrideCallbackWithResult callback, void *baton) |
bool | InvokeOverrideCallback (const char **argv, CommandReturnObject &result) |
virtual void | Execute (const char *args_string, CommandReturnObject &result)=0 |
Protected Member Functions | |
bool | AddModuleSymbols (Target *target, ModuleSpec &module_spec, bool &flush, CommandReturnObject &result) |
bool | DownloadObjectAndSymbolFile (ModuleSpec &module_spec, CommandReturnObject &result, bool &flush) |
bool | AddSymbolsForUUID (CommandReturnObject &result, bool &flush) |
bool | AddSymbolsForFile (CommandReturnObject &result, bool &flush) |
bool | AddSymbolsForFrame (CommandReturnObject &result, bool &flush) |
bool | AddSymbolsForStack (CommandReturnObject &result, bool &flush) |
void | DoExecute (Args &args, CommandReturnObject &result) override |
Protected Member Functions inherited from lldb_private::CommandObjectParsed | |
virtual void | DoExecute (Args &command, CommandReturnObject &result)=0 |
bool | WantsRawCommandString () override |
Protected Member Functions inherited from lldb_private::CommandObject | |
bool | ParseOptionsAndNotify (Args &args, CommandReturnObject &result, OptionGroupOptions &group_options, ExecutionContext &exe_ctx) |
virtual const char * | GetInvalidTargetDescription () |
virtual const char * | GetInvalidProcessDescription () |
virtual const char * | GetInvalidThreadDescription () |
virtual const char * | GetInvalidFrameDescription () |
virtual const char * | GetInvalidRegContextDescription () |
Target & | GetDummyTarget () |
Target & | GetTarget () |
Thread * | GetDefaultThread () |
bool | CheckRequirements (CommandReturnObject &result) |
Check the command to make sure anything required by this command is available. | |
void | Cleanup () |
Protected Attributes | |
OptionGroupOptions | m_option_group |
OptionGroupUUID | m_uuid_option_group |
OptionGroupFile | m_file_option |
OptionGroupBoolean | m_current_frame_option |
OptionGroupBoolean | m_current_stack_option |
Protected Attributes inherited from lldb_private::CommandObject | |
CommandInterpreter & | m_interpreter |
ExecutionContext | m_exe_ctx |
std::unique_lock< std::recursive_mutex > | m_api_locker |
std::string | m_cmd_name |
std::string | m_cmd_help_short |
std::string | m_cmd_help_long |
std::string | m_cmd_syntax |
Flags | m_flags |
std::vector< CommandArgumentEntry > | m_arguments |
lldb::CommandOverrideCallback | m_deprecated_command_override_callback |
lldb_private::CommandOverrideCallbackWithResult | m_command_override_callback |
void * | m_command_override_baton |
bool | m_is_user_command = false |
Definition at line 4206 of file CommandObjectTarget.cpp.
|
inline |
Definition at line 4208 of file CommandObjectTarget.cpp.
References lldb_private::CommandObject::AddSimpleArgumentList(), lldb_private::OptionGroupOptions::Append(), lldb::eArgTypeFilename, lldb_private::OptionGroupOptions::Finalize(), LLDB_OPT_SET_1, LLDB_OPT_SET_2, LLDB_OPT_SET_ALL, m_current_frame_option, m_current_stack_option, m_file_option, m_option_group, and m_uuid_option_group.
|
overridedefault |
|
inlineprotected |
Definition at line 4247 of file CommandObjectTarget.cpp.
References lldb_private::ModuleList::Append(), lldb_private::CommandReturnObject::AppendError(), lldb_private::CommandReturnObject::AppendErrorWithFormat(), lldb_private::CommandReturnObject::AppendMessageWithFormat(), lldb_private::CommandReturnObject::AppendWarning(), lldb_private::CommandReturnObject::AppendWarningWithFormat(), lldb_private::UUID::Dump(), lldb::eReturnStatusSuccessFinishResult, error(), lldb_private::ModuleSpecList::FindMatchingModuleSpec(), lldb_private::ModuleList::FindModules(), lldb_private::ModuleSpec::GetArchitecture(), lldb_private::Target::GetArchitecture(), lldb_private::StreamString::GetData(), lldb_private::CommandReturnObject::GetErrorStream(), lldb_private::FileSpec::GetFilename(), lldb_private::FileSpec::GetFileNameStrippingExtension(), lldb_private::ModuleSpec::GetFileSpec(), lldb_private::ObjectFile::GetFileSpec(), lldb_private::Target::GetImages(), lldb_private::ModuleList::GetModuleAtIndex(), lldb_private::ModuleSpecList::GetModuleSpecAtIndex(), lldb_private::ObjectFile::GetModuleSpecifications(), lldb_private::SymbolFile::GetObjectFile(), lldb_private::FileSpec::GetPath(), lldb_private::ModuleSpec::GetPlatformFileSpec(), lldb_private::ModuleList::GetSize(), lldb_private::ModuleSpecList::GetSize(), lldb_private::StreamString::GetSize(), lldb_private::ModuleSpec::GetSymbolFileSpec(), lldb_private::ModuleSpec::GetUUID(), lldb_private::ModuleList::IsEmpty(), lldb_private::UUID::IsValid(), PATH_MAX, lldb_private::FileSpec::SetFilename(), lldb_private::CommandReturnObject::SetStatus(), and lldb_private::Target::SymbolsDidLoad().
Referenced by DoExecute(), and DownloadObjectAndSymbolFile().
|
inlineprotected |
Definition at line 4434 of file CommandObjectTarget.cpp.
References lldb_private::CommandReturnObject::AppendError(), DownloadObjectAndSymbolFile(), lldb_private::ModuleList::FindFirstModule(), lldb_private::ModuleSpec::GetArchitecture(), lldb_private::Target::GetArchitecture(), lldb_private::OptionValueFileSpec::GetCurrentValue(), lldb_private::ModuleSpec::GetFileSpec(), lldb_private::Target::GetImages(), lldb_private::OptionGroupFile::GetOptionValue(), lldb_private::ModuleSpec::GetPlatformFileSpec(), lldb_private::StreamString::GetString(), lldb_private::ExecutionContext::GetTargetPtr(), lldb_private::ModuleSpec::GetUUID(), lldb_private::CommandObject::m_exe_ctx, m_file_option, lldb_private::OptionValue::OptionWasSet(), and lldb_private::Stream::PutCString().
Referenced by DoExecute().
|
inlineprotected |
Definition at line 4464 of file CommandObjectTarget.cpp.
References lldb_private::CommandReturnObject::AppendError(), lldb_private::CommandReturnObject::AppendErrorWithFormat(), DownloadObjectAndSymbolFile(), lldb_private::ModuleSpec::GetArchitecture(), lldb_private::ModuleSpec::GetFileSpec(), lldb_private::ExecutionContext::GetFramePtr(), lldb_private::OptionGroupBoolean::GetOptionValue(), lldb_private::ExecutionContext::GetProcessPtr(), lldb_private::Process::GetState(), lldb_private::StackFrame::GetSymbolContext(), lldb_private::ModuleSpec::GetUUID(), m_current_frame_option, lldb_private::CommandObject::m_exe_ctx, lldb_private::SymbolContext::module_sp, lldb_private::OptionValue::OptionWasSet(), lldb_private::StateAsCString(), and lldb_private::StateIsStoppedState().
Referenced by DoExecute().
|
inlineprotected |
Definition at line 4507 of file CommandObjectTarget.cpp.
References lldb_private::CommandReturnObject::AppendError(), lldb_private::CommandReturnObject::AppendErrorWithFormat(), DownloadObjectAndSymbolFile(), lldb_private::ModuleSpec::GetArchitecture(), lldb_private::ModuleSpec::GetFileSpec(), lldb_private::OptionGroupBoolean::GetOptionValue(), lldb_private::ExecutionContext::GetProcessPtr(), lldb_private::Thread::GetStackFrameAtIndex(), lldb_private::Thread::GetStackFrameCount(), lldb_private::Process::GetState(), lldb_private::ExecutionContext::GetThreadPtr(), lldb_private::ModuleSpec::GetUUID(), m_current_stack_option, lldb_private::CommandObject::m_exe_ctx, lldb_private::OptionValue::OptionWasSet(), lldb_private::StateAsCString(), and lldb_private::StateIsStoppedState().
Referenced by DoExecute().
|
inlineprotected |
Definition at line 4416 of file CommandObjectTarget.cpp.
References lldb_private::CommandReturnObject::AppendError(), DownloadObjectAndSymbolFile(), lldb_private::UUID::Dump(), lldb_private::OptionValueUUID::GetCurrentValue(), lldb_private::OptionGroupUUID::GetOptionValue(), lldb_private::StreamString::GetString(), lldb_private::ModuleSpec::GetUUID(), m_uuid_option_group, lldb_private::OptionValue::OptionWasSet(), and lldb_private::Stream::PutCString().
Referenced by DoExecute().
|
inlineoverrideprotectedvirtual |
Implements lldb_private::CommandObjectParsed.
Definition at line 4560 of file CommandObjectTarget.cpp.
References AddModuleSymbols(), AddSymbolsForFile(), AddSymbolsForFrame(), AddSymbolsForStack(), AddSymbolsForUUID(), lldb_private::CommandReturnObject::AppendError(), lldb_private::CommandReturnObject::AppendErrorWithFormat(), lldb_private::Args::entries(), lldb::eReturnStatusFailed, lldb_private::FileSystem::Exists(), lldb_private::Process::Flush(), lldb_private::Args::GetArgumentCount(), lldb_private::OptionValueFileSpec::GetCurrentValue(), lldb_private::ModuleSpec::GetFileSpec(), lldb_private::OptionGroupBoolean::GetOptionValue(), lldb_private::OptionGroupFile::GetOptionValue(), lldb_private::OptionGroupUUID::GetOptionValue(), lldb_private::FileSpec::GetPath(), lldb_private::Target::GetPlatform(), lldb_private::ExecutionContext::GetProcessPtr(), lldb_private::ModuleSpec::GetSymbolFileSpec(), lldb_private::ExecutionContext::GetTargetPtr(), lldb_private::FileSystem::Instance(), m_current_frame_option, m_current_stack_option, lldb_private::CommandObject::m_exe_ctx, m_file_option, m_uuid_option_group, lldb_private::OptionValue::OptionWasSet(), lldb_private::FileSystem::Resolve(), lldb_private::FileSpec::SetFile(), lldb_private::CommandReturnObject::SetStatus(), and lldb_private::Success.
|
inlineprotected |
Definition at line 4403 of file CommandObjectTarget.cpp.
References AddModuleSymbols(), lldb_private::PluginManager::DownloadObjectAndSymbolFile(), error(), lldb_private::ModuleSpec::GetSymbolFileSpec(), lldb_private::ExecutionContext::GetTargetPtr(), lldb_private::CommandObject::m_exe_ctx, and lldb_private::CommandReturnObject::SetError().
Referenced by AddSymbolsForFile(), AddSymbolsForFrame(), AddSymbolsForStack(), and AddSymbolsForUUID().
|
inlineoverridevirtual |
Reimplemented from lldb_private::CommandObject.
Definition at line 4244 of file CommandObjectTarget.cpp.
References m_option_group.
|
protected |
Definition at line 4650 of file CommandObjectTarget.cpp.
Referenced by AddSymbolsForFrame(), CommandObjectTargetSymbolsAdd(), and DoExecute().
|
protected |
Definition at line 4651 of file CommandObjectTarget.cpp.
Referenced by AddSymbolsForStack(), CommandObjectTargetSymbolsAdd(), and DoExecute().
|
protected |
Definition at line 4649 of file CommandObjectTarget.cpp.
Referenced by AddSymbolsForFile(), CommandObjectTargetSymbolsAdd(), and DoExecute().
|
protected |
Definition at line 4647 of file CommandObjectTarget.cpp.
Referenced by CommandObjectTargetSymbolsAdd(), and GetOptions().
|
protected |
Definition at line 4648 of file CommandObjectTarget.cpp.
Referenced by AddSymbolsForUUID(), CommandObjectTargetSymbolsAdd(), and DoExecute().