Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / pic16 / libm / logf.c
1 /*  logf.c: Computes the natural log of a 32 bit float as outlined in [1].
2
3     Copyright (C) 2001, 2002  Jesus Calvino-Fraga, jesusc@ieee.org 
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Lesser General Public
7     License as published by the Free Software Foundation; either
8     version 2.1 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Lesser General Public License for more details.
14
15     You should have received a copy of the GNU Lesser General Public
16     License along with this library; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA */
18
19 /* [1] William James Cody and W.  M.  Waite.  _Software manual for the
20    elementary functions_, Englewood Cliffs, N.J.:Prentice-Hall, 1980. */
21
22 /* Version 1.0 - Initial release */
23
24 /*
25 ** $Id: logf.c 3654 2005-01-24 10:38:53Z vrokas $
26 */
27
28 #include <math.h>
29 #include <errno.h>
30
31 /*Constans for 24 bits or less (8 decimal digits)*/
32 #define A0 -0.5527074855E+0
33 #define B0 -0.6632718214E+1
34 #define A(w) (A0)
35 #define B(w) (w+B0)
36
37 #define C0  0.70710678118654752440
38 #define C1  0.693359375 /*355.0/512.0*/
39 #define C2 -2.121944400546905827679E-4
40
41 float logf(const float x) _MATH_REENTRANT
42 {
43 #if     defined(SDCC_mcs51) && defined(SDCC_MODEL_SMALL) \
44     && !defined(SDCC_NOOVERLAY)
45     volatile
46 #endif
47     float Rz;
48     float f, z, w, znum, zden, xn;
49     int n;
50
51     if (x<=0.0)
52     {
53         errno=EDOM;
54         return 0.0;
55     }
56     f=frexpf(x, &n);
57     znum=f-0.5;
58     if (f>C0)
59     {
60         znum-=0.5;
61         zden=(f*0.5)+0.5;
62     }
63     else
64     {
65         n--;
66         zden=znum*0.5+0.5;
67     }
68     z=znum/zden;
69     w=z*z;
70
71     Rz=z+z*(w*A(w)/B(w));
72     xn=n;
73     return ((xn*C2+Rz)+xn*C1);
74 }