diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-04-03 09:59:18 -1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-05-15 08:55:18 +0200 |
| commit | e763953a2445770bb5d1653d0c258dca5a6de5e2 (patch) | |
| tree | 410ae49ce696efeaa1cd316574f2ac066bb769ca /include/qemu/plugin.h | |
| parent | d3ace105900c43d1eb034b81ce0951e6110ab990 (diff) | |
| download | focaccia-qemu-e763953a2445770bb5d1653d0c258dca5a6de5e2.tar.gz focaccia-qemu-e763953a2445770bb5d1653d0c258dca5a6de5e2.zip | |
plugins: Use DisasContextBase for qemu_plugin_tb_vaddr
We do not need to separately record the start of the TB. 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 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/qemu/plugin.h b/include/qemu/plugin.h index da0f37e269..7fda6ef126 100644 --- a/include/qemu/plugin.h +++ b/include/qemu/plugin.h @@ -118,7 +118,6 @@ struct qemu_plugin_scoreboard { struct qemu_plugin_tb { GPtrArray *insns; size_t n; - uint64_t vaddr; /* if set, the TB calls helpers that might access guest memory */ bool mem_helper; |