All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Lluís Vilanova" <vilanova@ac.upc.edu>
To: qemu-devel@nongnu.org
Cc: "Emilio G. Cota" <cota@braap.org>, Stefan Hajnoczi <stefanha@redhat.com>
Subject: [Qemu-devel] [PATCH 00/13] instrument: Add basic event instrumentation
Date: Mon, 24 Jul 2017 20:02:24 +0300	[thread overview]
Message-ID: <150091574424.30739.4131793221953168474.stgit@frigg.lan> (raw)

This series adds a basic interface to instrument tracing events and control
their tracing state.

The instrumentation code is dynamically loaded into QEMU (either when it starts
or later using its remote control interfaces).

All events can be instrumented, but the instrumentable events must be explicitly
specified at configure time.

Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
---

Lluís Vilanova (13):
      instrument: Add documentation
      instrument: [none] Add null instrumentation mode
      instrument: [dynamic] Add dynamic instrumentation mode
      instrument: Allow adding the "instrument" property without modifying event files
      instrument: [dynamic] Add default public per-event functions
      instrument: Add event control interface
      instrument: Add generic command line library loader
      instrument: [linux-user] Add command line library loader
      instrument: [bsd-user] Add command line library loader
      instrument: [softmmu] Add command line library loader
      instrument: [qapi] Add library loader
      instrument: [hmp] Add library loader
      trace: Rename C++-specific names in event arguments


 .gitignore                                       |    7 
 Makefile                                         |   65 ++++-
 Makefile.objs                                    |    8 +
 bsd-user/main.c                                  |   16 +
 bsd-user/syscall.c                               |    5 
 configure                                        |   40 +++
 docs/devel/tracing.txt                           |    9 +
 docs/instrumentation.txt                         |  264 ++++++++++++++++++
 hmp-commands.hx                                  |   28 ++
 include/trace-tcg.h                              |    1 
 instrument/Makefile.objs                         |   47 +++
 instrument/cmdline.c                             |  117 ++++++++
 instrument/cmdline.h                             |   58 ++++
 instrument/control.c                             |  316 ++++++++++++++++++++++
 instrument/control.h                             |   86 ++++++
 instrument/qemu-instr/control.h                  |  128 +++++++++
 instrument/qemu-instr/types.h                    |   81 ++++++
 instrument/qemu-instr/visibility-internal.h      |   58 ++++
 instrument/qmp.c                                 |   71 +++++
 linux-user/main.c                                |   20 +
 linux-user/syscall.c                             |    4 
 monitor.c                                        |   55 ++++
 qapi-schema.json                                 |    3 
 qapi/instrument.json                             |   92 ++++++
 qemu-options.hx                                  |   17 +
 rules.mak                                        |    3 
 scripts/tracetool.py                             |   11 +
 scripts/tracetool/__init__.py                    |   43 +++
 scripts/tracetool/backend/instr_dynamic.py       |  161 +++++++++++
 scripts/tracetool/backend/instr_none.py          |   52 ++++
 scripts/tracetool/format/c.py                    |   37 ++-
 scripts/tracetool/format/h.py                    |    8 -
 scripts/tracetool/format/instr_api_h.py          |   76 +++++
 scripts/tracetool/format/instr_c.py              |   41 +++
 scripts/tracetool/format/instr_h.py              |   48 +++
 scripts/tracetool/format/instr_tcg_c.py          |   37 +++
 scripts/tracetool/format/instr_tcg_h.py          |   56 ++++
 scripts/tracetool/format/tcg_h.py                |    6 
 scripts/tracetool/format/tcg_helper_c.py         |    4 
 scripts/tracetool/format/tcg_helper_h.py         |    2 
 scripts/tracetool/format/tcg_helper_wrapper_h.py |    2 
 scripts/tracetool/transform.py                   |   13 +
 trace/event-internal.h                           |   10 +
 vl.c                                             |   11 +
 44 files changed, 2197 insertions(+), 20 deletions(-)
 create mode 100644 docs/instrumentation.txt
 create mode 100644 instrument/Makefile.objs
 create mode 100644 instrument/cmdline.c
 create mode 100644 instrument/cmdline.h
 create mode 100644 instrument/control.c
 create mode 100644 instrument/control.h
 create mode 100644 instrument/qemu-instr/control.h
 create mode 100644 instrument/qemu-instr/types.h
 create mode 100644 instrument/qemu-instr/visibility-internal.h
 create mode 100644 instrument/qmp.c
 create mode 100644 qapi/instrument.json
 create mode 100644 scripts/tracetool/backend/instr_dynamic.py
 create mode 100644 scripts/tracetool/backend/instr_none.py
 create mode 100644 scripts/tracetool/format/instr_api_h.py
 create mode 100644 scripts/tracetool/format/instr_c.py
 create mode 100644 scripts/tracetool/format/instr_h.py
 create mode 100644 scripts/tracetool/format/instr_tcg_c.py
 create mode 100644 scripts/tracetool/format/instr_tcg_h.py


