[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 00/13] Tracing patches
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PULL 00/13] Tracing patches |
Date: |
Tue, 1 Mar 2016 15:48:01 +0000 |
The following changes since commit 646fd1686501553d62783ae24555a5c6c2d548e9:
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Ăs 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
--
2.5.0
- [Qemu-devel] [PULL 00/13] Tracing patches,
Stefan Hajnoczi <=
- [Qemu-devel] [PULL 02/13] trace: docs: "simple" backend does support strings, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 01/13] trace: drop trailing empty strings, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 06/13] trace: Extend API to manage event arguments, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 04/13] trace: use addresses instead of offsets in memory tracepoints, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 03/13] trace: split subpage MMIOs into their own trace events., Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 05/13] vl: fix tracing initialization, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 07/13] trace: Remove unnecessary intermediate event copies, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 08/13] tcg: Add type for vCPU pointers, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 10/13] trace: Add helper function to cast event arguments, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 11/13] typedefs: Add CPUState, Stefan Hajnoczi, 2016/03/01