1 |
786 |
skrzyp |
//===========================================================================
|
2 |
|
|
//
|
3 |
|
|
// s_cbrt.c
|
4 |
|
|
//
|
5 |
|
|
// Part of the standard mathematical function library
|
6 |
|
|
//
|
7 |
|
|
//===========================================================================
|
8 |
|
|
// ####ECOSGPLCOPYRIGHTBEGIN####
|
9 |
|
|
// -------------------------------------------
|
10 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
11 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
12 |
|
|
//
|
13 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
14 |
|
|
// the terms of the GNU General Public License as published by the Free
|
15 |
|
|
// Software Foundation; either version 2 or (at your option) any later
|
16 |
|
|
// version.
|
17 |
|
|
//
|
18 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT
|
19 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
20 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
21 |
|
|
// for more details.
|
22 |
|
|
//
|
23 |
|
|
// You should have received a copy of the GNU General Public License
|
24 |
|
|
// along with eCos; if not, write to the Free Software Foundation, Inc.,
|
25 |
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
26 |
|
|
//
|
27 |
|
|
// As a special exception, if other files instantiate templates or use
|
28 |
|
|
// macros or inline functions from this file, or you compile this file
|
29 |
|
|
// and link it with other works to produce a work based on this file,
|
30 |
|
|
// this file does not by itself cause the resulting work to be covered by
|
31 |
|
|
// the GNU General Public License. However the source code for this file
|
32 |
|
|
// must still be made available in accordance with section (3) of the GNU
|
33 |
|
|
// General Public License v2.
|
34 |
|
|
//
|
35 |
|
|
// This exception does not invalidate any other reasons why a work based
|
36 |
|
|
// on this file might be covered by the GNU General Public License.
|
37 |
|
|
// -------------------------------------------
|
38 |
|
|
// ####ECOSGPLCOPYRIGHTEND####
|
39 |
|
|
//===========================================================================
|
40 |
|
|
//#####DESCRIPTIONBEGIN####
|
41 |
|
|
//
|
42 |
|
|
// Author(s): jlarmour
|
43 |
|
|
// Contributors: jlarmour
|
44 |
|
|
// Date: 1998-02-13
|
45 |
|
|
// Purpose:
|
46 |
|
|
// Description:
|
47 |
|
|
// Usage:
|
48 |
|
|
//
|
49 |
|
|
//####DESCRIPTIONEND####
|
50 |
|
|
//
|
51 |
|
|
//===========================================================================
|
52 |
|
|
|
53 |
|
|
// CONFIGURATION
|
54 |
|
|
|
55 |
|
|
#include <pkgconf/libm.h> // Configuration header
|
56 |
|
|
|
57 |
|
|
// Include the Math library?
|
58 |
|
|
#ifdef CYGPKG_LIBM
|
59 |
|
|
|
60 |
|
|
// Derived from code with the following copyright
|
61 |
|
|
|
62 |
|
|
|
63 |
|
|
/* @(#)s_cbrt.c 1.3 95/01/18 */
|
64 |
|
|
/*
|
65 |
|
|
* ====================================================
|
66 |
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
67 |
|
|
*
|
68 |
|
|
* Developed at SunSoft, a Sun Microsystems, Inc. business.
|
69 |
|
|
* Permission to use, copy, modify, and distribute this
|
70 |
|
|
* software is freely granted, provided that this notice
|
71 |
|
|
* is preserved.
|
72 |
|
|
* ====================================================
|
73 |
|
|
*
|
74 |
|
|
*/
|
75 |
|
|
|
76 |
|
|
#include "mathincl/fdlibm.h"
|
77 |
|
|
|
78 |
|
|
/* cbrt(x)
|
79 |
|
|
* Return cube root of x
|
80 |
|
|
*/
|
81 |
|
|
static const unsigned
|
82 |
|
|
B1 = 715094163, /* B1 = (682-0.03306235651)*2**20 */
|
83 |
|
|
B2 = 696219795; /* B2 = (664-0.03306235651)*2**20 */
|
84 |
|
|
|
85 |
|
|
static const double
|
86 |
|
|
C = 5.42857142857142815906e-01, /* 19/35 = 0x3FE15F15, 0xF15F15F1 */
|
87 |
|
|
D = -7.05306122448979611050e-01, /* -864/1225 = 0xBFE691DE, 0x2532C834 */
|
88 |
|
|
E = 1.41428571428571436819e+00, /* 99/70 = 0x3FF6A0EA, 0x0EA0EA0F */
|
89 |
|
|
F = 1.60714285714285720630e+00, /* 45/28 = 0x3FF9B6DB, 0x6DB6DB6E */
|
90 |
|
|
G = 3.57142857142857150787e-01; /* 5/14 = 0x3FD6DB6D, 0xB6DB6DB7 */
|
91 |
|
|
|
92 |
|
|
double cbrt(double x)
|
93 |
|
|
{
|
94 |
|
|
int hx;
|
95 |
|
|
double r,s,t=0.0,w;
|
96 |
|
|
unsigned sign;
|
97 |
|
|
|
98 |
|
|
|
99 |
|
|
hx = CYG_LIBM_HI(x); /* high word of x */
|
100 |
|
|
sign=hx&0x80000000; /* sign= sign(x) */
|
101 |
|
|
hx ^=sign;
|
102 |
|
|
if(hx>=0x7ff00000) return(x+x); /* cbrt(NaN,INF) is itself */
|
103 |
|
|
if((hx|CYG_LIBM_LO(x))==0)
|
104 |
|
|
return(x); /* cbrt(0) is itself */
|
105 |
|
|
|
106 |
|
|
CYG_LIBM_HI(x) = hx; /* x <- |x| */
|
107 |
|
|
/* rough cbrt to 5 bits */
|
108 |
|
|
if(hx<0x00100000) /* subnormal number */
|
109 |
|
|
{CYG_LIBM_HI(t)=0x43500000; /* set t= 2**54 */
|
110 |
|
|
t*=x; CYG_LIBM_HI(t)=CYG_LIBM_HI(t)/3+B2;
|
111 |
|
|
}
|
112 |
|
|
else
|
113 |
|
|
CYG_LIBM_HI(t)=hx/3+B1;
|
114 |
|
|
|
115 |
|
|
|
116 |
|
|
/* new cbrt to 23 bits, may be implemented in single precision */
|
117 |
|
|
r=t*t/x;
|
118 |
|
|
s=C+r*t;
|
119 |
|
|
t*=G+F/(s+E+D/s);
|
120 |
|
|
|
121 |
|
|
/* chopped to 20 bits and make it larger than cbrt(x) */
|
122 |
|
|
CYG_LIBM_LO(t)=0; CYG_LIBM_HI(t)+=0x00000001;
|
123 |
|
|
|
124 |
|
|
|
125 |
|
|
/* one step newton iteration to 53 bits with error less than 0.667 ulps */
|
126 |
|
|
s=t*t; /* t*t is exact */
|
127 |
|
|
r=x/s;
|
128 |
|
|
w=t+t;
|
129 |
|
|
r=(r-t)/(w+r); /* r-s is exact */
|
130 |
|
|
t=t+t*r;
|
131 |
|
|
|
132 |
|
|
/* retore the sign bit */
|
133 |
|
|
CYG_LIBM_HI(t) |= sign;
|
134 |
|
|
return(t);
|
135 |
|
|
}
|
136 |
|
|
|
137 |
|
|
#endif // ifdef CYGPKG_LIBM
|
138 |
|
|
|
139 |
|
|
// EOF s_cbrt.c
|