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 d8cc8af6a17 [gdb/symtab] Fix line-table end-of-sequence sorting new 3bc98c0c832 gdb: Remove deprecated_set_gdbarch_data new 87dbc774599 gdb/python: Add architecture method to gdb.PendingFrame new 0f767f942b0 gdb/python: Add gdb.Architecture.registers method new 64cb3757a9d gdb/python: New method to access list of register groups new 9fc501fdfe5 gdb: Python unwinders, inline frames, and tail-call frames
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/ChangeLog | 66 ++++ gdb/Makefile.in | 1 + gdb/NEWS | 13 + gdb/doc/ChangeLog | 21 ++ gdb/doc/gdb.texinfo | 1 + gdb/doc/python.texi | 71 ++++ gdb/dwarf2/frame-tailcall.c | 37 +- gdb/findvar.c | 8 + gdb/frame.c | 8 - gdb/frame.h | 4 - gdb/gdbarch.c | 22 +- gdb/gdbarch.h | 3 - gdb/gdbarch.sh | 25 +- gdb/ia64-libunwind-tdep.c | 15 +- gdb/python/py-arch.c | 45 +++ gdb/python/py-registers.c | 464 ++++++++++++++++++++++++ gdb/python/py-unwind.c | 20 + gdb/python/python-internal.h | 6 + gdb/python/python.c | 1 + gdb/testsuite/ChangeLog | 22 ++ gdb/testsuite/gdb.python/py-arch-reg-groups.exp | 87 +++++ gdb/testsuite/gdb.python/py-arch-reg-names.exp | 87 +++++ gdb/testsuite/gdb.python/py-unwind-inline.c | 37 ++ gdb/testsuite/gdb.python/py-unwind-inline.exp | 49 +++ gdb/testsuite/gdb.python/py-unwind-inline.py | 71 ++++ gdb/testsuite/gdb.python/py-unwind.py | 10 +- gdb/user-regs.c | 18 +- 27 files changed, 1095 insertions(+), 117 deletions(-) create mode 100644 gdb/python/py-registers.c create mode 100644 gdb/testsuite/gdb.python/py-arch-reg-groups.exp create mode 100644 gdb/testsuite/gdb.python/py-arch-reg-names.exp create mode 100644 gdb/testsuite/gdb.python/py-unwind-inline.c create mode 100644 gdb/testsuite/gdb.python/py-unwind-inline.exp create mode 100644 gdb/testsuite/gdb.python/py-unwind-inline.py