POK
/home/jaouen/pok_official/pok/trunk/libpok/libm/e_asinf.c
00001 /*
00002  *                               POK header
00003  * 
00004  * The following file is a part of the POK project. Any modification should
00005  * made according to the POK licence. You CANNOT use this file or a part of
00006  * this file is this part of a file for your own project
00007  *
00008  * For more information on the POK licence, please see our LICENCE FILE
00009  *
00010  * Please follow the coding guidelines described in doc/CODING_GUIDELINES
00011  *
00012  *                                      Copyright (c) 2007-2009 POK team 
00013  *
00014  * Created by julien on Fri Jan 30 14:41:34 2009 
00015  */
00016 
00017 /* e_asinf.c -- float version of e_asin.c.
00018  * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
00019  */
00020 
00021 /*
00022  * ====================================================
00023  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
00024  *
00025  * Developed at SunPro, a Sun Microsystems, Inc. business.
00026  * Permission to use, copy, modify, and distribute this
00027  * software is freely granted, provided that this notice
00028  * is preserved.
00029  * ====================================================
00030  */
00031 
00032 #ifdef POK_NEEDS_LIBMATH
00033 #include <libm.h>
00034 #include "math_private.h"
00035 
00036 static const float
00037 one =  1.0000000000e+00, /* 0x3F800000 */
00038 huge =  1.000e+30,
00039 pio2_hi =  1.5707962513e+00, /* 0x3fc90fda */
00040 pio2_lo =  7.5497894159e-08, /* 0x33a22168 */
00041 pio4_hi =  7.8539818525e-01, /* 0x3f490fdb */
00042         /* coefficient for R(x^2) */
00043 pS0 =  1.6666667163e-01, /* 0x3e2aaaab */
00044 pS1 = -3.2556581497e-01, /* 0xbea6b090 */
00045 pS2 =  2.0121252537e-01, /* 0x3e4e0aa8 */
00046 pS3 = -4.0055535734e-02, /* 0xbd241146 */
00047 pS4 =  7.9153501429e-04, /* 0x3a4f7f04 */
00048 pS5 =  3.4793309169e-05, /* 0x3811ef08 */
00049 qS1 = -2.4033949375e+00, /* 0xc019d139 */
00050 qS2 =  2.0209457874e+00, /* 0x4001572d */
00051 qS3 = -6.8828397989e-01, /* 0xbf303361 */
00052 qS4 =  7.7038154006e-02; /* 0x3d9dc62e */
00053 
00054 float
00055 __ieee754_asinf(float x)
00056 {
00057         float t,w,p,q,c,r,s;
00058         int32_t hx,ix;
00059 
00060         t = 0;
00061         GET_FLOAT_WORD(hx,x);
00062         ix = hx&0x7fffffff;
00063         if(ix==0x3f800000) {
00064                 /* asin(1)=+-pi/2 with inexact */
00065             return x*pio2_hi+x*pio2_lo;
00066         } else if(ix> 0x3f800000) {     /* |x|>= 1 */
00067             return (x-x)/(x-x);         /* asin(|x|>1) is NaN */
00068         } else if (ix<0x3f000000) {     /* |x|<0.5 */
00069             if(ix<0x32000000) {         /* if |x| < 2**-27 */
00070                 if(huge+x>one) return x;/* return x with inexact if x!=0*/
00071             } else
00072                 t = x*x;
00073                 p = t*(pS0+t*(pS1+t*(pS2+t*(pS3+t*(pS4+t*pS5)))));
00074                 q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4)));
00075                 w = p/q;
00076                 return x+x*w;
00077         }
00078         /* 1> |x|>= 0.5 */
00079         w = one-fabsf(x);
00080         t = w*(float)0.5;
00081         p = t*(pS0+t*(pS1+t*(pS2+t*(pS3+t*(pS4+t*pS5)))));
00082         q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4)));
00083         s = __ieee754_sqrtf(t);
00084         if(ix>=0x3F79999A) {    /* if |x| > 0.975 */
00085             w = p/q;
00086             t = pio2_hi-((float)2.0*(s+s*w)-pio2_lo);
00087         } else {
00088             int32_t iw;
00089             w  = s;
00090             GET_FLOAT_WORD(iw,w);
00091             SET_FLOAT_WORD(w,iw&0xfffff000);
00092             c  = (t-w*w)/(s+w);
00093             r  = p/q;
00094             p  = (float)2.0*s*r-(pio2_lo-(float)2.0*c);
00095             q  = pio4_hi-(float)2.0*w;
00096             t  = pio4_hi-(p-q);
00097         }
00098         if(hx>0) return t; else return -t;
00099 }
00100 #endif