This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-check_binutils in repository toolchain/ci/binutils-gdb.
from b5582ab72f Don't output null pathname in core_target::build_file_mappin [...] adds 1a9f72a7a8 MSP430: ld: Update output section tail when shuffling ".eith [...] adds 3ee9565c95 bpf: relocation fixes for eBPF ELF backend adds ed908db649 amd64_analyze_prologue: fix incorrect comment adds d27aad4ec3 gas: Fix internal error on long local labels adds 174981ae1f gdb: rename regcache::current_regcache to regcache::regcaches adds 159ed7d93f gdb: move regcache::regcaches to regcache.c adds 939bf1224d Automatic date update in version.in adds 4b48e6d46d MSP430: sim: Increase main memory region size adds 7bb178ecf8 as: Ignore rest of line on overflow error adds d2854d8d5a Add code for processing version 5 DWP files (for use with DW [...] adds b161a60d1f gdb: pass target to thread_ptid_changed observable adds 888bdb2b74 gdb: change regcache list to be a map adds 3d4470e5d4 Call add_active_thread after pushing the ravenscar target adds e95465793d Avoid crash in ravenscar_thread_target::wait adds 550ab58d6e Return event_ptid from ravenscar_thread_target::wait adds a8ac85bb7d Handle case where Ada task is current but not listed adds d5d833afcf Change names given to Ravenscar threads adds 78c02f21ad Use gdb::function_view in iterate_over_live_ada_tasks adds 2080266b77 Wrap xfer_partial and enable_btrace for Ravenscar adds e09eef98a6 Update Ravenscar documentation adds 39e2018a4e Fix Ravenscar "process" resume adds 592f9bd76a Fetch registers from correct thread in ravenscar-thread.c adds 0e29517d97 Set inferior_ptid in ravenscar_thread_target::update_thread_list adds a52b3ae2b1 Fix remaining Ravenscar regressions adds fe4c3d430b gdb: fix whitespace issues in ChangeLog adds d844f10ac2 bpf: fix false overflow in eBPF ELF backend linker adds aebda2fbcb bpf: add missing tests from previous commits new bc853409cc Automatic date update in version.in
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 | 12 + bfd/elf64-bpf.c | 215 +++++++++--- bfd/version.h | 2 +- gas/ChangeLog | 14 + gas/read.c | 22 +- gas/testsuite/gas/all/gas.exp | 1 + gas/testsuite/gas/all/local-label-overflow.d | 3 + gas/testsuite/gas/all/local-label-overflow.l | 2 + gas/testsuite/gas/all/local-label-overflow.s | 1 + gdb/ChangeLog | 194 ++++++++++- gdb/ada-lang.h | 5 +- gdb/ada-tasks.c | 2 +- gdb/amd64-tdep.c | 2 +- gdb/doc/ChangeLog | 5 + gdb/doc/gdb.texinfo | 28 ++ gdb/dwarf2/index-write.c | 1 + gdb/dwarf2/read.c | 480 ++++++++++++++++++++++++--- gdb/infrun.c | 78 ++++- gdb/observable.h | 6 +- gdb/ravenscar-thread.c | 256 ++++++++++---- gdb/record-btrace.c | 1 + gdb/regcache.c | 228 +++++++++---- gdb/regcache.h | 9 +- gdb/sparc64-tdep.c | 2 +- gdb/testsuite/ChangeLog | 2 +- gdb/thread.c | 2 +- gdbsupport/ptid.h | 16 + ld/ChangeLog | 31 ++ ld/emultempl/msp430.em | 32 +- ld/testsuite/ld-bpf/call-2.d | 20 ++ ld/testsuite/ld-bpf/call-2.s | 3 + ld/testsuite/ld-bpf/call-3.d | 19 ++ ld/testsuite/ld-bpf/call-3.s | 12 + ld/testsuite/ld-bpf/reloc-data-be.d | 11 + ld/testsuite/ld-bpf/reloc-data-le.d | 11 + ld/testsuite/ld-bpf/reloc-data.s | 16 + ld/testsuite/ld-bpf/reloc-insn-external-be.d | 16 + ld/testsuite/ld-bpf/reloc-insn-external-le.d | 16 + ld/testsuite/ld-bpf/reloc-insn-external.s | 5 + ld/testsuite/ld-bpf/reloc-insn32-be.d | 19 ++ ld/testsuite/ld-bpf/reloc-insn32-le.d | 19 ++ ld/testsuite/ld-bpf/reloc-insn32.s | 20 ++ ld/testsuite/ld-bpf/reloc-insn64-be.d | 12 + ld/testsuite/ld-bpf/reloc-insn64-le.d | 12 + ld/testsuite/ld-bpf/reloc-insn64.s | 9 + sim/msp430/ChangeLog | 5 + sim/msp430/msp430-sim.c | 2 +- 47 files changed, 1616 insertions(+), 263 deletions(-) create mode 100644 gas/testsuite/gas/all/local-label-overflow.d create mode 100644 gas/testsuite/gas/all/local-label-overflow.l create mode 100644 gas/testsuite/gas/all/local-label-overflow.s create mode 100644 ld/testsuite/ld-bpf/call-2.d create mode 100644 ld/testsuite/ld-bpf/call-2.s create mode 100644 ld/testsuite/ld-bpf/call-3.d create mode 100644 ld/testsuite/ld-bpf/call-3.s create mode 100644 ld/testsuite/ld-bpf/reloc-data-be.d create mode 100644 ld/testsuite/ld-bpf/reloc-data-le.d create mode 100644 ld/testsuite/ld-bpf/reloc-data.s create mode 100644 ld/testsuite/ld-bpf/reloc-insn-external-be.d create mode 100644 ld/testsuite/ld-bpf/reloc-insn-external-le.d create mode 100644 ld/testsuite/ld-bpf/reloc-insn-external.s create mode 100644 ld/testsuite/ld-bpf/reloc-insn32-be.d create mode 100644 ld/testsuite/ld-bpf/reloc-insn32-le.d create mode 100644 ld/testsuite/ld-bpf/reloc-insn32.s create mode 100644 ld/testsuite/ld-bpf/reloc-insn64-be.d create mode 100644 ld/testsuite/ld-bpf/reloc-insn64-le.d create mode 100644 ld/testsuite/ld-bpf/reloc-insn64.s