This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: generic fabs implementation


On Tue, 19 May 2015, Wilco Dijkstra wrote:

> > I believe doing this is safe (in that a proper inline expansion will be
> > generated, by bit-fiddling if needed) *except for the ldbl-128ibm version
> > of fabsl* (where fabs isn't simply a matter of clearing one bit, and GCC
> > doesn't know how to do it correctly inline for soft-float / e500 - see GCC
> > bug 29253 and the corresponding -fno-builtin-fabsl in
> > sysdeps/powerpc/nofpu/Makefile).
> 
> OK, so I'll only do float and double. It seems 128-bit is usually emulated
> so the current implementation is already optimal.

I think S/390 uses hardware 128-bit.

> > However, there might be cases where GCC generates calls to an
> > absolute-value instruction that fails to clear the sign bit of a NaN, or
> > predates IEEE 754-2008 and raises "invalid" for a signaling NaN.  At least
> > the former would be a clear GCC bug (on MIPS, for example, GCC makes sure
> > to avoid abs instructions unless -mabs=2008 or -ffinite-math-only, for
> > that reason), but it's something to watch out for.
> 
> If GCC implements fabs incorrectly then any code that uses fabs (including
> libm which calls fabs in many places) would fail today. So the above patch
> cannot introduce any new failures. I'll send out my patch at later date.

I don't think any libm code depends on the handling of signs of NaNs from 
GCC __builtin_fabs, or on what GCC __builtin_fabs does with sNaNs (it does 
depend on handling of signed zeroes, hence the -fno-builtin-fabsl for 
powerpc-nofpu).  The libm testsuite does verify the signs of NaNs from 
libm fabs (so if GCC gets it wrong then that would be visible as libm test 
failures for fabs), but not sNaN handling (Thomas proposed sNaN tests in 
<https://sourceware.org/ml/libc-ports/2013-04/msg00008.html>, but those 
would need a major rework to go in now).

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]