From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39175) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aamX9-0006cA-HT for qemu-devel@nongnu.org; Tue, 01 Mar 2016 10:48:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aamX5-00032z-BM for qemu-devel@nongnu.org; Tue, 01 Mar 2016 10:48:23 -0500 Received: from mx1.redhat.com ([209.132.183.28]:40197) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aamX5-00032g-2s for qemu-devel@nongnu.org; Tue, 01 Mar 2016 10:48:19 -0500 From: Stefan Hajnoczi Date: Tue, 1 Mar 2016 15:48:01 +0000 Message-Id: <1456847294-13576-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/13] 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 646fd1686501553d62783ae24555a5c6c2d548= e9: Merge remote-tracking branch 'remotes/kraxel/tags/pull-seabios-20160301= -1' into staging (2016-03-01 12:18:23 +0000) are available in the git repository at: git://github.com/stefanha/qemu.git tags/tracing-pull-request for you to fetch changes up to 4ade0541de712fbf151ac7a2403613a1dbdb25b5: trace: Add a proper API to manage auto-generated events from the 'tcg' = property (2016-03-01 13:34:38 +0000) ---------------------------------------------------------------- ---------------------------------------------------------------- Denis V. Lunev (1): vl: fix tracing initialization Greg Kurz (1): trace: drop trailing empty strings Hollis Blanchard (3): trace: docs: "simple" backend does support strings trace: split subpage MMIOs into their own trace events. trace: use addresses instead of offsets in memory tracepoints Llu=C3=ADs Vilanova (8): trace: Extend API to manage event arguments trace: Remove unnecessary intermediate event copies tcg: Add type for vCPU pointers tcg: Move definition of type TCGv trace: Add helper function to cast event arguments typedefs: Add CPUState trace: Add 'vcpu' event property to trace guest vCPU trace: Add a proper API to manage auto-generated events from the 'tcg' property docs/tracing.txt | 44 ++++++++++++++- include/qemu/typedefs.h | 1 + include/qom/cpu.h | 1 - memory.c | 56 +++++++++++++++++-= - scripts/tracetool/__init__.py | 48 ++++++++++++---- scripts/tracetool/format/events_h.py | 4 +- scripts/tracetool/format/h.py | 3 +- scripts/tracetool/format/tcg_h.py | 33 +++++++---- scripts/tracetool/format/tcg_helper_c.py | 45 +++++++++++---- scripts/tracetool/format/tcg_helper_h.py | 7 +-- scripts/tracetool/format/tcg_helper_wrapper_h.py | 5 +- scripts/tracetool/format/ust_events_c.py | 1 + scripts/tracetool/transform.py | 4 +- scripts/tracetool/vcpu.py | 70 ++++++++++++++++++= ++++++ stubs/target-get-monitor-def.c | 3 +- target-alpha/translate.c | 2 +- target-arm/translate.c | 2 +- target-arm/translate.h | 2 +- target-cris/translate.c | 2 +- target-i386/translate.c | 2 +- target-lm32/translate.c | 2 +- target-m68k/translate.c | 2 +- target-microblaze/translate.c | 2 +- target-mips/translate.c | 2 +- target-moxie/translate.c | 2 +- target-openrisc/translate.c | 2 +- target-ppc/translate.c | 2 +- target-s390x/translate.c | 2 +- target-sh4/translate.c | 2 +- target-sparc/translate.c | 5 +- target-tilegx/translate.c | 2 +- target-tricore/translate.c | 2 +- target-unicore32/translate.c | 2 +- target-xtensa/translate.c | 2 +- tcg/tcg-op.h | 2 - tcg/tcg.h | 8 +++ trace-events | 66 +++++++++++-------= ---- trace/control.h | 3 +- vl.c | 7 +-- 39 files changed, 339 insertions(+), 113 deletions(-) create mode 100644 scripts/tracetool/vcpu.py --=20 2.5.0