diff options
author | John Baldwin <jhb@FreeBSD.org> | 2017-10-11 11:16:34 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2017-10-11 11:16:34 -0700 |
commit | 7176dfd28d1a2a74e6d8dd698aeb857eb6edfb98 (patch) | |
tree | f719df7c741cb3208388b2a94a665c5c5f691fb3 /gdb/ChangeLog | |
parent | 39865a7f420ab4ca4dec6ed27339618a5d5dc366 (diff) | |
download | gdb-7176dfd28d1a2a74e6d8dd698aeb857eb6edfb98.zip gdb-7176dfd28d1a2a74e6d8dd698aeb857eb6edfb98.tar.gz gdb-7176dfd28d1a2a74e6d8dd698aeb857eb6edfb98.tar.bz2 |
Add FreeBSD/arm architecture.
Support for collecting and supplying general purpose and floating
point registers is provided along with signal frame unwinding. While
FreeBSD/arm kernels do populate NT_FPREGSET notes, they are always
zero-filled, so this implementation ignores them. Recent FreeBSD/arm
kernels generate NT_ARM_VFP notes which are used to supply
floating-point registers. As with Linux, the AT_HWCAP feature flags
are used to determine the correct target description.
gdb/ChangeLog:
* Makefile.in (ALL_TARGET_OBS): Add arm-fbsd-tdep.o.
(ALLDEPFILES): Add arm-fbsd-tdep.c.
* NEWS: Mention new FreeBSD/arm target.
* configure.tgt: Add arm*-*-freebsd*.
* arm-fbsd-tdep.c: New file.
* arm-fbsd-tdep.h: New file.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6231638..6155c58 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +2017-10-11 John Baldwin <jhb@FreeBSD.org> + + * Makefile.in (ALL_TARGET_OBS): Add arm-fbsd-tdep.o. + (ALLDEPFILES): Add arm-fbsd-tdep.c. + * NEWS: Mention new FreeBSD/arm target. + * configure.tgt: Add arm*-*-freebsd*. + * arm-fbsd-tdep.c: New file. + * arm-fbsd-tdep.h: New file. + 2017-10-11 Maciej W. Rozycki <macro@imgtec.com> * linux-tdep.c (linux_make_corefile_notes): Remove call to |