1999-07-14 00:54:57 +00:00
|
|
|
/* s_nearbyintl.c -- long double version of s_nearbyint.c.
|
|
|
|
* Conversion to IEEE quad long double by Jakub Jelinek, jj@ultra.linux.cz.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
|
|
|
* software is freely granted, provided that this notice
|
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nearbyintl(x)
|
|
|
|
* Return x rounded to integral value according to the prevailing
|
|
|
|
* rounding mode.
|
|
|
|
* Method:
|
|
|
|
* Using floating addition.
|
|
|
|
* Exception:
|
|
|
|
* Inexact flag raised if x not equal to rintl(x).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fenv.h>
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math.h>
|
2018-05-11 15:11:38 +00:00
|
|
|
#include <math-barriers.h>
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math_private.h>
|
2017-10-06 17:45:05 +00:00
|
|
|
#include <libm-alias-ldouble.h>
|
2019-12-11 14:09:18 +00:00
|
|
|
#include <math-use-builtins.h>
|
1999-07-14 00:54:57 +00:00
|
|
|
|
2016-07-20 20:20:51 +00:00
|
|
|
_Float128 __nearbyintl(_Float128 x)
|
1999-07-14 00:54:57 +00:00
|
|
|
{
|
2019-12-11 14:09:18 +00:00
|
|
|
#if USE_NEARBYINTL_BUILTIN
|
|
|
|
return __builtin_nearbyintl (x);
|
|
|
|
#else
|
|
|
|
/* Use generic implementation. */
|
|
|
|
static const _Float128
|
|
|
|
TWO112[2] = {
|
|
|
|
L(5.19229685853482762853049632922009600E+33), /* 0x406F000000000000, 0 */
|
|
|
|
L(-5.19229685853482762853049632922009600E+33) /* 0xC06F000000000000, 0 */
|
|
|
|
};
|
1999-07-14 00:54:57 +00:00
|
|
|
fenv_t env;
|
|
|
|
int64_t i0,j0,sx;
|
2017-08-03 19:55:04 +00:00
|
|
|
uint64_t i1 __attribute__ ((unused));
|
2016-07-20 20:20:51 +00:00
|
|
|
_Float128 w,t;
|
1999-07-14 00:54:57 +00:00
|
|
|
GET_LDOUBLE_WORDS64(i0,i1,x);
|
2017-08-03 19:55:04 +00:00
|
|
|
sx = (((uint64_t)i0)>>63);
|
1999-07-14 00:54:57 +00:00
|
|
|
j0 = ((i0>>48)&0x7fff)-0x3fff;
|
2012-02-27 22:51:45 +00:00
|
|
|
if(j0<112) {
|
1999-07-14 00:54:57 +00:00
|
|
|
if(j0<0) {
|
|
|
|
feholdexcept (&env);
|
2017-09-28 01:59:02 +00:00
|
|
|
w = TWO112[sx] + math_opt_barrier (x);
|
1999-07-14 00:54:57 +00:00
|
|
|
t = w-TWO112[sx];
|
2013-05-19 18:40:25 +00:00
|
|
|
math_force_eval (t);
|
1999-07-14 00:54:57 +00:00
|
|
|
fesetenv (&env);
|
|
|
|
GET_LDOUBLE_MSW64(i0,t);
|
|
|
|
SET_LDOUBLE_MSW64(t,(i0&0x7fffffffffffffffLL)|(sx<<63));
|
|
|
|
return t;
|
|
|
|
}
|
2012-02-27 22:51:45 +00:00
|
|
|
} else {
|
1999-07-14 00:54:57 +00:00
|
|
|
if(j0==0x4000) return x+x; /* inf or NaN */
|
|
|
|
else return x; /* x is integral */
|
|
|
|
}
|
|
|
|
feholdexcept (&env);
|
2017-09-28 01:59:02 +00:00
|
|
|
w = TWO112[sx] + math_opt_barrier (x);
|
1999-07-14 00:54:57 +00:00
|
|
|
t = w-TWO112[sx];
|
2013-05-19 18:40:25 +00:00
|
|
|
math_force_eval (t);
|
1999-07-14 00:54:57 +00:00
|
|
|
fesetenv (&env);
|
|
|
|
return t;
|
2019-12-11 14:09:18 +00:00
|
|
|
#endif /* ! USE_NEARBYINTL_BUILTIN */
|
1999-07-14 00:54:57 +00:00
|
|
|
}
|
2017-10-06 17:45:05 +00:00
|
|
|
libm_alias_ldouble (__nearbyint, nearbyint)
|