Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Merge "Dump 256 bytes per chunk pointed by general-purpose registers.…
Browse files Browse the repository at this point in the history
…" into jb-mr1-dev
  • Loading branch information
Ben Cheng authored and Android (Google) Code Review committed Sep 24, 2012
2 parents f1c50bf + c47b772 commit 0b76d02
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion debuggerd/arm/machine.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ static void dump_memory(log_t* log, pid_t tid, uintptr_t addr, bool at_fault) {
/* catch underflow */
p = 0;
}
end = p + 80;
/* Dump more memory content for the crashing thread. */
end = p + 256;
/* catch overflow; 'end - p' has to be multiples of 16 */
while (end < p)
end -= 16;
Expand Down Expand Up @@ -81,6 +82,8 @@ static void dump_memory(log_t* log, pid_t tid, uintptr_t addr, bool at_fault) {
long data = ptrace(PTRACE_PEEKTEXT, tid, (void*)p, NULL);
sprintf(code_buffer + strlen(code_buffer), "%08lx ", data);

/* Enable the following code blob to dump ASCII values */
#if 0
int j;
for (j = 0; j < 4; j++) {
/*
Expand All @@ -95,6 +98,7 @@ static void dump_memory(log_t* log, pid_t tid, uintptr_t addr, bool at_fault) {
*asc_out++ = '.';
}
}
#endif
p += 4;
}
*asc_out = '\0';
Expand Down

0 comments on commit 0b76d02

Please sign in to comment.