mirror of https://github.com/xemu-project/xemu.git
linux-user/sparc: Handle coprocessor disabled trap
Since qemu does not implement a sparc coprocessor, all such instructions raise this trap. Because of that, we never raise the coprocessor exception trap, which would be vector 0x28. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230216054516.1267305-13-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
235f33b818
commit
c47d7c87bf
|
@ -311,6 +311,10 @@ void cpu_loop (CPUSPARCState *env)
|
|||
/* Note do_privact defers to do_privop. */
|
||||
force_sig_fault(TARGET_SIGILL, TARGET_ILL_PRVOPC, env->pc);
|
||||
break;
|
||||
#else
|
||||
case TT_NCP_INSN:
|
||||
force_sig_fault(TARGET_SIGILL, TARGET_ILL_COPROC, env->pc);
|
||||
break;
|
||||
#endif
|
||||
case EXCP_ATOMIC:
|
||||
cpu_exec_step_atomic(cs);
|
||||
|
|
Loading…
Reference in New Issue