This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-lts-allmodconfig in repository toolchain/binutils-gdb.
from 5f60af5d24 Fix a memory exhaustion bug when attempting to allocate room [...] adds c180496d2a Move test_target_ops to a separate file adds 3b3dac9b3f Introduce process_stratum_target adds f3d11a9a96 Convert default_child_has_foo functions to process_stratum_t [...] adds 20a7119479 Add PR number to previous delta to the bfd/ directory. adds 66b4deae03 target_ops::to_stratum -> target_ops::stratum() virtual method adds 81fbbaf962 Fix dwarf2read.c:dwarf2_find_containing_comp_unit's binary search adds 0ff80bf7b9 gdb/riscv: Make some target description functions constant adds 65a4b37326 gdb/riscv: Add equality operators to riscv_gdb_features adds 634494366c gdb/riscv: Create each unique target description only once adds 92528b6772 gdb/riscv: Add read_description method for riscv_linux_nat_target adds 27c634e0ed GAS/MIPS: Add `-mfix-r5900' option for the R5900 short loop erratum adds f8eb6a9e89 Update the conditionals in fbsd-nat.h so they are always honored. adds 4717cec4fe Fix leak in linespec parser adds 93579f6f90 Use kinfo_getfile to implement fdwalk on FreeBSD. adds 35d1b0784a Automatic date update in version.in adds 0acc7632bb PR23938, should not free memory alloced in obstack by free() adds 64d27cfc97 [gdb/testsuite] Add gdb-caching-proc.exp testcase adds 726bd37d6c PR23945, NULL pointer dereference in readelf.c:slurp_hppa_un [...] adds 4770fb94ee PR23946, illegal memory access in readelf.c:slurp_ia64_unwind_table
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 1 + bfd/version.h | 2 +- binutils/ChangeLog | 15 ++ binutils/readelf.c | 44 +++++- gas/ChangeLog | 38 +++++ gas/config/obj-coff.c | 2 +- gas/config/obj-elf.c | 2 +- gas/config/obj-som.c | 2 +- gas/config/tc-mips.c | 25 +++- gas/doc/as.texi | 9 ++ gas/doc/c-mips.texi | 8 ++ gas/read.h | 2 +- gas/stabs.c | 79 +++++------ gas/testsuite/gas/all/gas.exp | 2 + gas/testsuite/gas/all/pr23938.s | 2 + gas/testsuite/gas/mips/mips.exp | 2 + gas/testsuite/gas/mips/r5900-fix.d | 30 ++++ gas/testsuite/gas/mips/r5900-fix.s | 40 ++++++ gas/testsuite/gas/mips/r5900-no-fix.d | 13 ++ gas/testsuite/gas/mips/r5900-no-fix.s | 17 +++ gdb/ChangeLog | 213 ++++++++++++++++++++++++++++ gdb/Makefile.in | 2 + gdb/aix-thread.c | 5 +- gdb/arch/riscv.c | 33 ++++- gdb/arch/riscv.h | 24 +++- gdb/bfd-target.c | 3 +- gdb/bsd-kvm.c | 6 +- gdb/bsd-uthread.c | 5 +- gdb/common/filestuff.c | 24 ++++ gdb/corelow.c | 8 +- gdb/dwarf2read.c | 3 +- gdb/exec.c | 5 +- gdb/fbsd-nat.c | 19 ++- gdb/fbsd-nat.h | 3 +- gdb/gdbarch-selftests.c | 3 +- gdb/inf-child.c | 35 ----- gdb/inf-child.h | 17 +-- gdb/linespec.c | 38 ++--- gdb/linux-thread-db.c | 9 +- gdb/make-target-delegates | 4 +- gdb/process-stratum-target.c | 85 +++++++++++ gdb/process-stratum-target.h | 56 ++++++++ gdb/ravenscar-thread.c | 12 +- gdb/record-btrace.c | 5 +- gdb/record-full.c | 5 +- gdb/record.c | 8 +- gdb/regcache.c | 5 +- gdb/remote-sim.c | 15 +- gdb/remote.c | 14 +- gdb/riscv-linux-nat.c | 38 +++++ gdb/riscv-tdep.c | 6 +- gdb/sol-thread.c | 5 +- gdb/spu-multiarch.c | 5 +- gdb/target-delegates.c | 12 +- gdb/target.c | 153 ++++---------------- gdb/target.h | 73 ++-------- gdb/test-target.c | 39 +++++ gdb/test-target.h | 65 +++++++++ gdb/testsuite/ChangeLog | 4 + gdb/testsuite/gdb.base/gdb-caching-proc.exp | 112 +++++++++++++++ gdb/tracefile.c | 5 - gdb/tracefile.h | 6 +- 62 files changed, 1103 insertions(+), 419 deletions(-) create mode 100644 gas/testsuite/gas/all/pr23938.s create mode 100644 gas/testsuite/gas/mips/r5900-fix.d create mode 100644 gas/testsuite/gas/mips/r5900-fix.s create mode 100644 gas/testsuite/gas/mips/r5900-no-fix.d create mode 100644 gas/testsuite/gas/mips/r5900-no-fix.s create mode 100644 gdb/process-stratum-target.c create mode 100644 gdb/process-stratum-target.h create mode 100644 gdb/test-target.c create mode 100644 gdb/test-target.h create mode 100644 gdb/testsuite/gdb.base/gdb-caching-proc.exp