qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: peter.maydell@linaro.org
Cc: "Alex Bennée" <alex.bennee@linaro.org>, qemu-devel@nongnu.org
Subject: [PULL 00/23] plugin updates (hwprofile, CF_NOCACHE, io_recompile)
Date: Thu, 18 Feb 2021 09:46:43 +0000	[thread overview]
Message-ID: <20210218094706.23038-1-alex.bennee@linaro.org> (raw)

The following changes since commit 1af5629673bb5c1592d993f9fb6119a62845f576:

  Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-virtiofs-20210216' into staging (2021-02-17 14:44:18 +0000)

are available in the Git repository at:

  https://github.com/stsquad/qemu.git tags/pull-plugin-updates-180221-1

for you to fetch changes up to df55e2a701d02bc01b9425843c667fd0cb4cdfa9:

  tests/acceptance: add a memory callback check (2021-02-18 08:19:23 +0000)

----------------------------------------------------------------
Plugin updates:

  - expose vdev name in PCI memory registration
  - new hwprofile plugin
  - bunch of style cleanups to contrib/plugins
  - fix call signature of inline instrumentation
  - re-factor the io_recompile code to push specialisation into hooks
  - add some acceptance tests for the plugins
  - clean-up and remove CF_NOCACHE handling from TCG
  - fix instrumentation of cpu_io_recompile sections
  - expand tests to check inline and cb count the same

----------------------------------------------------------------
Alex Bennée (14):
      hw/virtio/pci: include vdev name in registered PCI sections
      plugins: add API to return a name for a IO device
      plugins: new hwprofile plugin
      accel/tcg/plugin-gen: fix the call signature for inline callbacks
      tests/plugin: expand insn test to detect duplicate instructions
      tests/acceptance: add a new set of tests to exercise plugins
      accel/tcg: actually cache our partial icount TB
      accel/tcg: cache single instruction TB on pending replay exception
      accel/tcg: re-factor non-RAM execution code
      accel/tcg: remove CF_NOCACHE and special cases
      accel/tcg: allow plugin instrumentation to be disable via cflags
      tests/acceptance: add a new tests to detect counting errors
      tests/plugin: allow memory plugin to do both inline and callbacks
      tests/acceptance: add a memory callback check

Richard Henderson (4):
      exec: Move TranslationBlock typedef to qemu/typedefs.h
      accel/tcg: Create io_recompile_replay_branch hook
      target/mips: Create mips_io_recompile_replay_branch
      target/sh4: Create superh_io_recompile_replay_branch

zhouyang (5):
      contrib: Don't use '#' flag of printf format
      contrib: Fix some code style problems, ERROR: "foo * bar" should be "foo *bar"
      contrib: Add spaces around operator
      contrib: space required after that ','
      contrib: Open brace '{' following struct go on the same line

 docs/devel/tcg-plugins.rst               |  34 ++++
 include/exec/exec-all.h                  |   9 +-
 include/exec/plugin-gen.h                |   4 +-
 include/exec/tb-context.h                |   1 -
 include/hw/core/cpu.h                    |   4 +-
 include/hw/core/tcg-cpu-ops.h            |  13 +-
 include/qemu/plugin.h                    |   4 +
 include/qemu/qemu-plugin.h               |   6 +
 include/qemu/typedefs.h                  |   1 +
 target/arm/internals.h                   |   3 +-
 accel/tcg/cpu-exec.c                     |  61 ++-----
 accel/tcg/plugin-gen.c                   |  35 ++--
 accel/tcg/translate-all.c                | 130 +++++--------
 accel/tcg/translator.c                   |   5 +-
 contrib/ivshmem-server/main.c            |   2 +-
 contrib/plugins/hotblocks.c              |   2 +-
 contrib/plugins/hotpages.c               |   2 +-
 contrib/plugins/howvec.c                 |  19 +-
 contrib/plugins/hwprofile.c              | 305 +++++++++++++++++++++++++++++++
 contrib/plugins/lockstep.c               |   6 +-
 hw/virtio/virtio-pci.c                   |  22 ++-
 plugins/api.c                            |  56 ++++--
 target/cris/translate.c                  |   2 +-
 target/lm32/translate.c                  |   2 +-
 target/mips/cpu.c                        |  18 ++
 target/moxie/translate.c                 |   2 +-
 target/sh4/cpu.c                         |  18 ++
 target/unicore32/translate.c             |   2 +-
 tests/plugin/insn.c                      |  12 +-
 tests/plugin/mem.c                       |  27 ++-
 MAINTAINERS                              |   1 +
 contrib/plugins/Makefile                 |   1 +
 tests/acceptance/tcg_plugins.py          | 148 +++++++++++++++
 tests/tcg/i386/Makefile.softmmu-target   |  10 +
 tests/tcg/i386/Makefile.target           |   7 +
 tests/tcg/x86_64/Makefile.softmmu-target |  10 +
 36 files changed, 769 insertions(+), 215 deletions(-)
 create mode 100644 contrib/plugins/hwprofile.c
 create mode 100644 tests/acceptance/tcg_plugins.py