To: qemu-devel@nongnu.org
Cc: Stefan Hajnoczi <stefanha@redhat.com>
Cc: Emilio G. Cota <cota@braap.org>

             reply	other threads:[~2017-07-24 17:02 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-24 17:02 Lluís Vilanova [this message]
2017-07-24 17:06 ` [Qemu-devel] [PATCH 01/13] instrument: Add documentation Lluís Vilanova
2017-07-24 17:10 ` [Qemu-devel] [PATCH 02/13] instrument: [none] Add null instrumentation mode Lluís Vilanova
2017-07-24 17:14 ` [Qemu-devel] [PATCH 03/13] instrument: [dynamic] Add dynamic " Lluís Vilanova
2017-07-24 17:18 ` [Qemu-devel] [PATCH 04/13] instrument: Allow adding the "instrument" property without modifying event files Lluís Vilanova
2017-07-24 17:22 ` [Qemu-devel] [PATCH 05/13] instrument: [dynamic] Add default public per-event functions Lluís Vilanova
2017-07-24 17:26 ` [Qemu-devel] [PATCH 06/13] instrument: Add event control interface Lluís Vilanova
2017-07-24 17:30 ` [Qemu-devel] [PATCH 07/13] instrument: Add generic command line library loader Lluís Vilanova
2017-07-24 17:34 ` [Qemu-devel] [PATCH 08/13] instrument: [linux-user] Add " Lluís Vilanova
2017-07-24 17:38 ` [Qemu-devel] [PATCH 09/13] instrument: [bsd-user] " Lluís Vilanova
2017-07-24 17:42 ` [Qemu-devel] [PATCH 10/13] instrument: [softmmu] " Lluís Vilanova
2017-07-24 17:46 ` [Qemu-devel] [PATCH 11/13] instrument: [qapi] Add " Lluís Vilanova
2017-07-24 18:03   ` Eric Blake
2017-07-25  8:24     ` Lluís Vilanova
2017-07-25 11:30       ` Eric Blake
2017-07-25 11:51         ` Lluís Vilanova
2017-07-24 17:50 ` [Qemu-devel] [PATCH 12/13] instrument: [hmp] " Lluís Vilanova
2017-07-24 17:54 ` [Qemu-devel] [PATCH 13/13] trace: Rename C++-specific names in event arguments Lluís Vilanova
2017-07-25 13:19 ` [Qemu-devel] [PATCH 00/13] instrument: Add basic event instrumentation Stefan Hajnoczi
2017-07-25 13:30   ` Peter Maydell
2017-07-25 15:11     ` Lluís Vilanova
2017-07-26 11:22       ` Stefan Hajnoczi
2017-07-26 12:44         ` Lluís Vilanova
2017-07-27 10:32           ` Stefan Hajnoczi
2017-07-27 10:40             ` Peter Maydell
2017-07-28 13:42               ` Stefan Hajnoczi
2017-07-28 16:21                 ` Lluís Vilanova
2017-08-02 11:04                   ` Stefan Hajnoczi
2017-07-26 11:26     ` Stefan Hajnoczi
2017-07-26 11:49       ` Peter Maydell
2017-07-26 12:26         ` Lluís Vilanova
2017-07-27 10:43         ` Daniel P. Berrange
2017-07-27 10:54           ` Peter Maydell
2017-07-27 14:58             ` Lluís Vilanova
2017-07-27 15:21             ` Daniel P. Berrange
2017-07-27 15:33               ` Peter Maydell
2017-07-27 15:45                 ` Daniel P. Berrange
2017-07-28 13:34                   ` Stefan Hajnoczi
2017-07-28 13:41                     ` Peter Maydell
2017-07-28 14:06                       ` Daniel P. Berrange
2017-07-28 16:05                         ` Lluís Vilanova
2017-08-01 13:48                           ` Stefan Hajnoczi
2017-08-01 13:54                             ` Peter Maydell
2017-08-02 11:04                               ` Stefan Hajnoczi
2017-08-02 11:10                                 ` Peter Maydell
2017-08-02 14:49                                   ` Stefan Hajnoczi
2017-08-02 15:19                                     ` Lluís Vilanova
2017-08-03 11:54                                       ` Stefan Hajnoczi
2017-08-26  0:14                                         ` Emilio G. Cota
2017-08-26  0:02                           ` Emilio G. Cota
2017-08-29  9:19                             ` Peter Maydell
2017-07-28 13:52                     ` Daniel P. Berrange
2017-07-28 16:14                       ` Lluís Vilanova
2017-08-01 13:13                         ` Stefan Hajnoczi
2017-07-28 15:10                     ` Lluís Vilanova
2017-07-27 19:55               ` Lluís Vilanova
2017-07-25 14:47   ` Lluís Vilanova
2017-07-26 11:29     ` Stefan Hajnoczi
2017-07-26 12:31       ` Lluís Vilanova

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=150091574424.30739.4131793221953168474.stgit@frigg.lan \
    --to=vilanova@ac.upc.edu \
    --cc=cota@braap.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.