public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdbserver: LoongArch: Add floating-point support
@ 2022-07-12 12:16 Tiezhu Yang
0 siblings, 0 replies; only message in thread
From: Tiezhu Yang @ 2022-07-12 12:16 UTC (permalink / raw)
To: gdb-cvs
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=3f6227c2f40a3e6009c60483f464e349d30145bb
commit 3f6227c2f40a3e6009c60483f464e349d30145bb
Author: Tiezhu Yang <yangtiezhu@loongson.cn>
Date: Tue Jul 12 10:35:35 2022 +0800
gdbserver: LoongArch: Add floating-point support
This commit adds floating-point support for LoongArch gdbserver.
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Diff:
---
gdbserver/linux-loongarch-low.cc | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gdbserver/linux-loongarch-low.cc b/gdbserver/linux-loongarch-low.cc
index 91826b42361..7180f315b11 100644
--- a/gdbserver/linux-loongarch-low.cc
+++ b/gdbserver/linux-loongarch-low.cc
@@ -120,10 +120,42 @@ loongarch_store_gregset (struct regcache *regcache, const void *buf)
supply_register (regcache, LOONGARCH_BADV_REGNUM, *regset + LOONGARCH_BADV_REGNUM);
}
+/* Collect FPRs from REGCACHE into BUF. */
+
+static void
+loongarch_fill_fpregset (struct regcache *regcache, void *buf)
+{
+ gdb_byte *regbuf = nullptr;
+ int fprsize = register_size (regcache->tdesc, LOONGARCH_FIRST_FP_REGNUM);
+
+ for (int i = 0; i < LOONGARCH_LINUX_NUM_FPREGSET; i++)
+ {
+ regbuf = (gdb_byte *)buf + fprsize * i;
+ collect_register (regcache, LOONGARCH_FIRST_FP_REGNUM + i, regbuf);
+ }
+}
+
+/* Supply FPRs from BUF into REGCACHE. */
+
+static void
+loongarch_store_fpregset (struct regcache *regcache, const void *buf)
+{
+ const gdb_byte *regbuf = nullptr;
+ int fprsize = register_size (regcache->tdesc, LOONGARCH_FIRST_FP_REGNUM);
+
+ for (int i = 0; i < LOONGARCH_LINUX_NUM_FPREGSET; i++)
+ {
+ regbuf = (const gdb_byte *)buf + fprsize * i;
+ supply_register (regcache, LOONGARCH_FIRST_FP_REGNUM + i, regbuf);
+ }
+}
+
/* LoongArch/Linux regsets. */
static struct regset_info loongarch_regsets[] = {
{ PTRACE_GETREGSET, PTRACE_SETREGSET, NT_PRSTATUS, sizeof (elf_gregset_t),
GENERAL_REGS, loongarch_fill_gregset, loongarch_store_gregset },
+ { PTRACE_GETREGSET, PTRACE_SETREGSET, NT_FPREGSET, sizeof (elf_fpregset_t),
+ FP_REGS, loongarch_fill_fpregset, loongarch_store_fpregset },
NULL_REGSET
};
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-07-12 12:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-12 12:16 [binutils-gdb] gdbserver: LoongArch: Add floating-point support Tiezhu Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).