diff options
author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2024-02-27 14:43:26 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2024-02-28 09:11:42 +0000 |
commit | 33a277fec03a61e470bc279b03b1a3759505f3e0 (patch) | |
tree | 4c7274ecc44de54faa4827754056ade8d7fb5c89 /include | |
parent | 81cf548f533b4f9e1dc58414f081c2530e08fa48 (diff) | |
download | qemu-33a277fec03a61e470bc279b03b1a3759505f3e0.zip qemu-33a277fec03a61e470bc279b03b1a3759505f3e0.tar.gz qemu-33a277fec03a61e470bc279b03b1a3759505f3e0.tar.bz2 |
plugins: Use different helpers when reading registers
This avoids optimizations incompatible when reading registers.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-Id: <20231213-gdb-v17-12-777047380591@daynix.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240227144335.1196131-21-alex.bennee@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/plugin.h b/include/qemu/plugin.h index 7fdc3a4..b0c5ac6 100644 --- a/include/qemu/plugin.h +++ b/include/qemu/plugin.h @@ -73,6 +73,7 @@ enum plugin_dyn_cb_type { enum plugin_dyn_cb_subtype { PLUGIN_CB_REGULAR, + PLUGIN_CB_REGULAR_R, PLUGIN_CB_INLINE, PLUGIN_N_CB_SUBTYPES, }; |