aboutsummaryrefslogtreecommitdiff
path: root/gdb/riscv-fbsd-tdep.c
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2020-12-02 15:10:06 +0000
committerAndrew Burgess <andrew.burgess@embecosm.com>2021-01-18 14:14:11 +0000
commit6a9ad81c449922e8c0d3228c18422f68136eef17 (patch)
tree7d9dfb01516aed307b3f1531b8a00dc12296ff0c /gdb/riscv-fbsd-tdep.c
parent326adec374dd43086dbf9bb2b8f18d547389e678 (diff)
downloadfsf-binutils-gdb-6a9ad81c449922e8c0d3228c18422f68136eef17.zip
fsf-binutils-gdb-6a9ad81c449922e8c0d3228c18422f68136eef17.tar.gz
fsf-binutils-gdb-6a9ad81c449922e8c0d3228c18422f68136eef17.tar.bz2
gdb/riscv: use a single regset supply function for riscv fbsd & linux
The RISC-V x0 register is hard-coded to zero. As such neither Linux or FreeBSD supply the value of the register x0 in their core dump files. For FreeBSD we take care of this by manually supplying the value of x0 in riscv_fbsd_supply_gregset, however we don't do this for Linux. As a result after loading a core file on Linux we see this behaviour: (gdb) p $x0 $1 = <unavailable> In this commit I make riscv_fbsd_supply_gregset a common function that can be shared between RISC-V for FreeBSD and Linux, this resolves the above issue. There is a similar problem for the two registers `fflags` and `frm`. These two floating point related CSRs are a little weird. They are separate CSRs in the RISC-V specification, but are actually sub-fields of the `fcsr` CSR. As a result neither Linux or FreeBSD supply the `fflags` or `frm` registers as separate fields in their core dumps, and so, after restoring a core dump these register are similarly unavailable. In this commit I supply `fflags` and `frm` by first asking for the value of `fcsr`, extracting the two fields, and using these to supply the values for `fflags` and `frm`. gdb/ChangeLog: * riscv-fbsd-tdep.c (riscv_fbsd_supply_gregset): Delete. (riscv_fbsd_gregset): Use riscv_supply_regset. (riscv_fbsd_fpregset): Likewise. * riscv-linux-tdep.c (riscv_linux_gregset): Likewise. (riscv_linux_fregset): Likewise. * riscv-tdep.c (riscv_supply_regset): Define new function. * riscv-tdep.h (riscv_supply_regset): Declare new function.
Diffstat (limited to 'gdb/riscv-fbsd-tdep.c')
-rw-r--r--gdb/riscv-fbsd-tdep.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/gdb/riscv-fbsd-tdep.c b/gdb/riscv-fbsd-tdep.c
index 4b5f3d3..b9b3ef1 100644
--- a/gdb/riscv-fbsd-tdep.c
+++ b/gdb/riscv-fbsd-tdep.c
@@ -53,32 +53,16 @@ static const struct regcache_map_entry riscv_fbsd_fpregmap[] =
{ 0 }
};
-/* Supply the general-purpose registers stored in GREGS to REGCACHE.
- This function only exists to supply the always-zero x0 in addition
- to the registers in GREGS. */
-
-static void
-riscv_fbsd_supply_gregset (const struct regset *regset,
- struct regcache *regcache, int regnum,
- const void *gregs, size_t len)
-{
- regcache->supply_regset (&riscv_fbsd_gregset, regnum, gregs, len);
- if (regnum == -1 || regnum == RISCV_ZERO_REGNUM)
- regcache->raw_supply_zeroed (RISCV_ZERO_REGNUM);
-}
-
/* Register set definitions. */
const struct regset riscv_fbsd_gregset =
{
- riscv_fbsd_gregmap,
- riscv_fbsd_supply_gregset, regcache_collect_regset
+ riscv_fbsd_gregmap, riscv_supply_regset, regcache_collect_regset
};
const struct regset riscv_fbsd_fpregset =
{
- riscv_fbsd_fpregmap,
- regcache_supply_regset, regcache_collect_regset
+ riscv_fbsd_fpregmap, riscv_supply_regset, regcache_collect_regset
};
/* Implement the "iterate_over_regset_sections" gdbarch method. */