dolphin/Source/UnitTests/Core
JosJuice 255ee3fdce JitArm64: Use LSL+CLS for classifying floats
This is a little trick I came up with that lets us restructure our float
classification code so we can exit earlier when the float is normal,
which is the case more often than not.

First we shift left by 1 to get rid of the sign bit, and then we count
the number of leading sign bits. If the result is less than 10 (for
doubles) or 7 (for floats), the float is normal. This is because, if the
float isn't normal, the exponent is either all zeroes or all ones.
2023-11-28 18:30:45 +01:00
..
DSP UnitTests: Fix warnings from HermesText 2022-07-26 11:52:31 -07:00
IOS Skylanders: Improve figure data view and generation 2023-11-05 18:06:10 +01:00
PowerPC JitArm64: Use LSL+CLS for classifying floats 2023-11-28 18:30:45 +01:00
CMakeLists.txt Remove _M_X86 in favour of _M_X86_64 2023-11-28 23:03:20 +11:00
CoreTimingTest.cpp PowerPC: Refactor to class, move to System. 2023-04-09 21:48:37 +02:00
MMIOTest.cpp HW: Pass System to MMIO handlers. 2022-11-23 05:52:21 +01:00
PageFaultTest.cpp PageFaultTest: Use GTEST_SKIP instead of early return 2023-08-29 12:24:11 -07:00