This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[rfc 0/5] record-btrace


From: Markus Metzger <markus.t.metzger@intel.com>

Hi Jan,

Here are a few patches to refactor record and add the first new record command
for disassembling a section of the execution log.

I developed this on top of the btrace series, but the patches should apply on
master, as well.

I hope I incorporated all of your feedback.

regards,
markus.


Markus Metzger (5):
  target: add add_deprecated_target_alias
  record: split record
  record: make it build again
  record: default target methods.
  record, disas: add record disassemble command

 gdb/Makefile.in        |    5 +-
 gdb/amd64-linux-tdep.c |    2 +-
 gdb/arm-tdep.c         |    1 +
 gdb/i386-linux-tdep.c  |    2 +-
 gdb/i386-tdep.c        |    1 +
 gdb/infrun.c           |    1 +
 gdb/linux-record.c     |    1 +
 gdb/moxie-tdep.c       |    1 +
 gdb/record-full.c      | 2984 +++++++++++++++++++++++++++++++++++++++++++++++
 gdb/record-full.h      |   36 +
 gdb/record.c           | 3036 ++++--------------------------------------------
 gdb/record.h           |   35 +-
 gdb/target.c           |  177 +++
 gdb/target.h           |   61 +
 14 files changed, 3511 insertions(+), 2832 deletions(-)
 create mode 100644 gdb/record-full.c
 create mode 100644 gdb/record-full.h


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]