added math libs of Jesus Calvino-Fraga
[fw/sdcc] / device / lib / asincosf.c
1 /*  asincosf.c: Computes asin or acos 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 #include <math.h>
25 #include <errno.h>
26
27 #define P1  0.933935835E+0
28 #define P2 -0.504400557E+0
29 #define Q0  0.560363004E+1
30 #define Q1 -0.554846723E+1
31 #define Q2  0.100000000E+1
32
33 #define P(g) (P2*g+P1)
34 #define Q(g) ((Q2*g+Q1)*g+Q0)
35
36 float asincosf(const float x, const int isacos)
37 {
38     float y, g, r;
39     int i;
40     float a[2]={ 0.0, QUART_PI };
41     float b[2]={ HALF_PI, QUART_PI };
42
43     y=fabsf(x);
44     i=isacos;
45     if (y < EPS) r=y;
46     else
47     {
48         if (y > 0.5)
49         {
50             i=1-i;
51             if (y > 1.0)
52             {
53                 errno=EDOM;
54                 return 0.0;
55             }
56             g=(0.5-y)+0.5;
57             g=ldexpf(g,-1);
58             y=sqrtf(g);
59             y=-(y+y);
60         }
61         else
62         {
63             g=y*y;
64         }
65         r=y+y*((P(g)*g)/Q(g));
66     }
67     if (isacos)
68     {
69         if (x < 0.0)
70             r=(b[i]+r)+b[i];
71         else
72             r=(a[i]-r)+a[i];
73     }
74     else
75     {
76         r=(a[i]+r)+a[i];
77         if (x<0.0) r=-r;
78     }
79     return r;
80 }