dolphin/Source/Core
Sintendo dfb32040bf Jit64: divwx - Micro-optimize division by 2
Prefer using eax to isolate the sign bit. This saves a byte when the
destination ends up as r8-15, because those require a REX prefix.

Before:
41 8B C5             mov         eax,r13d
41 C1 ED 1F          shr         r13d,1Fh
44 03 E8             add         r13d,eax
41 D1 FD             sar         r13d,1

After:
41 8B C5             mov         eax,r13d
C1 E8 1F             shr         eax,1Fh
44 03 E8             add         r13d,eax
41 D1 FD             sar         r13d,1
2021-11-03 21:01:41 +01:00
..
AudioCommon Convert LOG_TYPE and LOG_LEVELS to enum class 2021-10-24 11:48:36 -07:00
Common Convert LOG_TYPE and LOG_LEVELS to enum class 2021-10-24 11:48:36 -07:00
Core Jit64: divwx - Micro-optimize division by 2 2021-11-03 21:01:41 +01:00
DiscIO Merge pull request #10184 from JosJuice/android-riivolution 2021-10-31 23:44:54 +01:00
DolphinNoGUI Add option for Never Hide Mouse Cursor 2021-10-12 21:04:27 -04:00
DolphinQt RenderWidget: Change "imgui.h" to <imgui.h> 2021-10-29 12:05:21 -07:00
InputCommon Fix all uninitialized variable warnings (C26495) 2021-10-13 12:32:16 -07:00
MacUpdater
UICommon CommonPaths: Add a Riivolution subfolder in Load. 2021-10-24 00:09:06 +02:00
UpdaterCommon Fix all uninitialized variable warnings (C26495) 2021-10-13 12:32:16 -07:00
VideoBackends Convert LOG_TYPE and LOG_LEVELS to enum class 2021-10-24 11:48:36 -07:00
VideoCommon Externals: Update imgui to 1.85 2021-10-26 15:07:57 -07:00
WinUpdater
CMakeLists.txt
DolphinLib.ARM64.props
DolphinLib.props Create EnumMap 2021-10-24 11:48:36 -07:00
DolphinLib.vcxproj msbuild: Move DivUtils to DolphinLib.props 2021-08-31 22:48:07 -07:00
DolphinLib.vcxproj.user
DolphinLib.x64.props