[AArch64] Minor bugfix and optimization.

Fixes a bug in lfs where I was doing a rev64.16b when I needed to do a rev32.8b.
Change a ld1r.4s to a ld1r.2s.
Fix an issue where a fcvtl2 needed to be a fcvtl.
Re-enabled psq_l, issue with flickering can't be reproduced anymore, so whatever.
This commit is contained in:
Ryan Houdek 2015-05-31 22:03:36 -05:00
parent da97d77e08
commit 5ed3a5de22
2 changed files with 3 additions and 4 deletions

View File

@ -162,9 +162,9 @@ u32 JitArm64::EmitBackpatchRoutine(ARM64XEmitter* emit, u32 flags, bool fastmem,
trouble_offset = (emit->GetCodePtr() - code_base) / 4; trouble_offset = (emit->GetCodePtr() - code_base) / 4;
if (flags & BackPatchInfo::FLAG_SIZE_F32) if (flags & BackPatchInfo::FLAG_SIZE_F32)
{ {
float_emit.LD1R(32, RS, addr); float_emit.LD1R(32, EncodeRegToDouble(RS), addr);
float_emit.REV64(8, RS, RS); float_emit.REV32(8, EncodeRegToDouble(RS), EncodeRegToDouble(RS));
float_emit.FCVTL(64, RS, RS); float_emit.FCVTL(64, EncodeRegToDouble(RS), EncodeRegToDouble(RS));
} }
else else
{ {

View File

@ -21,7 +21,6 @@ void JitArm64::psq_l(UGeckoInstruction inst)
INSTRUCTION_START INSTRUCTION_START
JITDISABLE(bJITLoadStorePairedOff); JITDISABLE(bJITLoadStorePairedOff);
FALLBACK_IF(jo.memcheck || !jo.fastmem); FALLBACK_IF(jo.memcheck || !jo.fastmem);
FALLBACK_IF(true);
// X30 is LR // X30 is LR
// X0 contains the scale // X0 contains the scale