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 1b40d569a86 sim: cris: clean up printf & abort usage a bit new 61e2dde2db3 gdb/python: handle saving user registers in a frame unwinder new 8b9c48b287d gdb/python: move PyLong_From* calls into py-utils.c new d52b8007213 gdb/python: add PendingFrame.level and Frame.level methods new 96f842cbdb3 gdb/riscv: add support for vector registers in target descriptions
The 4 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 | 37 +++++++ gdb/NEWS | 11 ++ gdb/arch/riscv.c | 6 + gdb/arch/riscv.h | 12 +- gdb/doc/ChangeLog | 10 ++ gdb/doc/gdb.texinfo | 8 ++ gdb/doc/python.texi | 9 ++ gdb/python/py-frame.c | 23 ++++ gdb/python/py-inferior.c | 2 +- gdb/python/py-unwind.c | 40 +++++++ gdb/riscv-tdep.c | 121 ++++++++++++++++++++- gdb/riscv-tdep.h | 8 +- gdb/testsuite/ChangeLog | 13 +++ gdb/testsuite/gdb.python/py-frame.exp | 11 ++ gdb/testsuite/gdb.python/py-pending-frame-level.c | 49 +++++++++ .../gdb.python/py-pending-frame-level.exp | 65 +++++++++++ gdb/testsuite/gdb.python/py-pending-frame-level.py | 55 ++++++++++ gdb/testsuite/gdb.python/py-unwind-user-regs.c | 37 +++++++ gdb/testsuite/gdb.python/py-unwind-user-regs.exp | 98 +++++++++++++++++ gdb/testsuite/gdb.python/py-unwind-user-regs.py | 72 ++++++++++++ 20 files changed, 680 insertions(+), 7 deletions(-) create mode 100644 gdb/testsuite/gdb.python/py-pending-frame-level.c create mode 100644 gdb/testsuite/gdb.python/py-pending-frame-level.exp create mode 100644 gdb/testsuite/gdb.python/py-pending-frame-level.py create mode 100644 gdb/testsuite/gdb.python/py-unwind-user-regs.c create mode 100644 gdb/testsuite/gdb.python/py-unwind-user-regs.exp create mode 100644 gdb/testsuite/gdb.python/py-unwind-user-regs.py