mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 07:39:45 -06:00
Jit64: Don't use PEXT in DoubleToSingle on AMD Zen
This was causing severe slowdown in some games.
This commit is contained in:
@ -68,7 +68,7 @@ void CommonAsmRoutines::GenConvertDoubleToSingle()
|
|||||||
|
|
||||||
// Don't Denormalize
|
// Don't Denormalize
|
||||||
|
|
||||||
if (cpu_info.bBMI2)
|
if (cpu_info.bFastBMI2)
|
||||||
{
|
{
|
||||||
// Extract bits 0-1 and 5-34
|
// Extract bits 0-1 and 5-34
|
||||||
MOV(64, R(RSCRATCH), Imm64(0xc7ffffffe0000000));
|
MOV(64, R(RSCRATCH), Imm64(0xc7ffffffe0000000));
|
||||||
|
Reference in New Issue
Block a user