gdb/riscv: Use legacy register numbers in default target description
authorAndrew Burgess <andrew.burgess@embecosm.com>
Sat, 23 Feb 2019 20:07:47 +0000 (22:07 +0200)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Tue, 26 Feb 2019 20:57:35 +0000 (22:57 +0200)
commit172fb711a2336b62cf8d58bbb4b27dc71ca8c02d
tree2ed60a0f66549ca1d8da7f0102bc9910b3a071ac
parent8791793caa9a3186d4922cc786b6344e6093be73
gdb/riscv: Use legacy register numbers in default target description

When the target description support was added to RISC-V, the register
numbers assigned to the fflags, frm, and fcsr control registers in the
default target descriptions didn't match the register numbers used by
GDB before the target description support was added.

What this means is that if a tools exists in the wild that is using
hard-coded register number, setup to match GDB's old numbering, then
this will have been broken (for fflags, frm, and fcsr) by the move to
target descriptions.  QEMU is such a tool.

There are a couple of solutions that could be used to work around this
issue:

 - The user can create their own xml description file with the
   register numbers setup to match their old tool, then load this by
   telling GDB 'set tdesc filename FILENAME'.

 - Update their old tool to use the newer default numbering scheme, or
   better yet add proper target description support to their tool.

 - We could have RISC-V GDB change to maintain the old defaults.

This patch changes GDB back to using the old numbering scheme.

This change is only visible to remote targets that don't supply their
own xml description file and instead rely on GDB's default numbering.

Note that even though 32bit-cpu.xml and 64bit-cpu.xml have changed,
the corresponding .c file has not, this is because the numbering added
to the registers in the xml files is number 0, this doesn't result in
any new C code being generated .

gdb/ChangeLog:

* features/riscv/32bit-cpu.xml: Add register numbers.
* features/riscv/32bit-fpu.c: Regenerate.
* features/riscv/32bit-fpu.xml: Add register numbers.
* features/riscv/64bit-cpu.xml: Add register numbers.
* features/riscv/64bit-fpu.c: Regenerate.
* features/riscv/64bit-fpu.xml: Add register numbers.
gdb/ChangeLog
gdb/features/riscv/32bit-cpu.xml
gdb/features/riscv/32bit-fpu.c
gdb/features/riscv/32bit-fpu.xml
gdb/features/riscv/64bit-cpu.xml
gdb/features/riscv/64bit-fpu.c
gdb/features/riscv/64bit-fpu.xml