linux-user/mips: fix abort on integer overflow
QEMU mips userspace emulation crashes with "qemu: unhandled CPU exception 0x15 - aborting" when one of the integer arithmetic instructions detects an overflow. This patch fixes it so that it delivers SIGFPE with FPE_INTOVF instead. Cc: qemu-stable@nongnu.org Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Message-Id: <3ef979a8-3ee1-eb2d-71f7-d788ff88dd11@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e6e66b0328
commit
6fad9b4bb9
@ -180,7 +180,9 @@ done_syscall:
|
|||||||
}
|
}
|
||||||
force_sig_fault(TARGET_SIGFPE, si_code, env->active_tc.PC);
|
force_sig_fault(TARGET_SIGFPE, si_code, env->active_tc.PC);
|
||||||
break;
|
break;
|
||||||
|
case EXCP_OVERFLOW:
|
||||||
|
force_sig_fault(TARGET_SIGFPE, TARGET_FPE_INTOVF, env->active_tc.PC);
|
||||||
|
break;
|
||||||
/* The code below was inspired by the MIPS Linux kernel trap
|
/* The code below was inspired by the MIPS Linux kernel trap
|
||||||
* handling code in arch/mips/kernel/traps.c.
|
* handling code in arch/mips/kernel/traps.c.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user