This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_check_binutils/master-aarch64 in repository toolchain/ci/gdb.
from 5fb28d2607 x86: drop print_operand_value()'s "hex" parameter adds 8a0b60471a gdb/python: convert gdbpy_err_fetch to use gdbpy_ref adds f0c2e3e020 gdb: add new base class to gdb_disassembler adds e4ae302562 gdb: add extension language print_insn hook adds 15e15b2d9c gdb/python: implement the print_insn extension language hook adds 8b39b1e7ab gdb: refactor the non-printing disassemblers adds 75033d0841 gdb: unify two dis_asm_read_memory functions in disasm.c adds fe642a5b14 gdb/arm: Fetch initial sp value prior to compare adds 0d12d61b9a gdb/arm: Track msp and psp adds b9b66a3a57 gdb/arm: Make sp alias for one of the other stack pointers adds 285dfa0f68 Add to documentation of Python 'dont_repeat' method adds 9d741cbedb Check for listeners in emit_exiting_event adds 33b90f59f3 sim: fix BFD_VMA format arguments on 32-bit hosts [PR gdb/29184] adds 0fbc4f6aeb Automatic date update in version.in adds 45bf072b34 PR29250, readelf erases CIE initial register state adds 68f7e451e5 Restore readelf -wF adds 8ad7c8be4b Revert "Revert "Fix fbsd core matching"" new 370426d0da Always free matching vector from bfd_check_format_matches new 633de70891 use of uninitialised value in input_file_open
The 2 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/elfcore.h | 40 +- bfd/version.h | 2 +- binutils/addr2line.c | 5 +- binutils/ar.c | 10 +- binutils/bucomm.c | 6 +- binutils/coffdump.c | 5 +- binutils/dwarf.c | 229 +++---- binutils/nm.c | 10 +- binutils/objcopy.c | 10 +- binutils/objdump.c | 6 +- binutils/size.c | 6 +- binutils/srconv.c | 5 +- gas/input-file.c | 14 +- gas/testsuite/gas/i386/ehinterp.d | 20 + gas/testsuite/gas/i386/ehinterp.s | 35 + gas/testsuite/gas/i386/i386.exp | 2 +- gdb/Makefile.in | 1 + gdb/NEWS | 34 + gdb/arc-linux-tdep.c | 15 +- gdb/arc-tdep.c | 29 +- gdb/arc-tdep.h | 5 - gdb/arm-tdep.c | 43 +- gdb/data-directory/Makefile.in | 1 + gdb/disasm-selftests.c | 86 ++- gdb/disasm.c | 179 +++--- gdb/disasm.h | 207 ++++-- gdb/doc/gdb.texinfo | 45 ++ gdb/doc/python.texi | 334 +++++++++- gdb/extension-priv.h | 15 + gdb/extension.c | 20 + gdb/extension.h | 10 + gdb/guile/guile.c | 6 +- gdb/mips-tdep.c | 4 +- gdb/python/lib/gdb/disassembler.py | 178 ++++++ gdb/python/py-disasm.c | 1090 ++++++++++++++++++++++++++++++++ gdb/python/py-utils.c | 8 +- gdb/python/python-internal.h | 46 +- gdb/python/python.c | 6 + gdb/s12z-tdep.c | 26 +- gdb/testsuite/gdb.python/py-disasm.c | 25 + gdb/testsuite/gdb.python/py-disasm.exp | 209 ++++++ gdb/testsuite/gdb.python/py-disasm.py | 712 +++++++++++++++++++++ ld/ldlang.c | 7 +- sim/cris/sim-if.c | 10 +- sim/m32c/syscalls.c | 4 +- sim/rx/syscalls.c | 4 +- 46 files changed, 3300 insertions(+), 464 deletions(-) create mode 100644 gas/testsuite/gas/i386/ehinterp.d create mode 100644 gas/testsuite/gas/i386/ehinterp.s create mode 100644 gdb/python/lib/gdb/disassembler.py create mode 100644 gdb/python/py-disasm.c create mode 100644 gdb/testsuite/gdb.python/py-disasm.c create mode 100644 gdb/testsuite/gdb.python/py-disasm.exp create mode 100644 gdb/testsuite/gdb.python/py-disasm.py