1 /* origin: FreeBSD /usr/src/lib/msun/src/s_cbrtf.c */
3 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
4 * Debugged and optimized by Bruce D. Evans.
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
14 * ====================================================
17 * Return cube root of x
23 B1 = 709958130, /* B1 = (127-127.0/3-0.03306235651)*2**23 */
24 B2 = 642849266; /* B2 = (127-127.0/3-24/3-0.03306235651)*2**23 */
34 GET_FLOAT_WORD(hx, x);
35 sign = hx & 0x80000000;
37 if (hx >= 0x7f800000) /* cbrt(NaN,INF) is itself */
40 /* rough cbrt to 5 bits */
41 if (hx < 0x00800000) { /* zero or subnormal? */
43 return x; /* cbrt(+-0) is itself */
44 SET_FLOAT_WORD(t, 0x4b800000); /* set t = 2**24 */
46 GET_FLOAT_WORD(high, t);
47 SET_FLOAT_WORD(t, sign|((high&0x7fffffff)/3+B2));
49 SET_FLOAT_WORD(t, sign|(hx/3+B1));
52 * First step Newton iteration (solving t*t-x/t == 0) to 16 bits. In
53 * double precision so that its terms can be arranged for efficiency
54 * without causing overflow or underflow.
58 T = T*((double)x+x+r)/(x+r+r);
61 * Second step Newton iteration to 47 bits. In double precision for
62 * efficiency and accuracy.
65 T = T*((double)x+x+r)/(x+r+r);
67 /* rounding to 24 bits is perfect in round-to-nearest mode */