Merge pull request #812 from FioraAeterna/fixundefined

JIT: don't rely on undefined behavior for constant overflow checking
This commit is contained in:
Dolphin Bot 2014-08-16 00:36:08 +02:00
commit 444e47a07a
2 changed files with 10 additions and 3 deletions

View file

@ -94,6 +94,7 @@ public:
void Cleanup();
void GenerateConstantOverflow(bool overflow);
void GenerateConstantOverflow(s64 val);
void GenerateOverflow();
void FinalizeCarryOverflow(bool oe, bool inv = false);
void GetCarryEAXAndClear();

View file

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <limits>
#include <vector>
#include "Core/PowerPC/Jit64/Jit.h"
@ -10,6 +11,11 @@
using namespace Gen;
void Jit64::GenerateConstantOverflow(s64 val)
{
GenerateConstantOverflow(val > std::numeric_limits<s32>::max() || val < std::numeric_limits<s32>::min());
}
void Jit64::GenerateConstantOverflow(bool overflow)
{
if (overflow)
@ -925,7 +931,7 @@ void Jit64::subfx(UGeckoInstruction inst)
}
if (inst.OE)
{
GenerateConstantOverflow((s64)(i - j) != (s64)i - (s64)j);
GenerateConstantOverflow((s64)i - (s64)j);
}
}
else
@ -1014,7 +1020,7 @@ void Jit64::mullwx(UGeckoInstruction inst)
gpr.SetImmediate32(d, i * j);
if (inst.OE)
{
GenerateConstantOverflow((s64)(i*j) != (s64)i * (s64)j);
GenerateConstantOverflow((s64)i * (s64)j);
}
}
else
@ -1330,7 +1336,7 @@ void Jit64::addx(UGeckoInstruction inst)
}
if (inst.OE)
{
GenerateConstantOverflow((s64)(i + j) != (s64)i + (s64)j);
GenerateConstantOverflow((s64)i + (s64)j);
}
}
else if (gpr.R(a).IsSimpleReg() && gpr.R(b).IsSimpleReg() && !inst.Rc && !inst.OE)