summaryrefslogtreecommitdiff
path: root/gdb/sparcnbsd-nat.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-05-22 22:34:44 +0000
committerMark Kettenis <kettenis@gnu.org>2004-05-22 22:34:44 +0000
commit64ca7dc55c6048b4cc43769feed8fd0342988476 (patch)
tree98bf70e602395d684f56d444ce555a8b23b22bb0 /gdb/sparcnbsd-nat.c
parent3e89c5d98eac9b4108cad1e55598b0c1405f9970 (diff)
downloadgdb-64ca7dc55c6048b4cc43769feed8fd0342988476.tar.gz
* sparcnbsd-nat.c: Include "gdbcore.h", "regcache.h",
<sys/types.h>, <machine/pcb.h> and "bsd-kvm.h". (sparc32nbsd_supply_pcb): New function. (_initialize_sparcnbsd_nat): Enable libkvm interface. * Makefile.in (sparcnbsd-nat.o): Update dependencies. * config/sparc/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o. (LOADLIBES): New variable.
Diffstat (limited to 'gdb/sparcnbsd-nat.c')
-rw-r--r--gdb/sparcnbsd-nat.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/gdb/sparcnbsd-nat.c b/gdb/sparcnbsd-nat.c
index 9038ea334b6..01089eeef32 100644
--- a/gdb/sparcnbsd-nat.c
+++ b/gdb/sparcnbsd-nat.c
@@ -20,10 +20,44 @@
Boston, MA 02111-1307, USA. */
#include "defs.h"
+#include "gdbcore.h"
+#include "regcache.h"
#include "sparc-tdep.h"
#include "sparc-nat.h"
+/* Support for debugging kernel virtual memory images. */
+
+#include <sys/types.h>
+#include <machine/pcb.h>
+
+#include "bsd-kvm.h"
+
+static int
+sparc32nbsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
+{
+ /* The following is true for NetBSD 1.6.2:
+
+ The pcb contains %sp, %sp, %psr and %wim. From this information
+ we reconstruct the register state as it would look when we just
+ returned from cpu_switch(). */
+
+ /* The stack pointer shouldn't be zero. */
+ if (pcb->pcb_sp == 0)
+ return 0;
+
+ regcache_raw_supply (regcache, SPARC_SP_REGNUM, &pcb->pcb_sp);
+ regcache_raw_supply (regcache, SPARC_O7_REGNUM, &pcb->pcb_pc);
+ regcache_raw_supply (regcache, SPARC32_PSR_REGNUM, &pcb->pcb_psr);
+ regcache_raw_supply (regcache, SPARC32_WIM_REGNUM, &pcb->pcb_wim);
+ regcache_raw_supply (regcache, SPARC32_PC_REGNUM, &pcb->pcb_pc);
+
+ sparc_supply_rwindow (regcache, pcb->pcb_sp, -1);
+
+ return 1;
+}
+
+
/* Provide a prototype to silence -Wmissing-prototypes. */
void _initialize_sparcnbsd_nat (void);
@@ -31,4 +65,7 @@ void
_initialize_sparcnbsd_nat (void)
{
sparc_gregset = &sparc32nbsd_gregset;
+
+ /* Support debugging kernel virtual memory images. */
+ bsd_kvm_add_target (sparc32nbsd_supply_pcb);
}