forked from OSchip/llvm-project
[lldb] Unify target checking in CommandObject
Summary: We currently have several CommandObjects that manually reimplement the checking for a selected target or a target in the execution context (which is the selected target when they are invoked). This patch removes all these checks and replaces them by setting the eCommandRequiresTarget flag that Pavel suggested. With this flag we are doing the same check but without having to duplicate this code in all these CommandObjects. I also added a `GetSelectedTarget()` variant of the `GetSelectedOrDummyTarget()` function to the CommandObject that checks that the flag is set and then returns a reference to the target. I didn't rewrite all the `target` variables from `Target *` to `Target &` in this patch as last time this change caused a lot of merge conflicts in Swift and I would prefer having that in a separate NFC commit. Reviewers: labath, clayborg Reviewed By: labath, clayborg Subscribers: clayborg, JDevlieghere, jingham, amccarth, abidh, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D66863 llvm-svn: 370571
This commit is contained in:
parent
d4df363b14
commit
04a4c0910b
|
@ -331,6 +331,7 @@ protected:
|
|||
// selected target, or if no target is present you want to prime the dummy
|
||||
// target with entities that will be copied over to new targets.
|
||||
Target &GetSelectedOrDummyTarget(bool prefer_dummy = false);
|
||||
Target &GetSelectedTarget();
|
||||
Target &GetDummyTarget();
|
||||
|
||||
// If a command needs to use the "current" thread, use this call. Command
|
||||
|
|
|
@ -589,10 +589,10 @@ private:
|
|||
class CommandObjectBreakpointCommandList : public CommandObjectParsed {
|
||||
public:
|
||||
CommandObjectBreakpointCommandList(CommandInterpreter &interpreter)
|
||||
: CommandObjectParsed(interpreter, "list", "List the script or set of "
|
||||
"commands to be executed when "
|
||||
"the breakpoint is hit.",
|
||||
nullptr) {
|
||||
: CommandObjectParsed(interpreter, "list",
|
||||
"List the script or set of commands to be "
|
||||
"executed when the breakpoint is hit.",
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandArgumentData bp_id_arg;
|
||||
|
||||
|
@ -612,14 +612,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
|
||||
if (target == nullptr) {
|
||||
result.AppendError("There is not a current executable; there are no "
|
||||
"breakpoints for which to list commands");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
const BreakpointList &breakpoints = target->GetBreakpointList();
|
||||
size_t num_breakpoints = breakpoints.GetSize();
|
||||
|
|
|
@ -212,20 +212,15 @@ CommandObjectDisassemble::CommandObjectDisassemble(
|
|||
"Disassemble specified instructions in the current target. "
|
||||
"Defaults to the current function for the current thread and "
|
||||
"stack frame.",
|
||||
"disassemble [<cmd-options>]"),
|
||||
"disassemble [<cmd-options>]", eCommandRequiresTarget),
|
||||
m_options() {}
|
||||
|
||||
CommandObjectDisassemble::~CommandObjectDisassemble() = default;
|
||||
|
||||
bool CommandObjectDisassemble::DoExecute(Args &command,
|
||||
CommandReturnObject &result) {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
if (!m_options.arch.IsValid())
|
||||
m_options.arch = target->GetArchitecture();
|
||||
|
||||
|
|
|
@ -1290,7 +1290,7 @@ public:
|
|||
"Manage LLDB handling of OS signals for the "
|
||||
"current target process. Defaults to showing "
|
||||
"current policy.",
|
||||
nullptr),
|
||||
nullptr, eCommandRequiresTarget),
|
||||
m_options() {
|
||||
SetHelpLong("\nIf no signals are specified, update them all. If no update "
|
||||
"option is specified, list the current values.");
|
||||
|
@ -1375,15 +1375,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &signal_args, CommandReturnObject &result) override {
|
||||
TargetSP target_sp = GetDebugger().GetSelectedTarget();
|
||||
|
||||
if (!target_sp) {
|
||||
result.AppendError("No current target;"
|
||||
" cannot handle signals until you have a valid target "
|
||||
"and process.\n");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target_sp = &GetSelectedTarget();
|
||||
|
||||
ProcessSP process_sp = target_sp->GetProcessSP();
|
||||
|
||||
|
|
|
@ -1030,7 +1030,7 @@ public:
|
|||
: CommandObjectParsed(interpreter, "target modules search-paths add",
|
||||
"Add new image search paths substitution pairs to "
|
||||
"the current target.",
|
||||
nullptr) {
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandArgumentData old_prefix_arg;
|
||||
CommandArgumentData new_prefix_arg;
|
||||
|
@ -1059,8 +1059,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target) {
|
||||
Target *target = &GetSelectedTarget();
|
||||
const size_t argc = command.GetArgumentCount();
|
||||
if (argc & 1) {
|
||||
result.AppendError("add requires an even number of arguments\n");
|
||||
|
@ -1092,10 +1091,6 @@ protected:
|
|||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
result.AppendError("invalid target\n");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
};
|
||||
|
@ -1108,21 +1103,17 @@ public:
|
|||
: CommandObjectParsed(interpreter, "target modules search-paths clear",
|
||||
"Clear all current image search path substitution "
|
||||
"pairs from the current target.",
|
||||
"target modules search-paths clear") {}
|
||||
"target modules search-paths clear",
|
||||
eCommandRequiresTarget) {}
|
||||
|
||||
~CommandObjectTargetModulesSearchPathsClear() override = default;
|
||||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target) {
|
||||
Target *target = &GetSelectedTarget();
|
||||
bool notify = true;
|
||||
target->GetImageSearchPathList().Clear(notify);
|
||||
result.SetStatus(eReturnStatusSuccessFinishNoResult);
|
||||
} else {
|
||||
result.AppendError("invalid target\n");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
};
|
||||
|
@ -1135,7 +1126,7 @@ public:
|
|||
: CommandObjectParsed(interpreter, "target modules search-paths insert",
|
||||
"Insert a new image search path substitution pair "
|
||||
"into the current target at the specified index.",
|
||||
nullptr) {
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg1;
|
||||
CommandArgumentEntry arg2;
|
||||
CommandArgumentData index_arg;
|
||||
|
@ -1175,8 +1166,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target) {
|
||||
Target *target = &GetSelectedTarget();
|
||||
size_t argc = command.GetArgumentCount();
|
||||
// check for at least 3 arguments and an odd number of parameters
|
||||
if (argc >= 3 && argc & 1) {
|
||||
|
@ -1220,11 +1210,6 @@ protected:
|
|||
result.SetStatus(eReturnStatusFailed);
|
||||
return result.Succeeded();
|
||||
}
|
||||
|
||||
} else {
|
||||
result.AppendError("invalid target\n");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
};
|
||||
|
@ -1237,14 +1222,14 @@ public:
|
|||
: CommandObjectParsed(interpreter, "target modules search-paths list",
|
||||
"List all current image search path substitution "
|
||||
"pairs in the current target.",
|
||||
"target modules search-paths list") {}
|
||||
"target modules search-paths list",
|
||||
eCommandRequiresTarget) {}
|
||||
|
||||
~CommandObjectTargetModulesSearchPathsList() override = default;
|
||||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target) {
|
||||
Target *target = &GetSelectedTarget();
|
||||
if (command.GetArgumentCount() != 0) {
|
||||
result.AppendError("list takes no arguments\n");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
|
@ -1253,10 +1238,6 @@ protected:
|
|||
|
||||
target->GetImageSearchPathList().Dump(&result.GetOutputStream());
|
||||
result.SetStatus(eReturnStatusSuccessFinishResult);
|
||||
} else {
|
||||
result.AppendError("invalid target\n");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
};
|
||||
|
@ -1269,7 +1250,7 @@ public:
|
|||
: CommandObjectParsed(
|
||||
interpreter, "target modules search-paths query",
|
||||
"Transform a path using the first applicable image search path.",
|
||||
nullptr) {
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandArgumentData path_arg;
|
||||
|
||||
|
@ -1289,8 +1270,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target) {
|
||||
Target *target = &GetSelectedTarget();
|
||||
if (command.GetArgumentCount() != 1) {
|
||||
result.AppendError("query requires one argument\n");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
|
@ -1305,10 +1285,6 @@ protected:
|
|||
result.GetOutputStream().Printf("%s\n", orig.GetCString());
|
||||
|
||||
result.SetStatus(eReturnStatusSuccessFinishResult);
|
||||
} else {
|
||||
result.AppendError("invalid target\n");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
};
|
||||
|
@ -1824,8 +1800,9 @@ public:
|
|||
CommandObjectTargetModulesModuleAutoComplete(CommandInterpreter &interpreter,
|
||||
const char *name,
|
||||
const char *help,
|
||||
const char *syntax)
|
||||
: CommandObjectParsed(interpreter, name, help, syntax) {
|
||||
const char *syntax,
|
||||
uint32_t flags = 0)
|
||||
: CommandObjectParsed(interpreter, name, help, syntax, flags) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandArgumentData file_arg;
|
||||
|
||||
|
@ -1899,19 +1876,13 @@ public:
|
|||
: CommandObjectTargetModulesModuleAutoComplete(
|
||||
interpreter, "target modules dump objfile",
|
||||
"Dump the object file headers from one or more target modules.",
|
||||
nullptr) {}
|
||||
nullptr, eCommandRequiresTarget) {}
|
||||
|
||||
~CommandObjectTargetModulesDumpObjfile() override = default;
|
||||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
|
||||
result.GetOutputStream().SetAddressByteSize(addr_byte_size);
|
||||
|
@ -1984,7 +1955,8 @@ public:
|
|||
CommandObjectTargetModulesDumpSymtab(CommandInterpreter &interpreter)
|
||||
: CommandObjectTargetModulesModuleAutoComplete(
|
||||
interpreter, "target modules dump symtab",
|
||||
"Dump the symbol table from one or more target modules.", nullptr),
|
||||
"Dump the symbol table from one or more target modules.", nullptr,
|
||||
eCommandRequiresTarget),
|
||||
m_options() {}
|
||||
|
||||
~CommandObjectTargetModulesDumpSymtab() override = default;
|
||||
|
@ -2028,13 +2000,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
} else {
|
||||
Target *target = &GetSelectedTarget();
|
||||
uint32_t num_dumped = 0;
|
||||
|
||||
uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
|
||||
|
@ -2088,8 +2054,8 @@ protected:
|
|||
if (m_interpreter.WasInterrupted())
|
||||
break;
|
||||
num_dumped++;
|
||||
DumpModuleSymtab(m_interpreter, result.GetOutputStream(),
|
||||
module, m_options.m_sort_order);
|
||||
DumpModuleSymtab(m_interpreter, result.GetOutputStream(), module,
|
||||
m_options.m_sort_order);
|
||||
}
|
||||
}
|
||||
} else
|
||||
|
@ -2104,7 +2070,6 @@ protected:
|
|||
result.AppendError("no matching executable images found");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
|
||||
|
@ -2123,19 +2088,13 @@ public:
|
|||
interpreter, "target modules dump sections",
|
||||
"Dump the sections from one or more target modules.",
|
||||
//"target modules dump sections [<file1> ...]")
|
||||
nullptr) {}
|
||||
nullptr, eCommandRequiresTarget) {}
|
||||
|
||||
~CommandObjectTargetModulesDumpSections() override = default;
|
||||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
} else {
|
||||
Target *target = &GetSelectedTarget();
|
||||
uint32_t num_dumped = 0;
|
||||
|
||||
uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
|
||||
|
@ -2199,7 +2158,6 @@ protected:
|
|||
result.AppendError("no matching executable images found");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
};
|
||||
|
@ -2216,19 +2174,13 @@ public:
|
|||
interpreter, "target modules dump ast",
|
||||
"Dump the clang ast for a given module's symbol file.",
|
||||
//"target modules dump ast [<file1> ...]")
|
||||
nullptr) {}
|
||||
nullptr, eCommandRequiresTarget) {}
|
||||
|
||||
~CommandObjectTargetModulesDumpClangAST() override = default;
|
||||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
const size_t num_modules = target->GetImages().GetSize();
|
||||
if (num_modules == 0) {
|
||||
|
@ -2293,19 +2245,13 @@ public:
|
|||
interpreter, "target modules dump symfile",
|
||||
"Dump the debug symbol file for one or more target modules.",
|
||||
//"target modules dump symfile [<file1> ...]")
|
||||
nullptr) {}
|
||||
nullptr, eCommandRequiresTarget) {}
|
||||
|
||||
~CommandObjectTargetModulesDumpSymfile() override = default;
|
||||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
} else {
|
||||
Target *target = &GetSelectedTarget();
|
||||
uint32_t num_dumped = 0;
|
||||
|
||||
uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
|
||||
|
@ -2365,7 +2311,6 @@ protected:
|
|||
result.AppendError("no matching executable images found");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
};
|
||||
|
@ -2513,10 +2458,11 @@ public:
|
|||
CommandObjectTargetModulesAdd(CommandInterpreter &interpreter)
|
||||
: CommandObjectParsed(interpreter, "target modules add",
|
||||
"Add a new module to the current target's modules.",
|
||||
"target modules add [<module>]"),
|
||||
m_option_group(),
|
||||
m_symbol_file(LLDB_OPT_SET_1, false, "symfile", 's', 0,
|
||||
eArgTypeFilename, "Fullpath to a stand alone debug "
|
||||
"target modules add [<module>]",
|
||||
eCommandRequiresTarget),
|
||||
m_option_group(), m_symbol_file(LLDB_OPT_SET_1, false, "symfile", 's',
|
||||
0, eArgTypeFilename,
|
||||
"Fullpath to a stand alone debug "
|
||||
"symbols file for when debug symbols "
|
||||
"are not in the executable.") {
|
||||
m_option_group.Append(&m_uuid_option_group, LLDB_OPT_SET_ALL,
|
||||
|
@ -2543,13 +2489,7 @@ protected:
|
|||
OptionGroupFile m_symbol_file;
|
||||
|
||||
bool DoExecute(Args &args, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
} else {
|
||||
Target *target = &GetSelectedTarget();
|
||||
bool flush = false;
|
||||
|
||||
const size_t argc = args.GetArgumentCount();
|
||||
|
@ -2563,8 +2503,8 @@ protected:
|
|||
module_spec.GetSymbolFileSpec() =
|
||||
m_symbol_file.GetOptionValue().GetCurrentValue();
|
||||
if (Symbols::DownloadObjectAndSymbolFile(module_spec)) {
|
||||
ModuleSP module_sp(target->GetOrCreateModule(module_spec,
|
||||
true /* notify */));
|
||||
ModuleSP module_sp(
|
||||
target->GetOrCreateModule(module_spec, true /* notify */));
|
||||
if (module_sp) {
|
||||
result.SetStatus(eReturnStatusSuccessFinishResult);
|
||||
return true;
|
||||
|
@ -2576,8 +2516,7 @@ protected:
|
|||
result.AppendErrorWithFormat(
|
||||
"Unable to create the executable or symbol file with "
|
||||
"UUID %s with path %s and symbol file %s",
|
||||
strm.GetData(),
|
||||
module_spec.GetFileSpec().GetPath().c_str(),
|
||||
strm.GetData(), module_spec.GetFileSpec().GetPath().c_str(),
|
||||
module_spec.GetSymbolFileSpec().GetPath().c_str());
|
||||
} else {
|
||||
result.AppendErrorWithFormat(
|
||||
|
@ -2626,8 +2565,8 @@ protected:
|
|||
if (!module_spec.GetArchitecture().IsValid())
|
||||
module_spec.GetArchitecture() = target->GetArchitecture();
|
||||
Status error;
|
||||
ModuleSP module_sp(target->GetOrCreateModule(module_spec,
|
||||
true /* notify */, &error));
|
||||
ModuleSP module_sp(target->GetOrCreateModule(
|
||||
module_spec, true /* notify */, &error));
|
||||
if (!module_sp) {
|
||||
const char *error_cstr = error.AsCString();
|
||||
if (error_cstr)
|
||||
|
@ -2662,7 +2601,6 @@ protected:
|
|||
if (process)
|
||||
process->Flush();
|
||||
}
|
||||
}
|
||||
|
||||
return result.Succeeded();
|
||||
}
|
||||
|
@ -2673,11 +2611,12 @@ class CommandObjectTargetModulesLoad
|
|||
public:
|
||||
CommandObjectTargetModulesLoad(CommandInterpreter &interpreter)
|
||||
: CommandObjectTargetModulesModuleAutoComplete(
|
||||
interpreter, "target modules load", "Set the load addresses for "
|
||||
"one or more sections in a "
|
||||
"target module.",
|
||||
interpreter, "target modules load",
|
||||
"Set the load addresses for one or more sections in a target "
|
||||
"module.",
|
||||
"target modules load [--file <module> --uuid <uuid>] <sect-name> "
|
||||
"<address> [<sect-name> <address> ....]"),
|
||||
"<address> [<sect-name> <address> ....]",
|
||||
eCommandRequiresTarget),
|
||||
m_option_group(),
|
||||
m_file_option(LLDB_OPT_SET_1, false, "file", 'f', 0, eArgTypeName,
|
||||
"Fullpath or basename for module to load.", ""),
|
||||
|
@ -2706,15 +2645,10 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &args, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
Target *target = &GetSelectedTarget();
|
||||
const bool load = m_load_option.GetOptionValue().GetCurrentValue();
|
||||
const bool set_pc = m_pc_option.GetOptionValue().GetCurrentValue();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
} else {
|
||||
|
||||
const size_t argc = args.GetArgumentCount();
|
||||
ModuleSpec module_spec;
|
||||
bool search_using_module_spec = false;
|
||||
|
@ -2818,8 +2752,7 @@ protected:
|
|||
break;
|
||||
} else {
|
||||
if (target->GetSectionLoadList()
|
||||
.SetSectionLoadAddress(section_sp,
|
||||
load_addr))
|
||||
.SetSectionLoadAddress(section_sp, load_addr))
|
||||
changed = true;
|
||||
result.AppendMessageWithFormat(
|
||||
"section '%s' loaded at 0x%" PRIx64 "\n",
|
||||
|
@ -2835,8 +2768,7 @@ protected:
|
|||
}
|
||||
} else {
|
||||
result.AppendErrorWithFormat(
|
||||
"invalid load address string '%s'\n",
|
||||
load_addr_cstr);
|
||||
"invalid load address string '%s'\n", load_addr_cstr);
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
break;
|
||||
}
|
||||
|
@ -2896,8 +2828,8 @@ protected:
|
|||
}
|
||||
} else {
|
||||
module->GetFileSpec().GetPath(path, sizeof(path));
|
||||
result.AppendErrorWithFormat(
|
||||
"no sections in object file '%s'\n", path);
|
||||
result.AppendErrorWithFormat("no sections in object file '%s'\n",
|
||||
path);
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
} else {
|
||||
|
@ -2938,8 +2870,8 @@ protected:
|
|||
} else {
|
||||
result.AppendErrorWithFormat(
|
||||
"no modules were found that match%s%s%s%s.\n",
|
||||
path[0] ? " file=" : "", path,
|
||||
!uuid_str.empty() ? " uuid=" : "", uuid_str.c_str());
|
||||
path[0] ? " file=" : "", path, !uuid_str.empty() ? " uuid=" : "",
|
||||
uuid_str.c_str());
|
||||
}
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
|
@ -2949,7 +2881,6 @@ protected:
|
|||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
|
||||
|
@ -3891,13 +3822,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
} else {
|
||||
Target *target = &GetSelectedTarget();
|
||||
bool syntax_error = false;
|
||||
uint32_t i;
|
||||
uint32_t num_successful_lookups = 0;
|
||||
|
@ -3932,10 +3857,9 @@ protected:
|
|||
target_modules.GetModulePointerAtIndexUnlocked(i);
|
||||
|
||||
if (module_pointer != current_module.get() &&
|
||||
LookupInModule(
|
||||
m_interpreter,
|
||||
target_modules.GetModulePointerAtIndexUnlocked(i), result,
|
||||
syntax_error)) {
|
||||
LookupInModule(m_interpreter,
|
||||
target_modules.GetModulePointerAtIndexUnlocked(i),
|
||||
result, syntax_error)) {
|
||||
result.GetOutputStream().EOL();
|
||||
num_successful_lookups++;
|
||||
}
|
||||
|
@ -3958,8 +3882,7 @@ protected:
|
|||
for (size_t j = 0; j < num_matches; ++j) {
|
||||
Module *module = module_list.GetModulePointerAtIndex(j);
|
||||
if (module) {
|
||||
if (LookupInModule(m_interpreter, module, result,
|
||||
syntax_error)) {
|
||||
if (LookupInModule(m_interpreter, module, result, syntax_error)) {
|
||||
result.GetOutputStream().EOL();
|
||||
num_successful_lookups++;
|
||||
}
|
||||
|
@ -3975,7 +3898,6 @@ protected:
|
|||
result.SetStatus(eReturnStatusSuccessFinishResult);
|
||||
else
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
}
|
||||
return result.Succeeded();
|
||||
}
|
||||
|
||||
|
|
|
@ -819,13 +819,6 @@ public:
|
|||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
bool synchronous_execution = m_interpreter.GetSynchronous();
|
||||
|
||||
if (!GetDebugger().GetSelectedTarget()) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
|
||||
Process *process = m_exe_ctx.GetProcessPtr();
|
||||
if (process == nullptr) {
|
||||
result.AppendError("no process exists. Cannot continue");
|
||||
|
@ -1091,13 +1084,7 @@ protected:
|
|||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
bool synchronous_execution = m_interpreter.GetSynchronous();
|
||||
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("invalid target, create a debug target using the "
|
||||
"'target create' command");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
Process *process = m_exe_ctx.GetProcessPtr();
|
||||
if (process == nullptr) {
|
||||
|
|
|
@ -40,11 +40,6 @@ static void AddWatchpointDescription(Stream *s, Watchpoint *wp,
|
|||
|
||||
static bool CheckTargetForWatchpointOperations(Target *target,
|
||||
CommandReturnObject &result) {
|
||||
if (target == nullptr) {
|
||||
result.AppendError("Invalid target. No existing target or watchpoints.");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
bool process_is_valid =
|
||||
target->GetProcessSP() && target->GetProcessSP()->IsAlive();
|
||||
if (!process_is_valid) {
|
||||
|
@ -156,7 +151,8 @@ public:
|
|||
CommandObjectWatchpointList(CommandInterpreter &interpreter)
|
||||
: CommandObjectParsed(
|
||||
interpreter, "watchpoint list",
|
||||
"List all watchpoints at configurable levels of detail.", nullptr),
|
||||
"List all watchpoints at configurable levels of detail.", nullptr,
|
||||
eCommandRequiresTarget),
|
||||
m_options() {
|
||||
CommandArgumentEntry arg;
|
||||
CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID,
|
||||
|
@ -217,12 +213,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
if (target == nullptr) {
|
||||
result.AppendError("Invalid target. No current target or watchpoints.");
|
||||
result.SetStatus(eReturnStatusSuccessFinishNoResult);
|
||||
return true;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
if (target->GetProcessSP() && target->GetProcessSP()->IsAlive()) {
|
||||
uint32_t num_supported_hardware_watchpoints;
|
||||
|
@ -292,7 +283,7 @@ public:
|
|||
: CommandObjectParsed(interpreter, "enable",
|
||||
"Enable the specified disabled watchpoint(s). If "
|
||||
"no watchpoints are specified, enable all of them.",
|
||||
nullptr) {
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID,
|
||||
eArgTypeWatchpointIDRange);
|
||||
|
@ -305,7 +296,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
Target *target = &GetSelectedTarget();
|
||||
if (!CheckTargetForWatchpointOperations(target, result))
|
||||
return false;
|
||||
|
||||
|
@ -362,7 +353,7 @@ public:
|
|||
"Disable the specified watchpoint(s) without "
|
||||
"removing it/them. If no watchpoints are "
|
||||
"specified, disable them all.",
|
||||
nullptr) {
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID,
|
||||
eArgTypeWatchpointIDRange);
|
||||
|
@ -375,7 +366,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
Target *target = &GetSelectedTarget();
|
||||
if (!CheckTargetForWatchpointOperations(target, result))
|
||||
return false;
|
||||
|
||||
|
@ -434,7 +425,7 @@ public:
|
|||
: CommandObjectParsed(interpreter, "watchpoint delete",
|
||||
"Delete the specified watchpoint(s). If no "
|
||||
"watchpoints are specified, delete them all.",
|
||||
nullptr) {
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID,
|
||||
eArgTypeWatchpointIDRange);
|
||||
|
@ -447,7 +438,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
Target *target = &GetSelectedTarget();
|
||||
if (!CheckTargetForWatchpointOperations(target, result))
|
||||
return false;
|
||||
|
||||
|
@ -511,7 +502,7 @@ public:
|
|||
: CommandObjectParsed(interpreter, "watchpoint ignore",
|
||||
"Set ignore count on the specified watchpoint(s). "
|
||||
"If no watchpoints are specified, set them all.",
|
||||
nullptr),
|
||||
nullptr, eCommandRequiresTarget),
|
||||
m_options() {
|
||||
CommandArgumentEntry arg;
|
||||
CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID,
|
||||
|
@ -564,7 +555,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
Target *target = &GetSelectedTarget();
|
||||
if (!CheckTargetForWatchpointOperations(target, result))
|
||||
return false;
|
||||
|
||||
|
@ -631,7 +622,7 @@ public:
|
|||
"If no watchpoint is specified, act on the last created "
|
||||
"watchpoint. "
|
||||
"Passing an empty argument clears the modification.",
|
||||
nullptr),
|
||||
nullptr, eCommandRequiresTarget),
|
||||
m_options() {
|
||||
CommandArgumentEntry arg;
|
||||
CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID,
|
||||
|
@ -685,7 +676,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
Target *target = &GetSelectedTarget();
|
||||
if (!CheckTargetForWatchpointOperations(target, result))
|
||||
return false;
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ public:
|
|||
: CommandObjectParsed(interpreter, "add",
|
||||
"Add a set of LLDB commands to a watchpoint, to be "
|
||||
"executed whenever the watchpoint is hit.",
|
||||
nullptr),
|
||||
nullptr, eCommandRequiresTarget),
|
||||
IOHandlerDelegateMultiline("DONE",
|
||||
IOHandlerDelegate::Completion::LLDBCommand),
|
||||
m_options() {
|
||||
|
@ -389,14 +389,7 @@ are no syntax errors may indicate that a function was declared but never called.
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
|
||||
if (target == nullptr) {
|
||||
result.AppendError("There is not a current executable; there are no "
|
||||
"watchpoints to which to add commands");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
const WatchpointList &watchpoints = target->GetWatchpointList();
|
||||
size_t num_watchpoints = watchpoints.GetSize();
|
||||
|
@ -486,7 +479,7 @@ public:
|
|||
CommandObjectWatchpointCommandDelete(CommandInterpreter &interpreter)
|
||||
: CommandObjectParsed(interpreter, "delete",
|
||||
"Delete the set of commands from a watchpoint.",
|
||||
nullptr) {
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandArgumentData wp_id_arg;
|
||||
|
||||
|
@ -506,14 +499,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
|
||||
if (target == nullptr) {
|
||||
result.AppendError("There is not a current executable; there are no "
|
||||
"watchpoints from which to delete commands");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
const WatchpointList &watchpoints = target->GetWatchpointList();
|
||||
size_t num_watchpoints = watchpoints.GetSize();
|
||||
|
@ -562,10 +548,10 @@ protected:
|
|||
class CommandObjectWatchpointCommandList : public CommandObjectParsed {
|
||||
public:
|
||||
CommandObjectWatchpointCommandList(CommandInterpreter &interpreter)
|
||||
: CommandObjectParsed(interpreter, "list", "List the script or set of "
|
||||
"commands to be executed when "
|
||||
"the watchpoint is hit.",
|
||||
nullptr) {
|
||||
: CommandObjectParsed(interpreter, "list",
|
||||
"List the script or set of commands to be executed "
|
||||
"when the watchpoint is hit.",
|
||||
nullptr, eCommandRequiresTarget) {
|
||||
CommandArgumentEntry arg;
|
||||
CommandArgumentData wp_id_arg;
|
||||
|
||||
|
@ -585,14 +571,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool DoExecute(Args &command, CommandReturnObject &result) override {
|
||||
Target *target = GetDebugger().GetSelectedTarget().get();
|
||||
|
||||
if (target == nullptr) {
|
||||
result.AppendError("There is not a current executable; there are no "
|
||||
"watchpoints for which to list commands");
|
||||
result.SetStatus(eReturnStatusFailed);
|
||||
return false;
|
||||
}
|
||||
Target *target = &GetSelectedTarget();
|
||||
|
||||
const WatchpointList &watchpoints = target->GetWatchpointList();
|
||||
size_t num_watchpoints = watchpoints.GetSize();
|
||||
|
|
|
@ -925,6 +925,15 @@ Target &CommandObject::GetSelectedOrDummyTarget(bool prefer_dummy) {
|
|||
return *m_interpreter.GetDebugger().GetSelectedOrDummyTarget(prefer_dummy);
|
||||
}
|
||||
|
||||
Target &CommandObject::GetSelectedTarget() {
|
||||
assert(m_flags.AnySet(eCommandRequiresTarget | eCommandProcessMustBePaused |
|
||||
eCommandProcessMustBeLaunched | eCommandRequiresFrame |
|
||||
eCommandRequiresThread | eCommandRequiresProcess |
|
||||
eCommandRequiresRegContext) &&
|
||||
"GetSelectedTarget called from object that may have no target");
|
||||
return *m_interpreter.GetDebugger().GetSelectedTarget();
|
||||
}
|
||||
|
||||
Thread *CommandObject::GetDefaultThread() {
|
||||
Thread *thread_to_use = m_exe_ctx.GetThreadPtr();
|
||||
if (thread_to_use)
|
||||
|
|
Loading…
Reference in New Issue