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 4c2c7ac btrace: preserve call stack on function switch new 69090ce btrace: Count gaps as one instruction explicitly. new 508352a btrace: Export btrace_decode_error function. new fdd2bd9 btrace: Use binary search to find instruction. new 45b196c Add record_start and record_stop functions. new b158a20 Add method to query current recording method to target_ops. new 4726b2d python: Create Python bindings for record history. new 75c0bdf python: Implement btrace Python bindings for record history. new 714aa61 python: Add tests for record Python bindings new 0a0faf9 Add documentation for new record Python bindings.
The 9 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 | 6 + gdb/NEWS | 4 + gdb/btrace.c | 170 +++-- gdb/btrace.h | 21 +- gdb/doc/python.texi | 245 ++++++ gdb/python/py-record-btrace.c | 1001 +++++++++++++++++++++++++ gdb/python/py-record-btrace.h | 49 ++ gdb/python/py-record-full.c | 39 + gdb/python/py-record-full.h | 31 + gdb/python/py-record.c | 275 +++++++ gdb/python/python-internal.h | 9 + gdb/python/python.c | 14 + gdb/record-btrace.c | 110 +-- gdb/record-full.c | 10 + gdb/record.c | 42 ++ gdb/record.h | 21 + gdb/target-debug.h | 2 + gdb/target-delegates.c | 33 + gdb/target.c | 8 + gdb/target.h | 8 + gdb/testsuite/gdb.python/py-record-btrace.c | 46 ++ gdb/testsuite/gdb.python/py-record-btrace.exp | 146 ++++ gdb/testsuite/gdb.python/py-record-full.c | 46 ++ gdb/testsuite/gdb.python/py-record-full.exp | 58 ++ 24 files changed, 2256 insertions(+), 138 deletions(-) create mode 100644 gdb/python/py-record-btrace.c create mode 100644 gdb/python/py-record-btrace.h create mode 100644 gdb/python/py-record-full.c create mode 100644 gdb/python/py-record-full.h create mode 100644 gdb/python/py-record.c create mode 100644 gdb/testsuite/gdb.python/py-record-btrace.c create mode 100644 gdb/testsuite/gdb.python/py-record-btrace.exp create mode 100644 gdb/testsuite/gdb.python/py-record-full.c create mode 100644 gdb/testsuite/gdb.python/py-record-full.exp