-- 
2.20.1



             reply	other threads:[~2021-02-18  9:49 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-18  9:46 Alex Bennée [this message]
2021-02-18  9:46 ` [PULL 01/23] hw/virtio/pci: include vdev name in registered PCI sections Alex Bennée
2021-02-18  9:46 ` [PULL 02/23] plugins: add API to return a name for a IO device Alex Bennée
2021-02-18  9:46 ` [PULL 03/23] plugins: new hwprofile plugin Alex Bennée
2021-02-18  9:46 ` [PULL 04/23] contrib: Don't use '#' flag of printf format Alex Bennée
2021-02-18  9:46 ` [PULL 05/23] contrib: Fix some code style problems, ERROR: "foo * bar" should be "foo *bar" Alex Bennée
2021-02-18  9:46 ` [PULL 06/23] contrib: Add spaces around operator Alex Bennée
2021-02-18  9:46 ` [PULL 07/23] contrib: space required after that ',' Alex Bennée
2021-02-18  9:46 ` [PULL 08/23] contrib: Open brace '{' following struct go on the same line Alex Bennée
2021-02-18  9:46 ` [PULL 09/23] accel/tcg/plugin-gen: fix the call signature for inline callbacks Alex Bennée
2021-02-18  9:46 ` [PULL 10/23] exec: Move TranslationBlock typedef to qemu/typedefs.h Alex Bennée
2021-02-18  9:46 ` [PULL 11/23] accel/tcg: Create io_recompile_replay_branch hook Alex Bennée
2021-02-18  9:46 ` [PULL 12/23] target/mips: Create mips_io_recompile_replay_branch Alex Bennée
2021-02-18  9:46 ` [PULL 13/23] target/sh4: Create superh_io_recompile_replay_branch Alex Bennée
2021-02-18  9:46 ` [PULL 14/23] tests/plugin: expand insn test to detect duplicate instructions Alex Bennée
2021-02-18  9:46 ` [PULL 15/23] tests/acceptance: add a new set of tests to exercise plugins Alex Bennée
2021-02-18  9:46 ` [PULL 16/23] accel/tcg: actually cache our partial icount TB Alex Bennée
2021-02-18  9:47 ` [PULL 17/23] accel/tcg: cache single instruction TB on pending replay exception Alex Bennée
2021-02-18  9:47 ` [PULL 18/23] accel/tcg: re-factor non-RAM execution code Alex Bennée
2021-04-15 13:18   ` Peter Maydell
2021-04-15 13:37     ` Peter Maydell
2021-04-15 14:31       ` Alex Bennée
2021-04-15 14:54         ` Peter Maydell
2021-04-15 15:55           ` Philippe Mathieu-Daudé
2021-04-15 17:18             ` [EXTERNAL] " Cédric Le Goater
2021-04-15 17:34               ` Peter Maydell
2021-04-16  7:55                 ` Cédric Le Goater
2021-04-16  9:14                   ` Alex Bennée
2021-04-16 10:14                     ` Cédric Le Goater
2021-02-18  9:47 ` [PULL 19/23] accel/tcg: remove CF_NOCACHE and special cases Alex Bennée
2021-02-18  9:47 ` [PULL 20/23] accel/tcg: allow plugin instrumentation to be disable via cflags Alex Bennée
2021-02-18  9:47 ` [PULL 21/23] tests/acceptance: add a new tests to detect counting errors Alex Bennée
2021-02-18  9:47 ` [PULL 22/23] tests/plugin: allow memory plugin to do both inline and callbacks Alex Bennée
2021-02-18  9:47 ` [PULL 23/23] tests/acceptance: add a memory callback check Alex Bennée
2021-02-18 15:13 ` [PULL 00/23] plugin updates (hwprofile, CF_NOCACHE, io_recompile) Peter Maydell

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=20210218094706.23038-1-alex.bennee@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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 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).