mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
x86 jit: Hack around running out of regs on x86-32 with SIMD
This commit is contained in:
parent
e3a81f4346
commit
ea6371921a
@ -2672,7 +2672,11 @@ void Jit::Comp_Vmmul(MIPSOpcode op) {
|
||||
// Map the D column.
|
||||
u8 dcol[4];
|
||||
GetVectorRegs(dcol, vsz, dcols[i]);
|
||||
#ifndef _M_X64
|
||||
fpr.MapRegsVS(dcol, vsz, MAP_DIRTY | MAP_NOINIT | MAP_NOLOCK);
|
||||
#else
|
||||
fpr.MapRegsVS(dcol, vsz, MAP_DIRTY | MAP_NOINIT);
|
||||
#endif
|
||||
MOVAPS(fpr.VS(dcol), XMM1);
|
||||
}
|
||||
fpr.ReleaseSpillLocks();
|
||||
|
Loading…
Reference in New Issue
Block a user