1 /* Round to long int long double floating-point values.
2 IBM extended format long double version.
3 Copyright (C) 2006 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 #include <fenv_libc.h>
23 #include <math_ldbl_opt.h>
29 __lroundl (long double x
)
39 ldbl_unpack (x
, &xh
, &xl
);
41 /* Limit the range of values handled by the conversion to long.
42 We do this because we aren't sure whether that conversion properly
45 #if __LONG_MAX__ == 2147483647
47 ((__builtin_fabs (xh
) <= (double) __LONG_MAX__
+ 2), 1)
50 ((__builtin_fabs (xh
) <= -(double) (-__LONG_MAX__
- 1)), 1)
52 #if !defined (FE_INVALID)
57 #if __LONG_MAX__ == 2147483647
58 long long llhi
= (long long) xh
;
59 if (llhi
!= (long) llhi
)
60 hi
= llhi
< 0 ? -__LONG_MAX__
- 1 : __LONG_MAX__
;
65 if (__builtin_expect ((xh
== -(double) (-__LONG_MAX__
- 1)), 0))
67 /* When XH is 9223372036854775808.0, converting to long long will
68 overflow, resulting in an invalid operation. However, XL might
69 be negative and of sufficient magnitude that the overall long
70 double is in fact in range. Avoid raising an exception. In any
71 case we need to convert this value specially, because
72 the converted value is not exactly represented as a double
73 thus subtracting HI from XH suffers rounding error. */
83 ldbl_canonicalize (&xh
, &xl
);
87 /* Peg at max/min values, assuming that the above conversions do so.
88 Strictly speaking, we can return anything for values that overflow,
89 but this is more useful. */
92 /* This is just sign(hi) == sign(lo) && sign(res) != sign(hi). */
93 if (__builtin_expect (((~(hi
^ lo
) & (res
^ hi
)) < 0), 0))
97 ldbl_canonicalize (&xh
, &xl
);
106 if (xl
> 0.0 || (xl
== 0.0 && res
>= 0))
115 if (xl
< 0.0 || (xl
== 0.0 && res
<= 0))
119 if (__builtin_expect (((~(hi
^ (res
- hi
)) & (res
^ hi
)) < 0), 0))
129 hi
= -__LONG_MAX__
- 1;
137 feraiseexcept (FE_INVALID
);
142 long_double_symbol (libm
, __lroundl
, lroundl
);