diff options
author | John Baldwin <jhb@FreeBSD.org> | 2017-01-04 09:41:58 -0800 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2017-01-04 09:41:58 -0800 |
commit | 387360daf92ec2e4e02ace51f44400c167bb5c79 (patch) | |
tree | 40cfe28ba486d4839e502242f53801857af6ec3a /gdb/doc | |
parent | b055631694967585d0c898ac493e1faa3d5e8ee6 (diff) | |
download | gdb-387360daf92ec2e4e02ace51f44400c167bb5c79.zip gdb-387360daf92ec2e4e02ace51f44400c167bb5c79.tar.gz gdb-387360daf92ec2e4e02ace51f44400c167bb5c79.tar.bz2 |
Add FreeBSD/mips architecture.
This has been tested for the n64 and o32 ABIs. Signal frame unwinders for
both ABIs are provided. FreeBSD/mips requires custom linkmap offsets since
it contains an additional l_off member in 'struct link_map' that other
FreeBSD platforms do not have. Support for collecting and supplying
general purpose and floating point register sets are provided. Common
routines for working with native format register sets are exported for
use by the native target.
gdb/ChangeLog:
* Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
(ALLDEPFILES): Add mips-fbsd-tdep.c.
* NEWS: Mention new FreeBSD/mips target.
* configure.tgt: Add mips*-*-freebsd*.
* mips-fbsd-tdep.c: New file.
* mips-fbsd-tdep.h: New file.
gdb/doc/ChangeLog:
* gdb.texinfo (Contributors): Add SRI International and University
of Cambridge for FreeBSD/mips.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index eb6e82a..4c6e718 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2017-01-04 John Baldwin <jhb@FreeBSD.org> + + * gdb.texinfo (Contributors): Add SRI International and University + of Cambridge for FreeBSD/mips. + 2016-12-22 Doug Evans <xdje42@gmail.com> * gdb.texinfo (Symbols): Update docs for symbol printing maintenance diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index ccb95ad..2b6b654 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -541,6 +541,11 @@ Steve Tjiang, John Newlin, and Scott Foehner. Michael Eager and staff of Xilinx, Inc., contributed support for the Xilinx MicroBlaze architecture. +Initial support for the FreeBSD/mips target and native configuration +was developed by SRI International and the University of Cambridge +Computer Laboratory under DARPA/AFRL contract FA8750-10-C-0237 +("CTSRD"), as part of the DARPA CRASH research programme. + @node Sample Session @chapter A Sample @value{GDBN} Session |