Revert "Merge pull request #473 from Tilka/frsp"

This reverts commit d369627d70, reversing
changes made to 67ff926f1e.
This commit is contained in:
Shawn Hoffman 2014-07-21 20:40:21 -07:00
parent e30f4576c9
commit c3eb45f7bc
3 changed files with 1 additions and 17 deletions

View file

@ -191,7 +191,6 @@ public:
void fmaddXX(UGeckoInstruction inst);
void fsign(UGeckoInstruction inst);
void frsp(UGeckoInstruction inst);
void stX(UGeckoInstruction inst); //stw sth stb
void rlwinmx(UGeckoInstruction inst);
void rlwimix(UGeckoInstruction inst);

View file

@ -342,7 +342,7 @@ static GekkoOPTemplate table63[] =
{72, &Jit64::fmrx}, //"fmrx", OPTYPE_FPU, FL_RC_BIT_F}},
{136, &Jit64::fsign}, //"fnabsx", OPTYPE_FPU, FL_RC_BIT_F}},
{40, &Jit64::fsign}, //"fnegx", OPTYPE_FPU, FL_RC_BIT_F}},
{12, &Jit64::frsp}, //"frspx", OPTYPE_FPU, FL_RC_BIT_F}},
{12, &Jit64::FallBackToInterpreter}, //"frspx", OPTYPE_FPU, FL_RC_BIT_F}},
{64, &Jit64::FallBackToInterpreter}, //"mcrfs", OPTYPE_SYSTEMFP, 0}},
{583, &Jit64::FallBackToInterpreter}, //"mffsx", OPTYPE_SYSTEMFP, 0}},

View file

@ -175,21 +175,6 @@ void Jit64::fsign(UGeckoInstruction inst)
fpr.UnlockAll();
}
void Jit64::frsp(UGeckoInstruction inst)
{
INSTRUCTION_START
JITDISABLE(bJITFloatingPointOff);
FALLBACK_IF(inst.Rc);
int d = inst.FD, b = inst.FB;
fpr.Lock(d, b);
fpr.BindToRegister(d, d == b);
CVTSD2SS(fpr.RX(d), fpr.R(b));
CVTSS2SD(fpr.RX(d), fpr.R(d));
UNPCKLPD(fpr.RX(d), fpr.R(d));
fpr.UnlockAll();
}
void Jit64::fmrx(UGeckoInstruction inst)
{
INSTRUCTION_START