diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-04-18 16:25:49 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-05-02 16:49:35 +0200 |
commit | c284201702386b159277422318e51697647a2047 (patch) | |
tree | 25a6ee59c188ca1975e9b6d474c1ae15475dab6f /target/mips/tcg/tcg-internal.h | |
parent | ad520a978447bca03374b71e90d948826e669603 (diff) |
target/mips: Restrict mmu_init() to TCG
mmu_init() is only required by TCG accelerator.
Restrict its declaration and call to TCG.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210428170410.479308-21-f4bug@amsat.org>
Diffstat (limited to 'target/mips/tcg/tcg-internal.h')
-rw-r--r-- | target/mips/tcg/tcg-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/mips/tcg/tcg-internal.h b/target/mips/tcg/tcg-internal.h index b65580af21..70655bab45 100644 --- a/target/mips/tcg/tcg-internal.h +++ b/target/mips/tcg/tcg-internal.h @@ -20,6 +20,8 @@ bool mips_cpu_tlb_fill(CPUState *cs, vaddr address, int size, #if !defined(CONFIG_USER_ONLY) +void mmu_init(CPUMIPSState *env, const mips_def_t *def); + void update_pagemask(CPUMIPSState *env, target_ulong arg1, int32_t *pagemask); uint32_t cpu_mips_get_random(CPUMIPSState *env); |