2021-04-25 09:30:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
2021-05-03 20:08:56 +00:00
|
|
|
#include <cstddef>
|
2021-04-25 09:30:43 +00:00
|
|
|
#include <cstring>
|
|
|
|
#include <common/extended_types.h>
|
|
|
|
|
|
|
|
|
|
|
|
/// Allows to check the internals of IEEE-754 floating point number.
|
|
|
|
|
|
|
|
template <typename T> struct FloatTraits;
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct FloatTraits<float>
|
|
|
|
{
|
|
|
|
using UInt = uint32_t;
|
|
|
|
static constexpr size_t bits = 32;
|
|
|
|
static constexpr size_t exponent_bits = 8;
|
|
|
|
static constexpr size_t mantissa_bits = bits - exponent_bits - 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct FloatTraits<double>
|
|
|
|
{
|
|
|
|
using UInt = uint64_t;
|
|
|
|
static constexpr size_t bits = 64;
|
|
|
|
static constexpr size_t exponent_bits = 11;
|
|
|
|
static constexpr size_t mantissa_bits = bits - exponent_bits - 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/// x = sign * (2 ^ normalized_exponent) * (1 + mantissa * 2 ^ -mantissa_bits)
|
|
|
|
/// x = sign * (2 ^ normalized_exponent + mantissa * 2 ^ (normalized_exponent - mantissa_bits))
|
|
|
|
template <typename T>
|
|
|
|
struct DecomposedFloat
|
|
|
|
{
|
|
|
|
using Traits = FloatTraits<T>;
|
|
|
|
|
|
|
|
DecomposedFloat(T x)
|
|
|
|
{
|
|
|
|
memcpy(&x_uint, &x, sizeof(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
typename Traits::UInt x_uint;
|
|
|
|
|
2021-05-02 21:52:59 +00:00
|
|
|
bool is_negative() const
|
2021-04-25 09:30:43 +00:00
|
|
|
{
|
|
|
|
return x_uint >> (Traits::bits - 1);
|
|
|
|
}
|
|
|
|
|
2021-05-02 21:52:59 +00:00
|
|
|
/// Returns 0 for both +0. and -0.
|
|
|
|
int sign() const
|
|
|
|
{
|
|
|
|
return (exponent() == 0 && mantissa() == 0)
|
|
|
|
? 0
|
|
|
|
: (is_negative()
|
|
|
|
? -1
|
|
|
|
: 1);
|
|
|
|
}
|
|
|
|
|
2021-04-25 09:30:43 +00:00
|
|
|
uint16_t exponent() const
|
|
|
|
{
|
|
|
|
return (x_uint >> (Traits::mantissa_bits)) & (((1ull << (Traits::exponent_bits + 1)) - 1) >> 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int16_t normalized_exponent() const
|
|
|
|
{
|
|
|
|
return int16_t(exponent()) - ((1ull << (Traits::exponent_bits - 1)) - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t mantissa() const
|
|
|
|
{
|
|
|
|
return x_uint & ((1ull << Traits::mantissa_bits) - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t mantissa_with_sign() const
|
|
|
|
{
|
2021-05-02 21:52:59 +00:00
|
|
|
return is_negative() ? -mantissa() : mantissa();
|
2021-04-25 09:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// NOTE Probably floating point instructions can be better.
|
|
|
|
bool is_integer_in_representable_range() const
|
|
|
|
{
|
|
|
|
return x_uint == 0
|
|
|
|
|| (normalized_exponent() >= 0 /// The number is not less than one
|
|
|
|
/// The number is inside the range where every integer has exact representation in float
|
|
|
|
&& normalized_exponent() <= static_cast<int16_t>(Traits::mantissa_bits)
|
|
|
|
/// After multiplying by 2^exp, the fractional part becomes zero, means the number is integer
|
|
|
|
&& ((mantissa() & ((1ULL << (Traits::mantissa_bits - normalized_exponent())) - 1)) == 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-05-03 20:08:56 +00:00
|
|
|
/// Compare float with integer of arbitrary width (both signed and unsigned are supported). Assuming two's complement arithmetic.
|
|
|
|
/// Infinities are compared correctly. NaNs are treat similarly to infinities, so they can be less than all numbers.
|
|
|
|
/// (note that we need total order)
|
2021-04-25 09:30:43 +00:00
|
|
|
template <typename Int>
|
2021-05-02 21:52:59 +00:00
|
|
|
int compare(Int rhs)
|
2021-04-25 09:30:43 +00:00
|
|
|
{
|
|
|
|
if (rhs == 0)
|
|
|
|
return sign();
|
|
|
|
|
2021-05-02 21:52:59 +00:00
|
|
|
/// Different signs
|
|
|
|
if (is_negative() && rhs > 0)
|
|
|
|
return -1;
|
|
|
|
if (!is_negative() && rhs < 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/// Fractional number with magnitude less than one
|
2021-04-25 09:30:43 +00:00
|
|
|
if (normalized_exponent() < 0)
|
|
|
|
{
|
2021-05-02 21:52:59 +00:00
|
|
|
if (!is_negative())
|
|
|
|
return rhs > 0 ? -1 : 1;
|
2021-04-25 09:30:43 +00:00
|
|
|
else
|
2021-05-02 21:52:59 +00:00
|
|
|
return rhs >= 0 ? -1 : 1;
|
2021-04-25 09:30:43 +00:00
|
|
|
}
|
|
|
|
|
2021-05-08 23:25:36 +00:00
|
|
|
/// The case of the most negative integer
|
|
|
|
if constexpr (is_signed_v<Int>)
|
2021-05-02 21:52:59 +00:00
|
|
|
{
|
2021-05-08 23:25:36 +00:00
|
|
|
if (rhs == std::numeric_limits<Int>::lowest())
|
2021-05-02 21:52:59 +00:00
|
|
|
{
|
2021-05-08 23:25:36 +00:00
|
|
|
assert(is_negative());
|
|
|
|
|
|
|
|
if (normalized_exponent() < static_cast<int16_t>(8 * sizeof(Int) - is_signed_v<Int>))
|
|
|
|
return 1;
|
|
|
|
if (normalized_exponent() > static_cast<int16_t>(8 * sizeof(Int) - is_signed_v<Int>))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (mantissa() == 0)
|
2021-05-02 21:52:59 +00:00
|
|
|
return 0;
|
2021-05-08 23:25:36 +00:00
|
|
|
else
|
|
|
|
return -1;
|
2021-05-02 21:52:59 +00:00
|
|
|
}
|
2021-05-08 23:25:36 +00:00
|
|
|
}
|
2021-05-02 21:52:59 +00:00
|
|
|
|
2021-05-08 23:25:36 +00:00
|
|
|
/// Too large number: abs(float) > abs(rhs). Also the case with infinities and NaN.
|
|
|
|
if (normalized_exponent() >= static_cast<int16_t>(8 * sizeof(Int) - is_signed_v<Int>))
|
2021-05-02 21:52:59 +00:00
|
|
|
return is_negative() ? -1 : 1;
|
2021-04-25 09:30:43 +00:00
|
|
|
|
|
|
|
using UInt = make_unsigned_t<Int>;
|
|
|
|
UInt uint_rhs = rhs < 0 ? -rhs : rhs;
|
|
|
|
|
2021-05-02 21:52:59 +00:00
|
|
|
/// Smaller octave: abs(rhs) < abs(float)
|
2021-04-25 09:30:43 +00:00
|
|
|
if (uint_rhs < (static_cast<UInt>(1) << normalized_exponent()))
|
2021-05-02 21:52:59 +00:00
|
|
|
return is_negative() ? -1 : 1;
|
2021-04-25 09:30:43 +00:00
|
|
|
|
2021-05-02 21:52:59 +00:00
|
|
|
/// Larger octave: abs(rhs) > abs(float)
|
|
|
|
if (normalized_exponent() + 1 < static_cast<int16_t>(8 * sizeof(Int) - is_signed_v<Int>)
|
2021-04-25 09:30:43 +00:00
|
|
|
&& uint_rhs >= (static_cast<UInt>(1) << (normalized_exponent() + 1)))
|
2021-05-02 21:52:59 +00:00
|
|
|
return is_negative() ? 1 : -1;
|
2021-04-25 09:30:43 +00:00
|
|
|
|
|
|
|
/// The same octave
|
|
|
|
/// uint_rhs == 2 ^ normalized_exponent + mantissa * 2 ^ (normalized_exponent - mantissa_bits)
|
|
|
|
|
2021-05-02 21:52:59 +00:00
|
|
|
bool large_and_always_integer = normalized_exponent() >= static_cast<int16_t>(Traits::mantissa_bits);
|
|
|
|
|
|
|
|
typename Traits::UInt a = large_and_always_integer
|
|
|
|
? mantissa() << (normalized_exponent() - Traits::mantissa_bits)
|
|
|
|
: mantissa() >> (Traits::mantissa_bits - normalized_exponent());
|
|
|
|
|
2021-04-25 09:30:43 +00:00
|
|
|
typename Traits::UInt b = uint_rhs - (static_cast<UInt>(1) << normalized_exponent());
|
|
|
|
|
|
|
|
if (a < b)
|
2021-05-02 21:52:59 +00:00
|
|
|
return is_negative() ? 1 : -1;
|
2021-04-25 09:30:43 +00:00
|
|
|
if (a > b)
|
2021-05-02 21:52:59 +00:00
|
|
|
return is_negative() ? -1 : 1;
|
2021-04-25 09:30:43 +00:00
|
|
|
|
2021-05-02 21:52:59 +00:00
|
|
|
/// Float has no fractional part means that the numbers are equal.
|
|
|
|
if (large_and_always_integer || (mantissa() & ((1ULL << (Traits::mantissa_bits - normalized_exponent())) - 1)) == 0)
|
|
|
|
return 0;
|
2021-04-25 09:30:43 +00:00
|
|
|
else
|
2021-05-02 21:52:59 +00:00
|
|
|
/// Float has fractional part means its abs value is larger.
|
|
|
|
return is_negative() ? -1 : 1;
|
2021-04-25 09:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename Int>
|
2021-05-02 21:52:59 +00:00
|
|
|
bool equals(Int rhs)
|
2021-04-25 09:30:43 +00:00
|
|
|
{
|
2021-05-02 21:52:59 +00:00
|
|
|
return compare(rhs) == 0;
|
2021-04-25 09:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Int>
|
2021-05-02 21:52:59 +00:00
|
|
|
bool notEquals(Int rhs)
|
|
|
|
{
|
|
|
|
return compare(rhs) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Int>
|
|
|
|
bool less(Int rhs)
|
2021-04-25 09:30:43 +00:00
|
|
|
{
|
2021-05-02 21:52:59 +00:00
|
|
|
return compare(rhs) < 0;
|
2021-04-25 09:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Int>
|
|
|
|
bool greater(Int rhs)
|
|
|
|
{
|
2021-05-02 21:52:59 +00:00
|
|
|
return compare(rhs) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Int>
|
|
|
|
bool lessOrEquals(Int rhs)
|
|
|
|
{
|
|
|
|
return compare(rhs) <= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Int>
|
|
|
|
bool greaterOrEquals(Int rhs)
|
|
|
|
{
|
|
|
|
return compare(rhs) >= 0;
|
2021-04-25 09:30:43 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
using DecomposedFloat64 = DecomposedFloat<double>;
|
|
|
|
using DecomposedFloat32 = DecomposedFloat<float>;
|