1 /* @(#)e_fmod.c 1.3 95/01/18 */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunSoft, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
13 __FBSDID("$FreeBSD: src/lib/msun/src/s_remquol.c,v 1.2 2008/07/31 20:09:47 das Exp $");
19 #include "math_private.h"
21 #define BIAS (LDBL_MAX_EXP - 1)
23 #if LDBL_MANL_SIZE > 32
24 typedef uint64_t manl_t
;
26 typedef uint32_t manl_t
;
29 #if LDBL_MANH_SIZE > 32
30 typedef uint64_t manh_t
;
32 typedef uint32_t manh_t
;
36 * These macros add and remove an explicit integer bit in front of the
37 * fractional mantissa, if the architecture doesn't have such a bit by
40 #ifdef LDBL_IMPLICIT_NBIT
41 #define SET_NBIT(hx) ((hx) | (1ULL << LDBL_MANH_SIZE))
42 #define HFRAC_BITS LDBL_MANH_SIZE
44 #define SET_NBIT(hx) (hx)
45 #define HFRAC_BITS (LDBL_MANH_SIZE - 1)
48 #define MANL_SHIFT (LDBL_MANL_SIZE - 1)
50 static const long double Zero
[] = {0.0L, -0.0L};
53 * Return the IEEE remainder and set *quo to the last n bits of the
54 * quotient, rounded to the nearest integer. We choose n=31 because
55 * we wind up computing all the integer bits of the quotient anyway as
56 * a side-effect of computing the remainder by the shift and subtract
57 * method. In practice, this is far more bits than are needed to use
58 * remquo in reduction algorithms.
61 * - The low part of the mantissa fits in a manl_t exactly.
62 * - The high part of the mantissa fits in an int64_t with enough room
63 * for an explicit integer bit in front of the fractional bits.
66 remquol(long double x
, long double y
, int *quo
)
68 union IEEEl2bits ux
, uy
;
69 int64_t hx
,hz
; /* We need a carry bit even if LDBL_MANH_SIZE is 32. */
77 sxy
= sx
^ uy
.bits
.sign
;
78 ux
.bits
.sign
= 0; /* |x| */
79 uy
.bits
.sign
= 0; /* |y| */
82 /* purge off exception values */
83 if((uy
.bits
.exp
|uy
.bits
.manh
|uy
.bits
.manl
)==0 || /* y=0 */
84 (ux
.bits
.exp
== BIAS
+ LDBL_MAX_EXP
) || /* or x not finite */
85 (uy
.bits
.exp
== BIAS
+ LDBL_MAX_EXP
&&
86 ((uy
.bits
.manh
&~LDBL_NBIT
)|uy
.bits
.manl
)!=0)) /* or y is NaN */
88 if(ux
.bits
.exp
<=uy
.bits
.exp
) {
89 if((ux
.bits
.exp
<uy
.bits
.exp
) ||
90 (ux
.bits
.manh
<=uy
.bits
.manh
&&
91 (ux
.bits
.manh
<uy
.bits
.manh
||
92 ux
.bits
.manl
<uy
.bits
.manl
))) {
94 goto fixup
; /* |x|<|y| return x or x-y */
96 if(ux
.bits
.manh
==uy
.bits
.manh
&& ux
.bits
.manl
==uy
.bits
.manl
) {
97 *quo
= (sxy
? -1 : 1);
98 return Zero
[sx
]; /* |x|=|y| return x*0*/
102 /* determine ix = ilogb(x) */
103 if(ux
.bits
.exp
== 0) { /* subnormal x */
105 ix
= ux
.bits
.exp
- (BIAS
+ 512);
107 ix
= ux
.bits
.exp
- BIAS
;
110 /* determine iy = ilogb(y) */
111 if(uy
.bits
.exp
== 0) { /* subnormal y */
113 iy
= uy
.bits
.exp
- (BIAS
+ 512);
115 iy
= uy
.bits
.exp
- BIAS
;
118 /* set up {hx,lx}, {hy,ly} and align y to x */
119 hx
= SET_NBIT(ux
.bits
.manh
);
120 hy
= SET_NBIT(uy
.bits
.manh
);
129 hz
=hx
-hy
;lz
=lx
-ly
; if(lx
<ly
) hz
-= 1;
130 if(hz
<0){hx
= hx
+hx
+(lx
>>MANL_SHIFT
); lx
= lx
+lx
;}
131 else {hx
= hz
+hz
+(lz
>>MANL_SHIFT
); lx
= lz
+lz
; q
++;}
134 hz
=hx
-hy
;lz
=lx
-ly
; if(lx
<ly
) hz
-= 1;
135 if(hz
>=0) {hx
=hz
;lx
=lz
;q
++;}
137 /* convert back to floating value and restore the sign */
138 if((hx
|lx
)==0) { /* return sign(x)*0 */
140 *quo
= (sxy
? -q
: q
);
143 while(hx
<(1ULL<<HFRAC_BITS
)) { /* normalize x */
144 hx
= hx
+hx
+(lx
>>MANL_SHIFT
); lx
= lx
+lx
;
147 ux
.bits
.manh
= hx
; /* The integer bit is truncated here if needed. */
149 if (iy
< LDBL_MIN_EXP
) {
150 ux
.bits
.exp
= iy
+ (BIAS
+ 512);
153 ux
.bits
.exp
= iy
+ BIAS
;
159 if (y
< LDBL_MIN
* 2) {
160 if (x
+x
>y
|| (x
+x
==y
&& (q
& 1))) {
164 } else if (x
>0.5*y
|| (x
==0.5*y
&& (q
& 1))) {
174 *quo
= (sxy
? -q
: q
);