OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [language/] [c/] [libm/] [v2_0/] [src/] [double/] [ieee754-core/] [e_acos.c] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//===========================================================================
2
//
3
//      e_acos.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 Red Hat, 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 version.
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20
// for more details.
21
//
22
// You should have received a copy of the GNU General Public License along
23
// with eCos; if not, write to the Free Software Foundation, Inc.,
24
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25
//
26
// As a special exception, if other files instantiate templates or use macros
27
// or inline functions from this file, or you compile this file and link it
28
// with other works to produce a work based on this file, this file does not
29
// by itself cause the resulting work to be covered by the GNU General Public
30
// License. However the source code for this file must still be made available
31
// in accordance with section (3) of the GNU General Public License.
32
//
33
// This exception does not invalidate any other reasons why a work based on
34
// this file might be covered by the GNU General Public License.
35
//
36
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37
// at http://sources.redhat.com/ecos/ecos-license/
38
// -------------------------------------------
39
//####ECOSGPLCOPYRIGHTEND####
40
//===========================================================================
41
//#####DESCRIPTIONBEGIN####
42
//
43
// Author(s):   jlarmour
44
// Contributors:  jlarmour
45
// Date:        1998-02-13
46
// Purpose:     
47
// Description: 
48
// Usage:       
49
//
50
//####DESCRIPTIONEND####
51
//
52
//===========================================================================
53
 
54
// CONFIGURATION
55
 
56
#include <pkgconf/libm.h>   // Configuration header
57
 
58
// Include the Math library?
59
#ifdef CYGPKG_LIBM     
60
 
61
// Derived from code with the following copyright
62
 
63
 
64
/* @(#)e_acos.c 1.3 95/01/18 */
65
/*
66
 * ====================================================
67
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
68
 *
69
 * Developed at SunSoft, a Sun Microsystems, Inc. business.
70
 * Permission to use, copy, modify, and distribute this
71
 * software is freely granted, provided that this notice
72
 * is preserved.
73
 * ====================================================
74
 */
75
 
76
/* __ieee754_acos(x)
77
 * Method :
78
 *      acos(x)  = pi/2 - asin(x)
79
 *      acos(-x) = pi/2 + asin(x)
80
 * For |x|<=0.5
81
 *      acos(x) = pi/2 - (x + x*x^2*R(x^2))     (see asin.c)
82
 * For x>0.5
83
 *      acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2)))
84
 *              = 2asin(sqrt((1-x)/2))
85
 *              = 2s + 2s*z*R(z)        ...z=(1-x)/2, s=sqrt(z)
86
 *              = 2f + (2c + 2s*z*R(z))
87
 *     where f=hi part of s, and c = (z-f*f)/(s+f) is the correction term
88
 *     for f so that f+c ~ sqrt(z).
89
 * For x<-0.5
90
 *      acos(x) = pi - 2asin(sqrt((1-|x|)/2))
91
 *              = pi - 0.5*(s+s*z*R(z)), where z=(1-|x|)/2,s=sqrt(z)
92
 *
93
 * Special cases:
94
 *      if x is NaN, return x itself;
95
 *      if |x|>1, return NaN with invalid signal.
96
 *
97
 * Function needed: sqrt
98
 */
99
 
100
#include "mathincl/fdlibm.h"
101
 
102
static const double
103
one=  1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
104
pi =  3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */
105
pio2_hi =  1.57079632679489655800e+00, /* 0x3FF921FB, 0x54442D18 */
106
pio2_lo =  6.12323399573676603587e-17, /* 0x3C91A626, 0x33145C07 */
107
pS0 =  1.66666666666666657415e-01, /* 0x3FC55555, 0x55555555 */
108
pS1 = -3.25565818622400915405e-01, /* 0xBFD4D612, 0x03EB6F7D */
109
pS2 =  2.01212532134862925881e-01, /* 0x3FC9C155, 0x0E884455 */
110
pS3 = -4.00555345006794114027e-02, /* 0xBFA48228, 0xB5688F3B */
111
pS4 =  7.91534994289814532176e-04, /* 0x3F49EFE0, 0x7501B288 */
112
pS5 =  3.47933107596021167570e-05, /* 0x3F023DE1, 0x0DFDF709 */
113
qS1 = -2.40339491173441421878e+00, /* 0xC0033A27, 0x1C8A2D4B */
114
qS2 =  2.02094576023350569471e+00, /* 0x40002AE5, 0x9C598AC8 */
115
qS3 = -6.88283971605453293030e-01, /* 0xBFE6066C, 0x1B8D0159 */
116
qS4 =  7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */
117
 
118
        double __ieee754_acos(double x)
119
{
120
        double z,p,q,r,w,s,c,df;
121
        int hx,ix;
122
        hx = CYG_LIBM_HI(x);
123
        ix = hx&0x7fffffff;
124
        if(ix>=0x3ff00000) {    /* |x| >= 1 */
125
            if(((ix-0x3ff00000)|CYG_LIBM_LO(x))==0) {   /* |x|==1 */
126
                if(hx>0) return 0.0;            /* acos(1) = 0  */
127
                else return pi+2.0*pio2_lo;     /* acos(-1)= pi */
128
            }
129
            return (x-x)/(x-x);         /* acos(|x|>1) is NaN */
130
        }
131
        if(ix<0x3fe00000) {     /* |x| < 0.5 */
132
            if(ix<=0x3c600000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
133
            z = x*x;
134
            p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
135
            q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
136
            r = p/q;
137
            return pio2_hi - (x - (pio2_lo-x*r));
138
        } else  if (hx<0) {             /* x < -0.5 */
139
            z = (one+x)*0.5;
140
            p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
141
            q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
142
            s = sqrt(z);
143
            r = p/q;
144
            w = r*s-pio2_lo;
145
            return pi - 2.0*(s+w);
146
        } else {                        /* x > 0.5 */
147
            z = (one-x)*0.5;
148
            s = sqrt(z);
149
            df = s;
150
            CYG_LIBM_LO(df) = 0;
151
            c  = (z-df*df)/(s+df);
152
            p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
153
            q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
154
            r = p/q;
155
            w = r*s+c;
156
            return 2.0*(df+w);
157
        }
158
}
159
 
160
#endif // ifdef CYGPKG_LIBM     
161
 
162
// EOF e_acos.c

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.