From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
Stefan Hajnoczi <stefanha@redhat.com>
Subject: [Qemu-devel] [PULL 00/18] Tracing patches
Date: Tue, 12 Aug 2014 14:37:37 +0100 [thread overview]
Message-ID: <1407850675-11890-1-git-send-email-stefanha@redhat.com> (raw)
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
next reply other threads:[~2014-08-12 13:38 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-12 13:37 Stefan Hajnoczi [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1407850675-11890-1-git-send-email-stefanha@redhat.com \
--to=stefanha@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).