diff options
author | Philippe Mathieu-Daudé | 2021-04-18 15:16:06 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé | 2021-05-02 16:49:34 +0200 |
commit | 0a31c16c9ce2639c8706b9f863724ba42a46f121 (patch) | |
tree | 168fd4309d419652bc2b16ee1c9219f16ef280e0 /target/mips/tcg/user | |
parent | target/mips: Introduce tcg-internal.h for TCG specific declarations (diff) | |
download | qemu-0a31c16c9ce2639c8706b9f863724ba42a46f121.tar.gz qemu-0a31c16c9ce2639c8706b9f863724ba42a46f121.tar.xz qemu-0a31c16c9ce2639c8706b9f863724ba42a46f121.zip |
target/mips: Add simple user-mode mips_cpu_do_interrupt()
The #ifdef'ry hides that the user-mode implementation of
mips_cpu_do_interrupt() simply sets exception_index = EXCP_NONE.
Add this simple implementation to tcg/user/tlb_helper.c, and
the corresponding Meson machinery to build this file when user
emulation is configured.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210428170410.479308-14-f4bug@amsat.org>
Diffstat (limited to 'target/mips/tcg/user')
-rw-r--r-- | target/mips/tcg/user/meson.build | 3 | ||||
-rw-r--r-- | target/mips/tcg/user/tlb_helper.c | 28 |
2 files changed, 31 insertions, 0 deletions
diff --git a/target/mips/tcg/user/meson.build b/target/mips/tcg/user/meson.build new file mode 100644 index 0000000000..79badcd321 --- /dev/null +++ b/target/mips/tcg/user/meson.build @@ -0,0 +1,3 @@ +mips_user_ss.add(files( + 'tlb_helper.c', +)) diff --git a/target/mips/tcg/user/tlb_helper.c b/target/mips/tcg/user/tlb_helper.c new file mode 100644 index 0000000000..453b9e9b93 --- /dev/null +++ b/target/mips/tcg/user/tlb_helper.c @@ -0,0 +1,28 @@ +/* + * MIPS TLB (Translation lookaside buffer) helpers. + * + * Copyright (c) 2004-2005 Jocelyn Mayer + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see <http://www.gnu.org/licenses/>. + */ +#include "qemu/osdep.h" + +#include "cpu.h" +#include "exec/exec-all.h" +#include "internal.h" + +void mips_cpu_do_interrupt(CPUState *cs) +{ + cs->exception_index = EXCP_NONE; +} |