summaryrefslogtreecommitdiffstats
path: root/target/mips/tcg/sysemu/meson.build
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2021-04-13 11:46:18 +0200
committerPhilippe Mathieu-Daudé2021-05-02 16:49:35 +0200
commit920b48cc14fe44a466f7387263993e86b4e21bce (patch)
tree306f17548d0f096a31b66d724942f741d2171b80 /target/mips/tcg/sysemu/meson.build
parenttarget/mips: Restrict mmu_init() to TCG (diff)
downloadqemu-920b48cc14fe44a466f7387263993e86b4e21bce.tar.gz
qemu-920b48cc14fe44a466f7387263993e86b4e21bce.tar.xz
qemu-920b48cc14fe44a466f7387263993e86b4e21bce.zip
target/mips: Move tlb_helper.c to tcg/sysemu/
Move tlb_helper.c to the tcg/sysemu/ subdir, along with the following 3 declarations to tcg-internal.h: - cpu_mips_tlb_flush() - cpu_mips_translate_address() - r4k_invalidate_tlb() Simplify tlb_helper.c #ifdef'ry because files in tcg/sysemu/ are only build when sysemu mode is configured. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210428170410.479308-22-f4bug@amsat.org>
Diffstat (limited to 'target/mips/tcg/sysemu/meson.build')
-rw-r--r--target/mips/tcg/sysemu/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/tcg/sysemu/meson.build b/target/mips/tcg/sysemu/meson.build
index 5c3024e776..73ab9571ba 100644
--- a/target/mips/tcg/sysemu/meson.build
+++ b/target/mips/tcg/sysemu/meson.build
@@ -1,4 +1,5 @@
mips_softmmu_ss.add(files(
'cp0_helper.c',
'mips-semi.c',
+ 'tlb_helper.c',
))