mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:18:13 +00:00
Debugger: Add logging for the other 8 GPRs too
This commit is contained in:
parent
35617ba2d3
commit
80aa1b93d1
1 changed files with 2 additions and 0 deletions
|
@ -42,6 +42,8 @@ static void handle_print_registers(const PtraceRegisters& regs)
|
|||
#else
|
||||
outln("rax={:p} rbx={:p} rcx={:p} rdx={:p}", regs.rax, regs.rbx, regs.rcx, regs.rdx);
|
||||
outln("rsp={:p} rbp={:p} rsi={:p} rdi={:p}", regs.rsp, regs.rbp, regs.rsi, regs.rdi);
|
||||
outln("r8 ={:p} r9 ={:p} r10={:p} r11={:p}", regs.r8, regs.r9, regs.r10, regs.r11);
|
||||
outln("r12={:p} r13={:p} r14={:p} r15={:p}", regs.r12, regs.r13, regs.r14, regs.r15);
|
||||
outln("rip={:p} rflags={:p}", regs.rip, regs.rflags);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue