[PATCH v7 00/18] plugins: Allow to read registers

Akihiko Odaki posted 18 patches 7 months, 2 weeks ago
Failed in applying to current master (apply log)
There is a newer version of this series
docs/devel/tcg-plugins.rst   |  18 +++-
configure                    |  15 ++-
include/exec/gdbstub.h       |  33 ++++++-
include/hw/core/cpu.h        |   9 +-
include/qemu/qemu-plugin.h   |  56 ++++++++++-
target/arm/cpu.h             |  26 ++---
target/arm/internals.h       |   2 +-
target/ppc/cpu-qom.h         |   3 +-
target/ppc/cpu.h             |   3 +-
target/riscv/cpu.h           |   4 +-
target/s390x/cpu.h           |   2 -
contrib/plugins/execlog.c    | 120 ++++++++++++++++-------
cpu.c                        |  11 ---
gdbstub/gdbstub.c            | 178 +++++++++++++++++++++++++++++------
hw/core/cpu-common.c         |  10 ++
plugins/api.c                |  19 ++++
target/arm/cpu.c             |   5 +-
target/arm/cpu64.c           |   4 +-
target/arm/gdbstub.c         | 170 ++++++++++++++-------------------
target/arm/gdbstub64.c       |  90 ++++++++----------
target/arm/tcg/cpu32.c       |   3 +-
target/avr/cpu.c             |   4 +-
target/hexagon/cpu.c         |   5 +-
target/i386/cpu.c            |   7 +-
target/loongarch/cpu.c       |   8 +-
target/loongarch/gdbstub.c   |   2 +-
target/m68k/cpu.c            |   7 +-
target/m68k/helper.c         |   6 +-
target/microblaze/cpu.c      |   9 +-
target/ppc/cpu_init.c        |   9 +-
target/ppc/gdbstub.c         |  62 ++++--------
target/riscv/cpu.c           |  21 +----
target/riscv/gdbstub.c       |  89 ++++++++----------
target/rx/cpu.c              |   4 +-
target/s390x/cpu.c           |   4 +-
target/s390x/gdbstub.c       |  28 ++----
contrib/plugins/Makefile     |   5 +
contrib/plugins/cc.cc        |  17 ++++
plugins/qemu-plugins.symbols |   3 +
scripts/feature_to_c.py      |  58 +++++++++++-
tests/tcg/Makefile.target    |   3 +
41 files changed, 694 insertions(+), 438 deletions(-)
create mode 100644 contrib/plugins/cc.cc
[PATCH v7 00/18] plugins: Allow to read registers
Posted by Akihiko Odaki 7 months, 2 weeks ago
Based-on: <20230912065811.27796-1-akihiko.odaki@daynix.com>
("[PATCH v2 00/11] gdbstub and TCG plugin improvements")

I and other people in the University of Tokyo, where I research processor
design, found TCG plugins are very useful for processor design exploration.

The feature we find missing is the capability to read registers from
plugins. In this series, I propose to add such a capability by reusing
gdbstub code.

The reuse of gdbstub code ensures the long-term stability of the TCG plugin
interface for register access without incurring a burden to maintain yet
another interface for register access.

This process to add TCG plugin involves four major changes. The first one
is to add GDBFeature structure that represents a GDB feature, which usually
includes registers. GDBFeature can be generated from static XML files or
dynamically generated by architecture-specific code. In fact, this is a
refactoring independent of the feature this series adds, and potentially
it's benefitial even without the plugin feature. The plugin feature will
utilize this new structure to describe registers exposed to plugins.

The second one is to make gdb_read_register/gdb_write_register usable
outside of gdbstub context.

The third one is to actually make registers readable for plugins.

The last one is to allow to implement a QEMU plugin in C++. A plugin that
I'll describe later is written in C++.

The below is a summary of patches:
Patch [01, 03] introduces num_regs member to GDBFeature.
Patch [04, 11] converts dynamic features to use GDBFeature.
Patch 12 adds members useful to identify registers to GDBFeature.
Patch 13 makes registers readable outside of gdbstub context.
Patch [14, 16] add the feature to read registers from plugins.
Patch [17, 18] make it possible to write plugins in C++.

The execlog plugin will have new options to demonstrate the new feature.
I also have a plugin that uses this new feature to generate execution
traces for Sniper processor simulator, which is available at:
https://github.com/shioya-lab/sniper/tree/akihikodaki/bb

V6 -> V7:
  Rebased to "[PATCH v2 00/11] gdbstub and TCG plugin improvements"
  Replaced functions to get register identifiers.

V5 -> V6:
  Rebased to "[PATCH 0/8] gdbstub and TCG plugin improvements"

V4 -> V5:
  Corrected g_rw_lock_writer_lock() call. (Richard Henderson)
  Replaced abort() with g_assert_not_reached(). (Richard Henderson)
  Fixed CSR name leak in target/riscv. (Richard Henderson)
  Removed gdb_has_xml variable.

V3 -> V4:
  Added execlog changes I forgot to include in the last version.

