diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2022-11-07 14:18:57 +0100 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2022-11-08 16:53:40 +0100 |
commit | 3e0ab430c0441ea3921e8b3a3987f73156412088 (patch) | |
tree | 42fda900a29c88cb34c1be2422ceb431fe89a4ed /gcc/real.h | |
parent | 7899582a059a9d8c25bfff305cd236d219dc4f20 (diff) | |
download | gcc-3e0ab430c0441ea3921e8b3a3987f73156412088.zip gcc-3e0ab430c0441ea3921e8b3a3987f73156412088.tar.gz gcc-3e0ab430c0441ea3921e8b3a3987f73156412088.tar.bz2 |
Provide normalized and denormal format version of real_isdenormal.
Implement a variant of real_isdenormal() to be used within real.cc
where the argument is known to be in denormal format. Rewrite
real_isdenormal() for use outside of real.cc where the argument is
known to be normalized.
gcc/ChangeLog:
* real.cc (real_isdenormal): New.
(encode_ieee_single): Call real_isdenormal.
(encode_ieee_double): Same.
(encode_ieee_extended): Same.
(encode_ieee_quad): Same.
(encode_ieee_half): Same.
(encode_arm_bfloat_half): Same.
* real.h (real_isdenormal): Add mode argument. Rewrite for
normalized values.
* value-range.cc (frange::flush_denormals_to_zero): Pass mode to
real_isdenormal.
Diffstat (limited to 'gcc/real.h')
-rw-r--r-- | gcc/real.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -286,11 +286,12 @@ extern bool real_isnan (const REAL_VALUE_TYPE *); /* Determine whether a floating-point value X is a signaling NaN. */ extern bool real_issignaling_nan (const REAL_VALUE_TYPE *); -/* Determine whether a floating-point value X is a denormal. */ +/* Determine whether floating-point value R is a denormal. This + function is only valid for normalized values. */ inline bool -real_isdenormal (const REAL_VALUE_TYPE *r) +real_isdenormal (const REAL_VALUE_TYPE *r, machine_mode mode) { - return r->cl == rvc_normal && (r->sig[SIGSZ-1] & SIG_MSB) == 0; + return r->cl == rvc_normal && REAL_EXP (r) < REAL_MODE_FORMAT (mode)->emin; } /* Determine whether a floating-point value X is finite. */ |