diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-11-14 02:13:03 +0100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-03-08 07:56:14 -0800 |
commit | 6ff5da16000f908140723e164d33a0b51a6c4162 (patch) | |
tree | bd7ed7119bd4c6508f23075366e5ce8d6e63fbfb /target/arm | |
parent | bcde46f57dccb3a5d7d669cabef7da0b506c319b (diff) | |
download | qemu-6ff5da16000f908140723e164d33a0b51a6c4162.zip qemu-6ff5da16000f908140723e164d33a0b51a6c4162.tar.gz qemu-6ff5da16000f908140723e164d33a0b51a6c4162.tar.bz2 |
exec: Declare tlb_flush*() in 'exec/cputlb.h'
Move CPU TLB related methods to "exec/cputlb.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-ID: <20241114011310.3615-19-philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/arm')
-rw-r--r-- | target/arm/helper.c | 1 | ||||
-rw-r--r-- | target/arm/tcg/tlb-insns.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/target/arm/helper.c b/target/arm/helper.c index 71dead7..e786c8d 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -18,6 +18,7 @@ #include "qemu/timer.h" #include "qemu/bitops.h" #include "qemu/qemu-print.h" +#include "exec/cputlb.h" #include "exec/exec-all.h" #include "exec/translation-block.h" #include "hw/irq.h" diff --git a/target/arm/tcg/tlb-insns.c b/target/arm/tcg/tlb-insns.c index fadc61a..630a481 100644 --- a/target/arm/tcg/tlb-insns.c +++ b/target/arm/tcg/tlb-insns.c @@ -7,7 +7,7 @@ */ #include "qemu/osdep.h" #include "qemu/log.h" -#include "exec/exec-all.h" +#include "exec/cputlb.h" #include "cpu.h" #include "internals.h" #include "cpu-features.h" |