diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-04-03 09:31:49 -1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-05-15 08:55:18 +0200 |
| commit | e501325991815e09297a048ffb0be81411bbe34a (patch) | |
| tree | 2ad0d48a904af15dc89beb874d02f0d2a262fe97 /include/qemu/plugin.h | |
| parent | 36bc99bc789fd564facea93feb2a22e4942b84d0 (diff) | |
| download | focaccia-qemu-e501325991815e09297a048ffb0be81411bbe34a.tar.gz focaccia-qemu-e501325991815e09297a048ffb0be81411bbe34a.zip | |
plugins: Read mem_only directly from TB cflags
Do not pass around a boolean between multiple structures, just read it from the TranslationBlock in the TCGContext. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/qemu/plugin.h')
| -rw-r--r-- | include/qemu/plugin.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/qemu/plugin.h b/include/qemu/plugin.h index c8dd2c42fa..c28d0ca31c 100644 --- a/include/qemu/plugin.h +++ b/include/qemu/plugin.h @@ -107,8 +107,6 @@ struct qemu_plugin_insn { /* if set, the instruction calls helpers that might access guest memory */ bool mem_helper; - - bool mem_only; }; /* A scoreboard is an array of values, indexed by vcpu_index */ @@ -125,7 +123,6 @@ struct qemu_plugin_tb { uint64_t vaddr2; void *haddr1; void *haddr2; - bool mem_only; /* if set, the TB calls helpers that might access guest memory */ bool mem_helper; |