#pragma weak __log2 = log2
#include "libm.h"
#include "libm_protos.h"
extern const double _TBL_log[];
static const double P[] = {
1.0,
4503599627370496.0,
1.4426950408889634073599246810018920433347,
0.0,
-9.6809362455249638217841932228967194640116e-02,
1.99628461483039965074226529395673424005508422852e+0000,
2.26812367662950720159642514772713184356689453125e+0000,
-9.05030639084976384900471657601883634924888610840e-0001,
-1.48275767132434044270894446526654064655303955078e+0000,
1.88158320939722756293122074566781520843505859375e+0000,
1.83309386046986411145098827546462416648864746094e+0000,
1.24847063988317086291601754055591300129890441895e+0000,
1.98372421445537705508854742220137268304824829102e+0000,
-3.94711735767898475035764249696512706577777862549e-0001,
3.07890395362954372160402272129431366920471191406e+0000,
-9.60099585275022149311041630426188930869102478027e-0001,
-1.8039695622547469514898963204616532885451e-01,
1.87161713283355151891381127914642725337613123482e+0000,
-1.89082956295731507978530316904652863740921020508e+0000,
-2.50562891673640253387134180229622870683670043945e+0000,
1.64822828085258366037635369139024987816810607910e+0000,
-1.24409107065868340669112512841820716857910156250e+0000,
1.70534231658220414296067701798165217041969299316e+0000,
1.99196833784655646937267192697618156671524047852e+0000,
1.5,
0.057304959111036592640075318998107956665325,
};
#define ONE P[0]
#define TWO52 P[1]
#define LN10V P[2]
#define ZERO P[3]
#define A1 P[4]
#define A2 P[5]
#define A3 P[6]
#define A4 P[7]
#define A5 P[8]
#define A6 P[9]
#define A7 P[10]
#define A8 P[11]
#define A9 P[12]
#define A10 P[13]
#define A11 P[14]
#define A12 P[15]
#define B1 P[16]
#define B2 P[17]
#define B3 P[18]
#define B4 P[19]
#define B5 P[20]
#define B6 P[21]
#define B7 P[22]
#define B8 P[23]
#define LGH P[24]
#define LGL P[25]
double
log2(double x) {
int i, hx, ix, n, lx;
n = 0;
hx = ((int *) &x)[HIWORD]; ix = hx & 0x7fffffff;
lx = ((int *) &x)[LOWORD];
if ((hx + 0x100000) < 0x200000) {
#if defined(FPADD_TRAPS_INCOMPLETE_ON_NAN)
if (ix >= 0x7ff80000)
return (x);
#endif
if (((hx << 1) | lx) == 0)
return (A5 / fabs(x));
if (hx < 0) {
if (ix >= 0x7ff00000)
return (x - x);
else
return (ZERO / (x - x));
}
if (((hx - 0x7ff00000) | lx) == 0)
return (x);
if (ix >= 0x7ff00000)
return (x - x);
x *= TWO52;
n = -52;
hx = ((int *) &x)[HIWORD]; ix = hx & 0x7fffffff;
lx = ((int *) &x)[LOWORD];
}
i = ix >> 19;
if (i >= 0x7f7 && i <= 0x806) {
if (ix >= 0x3fec0000 && ix < 0x3ff20000) {
double s, z, r, w;
s = x - ONE; z = s * s; r = (A10 * s) * (A11 + s);
w = z * s;
if (((ix << 12) | lx) == 0)
return (z);
else
return (LGH * s - (LGL * s - ((A1 * z) *
((A2 + (A3 * s) * (A4 + s)) + w * (A5 + s))) *
(((A6 + s * (A7 + s)) + w * (A8 + s)) *
((A9 + r) + w * (A12 + s)))));
} else {
double *tb, s;
i = (ix - 0x3fb80000) >> 15;
tb = (double *) _TBL_log + (i + i + i);
if (((ix << 12) | lx) == 0)
return ((double) ((ix >> 20) - 0x3ff));
s = (x - tb[0]) * tb[1];
return (LGH * tb[2] - (LGL * tb[2] - ((B1 * s) *
(B2 + s * (B3 + s))) *
(((B4 + s * B5) + (s * s) * (B6 + s)) *
(B7 + s * (B8 + s)))));
}
} else {
double *tb, dn, s;
dn = (double) (n + ((ix >> 20) - 0x3ff));
ix <<= 12;
if ((ix | lx) == 0)
return (dn);
i = ((unsigned) ix >> 12) | 0x3ff00000;
((int *) &x)[HIWORD] = i;
i = (i - 0x3fb80000) >> 15;
tb = (double *) _TBL_log + (i + i + i);
s = (x - tb[0]) * tb[1];
return (dn + (tb[2] * LN10V + ((B1 * s) *
(B2 + s * (B3 + s))) *
(((B4 + s * B5) + (s * s) * (B6 + s)) *
(B7 + s * (B8 + s)))));
}
}