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-next-defconfig in repository toolchain/ci/binutils-gdb.
from e76790600a PR23652, Use symbols from debug bfd for _bfd_elf_find_function adds 7f3bf38453 PR23652, Use symbols from debug bfd for _bfd_elf_find_functi [...] adds 470c0b1c9a gdb: Introduce global_symbol_searcher adds 5f512a7dd0 gdb: Split print_symbol_info into two parts adds 7dc4206609 gdb/mi: Add new commands -symbol-info-{functions,variables,types} adds db5960b4d2 gdb/mi: Add -symbol-info-modules command adds 43678b0afe Replace SYMBOL_SET_LINKAGE_NAME with a member function adds fad03f6e5b Remove some unnecessary backslashes adds 8d9a256865 Fix BZ 25065 - Ensure that physnames are computed for inheri [...] adds d22670f078 Test case for BZ 25065 adds 640ab94712 gdb/testsuite: Fix race condition compiling fortran test adds e76b224615 Precompute hash value for symbol_set_names adds f29d7f6b83 Compute msymbol hash codes in parallel adds 62e77f56f0 Turn off threaded minsym demangling by default adds e49b22ff20 Add a NEWS entry for multithreaded symbol loading adds 351259211a Add missing ChangeLog entry for the previous commit new b921626516 Automatic date update in version.in new b7379eadda gas/riscv: Remove unneeded structure new d9acf70759 binutils: Be more forgiving of targets with large numbers of [...] new 955ff7fcf8 binutils: Rename init_dwarf_regnames new 229a22cfd2 binutils: Add a new function to initialise DWARF register na [...] new 99f6fdd9eb binutils: Make some functions static in dwarf.c new 1296bc99b1 binutils: Make DWARF register name lookup be via a function pointer new 4762fe621e binutils/gas/riscv: Add DWARF register numbers for CSRs new 22eb4a0617 gas: Check for overflow on return column in version 1 CIE DWARF new 0ac2b354ee gas/riscv: Produce version 3 DWARF CIE by default new dcdec67858 gdb/testsuite: Fix minor bug in skip_btrace*tests procs
The 11 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 | 15 + bfd/dwarf2.c | 19 +- bfd/elf64-alpha.c | 3 +- bfd/elfxx-mips.c | 3 +- bfd/libbfd-in.h | 2 +- bfd/libbfd.h | 2 +- bfd/version.h | 2 +- binutils/ChangeLog | 59 ++++ binutils/dwarf.c | 148 ++++++++-- binutils/dwarf.h | 10 +- binutils/objdump.c | 40 +-- binutils/readelf.c | 2 +- gas/ChangeLog | 30 ++ gas/as.c | 10 +- gas/config/tc-riscv.c | 18 +- gas/dw2gencfi.c | 7 +- gas/dwarf2dbg.c | 11 + gas/testsuite/gas/riscv/cie-rtn-col-1.d | 3 + gas/testsuite/gas/riscv/cie-rtn-col-3.d | 17 ++ gas/testsuite/gas/riscv/cie-rtn-col.s | 3 + gas/testsuite/gas/riscv/csr-dw-regnums.d | 265 +++++++++++++++++ gas/testsuite/gas/riscv/csr-dw-regnums.s | 255 ++++++++++++++++ gas/testsuite/gas/riscv/default-cie-version.d | 15 + .../cie-version.s => riscv/default-cie-version.s} | 0 gdb/ChangeLog | 108 +++++++ gdb/NEWS | 13 +- gdb/ada-exp.y | 3 +- gdb/coffread.c | 2 +- gdb/cp-support.c | 2 +- gdb/doc/ChangeLog | 11 + gdb/doc/gdb.texinfo | 322 ++++++++++++++++++++- gdb/dwarf2read.c | 3 + gdb/dwarf2read.h | 4 +- gdb/maint.c | 7 +- gdb/maint.h | 2 + gdb/mdebugread.c | 5 +- gdb/mi/mi-cmds.c | 4 + gdb/mi/mi-cmds.h | 4 + gdb/mi/mi-symbol-cmds.c | 246 ++++++++++++++++ gdb/minsyms.c | 85 ++++-- gdb/python/python.c | 35 +-- gdb/stabsread.c | 17 +- gdb/symtab.c | 260 ++++++++--------- gdb/symtab.h | 105 +++++-- gdb/testsuite/ChangeLog | 28 ++ gdb/testsuite/gdb.dwarf2/imported-unit.c | 56 ++++ gdb/testsuite/gdb.dwarf2/imported-unit.exp | 157 ++++++++++ gdb/testsuite/gdb.fortran/info-modules.exp | 2 +- gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90 | 33 +++ gdb/testsuite/gdb.mi/mi-fortran-modules.exp | 52 ++++ gdb/testsuite/gdb.mi/mi-fortran-modules.f90 | 87 ++++++ gdb/testsuite/gdb.mi/mi-sym-info-1.c | 48 +++ gdb/testsuite/gdb.mi/mi-sym-info-2.c | 43 +++ gdb/testsuite/gdb.mi/mi-sym-info.exp | 129 +++++++++ gdb/testsuite/lib/gdb.exp | 4 +- gdb/xcoffread.c | 2 +- ld/ChangeLog | 4 + ld/testsuite/ld-elf/eh5.d | 12 +- 58 files changed, 2520 insertions(+), 314 deletions(-) create mode 100644 gas/testsuite/gas/riscv/cie-rtn-col-1.d create mode 100644 gas/testsuite/gas/riscv/cie-rtn-col-3.d create mode 100644 gas/testsuite/gas/riscv/cie-rtn-col.s create mode 100644 gas/testsuite/gas/riscv/csr-dw-regnums.d create mode 100644 gas/testsuite/gas/riscv/csr-dw-regnums.s create mode 100644 gas/testsuite/gas/riscv/default-cie-version.d copy gas/testsuite/gas/{cfi/cie-version.s => riscv/default-cie-version.s} (100%) create mode 100644 gdb/testsuite/gdb.dwarf2/imported-unit.c create mode 100644 gdb/testsuite/gdb.dwarf2/imported-unit.exp create mode 100644 gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90 create mode 100644 gdb/testsuite/gdb.mi/mi-fortran-modules.exp create mode 100644 gdb/testsuite/gdb.mi/mi-fortran-modules.f90 create mode 100644 gdb/testsuite/gdb.mi/mi-sym-info-1.c create mode 100644 gdb/testsuite/gdb.mi/mi-sym-info-2.c create mode 100644 gdb/testsuite/gdb.mi/mi-sym-info.exp