aboutsummaryrefslogtreecommitdiff
path: root/accel/tcg
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-01-17 17:48:12 +0100
committerRichard Henderson <richard.henderson@linaro.org>2021-01-23 12:13:00 -1000
commit65269192241104342e3b1ba2b7b0f50e5042052e (patch)
tree24bbf5db36a64fcb807fb9c2d1c2a065eaadee71 /accel/tcg
parentee64036a4bec9fe79919812beddcf1a5f51f6bf6 (diff)
downloadqemu-65269192241104342e3b1ba2b7b0f50e5042052e.zip
qemu-65269192241104342e3b1ba2b7b0f50e5042052e.tar.gz
qemu-65269192241104342e3b1ba2b7b0f50e5042052e.tar.bz2
accel/tcg: Restrict cpu_io_recompile() from other accelerators
As cpu_io_recompile() is only called within TCG accelerator in cputlb.c, declare it locally. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210117164813.4101761-6-f4bug@amsat.org> [rth: Adjust vs changed tb_flush_jmp_cache patch.] Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg')
-rw-r--r--accel/tcg/cputlb.c1
-rw-r--r--accel/tcg/internal.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c
index 0fa1643..7a69726 100644
--- a/accel/tcg/cputlb.c
+++ b/accel/tcg/cputlb.c
@@ -37,6 +37,7 @@
#include "exec/translate-all.h"
#include "trace/trace-root.h"
#include "trace/mem.h"
+#include "internal.h"
#ifdef CONFIG_PLUGIN
#include "qemu/plugin-memory.h"
#endif
diff --git a/accel/tcg/internal.h b/accel/tcg/internal.h
index 06b341f..e9c145e 100644
--- a/accel/tcg/internal.h
+++ b/accel/tcg/internal.h
@@ -15,4 +15,6 @@ TranslationBlock *tb_gen_code(CPUState *cpu, target_ulong pc,
target_ulong cs_base, uint32_t flags,
int cflags);
+void QEMU_NORETURN cpu_io_recompile(CPUState *cpu, uintptr_t retaddr);
+
#endif /* ACCEL_TCG_INTERNAL_H */