This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-arm-bootstrap_O1 in repository toolchain/ci/binutils-gdb.
from 6c924cf21c Install gprofng libraries under $(pkglibdir) adds 6c111a4ec2 Fix some stale header names from dwarf files adds 25209e2c69 gdb/python: add gdb.format_address function adds 86ed2a5eae Fix return code in _bfd_dwarf2_find_nearest_line(). adds de8fd80cf9 Remove two unused variables adds 711b0b6698 Remove USE_SIGTRAP_SIGINFO condition for FreeBSD/x86 debug r [...] adds 922c2fc18e x86-nat: Use an unordered_map to store per-pid debug reg state. adds b1babce7c3 x86-nat: Add x86_lookup_debug_reg_state. adds a49ce729c8 Add an x86_fbsd_nat_target mixin class for FreeBSD x86 nativ [...] adds c77282d8ba fbsd-nat: Add a low_new_fork virtual method. adds 041a4212d3 x86-fbsd-nat: Copy debug register state on fork. adds 4bd817e71e nat: Split out platform-independent aarch64 debug register support. adds 1570c37c34 aarch64: Add an aarch64_nat_target mixin class. adds 6719bc690e fbsd-nat: Add helper routine to fetch siginfo_t for a ptid. adds 983b1119bc fbsd-nat: Add a low_delete_thread virtual method. adds a3627b5428 fbsd-nat: Add a low_prepare_to_resume virtual method. adds 065a00b3a4 Add support for hardware breakpoints/watchpoints on FreeBSD/ [...] adds 9457d59e9d Automatic date update in version.in adds 11c19d73c3 gdb: testsuite: remove attach test from can_spawn_for_attach adds a7e6a19e87 gdb: testsuite: add new gdb_attach to check "attach" command adds 5b5442fbf0 gdb: testsuite: use gdb_attach to fix attach-pie-noexec.exp adds f629ad7dac gdb: testsuite: use gdb_attach to fix jit-elf.exp new b8466ab5e5 Only .so files are used in libcollector. Remove the other files.
The 1 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: bfd/ChangeLog | 5 + bfd/dwarf2.c | 6 +- bfd/version.h | 2 +- gdb/NEWS | 10 + gdb/aarch64-fbsd-nat.c | 260 ++++++++- gdb/aarch64-linux-nat.c | 352 +----------- gdb/aarch64-nat.c | 302 ++++++++++ gdb/aarch64-nat.h | 109 ++++ gdb/amd64-fbsd-nat.c | 20 +- gdb/configure.nat | 12 +- gdb/csky-tdep.c | 1 - gdb/doc/python.texi | 54 ++ gdb/dwarf2/expr.h | 2 +- gdb/dwarf2/frame.c | 4 +- gdb/dwarf2/loc.c | 12 +- gdb/dwarf2/loc.h | 2 +- gdb/dwarf2/read.c | 2 +- gdb/fbsd-nat.c | 28 +- gdb/fbsd-nat.h | 18 + gdb/i386-fbsd-nat.c | 20 +- ...aarch64-linux-hw-point.c => aarch64-hw-point.c} | 341 ++---------- ...aarch64-linux-hw-point.h => aarch64-hw-point.h} | 101 +--- gdb/nat/aarch64-linux-hw-point.c | 605 +-------------------- gdb/nat/aarch64-linux-hw-point.h | 105 +--- gdb/nat/aarch64-linux.c | 4 +- gdb/python/py-arch.c | 13 +- gdb/python/py-progspace.c | 17 + gdb/python/python-internal.h | 16 + gdb/python/python.c | 108 ++++ gdb/sparc-tdep.c | 1 - gdb/testsuite/gdb.base/attach-pie-noexec.exp | 5 +- gdb/testsuite/gdb.base/jit-elf.exp | 24 +- gdb/testsuite/gdb.python/py-format-address.c | 32 ++ gdb/testsuite/gdb.python/py-format-address.exp | 177 ++++++ gdb/testsuite/lib/gdb.exp | 72 ++- gdb/x86-fbsd-nat.c | 45 ++ gdb/x86-fbsd-nat.h | 36 ++ gdb/x86-nat.c | 92 +--- gdb/x86-nat.h | 5 + gdbserver/configure.srv | 1 + gdbserver/linux-aarch64-low.cc | 13 +- gprofng/libcollector/Makefile.am | 4 +- gprofng/libcollector/Makefile.in | 4 +- 43 files changed, 1420 insertions(+), 1622 deletions(-) create mode 100644 gdb/aarch64-nat.c create mode 100644 gdb/aarch64-nat.h copy gdb/nat/{aarch64-linux-hw-point.c => aarch64-hw-point.c} (63%) copy gdb/nat/{aarch64-linux-hw-point.h => aarch64-hw-point.h} (58%) create mode 100644 gdb/testsuite/gdb.python/py-format-address.c create mode 100644 gdb/testsuite/gdb.python/py-format-address.exp create mode 100644 gdb/x86-fbsd-nat.c create mode 100644 gdb/x86-fbsd-nat.h