Module Name: src
Committed By: skrll
Date: Sun Jan 22 22:04:48 UTC 2012
Modified Files:
src/external/gpl3/gdb/dist/gdb: hppanbsd-nat.c
Log Message:
Provide {supply,fill}_{g,fp}regset
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/dist/gdb/hppanbsd-nat.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gdb/dist/gdb/hppanbsd-nat.c
diff -u src/external/gpl3/gdb/dist/gdb/hppanbsd-nat.c:1.2 src/external/gpl3/gdb/dist/gdb/hppanbsd-nat.c:1.3
--- src/external/gpl3/gdb/dist/gdb/hppanbsd-nat.c:1.2 Sun Jan 22 20:27:28 2012
+++ src/external/gpl3/gdb/dist/gdb/hppanbsd-nat.c Sun Jan 22 22:04:48 2012
@@ -30,6 +30,16 @@
#include "nbsd-nat.h"
+#ifndef HAVE_GREGSET_T
+typedef struct reg gregset_t;
+#endif
+
+#ifndef HAVE_FPREGSET_T
+typedef struct fpreg fpregset_t;
+#endif
+
+#include "gregset.h"
+
static int
hppanbsd_gregset_supplies_p (int regnum)
{
@@ -138,7 +148,7 @@ hppanbsd_collect_gregset (const struct r
in FPREGS. */
static void
-hppanbsd_collect_fpregset (struct regcache *regcache,
+hppanbsd_collect_fpregset (const struct regcache *regcache,
void *fpregs, int regnum)
{
char *regs = fpregs;
@@ -224,6 +234,44 @@ hppanbsd_store_registers (struct target_
}
}
+void
+supply_gregset (struct regcache *regcache, const gregset_t *gregsetp)
+{
+ hppanbsd_supply_gregset (regcache, gregsetp);
+}
+
+/* Fill register REGNUM (if it is a general-purpose register) in
+ *GREGSETP with the value in GDB's register cache. If REGNUM is -1,
+ do this for all registers. */
+
+void
+fill_gregset (const struct regcache *regcache,
+ gregset_t *gregsetp, int regnum)
+{
+ hppanbsd_collect_gregset (regcache, gregsetp, regnum);
+}
+
+/* Transfering floating-point registers between GDB, inferiors and cores. */
+
+/* Fill GDB's register cache with the floating-point and SSE register
+ values in *FPREGSETP. */
+
+void
+supply_fpregset (struct regcache *regcache, const fpregset_t *fpregsetp)
+{
+ hppanbsd_supply_fpregset (regcache, fpregsetp);
+}
+
+/* Fill register REGNUM (if it is a floating-point or SSE register) in
+ *FPREGSETP with the value in GDB's register cache. If REGNUM is
+ -1, do this for all registers. */
+
+void
+fill_fpregset (const struct regcache *regcache,
+ fpregset_t *fpregsetp, int regnum)
+{
+ hppanbsd_collect_fpregset (regcache, fpregsetp, regnum);
+}
/* Provide a prototype to silence -Wmissing-prototypes. */
void _initialize_hppanbsd_nat (void);