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 fe50e98c9a Fix value in comment of disassembled ARM type A opcodes. new 8d0050ea19 Python: Fix indentation in py-record-btrace.c new ae20e79ae8 Python: Use correct ptid in btrace recording new a3be24ad59 Python: Remove ptid from gdb.Record interface new 913aeadd9d Python: Introduce gdb.RecordGap class new 0ed5da759e Python: Move and rename gdb.BtraceInstruction new 14f819c8c5 Python: Move and rename gdb.BtraceFunction new d050f7d7f4 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