Implement proper fmal for ldbl-128ibm (bug 13304).

System Internals / glibc - Joseph Myers [codesourcery.com] - 19 May 2016 15:10 UTC

ldbl-128ibm had an implementation of fmal that just did (x * y) + z in most cases, with no attempt at actually being a fused operation.

This patch replaces it with a genuine fused operation. It is not necessarily correctly rounding, but should produce a result at least as accurate as the long double arithmetic operations in libgcc, which I think is all that can reasonably be expected for such a non-IEEE format where arithmetic is approximate rather than rounded according to any particular rule for determining the exact result. Like the libgcc arithmetic, it may produce spurious overflow and underflow results, and it falls back to the libgcc multiplication in the case of (finite, finite, zero).

This concludes the fixes for bug 13304; any subsequently found fma issues should go in separate Bugzilla bugs. Various other pieces of bug 13304 were fixed in past releases over the past several years.

Tested for powerpc.

[BZ #13304]
- sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Include , , and . (add_split): New function. (mul_split): Likewise. (ext_val): New typedef. (store_ext_val): New function. (mul_ext_val): New function. (compare): New function. (add_split_ext): New function. (__fmal): After checking for Inf, NaN and zero, compute result as an exact sum of scaled double values in round-to-nearest before adding those up and adjusting for other rounding modes.
- math/auto-libm-test-in: Remove xfail-rounding:ldbl-128ibm from tests of fma.
- math/auto-libm-test-out: Regenerated.

ffe9aaf Implement proper fmal for ldbl-128ibm (bug 13304).
ChangeLog | 19 +
math/auto-libm-test-in | 17 +-
math/auto-libm-test-out |12256 +++++++++++++++++-----------------
sysdeps/ieee754/ldbl-128ibm/s_fmal.c | 260 +-
4 files changed, 6404 insertions(+), 6148 deletions(-)

Upstream: sourceware.org


  • Share