This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap in repository toolchain/ci/binutils-gdb.
from d4661bf0e9 Automatic date update in version.in adds bab22d0640 [aarch64/arm] Properly extract the return value returned in memory new 79a0742380 Correctly print subrange types in generic_value_print new fb85cece22 Replace deprecated_target_wait_hook by observers new 23bade95de gdb/gdbarch: remove the predicate function for gdbarch_regis [...] new a5118a18db gdb/gdbarch: compare some fields against 0 verify_gdbarch new 740b42ceb7 gdb/python/mi: create MI commands using python
The 5 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 | 1 + gdb/NEWS | 2 + gdb/aarch64-tdep.c | 21 +- gdb/arm-tdep.c | 32 +- gdb/doc/python.texi | 168 ++++- gdb/gdbarch-components.py | 13 +- gdb/gdbarch-gen.h | 2 - gdb/gdbarch.c | 22 +- gdb/gdbarch.py | 10 + gdb/infrun.c | 15 +- gdb/infrun.h | 5 +- gdb/interps.c | 1 - gdb/mi/mi-cmds.c | 23 +- gdb/mi/mi-cmds.h | 18 + gdb/observable.c | 2 + gdb/observable.h | 6 + gdb/python/lib/gdb/__init__.py | 4 + gdb/python/py-micmd.c | 812 +++++++++++++++++++++++++ gdb/python/py-utils.c | 17 + gdb/python/python-internal.h | 13 + gdb/python/python.c | 3 +- gdb/target.c | 14 +- gdb/testsuite/gdb.base/retval-large-struct.c | 45 ++ gdb/testsuite/gdb.base/retval-large-struct.exp | 37 ++ gdb/testsuite/gdb.dwarf2/subrange-enum.exp | 78 +++ gdb/testsuite/gdb.python/py-mi-cmd.exp | 390 ++++++++++++ gdb/testsuite/gdb.python/py-mi-cmd.py | 120 ++++ gdb/top.c | 7 - gdb/valprint.c | 9 +- 29 files changed, 1822 insertions(+), 68 deletions(-) create mode 100644 gdb/python/py-micmd.c create mode 100644 gdb/testsuite/gdb.base/retval-large-struct.c create mode 100644 gdb/testsuite/gdb.base/retval-large-struct.exp create mode 100644 gdb/testsuite/gdb.dwarf2/subrange-enum.exp create mode 100644 gdb/testsuite/gdb.python/py-mi-cmd.exp create mode 100644 gdb/testsuite/gdb.python/py-mi-cmd.py