Re: [PATCH 09/26] target/mips: Add simple user-mode mips_cpu_do_interrupt()

2021-04-18 Thread Richard Henderson
On 4/18/21 9:31 AM, Philippe Mathieu-Daudé wrote: target/mips/tcg/user/helper.c| 28 Since only this and the next helper go in here, perhaps continue to call it tlb_helper.c? Otherwise, Reviewed-by: Richard Henderson r~

[PATCH 09/26] target/mips: Add simple user-mode mips_cpu_do_interrupt()

2021-04-18 Thread Philippe Mathieu-Daudé
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/helper.c, and the corresponding Meson machinery to build this file when user emulation is configured. Signed-off-by: Philippe Mathie