2010-10-11 13:27:05 +00:00
|
|
|
/* Compute x * y + z as ternary operation.
|
2018-01-01 00:32:25 +00:00
|
|
|
Copyright (C) 2010-2018 Free Software Foundation, Inc.
|
2010-10-11 13:27:05 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Jakub Jelinek <jakub@redhat.com>, 2010.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2010-10-11 13:27:05 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <fenv.h>
|
|
|
|
#include <ieee754.h>
|
2018-05-11 15:11:38 +00:00
|
|
|
#include <math-barriers.h>
|
2011-10-18 19:11:31 +00:00
|
|
|
#include <math_private.h>
|
2017-10-03 21:01:33 +00:00
|
|
|
#include <libm-alias-float.h>
|
2010-10-11 13:27:05 +00:00
|
|
|
|
|
|
|
/* This implementation relies on double being more than twice as
|
|
|
|
precise as float and uses rounding to odd in order to avoid problems
|
|
|
|
with double rounding.
|
|
|
|
See a paper by Boldo and Melquiond:
|
|
|
|
http://www.lri.fr/~melquion/doc/08-tc.pdf */
|
|
|
|
|
|
|
|
float
|
|
|
|
__fmaf (float x, float y, float z)
|
|
|
|
{
|
|
|
|
fenv_t env;
|
2012-09-29 18:31:54 +00:00
|
|
|
|
2010-10-11 13:27:05 +00:00
|
|
|
/* Multiplication is always exact. */
|
|
|
|
double temp = (double) x * (double) y;
|
2012-09-29 18:31:54 +00:00
|
|
|
|
|
|
|
/* Ensure correct sign of an exact zero result by performing the
|
|
|
|
addition in the original rounding mode in that case. */
|
|
|
|
if (temp == -z)
|
|
|
|
return (float) temp + z;
|
|
|
|
|
2010-10-11 13:27:05 +00:00
|
|
|
union ieee754_double u;
|
2012-03-10 16:53:05 +00:00
|
|
|
|
|
|
|
libc_feholdexcept_setround (&env, FE_TOWARDZERO);
|
|
|
|
|
2010-10-11 13:27:05 +00:00
|
|
|
/* Perform addition with round to odd. */
|
|
|
|
u.d = temp + (double) z;
|
2012-06-01 19:02:21 +00:00
|
|
|
/* Ensure the addition is not scheduled after fetestexcept call. */
|
|
|
|
math_force_eval (u.d);
|
2012-03-10 16:53:05 +00:00
|
|
|
|
|
|
|
/* Reset rounding mode and test for inexact simultaneously. */
|
|
|
|
int j = libc_feupdateenv_test (&env, FE_INEXACT) != 0;
|
|
|
|
|
2010-10-14 02:27:03 +00:00
|
|
|
if ((u.ieee.mantissa1 & 1) == 0 && u.ieee.exponent != 0x7ff)
|
2012-03-10 16:53:05 +00:00
|
|
|
u.ieee.mantissa1 |= j;
|
|
|
|
|
2010-10-11 13:27:05 +00:00
|
|
|
/* And finally truncation with round to nearest. */
|
|
|
|
return (float) u.d;
|
|
|
|
}
|
|
|
|
#ifndef __fmaf
|
2017-10-03 21:01:33 +00:00
|
|
|
libm_alias_float (__fma, fma)
|
2010-10-11 13:27:05 +00:00
|
|
|
#endif
|