V2 -> V3:
  Added patch "hw/core/cpu: Return static value with gdb_arch_name()".
  Added patch "gdbstub: Dynamically allocate target.xml buffer".
  (Alex Bennée)
  Added patch "gdbstub: Introduce GDBFeatureBuilder". (Alex Bennée)
  Dropped Reviewed-by tags for "target/*: Use GDBFeature for dynamic XML".
  Changed gdb_find_static_feature() to abort on failure. (Alex Bennée)
  Changed the execlog plugin to log the register value only when changed.
  (Alex Bennée)
  Dropped 0x prefixes for register value logs for conciseness.

V1 -> V2:
  Added SPDX-License-Identifier: GPL-2.0-or-later. (Philippe Mathieu-Daudé)
  Split long lines. (Philippe Mathieu-Daudé)
  Renamed gdb_features to gdb_static_features (Philippe Mathieu-Daudé)
  Dropped RFC.

Akihiko Odaki (18):
  gdbstub: Add num_regs member to GDBFeature
  gdbstub: Introduce gdb_find_static_feature()
  hw/core/cpu: Replace gdb_core_xml_file with gdb_core_feature
  gdbstub: Introduce GDBFeatureBuilder
  target/arm: Use GDBFeature for dynamic XML
  target/ppc: Use GDBFeature for dynamic XML
  target/riscv: Use GDBFeature for dynamic XML
  gdbstub: Use GDBFeature for gdb_register_coprocessor
  gdbstub: Use GDBFeature for GDBRegisterState
  gdbstub: Simplify XML lookup
  hw/core/cpu: Remove gdb_get_dynamic_xml member
  gdbstub: Add members to identify registers to GDBFeature
  gdbstub: Expose functions to read registers
  cpu: Call plugin hooks only when ready
  plugins: Allow to read registers
  contrib/plugins: Allow to log registers
  plugins: Support C++
  contrib/plugins: Add cc plugin

Akihiko Odaki (18):
  gdbstub: Add num_regs member to GDBFeature
  gdbstub: Introduce gdb_find_static_feature()
  hw/core/cpu: Replace gdb_core_xml_file with gdb_core_feature
  gdbstub: Introduce GDBFeatureBuilder
  target/arm: Use GDBFeature for dynamic XML
  target/ppc: Use GDBFeature for dynamic XML
  target/riscv: Use GDBFeature for dynamic XML
  gdbstub: Use GDBFeature for gdb_register_coprocessor
  gdbstub: Use GDBFeature for GDBRegisterState
  gdbstub: Simplify XML lookup
  hw/core/cpu: Remove gdb_get_dynamic_xml member
  gdbstub: Add members to identify registers to GDBFeature
  gdbstub: Expose functions to read registers
  cpu: Call plugin hooks only when ready
  plugins: Allow to read registers
  contrib/plugins: Allow to log registers
  plugins: Support C++
  contrib/plugins: Add cc plugin

 docs/devel/tcg-plugins.rst   |  18 +++-
 configure                    |  15 ++-
 include/exec/gdbstub.h       |  33 ++++++-
 include/hw/core/cpu.h        |   9 +-
 include/qemu/qemu-plugin.h   |  56 ++++++++++-
 target/arm/cpu.h             |  26 ++---
 target/arm/internals.h       |   2 +-
 target/ppc/cpu-qom.h         |   3 +-
 target/ppc/cpu.h             |   3 +-
 target/riscv/cpu.h           |   4 +-
 target/s390x/cpu.h           |   2 -
 contrib/plugins/execlog.c    | 120 ++++++++++++++++-------
 cpu.c                        |  11 ---
 gdbstub/gdbstub.c            | 178 +++++++++++++++++++++++++++++------
 hw/core/cpu-common.c         |  10 ++
 plugins/api.c                |  19 ++++
 target/arm/cpu.c             |   5 +-
 target/arm/cpu64.c           |   4 +-
 target/arm/gdbstub.c         | 170 ++++++++++++++-------------------
 target/arm/gdbstub64.c       |  90 ++++++++----------
 target/arm/tcg/cpu32.c       |   3 +-
 target/avr/cpu.c             |   4 +-
 target/hexagon/cpu.c         |   5 +-
 target/i386/cpu.c            |   7 +-
 target/loongarch/cpu.c       |   8 +-
 target/loongarch/gdbstub.c   |   2 +-
 target/m68k/cpu.c            |   7 +-
 target/m68k/helper.c         |   6 +-
 target/microblaze/cpu.c      |   9 +-
 target/ppc/cpu_init.c        |   9 +-
 target/ppc/gdbstub.c         |  62 ++++--------
 target/riscv/cpu.c           |  21 +----
 target/riscv/gdbstub.c       |  89 ++++++++----------
 target/rx/cpu.c              |   4 +-
 target/s390x/cpu.c           |   4 +-
 target/s390x/gdbstub.c       |  28 ++----
 contrib/plugins/Makefile     |   5 +
 contrib/plugins/cc.cc        |  17 ++++
 plugins/qemu-plugins.symbols |   3 +
 scripts/feature_to_c.py      |  58 +++++++++++-
 tests/tcg/Makefile.target    |   3 +
 41 files changed, 694 insertions(+), 438 deletions(-)
 create mode 100644 contrib/plugins/cc.cc

-- 
2.42.0