mbox

[PULL,00/13] Tracing patches

Message ID 1456847294-13576-1-git-send-email-stefanha@redhat.com
State New
Headers show

Pull-request

git://github.com/stefanha/qemu.git tags/tracing-pull-request

Message

Stefan Hajnoczi March 1, 2016, 3:48 p.m. UTC
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

Comments

Peter Maydell March 1, 2016, 4:47 p.m. UTC | #1
On 1 March 2016 at 15:48, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> 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)
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM