From d9bbe1fa61652444c0ed211a8fa1d76a331e419c Mon Sep 17 00:00:00 2001 From: Mitch Richters Date: Mon, 1 Nov 2021 23:57:40 +1100 Subject: [PATCH] - `xs_Float.h`: Make all inlines return an unsigned value, and change previous unsigned inlines to signed. * Removes situations where calling `xs_CRoundToUInt()` and other unsigned inlines would go through extra casts (`uint32_t` > `int32_t` > `uint32_t`). * Because the native data in the `_xs_doubleints` struct is a union of a double and `uint32_t`, it makes sense to do everything unsigned and convert to `int32_t` if needed instead. --- source/common/thirdparty/xs_Float.h | 65 +++++++++++++---------------- 1 file changed, 29 insertions(+), 36 deletions(-) diff --git a/source/common/thirdparty/xs_Float.h b/source/common/thirdparty/xs_Float.h index 355f8fce6..2692d0de2 100644 --- a/source/common/thirdparty/xs_Float.h +++ b/source/common/thirdparty/xs_Float.h @@ -72,14 +72,18 @@ constexpr real64 _xs_doublemagicroundeps = (.5f-_xs_doublemagicdelta); // Inline implementation // ==================================================================================================================== // ==================================================================================================================== -finline constexpr int32_t xs_CRoundToInt(real64 val, real64 dmr = _xs_doublemagic) +finline constexpr uint32_t xs_CRoundToUInt(real64 val, real64 dmr = _xs_doublemagic) { #if _xs_DEFAULT_CONVERSION==0 return _xs_doubleints(val + dmr).getint(); #else - return int32_t(floor(val+.5)); + return uint32_t(floor(val+.5)); #endif } +finline constexpr int32_t xs_CRoundToInt(real64 val) +{ + return (int32_t)xs_CRoundToUInt(val); +} // ==================================================================================================================== @@ -110,46 +114,61 @@ finline constexpr int32_t xs_ToInt(real64 val, real64 dme = -_xs_doublemagicroun // ==================================================================================================================== -finline constexpr int32_t xs_FloorToInt(real64 val, real64 dme = _xs_doublemagicroundeps) +finline constexpr uint32_t xs_FloorToUInt(real64 val, real64 dme = _xs_doublemagicroundeps) { #if _xs_DEFAULT_CONVERSION==0 - return xs_CRoundToInt (val - dme); + return xs_CRoundToUInt (val - dme); #else return floor(val); #endif } +finline constexpr int32_t xs_FloorToInt(real64 val) +{ + return (int32_t)xs_FloorToUInt(val); +} + // ==================================================================================================================== -finline constexpr int32_t xs_CeilToInt(real64 val, real64 dme = _xs_doublemagicroundeps) +finline constexpr uint32_t xs_CeilToUInt(real64 val, real64 dme = _xs_doublemagicroundeps) { #if _xs_DEFAULT_CONVERSION==0 - return xs_CRoundToInt (val + dme); + return xs_CRoundToUInt (val + dme); #else return ceil(val); #endif } +finline constexpr int32_t xs_CeilToInt(real64 val) +{ + return (int32_t)xs_CeilToUInt(val); +} + // ==================================================================================================================== -finline constexpr int32_t xs_RoundToInt(real64 val) +finline constexpr uint32_t xs_RoundToUInt(real64 val) { #if _xs_DEFAULT_CONVERSION==0 // Yes, it is important that two fadds be generated, so you cannot override the dmr // passed to xs_CRoundToInt with _xs_doublemagic + _xs_doublemagicdelta. If you do, // you'll end up with Banker's Rounding again. - return xs_CRoundToInt (val + _xs_doublemagicdelta); + return xs_CRoundToUInt (val + _xs_doublemagicdelta); #else return floor(val+.5); #endif } +finline constexpr int32_t xs_RoundToInt(real64 val) +{ + return (int32_t)xs_RoundToUInt(val); +} + // ==================================================================================================================== finline constexpr int32_t xs_ToFixed(int32_t n, real64 val) { #if _xs_DEFAULT_CONVERSION==0 - return xs_CRoundToInt(val, _xs_doublemagic/(1<