dolphin/Source/UnitTests/Core/PowerPC
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
..
Jit64Common UnitTests: Declare as CPU thread when using CPUThreadConfigCallback 2023-08-17 19:19:25 +02:00
JitArm64 JitArm64: Use LSL+CLS for classifying floats 2023-11-28 18:30:45 +01:00
DivUtilsTest.cpp treewide: convert GPLv2+ license info to SPDX tags 2021-07-05 04:35:56 +02:00
TestValues.h treewide: convert GPLv2+ license info to SPDX tags 2021-07-05 04:35:56 +02:00