diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-09-14 20:33:23 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-11-02 07:00:52 -0400 |
commit | 12f0bc55791bd6e0864a430a0c3c9518ae7622e8 (patch) | |
tree | 23a824020ae543fe3ced41313a90ed5376ce725f /target/openrisc/meson.build | |
parent | d315712b69fa34c27d09d425ca5951a08b07ade8 (diff) | |
download | qemu-12f0bc55791bd6e0864a430a0c3c9518ae7622e8.zip qemu-12f0bc55791bd6e0864a430a0c3c9518ae7622e8.tar.gz qemu-12f0bc55791bd6e0864a430a0c3c9518ae7622e8.tar.bz2 |
target/openrisc: Make openrisc_cpu_tlb_fill sysemu only
The fallback code in cpu_loop_exit_sigsegv is sufficient for
openrisc linux-user.
This makes all of the code in mmu.c sysemu only, so remove
the ifdefs and move the file to openrisc_softmmu_ss.
Remove the code from cpu_loop that handled EXCP_DPF.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/openrisc/meson.build')
-rw-r--r-- | target/openrisc/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/openrisc/meson.build b/target/openrisc/meson.build index e445dec..8432208 100644 --- a/target/openrisc/meson.build +++ b/target/openrisc/meson.build @@ -10,7 +10,6 @@ openrisc_ss.add(files( 'fpu_helper.c', 'gdbstub.c', 'interrupt_helper.c', - 'mmu.c', 'sys_helper.c', 'translate.c', )) @@ -19,6 +18,7 @@ openrisc_softmmu_ss = ss.source_set() openrisc_softmmu_ss.add(files( 'interrupt.c', 'machine.c', + 'mmu.c', )) target_arch += {'openrisc': openrisc_ss} |