This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 241db429d5 fix "stale cleanup" internal-warning when using "catch asser [...] new bd64614eb7 [PowerPC] Consolidate linux target description selection new 2e077f5e67 [PowerPC] Consolidate wordsize getter between native and gdbserver new 7273b5fc4b [PowerPC] Disable regsets using zero sizes in gdbserver new d078308a2e [PowerPC] Consolidate linux vector regset sizes new 1d75a65809 [PowerPC] Fix access to VSCR in linux targets new 2c3305f6b0 [PowerPC] Fix VSX registers in linux core files new 0fb2aaa15e [PowerPC] Fix inclusion of dfp pseudoregs in tdep new 0ec848ad25 [PowerPC] Recognize isa205 in linux core files
The 8 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/ChangeLog | 150 +++++++++ gdb/Makefile.in | 3 + gdb/arch/ppc-linux-common.c | 85 +++++ gdb/arch/ppc-linux-common.h | 60 ++++ gdb/{ppc-linux-tdep.h => arch/ppc-linux-tdesc.h} | 32 +- gdb/configure.nat | 2 +- gdb/configure.tgt | 3 +- gdb/gdbserver/ChangeLog | 55 ++++ gdb/gdbserver/Makefile.in | 1 + gdb/gdbserver/configure.srv | 1 + gdb/gdbserver/linux-ppc-ipa.c | 3 +- gdb/gdbserver/linux-ppc-low.c | 153 ++++----- .../{linux-ppc-tdesc.h => linux-ppc-tdesc-init.h} | 15 - gdb/nat/ppc-linux.c | 22 +- gdb/nat/ppc-linux.h | 7 +- gdb/ppc-fbsd-tdep.c | 16 +- gdb/ppc-linux-nat.c | 359 ++++----------------- gdb/ppc-linux-tdep.c | 146 ++++++--- gdb/ppc-linux-tdep.h | 21 +- gdb/ppc-nbsd-tdep.c | 4 - gdb/ppc-obsd-nat.c | 5 - gdb/ppc-obsd-tdep.c | 4 - gdb/ppc-tdep.h | 5 - gdb/rs6000-aix-tdep.c | 14 +- gdb/rs6000-tdep.c | 194 +---------- gdb/testsuite/ChangeLog | 8 + gdb/testsuite/gdb.arch/powerpc-fpscr-gcore.exp | 93 ++++++ gdb/testsuite/gdb.arch/powerpc-vsx-gcore.exp | 90 ++++++ 28 files changed, 833 insertions(+), 718 deletions(-) create mode 100644 gdb/arch/ppc-linux-common.c create mode 100644 gdb/arch/ppc-linux-common.h copy gdb/{ppc-linux-tdep.h => arch/ppc-linux-tdesc.h} (62%) rename gdb/gdbserver/{linux-ppc-tdesc.h => linux-ppc-tdesc-init.h} (76%) create mode 100644 gdb/testsuite/gdb.arch/powerpc-fpscr-gcore.exp create mode 100644 gdb/testsuite/gdb.arch/powerpc-vsx-gcore.exp