mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 05:45:36 +00:00
softfloat: make NO_SIGNALING_NANS runtime property
target/xtensa, the only user of NO_SIGNALING_NANS macro has FPU implementations with and without the corresponding property. With NO_SIGNALING_NANS being a macro they cannot be a part of the same QEMU executable. Replace macro with new property in float_status to allow cores with different FPU implementations coexist. Backports cc43c6925113c5bc8f1a0205375931d2e4807c99
This commit is contained in:
parent
3e5aa58139
commit
db780eff66
|
@ -79,12 +79,18 @@ this code that are retained.
|
||||||
* version 2 or later. See the COPYING file in the top-level directory.
|
* version 2 or later. See the COPYING file in the top-level directory.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Define for architectures which deviate from IEEE in not supporting
|
/*
|
||||||
|
* Define whether architecture deviates from IEEE in not supporting
|
||||||
* signaling NaNs (so all NaNs are treated as quiet).
|
* signaling NaNs (so all NaNs are treated as quiet).
|
||||||
*/
|
*/
|
||||||
|
static inline bool no_signaling_nans(float_status *status)
|
||||||
|
{
|
||||||
#if defined(TARGET_XTENSA)
|
#if defined(TARGET_XTENSA)
|
||||||
#define NO_SIGNALING_NANS 1
|
return status->no_signaling_nans;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/* Define how the architecture discriminates signaling NaNs.
|
/* Define how the architecture discriminates signaling NaNs.
|
||||||
* This done with the most significant bit of the fraction.
|
* This done with the most significant bit of the fraction.
|
||||||
|
@ -111,12 +117,12 @@ static inline bool snan_bit_is_one(float_status *status)
|
||||||
|
|
||||||
static bool parts_is_snan_frac(uint64_t frac, float_status *status)
|
static bool parts_is_snan_frac(uint64_t frac, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return false;
|
return false;
|
||||||
#else
|
} else {
|
||||||
bool msb = extract64(frac, DECOMPOSED_BINARY_POINT - 1, 1);
|
bool msb = extract64(frac, DECOMPOSED_BINARY_POINT - 1, 1);
|
||||||
return msb == snan_bit_is_one(status);
|
return msb == snan_bit_is_one(status);
|
||||||
#endif
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -170,9 +176,8 @@ static FloatParts parts_default_nan(float_status *status)
|
||||||
|
|
||||||
static FloatParts parts_silence_nan(FloatParts a, float_status *status)
|
static FloatParts parts_silence_nan(FloatParts a, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
g_assert(!no_signaling_nans(status));
|
||||||
g_assert_not_reached();
|
#if defined(TARGET_HPPA)
|
||||||
#elif defined(TARGET_HPPA)
|
|
||||||
a.frac &= ~(1ULL << (DECOMPOSED_BINARY_POINT - 1));
|
a.frac &= ~(1ULL << (DECOMPOSED_BINARY_POINT - 1));
|
||||||
a.frac |= 1ULL << (DECOMPOSED_BINARY_POINT - 2);
|
a.frac |= 1ULL << (DECOMPOSED_BINARY_POINT - 2);
|
||||||
#else
|
#else
|
||||||
|
@ -247,16 +252,17 @@ typedef struct {
|
||||||
|
|
||||||
bool float16_is_quiet_nan(float16 a_, float_status *status)
|
bool float16_is_quiet_nan(float16 a_, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return float16_is_any_nan(a_);
|
return float16_is_any_nan(a_);
|
||||||
#else
|
|
||||||
uint16_t a = float16_val(a_);
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return (((a >> 9) & 0x3F) == 0x3E) && (a & 0x1FF);
|
|
||||||
} else {
|
} else {
|
||||||
return ((a & ~0x8000) >= 0x7C80);
|
uint16_t a = float16_val(a_);
|
||||||
|
if (snan_bit_is_one(status)) {
|
||||||
|
return (((a >> 9) & 0x3F) == 0x3E) && (a & 0x1FF);
|
||||||
|
} else {
|
||||||
|
|
||||||
|
return ((a >> 9) & 0x3F) == 0x3F;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -266,16 +272,16 @@ bool float16_is_quiet_nan(float16 a_, float_status *status)
|
||||||
|
|
||||||
bool float16_is_signaling_nan(float16 a_, float_status *status)
|
bool float16_is_signaling_nan(float16 a_, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return 0;
|
return 0;
|
||||||
#else
|
|
||||||
uint16_t a = float16_val(a_);
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return ((a & ~0x8000) >= 0x7C80);
|
|
||||||
} else {
|
} else {
|
||||||
return (((a >> 9) & 0x3F) == 0x3E) && (a & 0x1FF);
|
uint16_t a = float16_val(a_);
|
||||||
|
if (snan_bit_is_one(status)) {
|
||||||
|
return ((a >> 9) & 0x3F) == 0x3F;
|
||||||
|
} else {
|
||||||
|
return (((a >> 9) & 0x3F) == 0x3E) && (a & 0x1FF);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -285,16 +291,16 @@ bool float16_is_signaling_nan(float16 a_, float_status *status)
|
||||||
|
|
||||||
bool float32_is_quiet_nan(float32 a_, float_status *status)
|
bool float32_is_quiet_nan(float32 a_, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return float32_is_any_nan(a_);
|
return float32_is_any_nan(a_);
|
||||||
#else
|
|
||||||
uint32_t a = float32_val(a_);
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return (((a >> 22) & 0x1FF) == 0x1FE) && (a & 0x003FFFFF);
|
|
||||||
} else {
|
} else {
|
||||||
return ((uint32_t)(a << 1) >= 0xFF800000);
|
uint32_t a = float32_val(a_);
|
||||||
|
if (snan_bit_is_one(status)) {
|
||||||
|
return (((a >> 22) & 0x1FF) == 0x1FE) && (a & 0x003FFFFF);
|
||||||
|
} else {
|
||||||
|
return ((uint32_t)(a << 1) >= 0xFF800000);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -304,16 +310,16 @@ bool float32_is_quiet_nan(float32 a_, float_status *status)
|
||||||
|
|
||||||
bool float32_is_signaling_nan(float32 a_, float_status *status)
|
bool float32_is_signaling_nan(float32 a_, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return 0;
|
return 0;
|
||||||
#else
|
|
||||||
uint32_t a = float32_val(a_);
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return ((uint32_t)(a << 1) >= 0xFF800000);
|
|
||||||
} else {
|
} else {
|
||||||
return (((a >> 22) & 0x1FF) == 0x1FE) && (a & 0x003FFFFF);
|
uint32_t a = float32_val(a_);
|
||||||
|
if (snan_bit_is_one(status)) {
|
||||||
|
return ((uint32_t)(a << 1) >= 0xFF800000);
|
||||||
|
} else {
|
||||||
|
return (((a >> 22) & 0x1FF) == 0x1FE) && (a & 0x003FFFFF);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -631,17 +637,17 @@ static float32 propagateFloat32NaN(float32 a, float32 b, float_status *status)
|
||||||
|
|
||||||
bool float64_is_quiet_nan(float64 a_, float_status *status)
|
bool float64_is_quiet_nan(float64 a_, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return float64_is_any_nan(a_);
|
return float64_is_any_nan(a_);
|
||||||
#else
|
|
||||||
uint64_t a = float64_val(a_);
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return (((a >> 51) & 0xFFF) == 0xFFE)
|
|
||||||
&& (a & 0x0007FFFFFFFFFFFFULL);
|
|
||||||
} else {
|
} else {
|
||||||
return ((a << 1) >= 0xFFF0000000000000ULL);
|
uint64_t a = float64_val(a_);
|
||||||
|
if (snan_bit_is_one(status)) {
|
||||||
|
return (((a >> 51) & 0xFFF) == 0xFFE)
|
||||||
|
&& (a & 0x0007FFFFFFFFFFFFULL);
|
||||||
|
} else {
|
||||||
|
return ((a << 1) >= 0xFFF0000000000000ULL);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -651,17 +657,17 @@ bool float64_is_quiet_nan(float64 a_, float_status *status)
|
||||||
|
|
||||||
bool float64_is_signaling_nan(float64 a_, float_status *status)
|
bool float64_is_signaling_nan(float64 a_, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return 0;
|
return 0;
|
||||||
#else
|
|
||||||
uint64_t a = float64_val(a_);
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return ((a << 1) >= 0xFFF0000000000000ULL);
|
|
||||||
} else {
|
} else {
|
||||||
return (((a >> 51) & 0xFFF) == 0xFFE)
|
uint64_t a = float64_val(a_);
|
||||||
&& (a & UINT64_C(0x0007FFFFFFFFFFFF));
|
if (snan_bit_is_one(status)) {
|
||||||
|
return ((a << 1) >= 0xFFF0000000000000ULL);
|
||||||
|
} else {
|
||||||
|
return (((a >> 51) & 0xFFF) == 0xFFE)
|
||||||
|
&& (a & UINT64_C(0x0007FFFFFFFFFFFF));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -770,21 +776,21 @@ static float64 propagateFloat64NaN(float64 a, float64 b, float_status *status)
|
||||||
|
|
||||||
bool floatx80_is_quiet_nan(floatx80 a, float_status *status)
|
bool floatx80_is_quiet_nan(floatx80 a, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return floatx80_is_any_nan(a);
|
return floatx80_is_any_nan(a);
|
||||||
#else
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
uint64_t aLow;
|
|
||||||
|
|
||||||
aLow = a.low & ~0x4000000000000000ULL;
|
|
||||||
return ((a.high & 0x7FFF) == 0x7FFF)
|
|
||||||
&& (aLow << 1)
|
|
||||||
&& (a.low == aLow);
|
|
||||||
} else {
|
} else {
|
||||||
return ((a.high & 0x7FFF) == 0x7FFF)
|
if (snan_bit_is_one(status)) {
|
||||||
&& (UINT64_C(0x8000000000000000) <= ((uint64_t)(a.low << 1)));
|
uint64_t aLow;
|
||||||
|
|
||||||
|
aLow = a.low & ~0x4000000000000000ULL;
|
||||||
|
return ((a.high & 0x7FFF) == 0x7FFF)
|
||||||
|
&& (aLow << 1)
|
||||||
|
&& (a.low == aLow);
|
||||||
|
} else {
|
||||||
|
return ((a.high & 0x7FFF) == 0x7FFF)
|
||||||
|
&& (UINT64_C(0x8000000000000000) <= ((uint64_t)(a.low << 1)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -795,21 +801,21 @@ bool floatx80_is_quiet_nan(floatx80 a, float_status *status)
|
||||||
|
|
||||||
bool floatx80_is_signaling_nan(floatx80 a, float_status *status)
|
bool floatx80_is_signaling_nan(floatx80 a, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return 0;
|
return 0;
|
||||||
#else
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return ((a.high & 0x7FFF) == 0x7FFF)
|
|
||||||
&& ((a.low << 1) >= 0x8000000000000000ULL);
|
|
||||||
} else {
|
} else {
|
||||||
uint64_t aLow;
|
if (snan_bit_is_one(status)) {
|
||||||
|
return ((a.high & 0x7FFF) == 0x7FFF)
|
||||||
|
&& ((a.low << 1) >= 0x8000000000000000ULL);
|
||||||
|
} else {
|
||||||
|
uint64_t aLow;
|
||||||
|
|
||||||
aLow = a.low & ~UINT64_C(0x4000000000000000);
|
aLow = a.low & ~UINT64_C(0x4000000000000000);
|
||||||
return ((a.high & 0x7FFF) == 0x7FFF)
|
return ((a.high & 0x7FFF) == 0x7FFF)
|
||||||
&& (uint64_t)(aLow << 1)
|
&& (uint64_t)(aLow << 1)
|
||||||
&& (a.low == aLow);
|
&& (a.low == aLow);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -933,17 +939,17 @@ floatx80 propagateFloatx80NaN(floatx80 a, floatx80 b, float_status *status)
|
||||||
|
|
||||||
bool float128_is_quiet_nan(float128 a, float_status *status)
|
bool float128_is_quiet_nan(float128 a, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return float128_is_any_nan(a);
|
return float128_is_any_nan(a);
|
||||||
#else
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return (((a.high >> 47) & 0xFFFF) == 0xFFFE)
|
|
||||||
&& (a.low || (a.high & 0x00007FFFFFFFFFFFULL));
|
|
||||||
} else {
|
} else {
|
||||||
return ((a.high << 1) >= 0xFFFF000000000000ULL)
|
if (snan_bit_is_one(status)) {
|
||||||
&& (a.low || (a.high & 0x0000FFFFFFFFFFFFULL));
|
return (((a.high >> 47) & 0xFFFF) == 0xFFFE)
|
||||||
|
&& (a.low || (a.high & 0x00007FFFFFFFFFFFULL));
|
||||||
|
} else {
|
||||||
|
return ((a.high << 1) >= 0xFFFF000000000000ULL)
|
||||||
|
&& (a.low || (a.high & 0x0000FFFFFFFFFFFFULL));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -953,17 +959,17 @@ bool float128_is_quiet_nan(float128 a, float_status *status)
|
||||||
|
|
||||||
bool float128_is_signaling_nan(float128 a, float_status *status)
|
bool float128_is_signaling_nan(float128 a, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
return 0;
|
return 0;
|
||||||
#else
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return ((a.high << 1) >= 0xFFFF000000000000ULL)
|
|
||||||
&& (a.low || (a.high & 0x0000FFFFFFFFFFFFULL));
|
|
||||||
} else {
|
} else {
|
||||||
return (((a.high >> 47) & 0xFFFF) == 0xFFFE)
|
if (snan_bit_is_one(status)) {
|
||||||
&& (a.low || (a.high & UINT64_C(0x00007FFFFFFFFFFF)));
|
return ((a.high << 1) >= 0xFFFF000000000000ULL)
|
||||||
|
&& (a.low || (a.high & 0x0000FFFFFFFFFFFFULL));
|
||||||
|
} else {
|
||||||
|
return (((a.high >> 47) & 0xFFFF) == 0xFFFE)
|
||||||
|
&& (a.low || (a.high & UINT64_C(0x00007FFFFFFFFFFF)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
@ -973,16 +979,16 @@ bool float128_is_signaling_nan(float128 a, float_status *status)
|
||||||
|
|
||||||
float128 float128_silence_nan(float128 a, float_status *status)
|
float128 float128_silence_nan(float128 a, float_status *status)
|
||||||
{
|
{
|
||||||
#ifdef NO_SIGNALING_NANS
|
if (no_signaling_nans(status)) {
|
||||||
g_assert_not_reached();
|
g_assert_not_reached();
|
||||||
#else
|
|
||||||
if (snan_bit_is_one(status)) {
|
|
||||||
return float128_default_nan(status);
|
|
||||||
} else {
|
} else {
|
||||||
a.high |= UINT64_C(0x0000800000000000);
|
if (snan_bit_is_one(status)) {
|
||||||
return a;
|
return float128_default_nan(status);
|
||||||
|
} else {
|
||||||
|
a.high |= UINT64_C(0x0000800000000000);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
|
|
|
@ -95,6 +95,11 @@ static inline void set_snan_bit_is_one(bool val, float_status *status)
|
||||||
status->snan_bit_is_one = val;
|
status->snan_bit_is_one = val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void set_no_signaling_nans(bool val, float_status *status)
|
||||||
|
{
|
||||||
|
status->no_signaling_nans = val;
|
||||||
|
}
|
||||||
|
|
||||||
static inline bool get_float_detect_tininess(float_status *status)
|
static inline bool get_float_detect_tininess(float_status *status)
|
||||||
{
|
{
|
||||||
return status->tininess_before_rounding;
|
return status->tininess_before_rounding;
|
||||||
|
|
|
@ -165,8 +165,13 @@ typedef struct float_status {
|
||||||
/* should denormalised inputs go to zero and set the input_denormal flag? */
|
/* should denormalised inputs go to zero and set the input_denormal flag? */
|
||||||
bool flush_inputs_to_zero;
|
bool flush_inputs_to_zero;
|
||||||
bool default_nan_mode;
|
bool default_nan_mode;
|
||||||
/* not always used -- see snan_bit_is_one() in softfloat-specialize.h */
|
/*
|
||||||
|
* The flags below are not used on all specializations and may
|
||||||
|
* constant fold away (see snan_bit_is_one()/no_signalling_nans() in
|
||||||
|
* softfloat-specialize.inc.c)
|
||||||
|
*/
|
||||||
bool snan_bit_is_one;
|
bool snan_bit_is_one;
|
||||||
|
bool no_signaling_nans;
|
||||||
} float_status;
|
} float_status;
|
||||||
|
|
||||||
#endif /* SOFTFLOAT_TYPES_H */
|
#endif /* SOFTFLOAT_TYPES_H */
|
||||||
|
|
Loading…
Reference in a new issue