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-mainline-allyesconfig in repository toolchain/binutils-gdb.
from 1b288e9bbf Automatic date update in version.in adds e71585ffe2 Use gdb:array_view in call_function_by_hand & friends adds 6b1747cd13 invoke_xmethod & array_view adds 0891c3cc13 Eliminate make_symbol_overload_list-related globals & cleanup adds 82ceee5014 C++ify badness_vector, fix leaks adds 85cca2bcbc valops.c: Some more gdb::array_view adds 38139a9681 valops.c: Overload resolution code: Rename parameters/locals adds b5ffee3181 gdb/riscv: Add target description support adds ca94519e70 Fix linking MSP430 files created by gcc's LTO optimizer. adds 1c97054b87 Make command-repeat work after gdb.execute adds 51534d7ab8 S12Z: Add alias instructions BHS and BLO. adds 27f42a4ddb S12Z opcodes: Fix bug disassembling certain shift instructions. adds 79a9468c70 Automatic date update in version.in adds 151bb4a505 Avoid find_thread_ptid with null_ptid adds c4c17fb0f5 Fix follow_exec latent problem adds 0803633106 Per-inferior thread list, thread ranges/iterators, down with [...] adds 8e4b639201 Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 6 + bfd/elf32-msp430.c | 6 + bfd/version.h | 2 +- gas/ChangeLog | 11 + gas/config/tc-s12z.c | 2 + gas/testsuite/gas/s12z/bra.d | 6 +- gas/testsuite/gas/s12z/bra.s | 2 + gas/testsuite/gas/s12z/shift.d | 4 +- gas/testsuite/gas/s12z/shift.s | 2 + gdb/ChangeLog | 395 +++++++++++++++ gdb/Makefile.in | 3 + gdb/NEWS | 2 + gdb/ada-lang.c | 4 +- gdb/arch/riscv.c | 69 +++ gdb/arch/riscv.h | 64 +++ gdb/breakpoint.c | 7 +- gdb/bsd-kvm.c | 3 +- gdb/btrace.c | 4 +- gdb/cli/cli-interp.c | 4 +- gdb/common/array-view.h | 53 ++ gdb/common/filtered-iterator.h | 87 ++++ gdb/common/safe-iterator.h | 93 ++++ gdb/compile/compile-object-run.c | 4 +- gdb/configure.tgt | 9 +- gdb/corelow.c | 6 - gdb/cp-support.c | 142 +++--- gdb/cp-support.h | 13 +- gdb/darwin-nat.c | 10 +- gdb/doc/ChangeLog | 5 + gdb/doc/gdb.texinfo | 36 ++ gdb/elfread.c | 2 +- gdb/eval.c | 32 +- gdb/extension.c | 12 +- gdb/extension.h | 32 +- gdb/fbsd-nat.c | 21 +- gdb/fbsd-tdep.c | 6 +- gdb/features/Makefile | 11 + gdb/features/riscv/32bit-cpu.c | 46 ++ gdb/features/riscv/32bit-cpu.xml | 43 ++ gdb/features/riscv/32bit-csr.c | 253 ++++++++++ gdb/features/riscv/32bit-csr.xml | 250 ++++++++++ gdb/features/riscv/32bit-fpu.c | 48 ++ gdb/features/riscv/32bit-fpu.xml | 46 ++ gdb/features/riscv/64bit-cpu.c | 46 ++ gdb/features/riscv/64bit-cpu.xml | 43 ++ gdb/features/riscv/64bit-csr.c | 253 ++++++++++ gdb/features/riscv/64bit-csr.xml | 250 ++++++++++ gdb/features/riscv/64bit-fpu.c | 56 +++ gdb/features/riscv/64bit-fpu.xml | 52 ++ gdb/features/riscv/rebuild-csr-xml.sh | 29 ++ gdb/fork-child.c | 7 +- gdb/gcore.c | 2 +- gdb/gdbarch-selftests.c | 2 +- gdb/gdbthread.h | 94 ++-- gdb/gdbtypes.c | 50 +- gdb/gdbtypes.h | 18 +- gdb/guile/scm-value.c | 4 +- gdb/infcall.c | 29 +- gdb/infcall.h | 15 +- gdb/infcmd.c | 69 +-- gdb/inferior-iter.h | 117 +++++ gdb/inferior.c | 142 ++---- gdb/inferior.h | 91 +++- gdb/inflow.c | 6 +- gdb/infrun.c | 228 ++++----- gdb/linux-fork.c | 7 +- gdb/linux-nat.c | 43 +- gdb/linux-tdep.c | 10 +- gdb/linux-thread-db.c | 8 +- gdb/mi/mi-interp.c | 60 +-- gdb/mi/mi-main.c | 5 +- gdb/nto-procfs.c | 2 - gdb/objc-lang.c | 13 +- gdb/python/py-inferior.c | 4 +- gdb/python/py-value.c | 6 +- gdb/python/py-xmethods.c | 40 +- gdb/python/python.c | 3 +- gdb/record-btrace.c | 72 +-- gdb/record-full.c | 4 +- gdb/regcache.c | 3 - gdb/remote-sim.c | 3 - gdb/remote.c | 77 +-- gdb/riscv-tdep.c | 888 ++++++++++++++++++++-------------- gdb/riscv-tdep.h | 29 +- gdb/rust-lang.c | 2 +- gdb/spu-tdep.c | 2 +- gdb/target-descriptions.c | 1 + gdb/target.c | 8 +- gdb/testsuite/ChangeLog | 6 + gdb/testsuite/gdb.python/python.exp | 1 + gdb/thread-iter.c | 101 ++++ gdb/thread-iter.h | 311 ++++++++++++ gdb/thread.c | 346 ++++--------- gdb/tid-parse.c | 12 +- gdb/tui/tui-interp.c | 4 +- gdb/unittests/array-view-selftests.c | 35 ++ gdb/valarith.c | 53 +- gdb/valops.c | 362 +++++++------- gdb/value.c | 13 +- gdb/value.h | 6 +- gdb/x86-bsd-nat.c | 14 +- opcodes/ChangeLog | 5 + opcodes/s12z-dis.c | 44 +- 103 files changed, 4362 insertions(+), 1700 deletions(-) create mode 100644 gdb/arch/riscv.c create mode 100644 gdb/arch/riscv.h create mode 100644 gdb/common/filtered-iterator.h create mode 100644 gdb/common/safe-iterator.h create mode 100644 gdb/features/riscv/32bit-cpu.c create mode 100644 gdb/features/riscv/32bit-cpu.xml create mode 100644 gdb/features/riscv/32bit-csr.c create mode 100644 gdb/features/riscv/32bit-csr.xml create mode 100644 gdb/features/riscv/32bit-fpu.c create mode 100644 gdb/features/riscv/32bit-fpu.xml create mode 100644 gdb/features/riscv/64bit-cpu.c create mode 100644 gdb/features/riscv/64bit-cpu.xml create mode 100644 gdb/features/riscv/64bit-csr.c create mode 100644 gdb/features/riscv/64bit-csr.xml create mode 100644 gdb/features/riscv/64bit-fpu.c create mode 100644 gdb/features/riscv/64bit-fpu.xml create mode 100755 gdb/features/riscv/rebuild-csr-xml.sh create mode 100644 gdb/inferior-iter.h create mode 100644 gdb/thread-iter.c create mode 100644 gdb/thread-iter.h