From a904c024b0760911288e865c62d91578fd887e3b Mon Sep 17 00:00:00 2001 From: Andreas Arnez Date: Tue, 3 Dec 2013 11:35:35 +0000 Subject: Add multi-arch capable 'fbsd_make_corefile_notes' variant This creates a new version of the FreeBSD core file note generation logic in the new target-dependent file "fbsd-tdep.c". The new version is mostly copied from "fbsd-nat.c", but uses the iterator instead of regset_from_core_section and defines fbsd_make_corefile_notes as a gdbarch method instead of a target method. Consecutive architecture-dependent changes exploit the new version, migrating away from the target method. When all FreeBSD targets are changed, the target method can go away. gdb/ChangeLog: * fbsd-tdep.c: New file. * fbsd-tdep.h: New file. * Makefile.in (ALL_TARGET_OBS): Add fbsd-tdep.o. (HFILES_NO_SRCDIR): Add fbsd-tdep.h. (ALLDEPFILES): Add fbsd-tdep.c. --- gdb/Makefile.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gdb/Makefile.in') diff --git a/gdb/Makefile.in b/gdb/Makefile.in index cbec0d2..1ffa62a 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -625,6 +625,7 @@ ALL_TARGET_OBS = \ bfin-linux-tdep.o bfin-tdep.o \ cris-linux-tdep.o cris-tdep.o \ dicos-tdep.o \ + fbsd-tdep.o \ frv-linux-tdep.o frv-tdep.o \ h8300-tdep.o \ hppabsd-tdep.o hppanbsd-tdep.o hppaobsd-tdep.o \ @@ -939,7 +940,7 @@ common/print-utils.h common/rsp-low.h nat/x86-dregs.h x86-linux-nat.h \ i386-linux-nat.h common/common-defs.h common/errors.h common/common-types.h \ common/common-debug.h common/cleanups.h common/gdb_setjmp.h \ common/common-exceptions.h target/target.h common/symbol.h \ -common/common-regcache.h +common/common-regcache.h fbsd-tdep.h # Header files that already have srcdir in them, or which are in objdir. @@ -1622,6 +1623,7 @@ ALLDEPFILES = \ dcache.c dicos-tdep.c darwin-nat.c \ exec.c \ fbsd-nat.c \ + fbsd-tdep.c \ fork-child.c \ glibc-tdep.c \ go32-nat.c h8300-tdep.c \ -- cgit v1.1