Merge pull request #6958 from lioncash/rsqrte

Interpreter_FloatingPoint: Handle SNaN flag setting in frsqrte
This commit is contained in:
Léo Lam 2018-05-25 15:11:28 +02:00 committed by GitHub
commit 3d44dc3981
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 3 deletions

View File

@ -424,19 +424,36 @@ void Interpreter::fresx(UGeckoInstruction inst)
void Interpreter::frsqrtex(UGeckoInstruction inst)
{
double b = rPS0(inst.FB);
const double b = rPS0(inst.FB);
const double result = Common::ApproximateReciprocalSquareRoot(b);
if (b < 0.0)
{
SetFPException(FPSCR_VXSQRT);
if (FPSCR.VE == 0)
PowerPC::UpdateFPRF(result);
}
else if (b == 0.0)
{
SetFPException(FPSCR_ZX);
if (FPSCR.ZE == 0)
PowerPC::UpdateFPRF(result);
}
else if (Common::IsSNAN(b))
{
SetFPException(FPSCR_VXSNAN);
if (FPSCR.VE == 0)
PowerPC::UpdateFPRF(result);
}
else
{
PowerPC::UpdateFPRF(result);
}
rPS0(inst.FD) = Common::ApproximateReciprocalSquareRoot(b);
PowerPC::UpdateFPRF(rPS0(inst.FD));
rPS0(inst.FD) = result;
if (inst.Rc)
Helper_UpdateCR1();