This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 4a075b258e6 [gas] Update .loc syntax comment in dwarf2dbg.c new 1a8505cb53f gdb: add supports_arch_info callback to gdbarch_register new b82d4ec99e3 gdb: make install_breakpoint return a non-owning reference new 7b065306be3 gdbsupport: add type definitions for pid, lwp and tid new 9056c917b3e gdb: add inferior_pre_detach observable new d246d904adf gdb: add gdbarch_up new 17467c10307 gdb/solib-svr4: don't disable probes interface if probe not found new 8b588f42120 gdb: make gdb_printing_disassembler::stream public new 18b4d0736bc gdb: initial support for ROCm platform (AMDGPU) debugging
The 8 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: gdb/Makefile.in | 17 +- gdb/NEWS | 7 + gdb/README | 15 + gdb/amd-dbgapi-target.c | 1966 +++++++++++++++++++++++++++++++++++++ gdb/amd-dbgapi-target.h | 116 +++ gdb/amdgpu-tdep.c | 1367 ++++++++++++++++++++++++++ gdb/amdgpu-tdep.h | 93 ++ gdb/arch-utils.c | 9 +- gdb/breakpoint.c | 4 +- gdb/breakpoint.h | 8 +- gdb/configure | 425 +++++--- gdb/configure.ac | 52 + gdb/configure.tgt | 23 +- gdb/disasm.h | 4 +- gdb/doc/gdb.texinfo | 291 ++++++ gdb/gdbarch.h | 12 +- gdb/observable.c | 1 + gdb/observable.h | 3 + gdb/regcache.c | 3 +- gdb/solib-rocm.c | 679 +++++++++++++ gdb/solib-svr4.c | 15 +- gdb/target.c | 2 + gdb/testsuite/gdb.rocm/simple.cpp | 48 + gdb/testsuite/gdb.rocm/simple.exp | 52 + gdb/testsuite/lib/future.exp | 38 + gdb/testsuite/lib/gdb.exp | 7 + gdb/testsuite/lib/rocm.exp | 94 ++ gdbsupport/ptid.h | 18 +- 28 files changed, 5210 insertions(+), 159 deletions(-) create mode 100644 gdb/amd-dbgapi-target.c create mode 100644 gdb/amd-dbgapi-target.h create mode 100644 gdb/amdgpu-tdep.c create mode 100644 gdb/amdgpu-tdep.h create mode 100644 gdb/solib-rocm.c create mode 100644 gdb/testsuite/gdb.rocm/simple.cpp create mode 100644 gdb/testsuite/gdb.rocm/simple.exp create mode 100644 gdb/testsuite/lib/rocm.exp