]> git.ipfire.org Git - thirdparty/glibc.git/commit
Fix f64xdivf128, f64xmulf128 spurious underflows (bug 28358)
authorJoseph Myers <joseph@codesourcery.com>
Tue, 21 Sep 2021 21:54:37 +0000 (21:54 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 21 Sep 2021 21:54:37 +0000 (21:54 +0000)
commit1356f38df5be0776823eb2c40cc4e607b86b9680
tree52590f89365894844fac4bb98898e4725445c844
parent0b5ca7c3e551e5502f3be3b06453324fe8604e82
Fix f64xdivf128, f64xmulf128 spurious underflows (bug 28358)

As described in bug 28358, the round-to-odd computations used in the
libm functions that round their results to a narrower format can yield
spurious underflow exceptions in the following circumstances: the
narrowing only narrows the precision of the type and not the exponent
range (i.e., it's narrowing _Float128 to _Float64x on x86_64, x86 or
ia64), the architecture does after-rounding tininess detection (which
applies to all those architectures), the result is inexact, tiny
before rounding but not tiny after rounding (with the chosen rounding
mode) for _Float64x (which is possible for narrowing mul, div and fma,
not for narrowing add, sub or sqrt), so the underflow exception
resulting from the toward-zero computation in _Float128 is spurious
for _Float64x.

Fixed by making ROUND_TO_ODD call feclearexcept (FE_UNDERFLOW) in the
problem cases (as indicated by an extra argument to the macro); there
is never any need to preserve underflow exceptions from this part of
the computation, because the conversion of the round-to-odd value to
the narrower type will underflow in exactly the cases in which the
function should raise that exception, but it may be more efficient to
avoid the extra manipulation of the floating-point environment when
not needed.

Tested for x86_64 and x86, and with build-many-glibcs.py.
18 files changed:
math/auto-libm-test-in
math/auto-libm-test-out-narrow-div
math/auto-libm-test-out-narrow-mul
math/math-narrow.h
sysdeps/i386/fpu/s_f32xdivf64.c
sysdeps/i386/fpu/s_f32xmulf64.c
sysdeps/ieee754/dbl-64/s_fdiv.c
sysdeps/ieee754/dbl-64/s_fmul.c
sysdeps/ieee754/ldbl-128/s_ddivl.c
sysdeps/ieee754/ldbl-128/s_dmull.c
sysdeps/ieee754/ldbl-128/s_f64xdivf128.c
sysdeps/ieee754/ldbl-128/s_f64xmulf128.c
sysdeps/ieee754/ldbl-128/s_fdivl.c
sysdeps/ieee754/ldbl-128/s_fmull.c
sysdeps/ieee754/ldbl-96/s_ddivl.c
sysdeps/ieee754/ldbl-96/s_dmull.c
sysdeps/ieee754/ldbl-96/s_fdivl.c
sysdeps/ieee754/ldbl-96/s_fmull.c