mirror of
https://github.com/mborgerson/xemu.git
synced 2025-12-01 16:10:01 +00:00
linux-user/sparc: Handle privilidged action trap
This is raised by using an %asi < 0x80 in user-mode. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230216054516.1267305-12-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
committed by
Laurent Vivier
parent
97ff1478d2
commit
235f33b818
@ -306,6 +306,12 @@ void cpu_loop (CPUSPARCState *env)
|
||||
case TT_PRIV_INSN:
|
||||
force_sig_fault(TARGET_SIGILL, TARGET_ILL_PRVOPC, env->pc);
|
||||
break;
|
||||
#ifdef TARGET_SPARC64
|
||||
case TT_PRIV_ACT:
|
||||
/* Note do_privact defers to do_privop. */
|
||||
force_sig_fault(TARGET_SIGILL, TARGET_ILL_PRVOPC, env->pc);
|
||||
break;
|
||||
#endif
|
||||
case EXCP_ATOMIC:
|
||||
cpu_exec_step_atomic(cs);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user