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