mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 00:00:06 +00:00
f7eac6eb50
* Makeconfig ($(common-objpfx)config.make): Depend on config.h.in. Mon Mar 4 17:35:09 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu> * hurd/catch-signal.c (hurd_safe_memmove): New function. (hurd_safe_copyin, hurd_safe_copyout): New functions. * hurd/hurd/sigpreempt.h: Declare them. Sun Mar 3 08:43:44 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu> Replace math code with fdlibm from Sun as modified for netbsd by JT Conklin and Ian Taylor, including x86 FPU support. * sysdeps/libm-ieee754, sysdeps/libm-i387: New directories. * math/math_private.h: New file. * sysdeps/i386/fpu/Implies: New file. * sysdeps/ieee754/Implies: New file. * math/machine/asm.h, math/machine/endian.h: New files. * math/Makefile, math/math.h: Rewritten. * mathcalls.h, math/mathcalls.h: New file, broken out of math.h. * math/finite.c: File removed. * sysdeps/generic/Makefile [$(subdir)=math]: Frobnication removed. * math/test-math.c: Include errno.h and string.h. * sysdeps/unix/bsd/dirstream.h: File removed. * sysdeps/unix/bsd/readdir.c: File removed.
90 lines
2.6 KiB
C
90 lines
2.6 KiB
C
/* e_acosf.c -- float version of e_acos.c.
|
|
* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
|
|
*/
|
|
|
|
/*
|
|
* ====================================================
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
*
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
* Permission to use, copy, modify, and distribute this
|
|
* software is freely granted, provided that this notice
|
|
* is preserved.
|
|
* ====================================================
|
|
*/
|
|
|
|
#if defined(LIBM_SCCS) && !defined(lint)
|
|
static char rcsid[] = "$NetBSD: e_acosf.c,v 1.5 1995/05/12 04:57:16 jtc Exp $";
|
|
#endif
|
|
|
|
#include "math.h"
|
|
#include "math_private.h"
|
|
|
|
#ifdef __STDC__
|
|
static const float
|
|
#else
|
|
static float
|
|
#endif
|
|
one = 1.0000000000e+00, /* 0x3F800000 */
|
|
pi = 3.1415925026e+00, /* 0x40490fda */
|
|
pio2_hi = 1.5707962513e+00, /* 0x3fc90fda */
|
|
pio2_lo = 7.5497894159e-08, /* 0x33a22168 */
|
|
pS0 = 1.6666667163e-01, /* 0x3e2aaaab */
|
|
pS1 = -3.2556581497e-01, /* 0xbea6b090 */
|
|
pS2 = 2.0121252537e-01, /* 0x3e4e0aa8 */
|
|
pS3 = -4.0055535734e-02, /* 0xbd241146 */
|
|
pS4 = 7.9153501429e-04, /* 0x3a4f7f04 */
|
|
pS5 = 3.4793309169e-05, /* 0x3811ef08 */
|
|
qS1 = -2.4033949375e+00, /* 0xc019d139 */
|
|
qS2 = 2.0209457874e+00, /* 0x4001572d */
|
|
qS3 = -6.8828397989e-01, /* 0xbf303361 */
|
|
qS4 = 7.7038154006e-02; /* 0x3d9dc62e */
|
|
|
|
#ifdef __STDC__
|
|
float __ieee754_acosf(float x)
|
|
#else
|
|
float __ieee754_acosf(x)
|
|
float x;
|
|
#endif
|
|
{
|
|
float z,p,q,r,w,s,c,df;
|
|
int32_t hx,ix;
|
|
GET_FLOAT_WORD(hx,x);
|
|
ix = hx&0x7fffffff;
|
|
if(ix==0x3f800000) { /* |x|==1 */
|
|
if(hx>0) return 0.0; /* acos(1) = 0 */
|
|
else return pi+(float)2.0*pio2_lo; /* acos(-1)= pi */
|
|
} else if(ix>0x3f800000) { /* |x| >= 1 */
|
|
return (x-x)/(x-x); /* acos(|x|>1) is NaN */
|
|
}
|
|
if(ix<0x3f000000) { /* |x| < 0.5 */
|
|
if(ix<=0x23000000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
|
|
z = x*x;
|
|
p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
|
|
q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
|
|
r = p/q;
|
|
return pio2_hi - (x - (pio2_lo-x*r));
|
|
} else if (hx<0) { /* x < -0.5 */
|
|
z = (one+x)*(float)0.5;
|
|
p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
|
|
q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
|
|
s = __ieee754_sqrtf(z);
|
|
r = p/q;
|
|
w = r*s-pio2_lo;
|
|
return pi - (float)2.0*(s+w);
|
|
} else { /* x > 0.5 */
|
|
int32_t idf;
|
|
z = (one-x)*(float)0.5;
|
|
s = __ieee754_sqrtf(z);
|
|
df = s;
|
|
GET_FLOAT_WORD(idf,df);
|
|
SET_FLOAT_WORD(df,idf&0xfffff000);
|
|
c = (z-df*df)/(s+df);
|
|
p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
|
|
q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
|
|
r = p/q;
|
|
w = r*s+c;
|
|
return (float)2.0*(df+w);
|
|
}
|
|
}
|