4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
26 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
27 * Use is subject to license terms.
30 #pragma weak __llrintl = llrintl
31 #if defined(__sparcv9) || defined(__amd64)
32 #pragma weak lrintl = llrintl
33 #pragma weak __lrintl = llrintl
41 #include "fenv_inlines.h"
44 llrintl(long double x
) {
57 unsigned int hx
, sx
, frac
, fsr
;
62 sx
= xx
.i
[0] & 0x80000000;
63 hx
= xx
.i
[0] & ~0x80000000;
65 /* handle trivial cases */
66 if (hx
> 0x403e0000) { /* |x| > 2^63 + ... or x is nan */
67 /* convert an out-of-range float */
68 tt
.i
= sx
| 0x7f000000;
69 return ((long long) tt
.f
);
70 } else if ((hx
| xx
.i
[1] | xx
.i
[2] | xx
.i
[3]) == 0) /* x is zero */
73 /* get the rounding mode */
74 __fenv_getfsr32(&fsr
);
77 /* flip the sense of directed roundings if x is negative */
82 if (hx
< 0x3fff0000) {
83 dummy
= 1.0e30f
; /* x is nonzero, so raise inexact */
85 if (rm
== FSR_RP
|| (rm
== FSR_RN
&& (hx
>= 0x3ffe0000 &&
86 ((hx
& 0xffff) | xx
.i
[1] | xx
.i
[2] | xx
.i
[3]))))
87 return (sx
? -1LL : 1LL);
91 /* extract the integer and fractional parts of x */
92 j
= 0x406f - (hx
>> 16);
93 xx
.i
[0] = 0x10000 | (xx
.i
[0] & 0xffff);
96 zz
.i
[1] = xx
.i
[0] >> (j
- 96);
97 frac
= ((xx
.i
[0] << 1) << (127 - j
)) | (xx
.i
[1] >> (j
- 96));
98 if (((xx
.i
[1] << 1) << (127 - j
)) | xx
.i
[2] | xx
.i
[3])
100 } else if (j
>= 64) {
101 zz
.i
[0] = xx
.i
[0] >> (j
- 64);
102 zz
.i
[1] = ((xx
.i
[0] << 1) << (95 - j
)) | (xx
.i
[1] >> (j
- 64));
103 frac
= ((xx
.i
[1] << 1) << (95 - j
)) | (xx
.i
[2] >> (j
- 64));
104 if (((xx
.i
[2] << 1) << (95 - j
)) | xx
.i
[3])
107 zz
.i
[0] = ((xx
.i
[0] << 1) << (63 - j
)) | (xx
.i
[1] >> (j
- 32));
108 zz
.i
[1] = ((xx
.i
[1] << 1) << (63 - j
)) | (xx
.i
[2] >> (j
- 32));
109 frac
= ((xx
.i
[2] << 1) << (63 - j
)) | (xx
.i
[3] >> (j
- 32));
110 if ((xx
.i
[3] << 1) << (63 - j
))
115 if (frac
&& (rm
== FSR_RP
|| (rm
== FSR_RN
&& (frac
> 0x80000000u
||
116 (frac
== 0x80000000 && (zz
.i
[1] & 1)))))) {
121 /* check for result out of range (note that z is |x| at this point) */
122 if (zz
.i
[0] > 0x80000000u
|| (zz
.i
[0] == 0x80000000 && (zz
.i
[1] ||
124 tt
.i
= sx
| 0x7f000000;
125 return ((long long) tt
.f
);
128 /* raise inexact if need be */
134 /* negate result if need be */
145 llrintl(long double x
) {
147 * Note: The following code works on x86 (in the default rounding
148 * precision mode), but one ought to just use the fistpll instruction
158 ex
= xx
.i
[2] & 0x7fff;
160 if (ex
< 0x403e) { /* |x| < 2^63 */
161 /* add and subtract a power of two to round x to an integer */
162 yy
.i
[2] = (xx
.i
[2] & 0x8000) | 0x403e;
163 yy
.i
[1] = 0x80000000;
165 x
= (x
+ yy
.e
) - yy
.e
;
168 /* now x is nan, inf, or integral */
169 return ((long long) x
);
172 #error Unknown architecture