This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gdb-8.0-branch in repository binutils-gdb.
from 80297efd14 Automatic date update in version.in new d4c682630c Python: Fix indentation in py-record-btrace.c new ee53a929a4 Python: Use correct ptid in btrace recording new 26597c93ac Python: Remove ptid from gdb.Record interface new 7dce57d1b5 Python: Introduce gdb.RecordGap class new d76700e0a4 Python: Move and rename gdb.BtraceInstruction new 5b2f026c0d Python: Move and rename gdb.BtraceFunction new ac7d85722a Python: Introduce gdb.Instruction class
The 7 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 | 119 ++++ gdb/Makefile.in | 2 + gdb/btrace.c | 8 +- gdb/doc/ChangeLog | 26 + gdb/doc/python.texi | 108 ++-- gdb/python/py-instruction.c | 67 +++ .../amd64-gs_base.c => python/py-instruction.h} | 18 +- gdb/python/py-record-btrace.c | 596 ++++++++------------- gdb/python/py-record-btrace.h | 42 ++ gdb/python/py-record.c | 424 ++++++++++++++- gdb/python/py-record.h | 74 +++ gdb/python/python-internal.h | 2 + gdb/python/python.c | 1 + gdb/testsuite/ChangeLog | 19 + .../py-record-btrace-threads.c} | 37 +- .../gdb.python/py-record-btrace-threads.exp | 81 +++ gdb/testsuite/gdb.python/py-record-btrace.exp | 6 +- 17 files changed, 1151 insertions(+), 479 deletions(-) create mode 100644 gdb/python/py-instruction.c copy gdb/{testsuite/gdb.arch/amd64-gs_base.c => python/py-instruction.h} (63%) create mode 100644 gdb/python/py-record.h copy gdb/testsuite/{gdb.btrace/multi-thread-step.c => gdb.python/py-record-btrace- [...] create mode 100644 gdb/testsuite/gdb.python/py-record-btrace-threads.exp