JitArm64: Implement mffsx
Part 2 of implementing the FPSCR system register instructions.
This commit is contained in:
parent
c77a5f7e32
commit
8cd37e040a
|
@ -119,6 +119,7 @@ public:
|
||||||
void mfcr(UGeckoInstruction inst);
|
void mfcr(UGeckoInstruction inst);
|
||||||
void mtcrf(UGeckoInstruction inst);
|
void mtcrf(UGeckoInstruction inst);
|
||||||
void mcrfs(UGeckoInstruction inst);
|
void mcrfs(UGeckoInstruction inst);
|
||||||
|
void mffsx(UGeckoInstruction inst);
|
||||||
|
|
||||||
// LoadStore
|
// LoadStore
|
||||||
void lXX(UGeckoInstruction inst);
|
void lXX(UGeckoInstruction inst);
|
||||||
|
|
|
@ -721,3 +721,35 @@ void JitArm64::mcrfs(UGeckoInstruction inst)
|
||||||
|
|
||||||
gpr.Unlock(WA);
|
gpr.Unlock(WA);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void JitArm64::mffsx(UGeckoInstruction inst)
|
||||||
|
{
|
||||||
|
INSTRUCTION_START
|
||||||
|
JITDISABLE(bJITSystemRegistersOff);
|
||||||
|
FALLBACK_IF(inst.Rc);
|
||||||
|
|
||||||
|
ARM64Reg WA = gpr.GetReg();
|
||||||
|
ARM64Reg XA = EncodeRegTo64(WA);
|
||||||
|
|
||||||
|
LDR(IndexType::Unsigned, WA, PPC_REG, PPCSTATE_OFF(fpscr));
|
||||||
|
|
||||||
|
ARM64Reg VD = fpr.RW(inst.FD, RegType::LowerPair);
|
||||||
|
ARM64Reg WB = gpr.GetReg();
|
||||||
|
|
||||||
|
// FPSCR.FEX = 0;
|
||||||
|
// FPSCR.VX = (FPSCR.Hex & FPSCR_VX_ANY) != 0;
|
||||||
|
// (FEX is right next to VX, so we can set both using one BFI instruction)
|
||||||
|
MOVI2R(WB, FPSCR_VX_ANY);
|
||||||
|
TST(WA, WB);
|
||||||
|
CSET(WB, CCFlags::CC_NEQ);
|
||||||
|
BFI(WA, WB, 31 - 2, 2);
|
||||||
|
|
||||||
|
STR(IndexType::Unsigned, WA, PPC_REG, PPCSTATE_OFF(fpscr));
|
||||||
|
|
||||||
|
// Vd = FPSCR.Hex | 0xFFF8'0000'0000'0000;
|
||||||
|
ORR(XA, XA, 13, 12, true);
|
||||||
|
m_float_emit.FMOV(EncodeRegToDouble(VD), XA);
|
||||||
|
|
||||||
|
gpr.Unlock(WA);
|
||||||
|
gpr.Unlock(WB);
|
||||||
|
}
|
||||||
|
|
|
@ -316,7 +316,7 @@ constexpr std::array<GekkoOPTemplate, 15> table63{{
|
||||||
{12, &JitArm64::frspx}, // frspx
|
{12, &JitArm64::frspx}, // frspx
|
||||||
|
|
||||||
{64, &JitArm64::mcrfs}, // mcrfs
|
{64, &JitArm64::mcrfs}, // mcrfs
|
||||||
{583, &JitArm64::FallBackToInterpreter}, // mffsx
|
{583, &JitArm64::mffsx}, // mffsx
|
||||||
{70, &JitArm64::FallBackToInterpreter}, // mtfsb0x
|
{70, &JitArm64::FallBackToInterpreter}, // mtfsb0x
|
||||||
{38, &JitArm64::FallBackToInterpreter}, // mtfsb1x
|
{38, &JitArm64::FallBackToInterpreter}, // mtfsb1x
|
||||||
{134, &JitArm64::FallBackToInterpreter}, // mtfsfix
|
{134, &JitArm64::FallBackToInterpreter}, // mtfsfix
|
||||||
|
|
Loading…
Reference in New Issue