make sure we have a large enough buffer to hold the output of the print statement
[AROS.git] / compiler / stdc / math / e_fmodl.c
blob05c725bd2d8f24fd28a54283475c1d8a8d4c8f0f
1 /*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
8 * is preserved.
9 * ====================================================
12 #ifndef lint
13 static char rcsid[] = "$FreeBSD: src/lib/msun/src/e_fmodl.c,v 1.2 2008/07/31 20:09:47 das Exp $";
14 #endif
16 #include <float.h>
17 #include "math.h"
19 #include "fpmath.h"
20 #include "math_private.h"
22 #define BIAS (LDBL_MAX_EXP - 1)
24 #if LDBL_MANL_SIZE > 32
25 typedef uint64_t manl_t;
26 #else
27 typedef uint32_t manl_t;
28 #endif
30 #if LDBL_MANH_SIZE > 32
31 typedef uint64_t manh_t;
32 #else
33 typedef uint32_t manh_t;
34 #endif
37 * These macros add and remove an explicit integer bit in front of the
38 * fractional mantissa, if the architecture doesn't have such a bit by
39 * default already.
41 #ifdef LDBL_IMPLICIT_NBIT
42 #define SET_NBIT(hx) ((hx) | (1ULL << LDBL_MANH_SIZE))
43 #define HFRAC_BITS LDBL_MANH_SIZE
44 #else
45 #define SET_NBIT(hx) (hx)
46 #define HFRAC_BITS (LDBL_MANH_SIZE - 1)
47 #endif
49 #define MANL_SHIFT (LDBL_MANL_SIZE - 1)
51 static const long double one = 1.0, Zero[] = {0.0, -0.0,};
54 * fmodl(x,y)
55 * Return x mod y in exact arithmetic
56 * Method: shift and subtract
58 * Assumptions:
59 * - The low part of the mantissa fits in a manl_t exactly.
60 * - The high part of the mantissa fits in an int64_t with enough room
61 * for an explicit integer bit in front of the fractional bits.
64 long double
65 fmodl(long double x, long double y)
67 union IEEEl2bits ux, uy;
68 int64_t hx,hz; /* We need a carry bit even if LDBL_MANH_SIZE is 32. */
69 manh_t hy;
70 manl_t lx,ly,lz;
71 int ix,iy,n,sx;
73 ux.e = x;
74 uy.e = y;
75 sx = ux.bits.sign;
77 /* purge off exception values */
78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
80 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
81 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */
82 return (x*y)/(x*y);
83 if(ux.bits.exp<=uy.bits.exp) {
84 if((ux.bits.exp<uy.bits.exp) ||
85 (ux.bits.manh<=uy.bits.manh &&
86 (ux.bits.manh<uy.bits.manh ||
87 ux.bits.manl<uy.bits.manl))) {
88 return x; /* |x|<|y| return x or x-y */
90 if(ux.bits.manh==uy.bits.manh && ux.bits.manl==uy.bits.manl) {
91 return Zero[sx]; /* |x|=|y| return x*0*/
95 /* determine ix = ilogb(x) */
96 if(ux.bits.exp == 0) { /* subnormal x */
97 ux.e *= 0x1.0p512;
98 ix = ux.bits.exp - (BIAS + 512);
99 } else {
100 ix = ux.bits.exp - BIAS;
103 /* determine iy = ilogb(y) */
104 if(uy.bits.exp == 0) { /* subnormal y */
105 uy.e *= 0x1.0p512;
106 iy = uy.bits.exp - (BIAS + 512);
107 } else {
108 iy = uy.bits.exp - BIAS;
111 /* set up {hx,lx}, {hy,ly} and align y to x */
112 hx = SET_NBIT(ux.bits.manh);
113 hy = SET_NBIT(uy.bits.manh);
114 lx = ux.bits.manl;
115 ly = uy.bits.manl;
117 /* fix point fmod */
118 n = ix - iy;
120 while(n--) {
121 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
122 if(hz<0){hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;}
123 else {
124 if ((hz|lz)==0) /* return sign(x)*0 */
125 return Zero[sx];
126 hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz;
129 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
130 if(hz>=0) {hx=hz;lx=lz;}
132 /* convert back to floating value and restore the sign */
133 if((hx|lx)==0) /* return sign(x)*0 */
134 return Zero[sx];
135 while(hx<(1ULL<<HFRAC_BITS)) { /* normalize x */
136 hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;
137 iy -= 1;
139 ux.bits.manh = hx; /* The mantissa is truncated here if needed. */
140 ux.bits.manl = lx;
141 if (iy < LDBL_MIN_EXP) {
142 ux.bits.exp = iy + (BIAS + 512);
143 ux.e *= 0x1p-512;
144 } else {
145 ux.bits.exp = iy + BIAS;
147 x = ux.e * one; /* create necessary signal */
148 return x; /* exact output */