Files
dolphin/Source/Core/Core
Sintendo afb86a12ab Jit64: fselx - Optimize AVX packed
For the packed variant, we can skip the final MOVAPS and write the
result directly into the destination register.

Before:
66 0F 57 C0          xorpd       xmm0,xmm0
66 41 0F C2 C1 06    cmpnlepd    xmm0,xmm9
C4 C3 09 4B CC 00    vblendvpd   xmm1,xmm14,xmm12,xmm0
44 0F 28 F1          movaps      xmm14,xmm1

After:
66 0F 57 C0          xorpd       xmm0,xmm0
66 41 0F C2 C1 06    cmpnlepd    xmm0,xmm9
C4 43 09 4B F4 00    vblendvpd   xmm14,xmm14,xmm12,xmm0
2020-07-29 17:06:52 +02:00
..
2020-05-03 20:48:30 +04:00
2020-07-18 18:29:16 -05:00
2020-05-24 15:51:52 +01:00
2020-05-03 20:55:09 +04:00
2020-07-18 18:29:16 -05:00
2020-07-16 19:03:54 -04:00
2020-07-18 18:29:16 -05:00
2019-07-18 22:29:04 +02:00