qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/13] Tracing patches
@ 2016-03-01 15:48 Stefan Hajnoczi
  2016-03-01 15:48 ` [Qemu-devel] [PULL 01/13] trace: drop trailing empty strings Stefan Hajnoczi
                   ` (13 more replies)
  0 siblings, 14 replies; 19+ messages in thread
From: Stefan Hajnoczi @ 2016-03-01 15:48 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

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

^ permalink raw reply	[flat|nested] 19+ messages in thread
* [Qemu-devel] [PULL 00/13] Tracing patches
@ 2016-02-03 15:47 Stefan Hajnoczi
  2016-02-03 17:55 ` Peter Maydell
  0 siblings, 1 reply; 19+ messages in thread
From: Stefan Hajnoczi @ 2016-02-03 15:47 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit c65db7705b7926f4a084b93778e4bd5dd3990aad:

  Merge remote-tracking branch 'remotes/maxreitz/tags/pull-block-for-peter-2016-02-02' into staging (2016-02-02 18:04:04 +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 c84ea00dc29b2084a62bd31f498ed0f245d3848e:

  log: add "-d trace:PATTERN" (2016-02-03 10:37:50 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Denis V. Lunev (2):
  trace: no need to call trace_backend_init in different branches now
  log: move qemu-log.c into util/ directory

Paolo Bonzini (11):
  trace: count number of enabled events
  trace: track enabled events in a separate array
  trace: fix documentation
  trace: split trace_init_events out of trace_init_backends
  trace: split trace_init_file out of trace_init_backends
  trace: add "-trace enable=..."
  trace: add "-trace help"
  log: do not unnecessarily include qom/cpu.h
  trace: convert stderr backend to log
  trace: switch default backend to "log"
  log: add "-d trace:PATTERN"

 .travis.yml                          |   2 +-
 Makefile.objs                        |   1 -
 bsd-user/main.c                      |   1 +
 configure                            |   6 +-
 cpu-exec.c                           |   1 +
 exec.c                               |   1 +
 hw/acpi/cpu_hotplug.c                |   1 +
 hw/timer/a9gtimer.c                  |   1 +
 include/exec/log.h                   |  60 +++++++++++
 include/qemu/log.h                   |  60 +----------
 linux-user/main.c                    |   1 +
 qemu-io.c                            |   2 +-
 qemu-log.c                           | 179 --------------------------------
 qemu-options.hx                      |  22 ++--
 qom/cpu.c                            |   1 +
 scripts/tracetool/backend/log.py     |  48 +++++++++
 scripts/tracetool/backend/stderr.py  |  47 ---------
 scripts/tracetool/format/events_c.py |   2 +-
 target-alpha/translate.c             |   1 +
 target-arm/translate-a64.c           |   1 +
 target-arm/translate.c               |   1 +
 target-cris/translate.c              |   1 +
 target-i386/seg_helper.c             |   1 +
 target-i386/smm_helper.c             |   1 +
 target-i386/translate.c              |   1 +
 target-lm32/helper.c                 |   1 +
 target-lm32/translate.c              |   1 +
 target-m68k/translate.c              |   1 +
 target-microblaze/helper.c           |   1 +
 target-microblaze/translate.c        |   1 +
 target-mips/helper.c                 |   1 +
 target-mips/translate.c              |   1 +
 target-moxie/translate.c             |   1 +
 target-openrisc/translate.c          |   1 +
 target-ppc/mmu-hash32.c              |   1 +
 target-ppc/mmu-hash64.c              |   1 +
 target-ppc/mmu_helper.c              |   1 +
 target-ppc/translate.c               |   1 +
 target-s390x/translate.c             |   1 +
 target-sh4/helper.c                  |   1 +
 target-sh4/translate.c               |   1 +
 target-sparc/int32_helper.c          |   1 +
 target-sparc/int64_helper.c          |   1 +
 target-sparc/translate.c             |   1 +
 target-tilegx/translate.c            |   1 +
 target-tricore/translate.c           |   1 +
 target-unicore32/translate.c         |   1 +
 target-xtensa/translate.c            |   1 +
 tcg/tcg.c                            |   1 +
 trace/control-internal.h             |  15 ++-
 trace/control.c                      |  98 +++++++++++++-----
 trace/control.h                      |  44 +++++++-
 trace/event-internal.h               |   2 -
 trace/simple.c                       |   6 +-
 trace/simple.h                       |   4 +-
 translate-all.c                      |   1 +
 util/Makefile.objs                   |   1 +
 util/log.c                           | 192 +++++++++++++++++++++++++++++++++++
 vl.c                                 |  38 ++++---
 59 files changed, 512 insertions(+), 356 deletions(-)
 create mode 100644 include/exec/log.h
 delete mode 100644 qemu-log.c
 create mode 100644 scripts/tracetool/backend/log.py
 delete mode 100644 scripts/tracetool/backend/stderr.py
 create mode 100644 util/log.c

-- 
2.5.0

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2016-03-01 16:48 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-01 15:48 [Qemu-devel] [PULL 00/13] Tracing patches Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 01/13] trace: drop trailing empty strings Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 02/13] trace: docs: "simple" backend does support strings Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 03/13] trace: split subpage MMIOs into their own trace events Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 04/13] trace: use addresses instead of offsets in memory tracepoints Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 05/13] vl: fix tracing initialization Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 06/13] trace: Extend API to manage event arguments Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 07/13] trace: Remove unnecessary intermediate event copies Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 08/13] tcg: Add type for vCPU pointers Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 09/13] tcg: Move definition of type TCGv Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 10/13] trace: Add helper function to cast event arguments Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 11/13] typedefs: Add CPUState Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 12/13] trace: Add 'vcpu' event property to trace guest vCPU Stefan Hajnoczi
2016-03-01 15:48 ` [Qemu-devel] [PULL 13/13] trace: Add a proper API to manage auto-generated events from the 'tcg' property Stefan Hajnoczi
2016-03-01 16:47 ` [Qemu-devel] [PULL 00/13] Tracing patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2016-02-03 15:47 Stefan Hajnoczi
2016-02-03 17:55 ` Peter Maydell
2016-02-03 18:49   ` Paolo Bonzini
2016-02-04 11:05     ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).