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 01deb24db99 Remove redundant @findex from python.texi new 2f3dbc5fb5e bpf: opcodes, gas: support for signed register move V4 inst [...] new c24fd9547fb bpf: opcodes, gas: support for signed load V4 instructions new 4f7d9afbcdf Document array indexing for Python gdb.Value new 672c55ddcf1 Remove unused imports new 27b2eff1b82 Add Progspace.objfile_for_address new 8a35f6b30a3 Implement DAP modules request
The 6 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: gas/ChangeLog | 25 +++++++ gas/doc/c-bpf.texi | 44 ++++++++++++ gas/testsuite/gas/bpf/alu-be-pseudoc.d | 3 + gas/testsuite/gas/bpf/alu-be.d | 3 + gas/testsuite/gas/bpf/alu-pseudoc.d | 3 + gas/testsuite/gas/bpf/alu-pseudoc.s | 3 + gas/testsuite/gas/bpf/alu.d | 3 + gas/testsuite/gas/bpf/alu.s | 3 + gas/testsuite/gas/bpf/alu32-be-pseudoc.d | 3 + gas/testsuite/gas/bpf/alu32-be.d | 3 + gas/testsuite/gas/bpf/alu32-pseudoc.d | 3 + gas/testsuite/gas/bpf/alu32-pseudoc.s | 3 + gas/testsuite/gas/bpf/alu32.d | 3 + gas/testsuite/gas/bpf/alu32.s | 3 + gas/testsuite/gas/bpf/mem-be-pseudoc.d | 4 ++ gas/testsuite/gas/bpf/mem-be.d | 4 ++ gas/testsuite/gas/bpf/mem-pseudoc.d | 4 ++ gas/testsuite/gas/bpf/mem-pseudoc.s | 4 ++ gas/testsuite/gas/bpf/mem.d | 4 ++ gas/testsuite/gas/bpf/mem.s | 4 ++ gdb/NEWS | 3 + gdb/data-directory/Makefile.in | 1 + gdb/doc/python.texi | 12 ++++ gdb/progspace.c | 16 +++++ gdb/progspace.h | 4 ++ gdb/python/lib/gdb/dap/__init__.py | 1 + gdb/python/lib/gdb/dap/bt.py | 10 +-- gdb/python/lib/gdb/dap/evaluate.py | 1 - gdb/python/lib/gdb/dap/events.py | 14 ++++ gdb/python/lib/gdb/dap/modules.py | 64 +++++++++++++++++ gdb/python/py-progspace.c | 27 ++++++++ .../modules-solib.c} | 5 +- .../{gdb.base/break-probes.c => gdb.dap/modules.c} | 16 ++++- gdb/testsuite/gdb.dap/modules.exp | 81 ++++++++++++++++++++++ gdb/testsuite/gdb.python/py-progspace.exp | 7 ++ include/ChangeLog | 14 ++++ include/opcode/bpf.h | 8 +++ opcodes/ChangeLog | 10 +++ opcodes/bpf-opc.c | 22 ++++++ 39 files changed, 435 insertions(+), 10 deletions(-) create mode 100644 gdb/python/lib/gdb/dap/modules.py copy gdb/testsuite/{gdb.debuginfod/build-id-no-debug-warning.c => gdb.dap/modules- [...] copy gdb/testsuite/{gdb.base/break-probes.c => gdb.dap/modules.c} (75%) create mode 100644 gdb/testsuite/gdb.dap/modules.exp