gdb/riscv: Loop over all registers for 'info all-registers'
Currently the 'info all-registers' command only loops over those registers that are known to GDB. Any registers that are unknown, that is, are mentioned in the target description, but are not something GDB otherwise knows, will not be displayed. This feels wrong, so this commit fixes this mistake. The output of 'info all-registers' now matches 'info registers all'. gdb/ChangeLog: * riscv-tdep.c (riscv_print_registers_info): Loop over all registers, not just the known core set of registers. gdb/testsuite/ChangeLog: * gdb.arch/riscv-tdesc-regs.exp: New test cases.
This commit is contained in:
parent
2e52d03824
commit
6d74da72da
4 changed files with 17 additions and 4 deletions
|
@ -1071,7 +1071,7 @@ riscv_print_registers_info (struct gdbarch *gdbarch,
|
|||
else
|
||||
reggroup = general_reggroup;
|
||||
|
||||
for (regnum = 0; regnum <= RISCV_LAST_REGNUM; ++regnum)
|
||||
for (regnum = 0; regnum < gdbarch_num_cooked_regs (gdbarch); ++regnum)
|
||||
{
|
||||
/* Zero never changes, so might as well hide by default. */
|
||||
if (regnum == RISCV_ZERO_REGNUM && !print_all)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue