dolphin/Source/Core
Sintendo 31755bc13a Jit64: fselx - Optimize SSE4.1 packed
Pretty much the same optimization we did for AVX, although slightly more
constrained because we're stuck with the two-operand instruction where
destination and source have to match.

We could also specialize the case where registers b, c, and d are all
distinct, but I decided against it since I couldn't find any game that
does this.

Before:
66 0F 57 C0          xorpd       xmm0,xmm0
66 41 0F C2 C1 06    cmpnlepd    xmm0,xmm9
41 0F 28 CE          movaps      xmm1,xmm14
66 41 0F 38 15 CC    blendvpd    xmm1,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
66 45 0F 38 15 F4    blendvpd    xmm14,xmm12,xmm0
2020-07-29 17:28:48 +02:00
..
AudioCommon Externals: Fix OpenAL include directory. 2020-04-29 13:07:51 +02:00
Common Merge pull request #8905 from JosJuice/jni-encoding 2020-07-18 22:13:14 -04:00
Core Jit64: fselx - Optimize SSE4.1 packed 2020-07-29 17:28:48 +02:00
DiscIO DiscIO: fix -Wreorder warning 2020-07-24 17:41:37 +01:00
DolphinNoGUI Common: Rename UTF16ToUTF8 2020-07-08 14:51:35 +02:00
DolphinQt DolphinQt: fix -Wunused-variable warning 2020-07-24 17:44:32 +01:00
InputCommon Merge pull request #8905 from JosJuice/jni-encoding 2020-07-18 22:13:14 -04:00
MacUpdater Reformat repo to clang-format 7.0 rules 2019-05-06 18:48:04 +00:00
UICommon DolphinQt: Show WAD as "WAD" instead of "" in file format column 2020-07-19 21:30:48 +02:00
UpdaterCommon Fix windows build system. 2020-04-29 12:56:52 +02:00
VideoBackends Merge pull request #8905 from JosJuice/jni-encoding 2020-07-18 22:13:14 -04:00
VideoCommon DolphinQt / VideoCommon: Add additional texture dumping options. Specifically, this enables users to choose whether to dump mip maps, base level textures, or both. 2020-07-22 19:30:27 -05:00
WinUpdater Common: Rename UTF16ToUTF8 2020-07-08 14:51:35 +02:00
CMakeLists.txt WinUpdater: Add CMakeLists.txt 2019-05-08 23:59:04 +02:00