summaryrefslogtreecommitdiff
path: root/Applications
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2020-10-10 11:37:56 +0300
committerAndreas Kling <kling@serenityos.org>2020-12-14 23:05:53 +0100
commit711c42e25ebc56e28233f174db9b2131f63966fb (patch)
tree9246fd0ecc96d8588ea8fdb6fe7b1b911bcc5352 /Applications
parenta8cfb83d087be60ea59be13441b17c3a977de55a (diff)
downloadserenity-711c42e25ebc56e28233f174db9b2131f63966fb.zip
Debugger: Add 'examine' command
This command outputs the memory contents of a given address as an unsigned int. LibDebug already had support for this, so just a matter of intergating it in sdb. Very useful :)
Diffstat (limited to 'Applications')
-rw-r--r--Applications/Debugger/main.cpp28
1 files changed, 27 insertions, 1 deletions
diff --git a/Applications/Debugger/main.cpp b/Applications/Debugger/main.cpp
index 6e70d19cfc..93922f46e4 100644
--- a/Applications/Debugger/main.cpp
+++ b/Applications/Debugger/main.cpp
@@ -148,6 +148,29 @@ static bool handle_breakpoint_command(const String& command)
return true;
}
+static bool handle_examine_command(const String& command)
+{
+ auto parts = command.split(' ');
+ if (parts.size() != 2)
+ return false;
+
+ auto argument = parts[1];
+ if (argument.is_empty())
+ return false;
+
+ if (!(argument.starts_with("0x"))) {
+ return false;
+ }
+ u32 address = strtoul(argument.characters() + 2, nullptr, 16);
+ auto res = g_debug_session->peek((u32*)address);
+ if (!res.has_value()) {
+ printf("could not examine memory at address 0x%x\n", address);
+ return true;
+ }
+ printf("0x%x\n", res.value());
+ return true;
+}
+
static void print_help()
{
out("Options:\n"
@@ -157,7 +180,8 @@ static void print_help()
"line - show the position of the current instruction in the source code\n"
"regs - Print registers\n"
"dis [number of instructions] - Print disassembly\n"
- "bp <address/symbol/file:line> - Insert a breakpoint\n");
+ "bp <address/symbol/file:line> - Insert a breakpoint\n"
+ "x <address> - examine dword in memory\n");
}
int main(int argc, char** argv)
@@ -263,6 +287,8 @@ int main(int argc, char** argv)
} else if (command.starts_with("bp")) {
success = handle_breakpoint_command(command);
+ } else if (command.starts_with("x")) {
+ success = handle_examine_command(command);
}
if (success && !command.is_empty()) {