From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39819) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XHCHB-0000ER-7G for qemu-devel@nongnu.org; Tue, 12 Aug 2014 09:38:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XHCH5-0007w2-FV for qemu-devel@nongnu.org; Tue, 12 Aug 2014 09:38:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29719) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XHCH5-0007vc-88 for qemu-devel@nongnu.org; Tue, 12 Aug 2014 09:38:03 -0400 From: Stefan Hajnoczi Date: Tue, 12 Aug 2014 14:37:37 +0100 Message-Id: <1407850675-11890-1-git-send-email-stefanha@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 00/18] Tracing patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Stefan Hajnoczi The following changes since commit 2d591ce2aeebf9620ff527c7946844a3122afe= ec: 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=C3=A9e (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=C3=ADs 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 --=20 1.9.3