diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-09-15 22:55:45 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-11-07 12:13:27 +0100 |
commit | bb6cf6f0168efadb95cf3e41963ec295ad28a941 (patch) | |
tree | ce4c36ff9afead66aea9f6f2949736dadb04e4c9 /accel/tcg/translate-all.c | |
parent | 1b5120d74b1e19c12f8f476f8015a0ac87e11878 (diff) | |
download | qemu-bb6cf6f0168efadb95cf3e41963ec295ad28a941.zip qemu-bb6cf6f0168efadb95cf3e41963ec295ad28a941.tar.gz qemu-bb6cf6f0168efadb95cf3e41963ec295ad28a941.tar.bz2 |
accel/tcg: Factor tcg_cpu_reset_hold() out
Factor the TCG specific code from cpu_common_reset_hold() to
tcg_cpu_reset_hold() within tcg-accel-ops.c. Since this file
is sysemu specific, we can inline tcg_flush_softmmu_tlb(),
removing its declaration in "exec/cpu-common.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Anton Johansson <anjo@rev.ng>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230918104153.24433-4-philmd@linaro.org>
Diffstat (limited to 'accel/tcg/translate-all.c')
-rw-r--r-- | accel/tcg/translate-all.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c index e579b08..b263857 100644 --- a/accel/tcg/translate-all.c +++ b/accel/tcg/translate-all.c @@ -673,11 +673,3 @@ void tcg_flush_jmp_cache(CPUState *cpu) qatomic_set(&jc->array[i].tb, NULL); } } - -/* This is a wrapper for common code that can not use CONFIG_SOFTMMU */ -void tcg_flush_softmmu_tlb(CPUState *cs) -{ -#ifdef CONFIG_SOFTMMU - tlb_flush(cs); -#endif -} |