Interpreter_FPUtils: Set FPSCR.VXSNAN if either operand to NI_div is a signaling NaN

If either operand is a signaling NaN, we need to signify that by setting
the VXSNAN bit.

This fixes NaN flag setting for fdiv, fdivs and ps_div instructions.
This commit is contained in:
Lioncash 2018-05-27 15:56:25 -04:00
parent e9ce75ccc4
commit f4c5ceba1c
1 changed files with 8 additions and 1 deletions

View File

@ -113,13 +113,18 @@ inline double NI_mul(double a, double b)
inline double NI_div(double a, double b)
{
double t = a / b;
const double t = a / b;
if (std::isnan(t))
{
if (Common::IsSNAN(a) || Common::IsSNAN(b))
SetFPException(FPSCR_VXSNAN);
if (std::isnan(a))
return MakeQuiet(a);
if (std::isnan(b))
return MakeQuiet(b);
if (b == 0.0)
{
SetFPException(FPSCR_ZX);
@ -130,8 +135,10 @@ inline double NI_div(double a, double b)
{
SetFPException(FPSCR_VXIDI);
}
return PPC_NAN;
}
return t;
}