qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/18] Tracing patches
@ 2014-08-12 13:37 Stefan Hajnoczi
  2014-08-12 13:37 ` [Qemu-devel] [PULL 01/18] trace: extract stap_escape() function for reuse Stefan Hajnoczi
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Stefan Hajnoczi @ 2014-08-12 13:37 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 2d591ce2aeebf9620ff527c7946844a3122afeec:

  Merge remote-tracking branch 'remotes/mdroth/qga-pull-2014-08-08' into staging (2014-08-08 14:16:05 +0100)

are available in the git repository at:


  git://github.com/stefanha/qemu.git tags/tracing-pull-request

for you to fetch changes up to 4ac4458076e1aaf3b01a6361154117df20e22215:

  virtio-rng: add some trace events (2014-08-12 14:29:55 +0100)

----------------------------------------------------------------
Tracing pull request

----------------------------------------------------------------
Alex Bennée (2):
      trace: teach lttng backend to use format strings
      trace: add some tcg tracing support

Amit Shah (1):
      virtio-rng: add some trace events

Lluís Vilanova (11):
      trace: [tcg] Add documentation
      trace: [tcg] Argument type transformation rules
      trace: [tcg] Argument type transformation machinery
      trace: [tcg] Add 'tcg' event property
      trace: [tcg] Declare TCG tracing helper routines
      trace: [tcg] Define TCG tracing helper routines
      trace: [tcg] Define TCG tracing helper routine wrappers
      trace: [tcg] Include TCG-tracing helpers
      trace: [tcg] Generate TCG tracing routines
      trace: [tcg] Include event definitions in "trace.h"
      trace: [tcg] Include TCG-tracing header on all targets

Stefan Hajnoczi (4):
      trace: extract stap_escape() function for reuse
      trace: add tracetool simpletrace_stap format
      simpletrace: add simpletrace.py --no-header option
      trace: install simpletrace SystemTap tapset

 .gitignore                                       |   4 +
 Makefile                                         |   6 +
 Makefile.objs                                    |   7 +-
 Makefile.target                                  |  15 +-
 cpu-exec.c                                       |   6 +
 docs/tracing.txt                                 |  40 ++++++
 hw/virtio/virtio-rng.c                           |   6 +
 include/exec/helper-gen.h                        |   2 +
 include/exec/helper-proto.h                      |   1 +
 include/exec/helper-tcg.h                        |   1 +
 include/trace-tcg.h                              |   7 +
 include/trace.h                                  |   1 +
 scripts/simpletrace.py                           |  24 +++-
 scripts/tracetool/__init__.py                    | 105 +++++++++++++-
 scripts/tracetool/format/events_h.py             |   5 +
 scripts/tracetool/format/simpletrace_stap.py     |  71 ++++++++++
 scripts/tracetool/format/stap.py                 |  11 +-
 scripts/tracetool/format/tcg_h.py                |  57 ++++++++
 scripts/tracetool/format/tcg_helper_c.py         |  50 +++++++
 scripts/tracetool/format/tcg_helper_h.py         |  50 +++++++
 scripts/tracetool/format/tcg_helper_wrapper_h.py |  70 ++++++++++
 scripts/tracetool/format/ust_events_h.py         |  15 +-
 scripts/tracetool/transform.py                   | 166 +++++++++++++++++++++++
 target-alpha/translate.c                         |   3 +
 target-arm/translate-a64.c                       |   2 +
 target-arm/translate.c                           |   3 +
 target-cris/translate.c                          |   3 +
 target-i386/translate.c                          |   3 +
 target-lm32/translate.c                          |   3 +
 target-m68k/translate.c                          |   3 +
 target-microblaze/translate.c                    |   3 +
 target-mips/translate.c                          |   3 +
 target-openrisc/translate.c                      |   3 +
 target-ppc/translate.c                           |   3 +
 target-s390x/translate.c                         |   2 +
 target-sh4/translate.c                           |   3 +
 target-sparc/translate.c                         |   3 +
 target-unicore32/translate.c                     |   3 +
 target-xtensa/translate.c                        |   3 +
 trace-events                                     |  14 ++
 trace/Makefile.objs                              |  53 +++++++-
 translate-all.c                                  |   3 +
 42 files changed, 808 insertions(+), 28 deletions(-)
 create mode 100644 include/trace-tcg.h
 create mode 100644 scripts/tracetool/format/simpletrace_stap.py
 create mode 100644 scripts/tracetool/format/tcg_h.py
 create mode 100644 scripts/tracetool/format/tcg_helper_c.py
 create mode 100644 scripts/tracetool/format/tcg_helper_h.py
 create mode 100644 scripts/tracetool/format/tcg_helper_wrapper_h.py
 create mode 100644 scripts/tracetool/transform.py

-- 
1.9.3

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2014-08-15 16:43 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-12 13:37 [Qemu-devel] [PULL 00/18] Tracing patches Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 01/18] trace: extract stap_escape() function for reuse Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 02/18] trace: add tracetool simpletrace_stap format Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 03/18] simpletrace: add simpletrace.py --no-header option Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 04/18] trace: install simpletrace SystemTap tapset Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 05/18] trace: [tcg] Add documentation Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 06/18] trace: [tcg] Argument type transformation rules Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 07/18] trace: [tcg] Argument type transformation machinery Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 08/18] trace: [tcg] Add 'tcg' event property Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 09/18] trace: [tcg] Declare TCG tracing helper routines Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 10/18] trace: [tcg] Define " Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 11/18] trace: [tcg] Define TCG tracing helper routine wrappers Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 12/18] trace: [tcg] Include TCG-tracing helpers Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 13/18] trace: [tcg] Generate TCG tracing routines Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 14/18] trace: [tcg] Include event definitions in "trace.h" Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 15/18] trace: [tcg] Include TCG-tracing header on all targets Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 16/18] trace: teach lttng backend to use format strings Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 17/18] trace: add some tcg tracing support Stefan Hajnoczi
2014-08-12 13:37 ` [Qemu-devel] [PULL 18/18] virtio-rng: add some trace events Stefan Hajnoczi
2014-08-15 16:43 ` [Qemu-devel] [PULL 00/18] Tracing patches Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).