This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-stable-allnoconfig in repository toolchain/ci/binutils-gdb.
from 5522c15d39 Automatic date update in version.in adds dda42c0b7b Add a mostlyclean target to gdbserver adds 7b3c27152b PR25585, PHDR segment not covered by LOAD segment adds 3f0cbb04d0 Style field names in "print" adds 2a3d458be3 Use TUI_DISASM_WIN instead of tui_win_list array adds 59b8b5d247 Simplify tui_add_win_to_layout adds 3fe12b6d67 Fix latent display bug in tui_data_window adds 427326a826 Simplify TUI C-x 2 binding adds 5afe342e2a Reimplement TUI "C-x 1" binding adds 0dbc2fc759 Reimplement "tui reg" command adds 416eb92d84 Remove hard-coded TUI layouts adds ee325b61cd Add the "tui new-layout" command adds c22fef7e4c Allow TUI sub-layouts in "new-layout" command adds 6bc5664858 Change return type of tui_layout_base::adjust_size adds 7c043ba695 Add horizontal splitting to TUI layout adds 7eed1a8e83 Change TUI window iteration adds eb9c887456 Reimplement tui_next_win and tui_prev_win adds e098d18cfc Handle ambiguity in tui_partial_win_by_name adds 865a5aec04 Remove tui_delete_invisible_windows and tui_make_all_invisible adds fdb01f0ce4 TUI windows do not need to store their type adds 0240c8f11b Change how TUI windows are instantiated adds 935c78c046 Remove tui_set_win_with_focus adds fc96d20b2c Remove the TUI annotation hack adds 01b1af321f Allow TUI windows in Python adds 432b5c4022 Make some tui_source_window_base members "protected" adds ca793b969c Use error_no_arg in TUI adds 283be8bfa4 Add "usage" text to all TUI command help adds 3b0fb49e30 Fix cast in TUI_DISASM_WIN adds 5707a07af2 Make dwarf2_compile_expr_to_ax static
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 6 + bfd/elf.c | 6 +- gdb/ChangeLog | 315 ++++++++++ gdb/Makefile.in | 1 + gdb/NEWS | 11 + gdb/ada-typeprint.c | 3 +- gdb/ada-valprint.c | 9 +- gdb/c-typeprint.c | 5 +- gdb/cp-valprint.c | 18 +- gdb/doc/ChangeLog | 15 + gdb/doc/gdb.texinfo | 60 +- gdb/doc/python.texi | 105 ++++ gdb/dwarf2/loc.c | 2 +- gdb/dwarf2/loc.h | 20 - gdb/f-typeprint.c | 3 +- gdb/f-valprint.c | 3 +- gdb/m2-typeprint.c | 6 +- gdb/p-valprint.c | 14 +- gdb/python/py-tui.c | 510 ++++++++++++++++ gdb/python/python-internal.h | 4 + gdb/python/python.c | 10 +- gdb/rust-lang.c | 19 +- gdb/testsuite/ChangeLog | 28 + gdb/testsuite/gdb.base/style.c | 15 + gdb/testsuite/gdb.base/style.exp | 7 + gdb/testsuite/gdb.python/tui-window.exp | 51 ++ gdb/testsuite/gdb.python/tui-window.py | 37 ++ gdb/testsuite/gdb.rust/rust-style.exp | 44 ++ gdb/testsuite/gdb.rust/rust-style.rs | 29 + gdb/testsuite/gdb.tui/new-layout.exp | 84 +++ gdb/tui/tui-command.h | 5 +- gdb/tui/tui-data.c | 95 +-- gdb/tui/tui-data.h | 115 +--- gdb/tui/tui-disasm.c | 46 +- gdb/tui/tui-disasm.h | 8 +- gdb/tui/tui-io.c | 36 +- gdb/tui/tui-layout.c | 1004 +++++++++++++++++++------------ gdb/tui/tui-layout.h | 98 ++- gdb/tui/tui-regs.c | 23 +- gdb/tui/tui-regs.h | 10 +- gdb/tui/tui-source.c | 47 +- gdb/tui/tui-source.h | 8 +- gdb/tui/tui-stack.c | 3 +- gdb/tui/tui-stack.h | 1 - gdb/tui/tui-win.c | 202 +++---- gdb/tui/tui-wingeneral.c | 9 - gdb/tui/tui-wingeneral.h | 3 - gdb/tui/tui-winsource.c | 86 ++- gdb/tui/tui-winsource.h | 51 +- gdb/tui/tui.c | 68 +-- gdb/tui/tui.h | 3 - gdb/valprint.c | 17 +- gdbserver/ChangeLog | 4 + gdbserver/Makefile.in | 2 +- ld/ChangeLog | 6 + ld/NEWS | 6 + 56 files changed, 2434 insertions(+), 962 deletions(-) create mode 100644 gdb/python/py-tui.c create mode 100644 gdb/testsuite/gdb.python/tui-window.exp create mode 100644 gdb/testsuite/gdb.python/tui-window.py create mode 100644 gdb/testsuite/gdb.rust/rust-style.exp create mode 100644 gdb/testsuite/gdb.rust/rust-style.rs create mode 100644 gdb/testsuite/gdb.tui/new-layout.exp