1996-03-05 21:41:30 +00:00
|
|
|
/*
|
2001-03-12 00:04:52 +00:00
|
|
|
* IBM Accurate Mathematical Library
|
2002-07-06 06:36:39 +00:00
|
|
|
* written by International Business Machines Corp.
|
2024-01-01 18:12:26 +00:00
|
|
|
* Copyright (C) 2001-2024 Free Software Foundation, Inc.
|
1996-03-05 21:41:30 +00:00
|
|
|
*
|
2001-03-12 00:04:52 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
2002-08-26 22:40:48 +00:00
|
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
2001-03-12 00:04:52 +00:00
|
|
|
* (at your option) any later version.
|
1996-03-05 21:41:30 +00:00
|
|
|
*
|
2001-03-12 00:04:52 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2002-08-20 21:51:55 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
1996-03-05 21:41:30 +00:00
|
|
|
*
|
2001-03-12 00:04:52 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
1996-03-05 21:41:30 +00:00
|
|
|
*/
|
2001-03-12 00:04:52 +00:00
|
|
|
/******************************************************************/
|
|
|
|
/* MODULE_NAME:uasncs.c */
|
|
|
|
/* */
|
|
|
|
/* FUNCTIONS: uasin */
|
|
|
|
/* uacos */
|
2021-03-10 12:39:56 +00:00
|
|
|
/* FILES NEEDED: dla.h endian.h mydefs.h usncs.h */
|
2001-03-12 00:04:52 +00:00
|
|
|
/* sincos.tbl asincos.tbl powtwo.tbl root.tbl */
|
|
|
|
/* */
|
|
|
|
/******************************************************************/
|
|
|
|
#include "endian.h"
|
|
|
|
#include "mydefs.h"
|
|
|
|
#include "asincos.tbl"
|
|
|
|
#include "root.tbl"
|
|
|
|
#include "powtwo.tbl"
|
|
|
|
#include "uasncs.h"
|
2015-02-26 17:18:54 +00:00
|
|
|
#include <float.h>
|
|
|
|
#include <math.h>
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math_private.h>
|
2018-05-10 00:53:04 +00:00
|
|
|
#include <math-underflow.h>
|
2019-07-16 15:17:22 +00:00
|
|
|
#include <libm-alias-finite.h>
|
2001-03-12 00:04:52 +00:00
|
|
|
|
2011-10-25 04:56:33 +00:00
|
|
|
#ifndef SECTION
|
|
|
|
# define SECTION
|
|
|
|
#endif
|
|
|
|
|
2021-03-10 12:39:56 +00:00
|
|
|
/* asin with max ULP of ~0.516 based on random sampling. */
|
2011-10-25 04:56:33 +00:00
|
|
|
double
|
|
|
|
SECTION
|
|
|
|
__ieee754_asin(double x){
|
2021-03-10 12:39:56 +00:00
|
|
|
double x2,xx,res1,p,t,res,r,cor,cc,y,c,z;
|
2001-03-12 00:04:52 +00:00
|
|
|
mynumber u,v;
|
2001-03-12 07:57:09 +00:00
|
|
|
int4 k,m,n;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2001-03-12 00:04:52 +00:00
|
|
|
u.x = x;
|
|
|
|
m = u.i[HIGH_HALF];
|
|
|
|
k = 0x7fffffff&m; /* no sign */
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2015-02-26 17:18:54 +00:00
|
|
|
if (k < 0x3e500000)
|
|
|
|
{
|
2015-09-23 22:42:30 +00:00
|
|
|
math_check_force_underflow (x);
|
2015-02-26 17:18:54 +00:00
|
|
|
return x; /* for x->0 => sin(x)=x */
|
|
|
|
}
|
2001-03-12 00:04:52 +00:00
|
|
|
/*----------------------2^-26 <= |x| < 2^ -3 -----------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fc00000) {
|
|
|
|
x2 = x*x;
|
|
|
|
t = (((((f6*x2 + f5)*x2 + f4)*x2 + f3)*x2 + f2)*x2 + f1)*(x2*x);
|
|
|
|
res = x+t; /* res=arcsin(x) according to Taylor series */
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.513. */
|
|
|
|
return res;
|
2001-03-12 00:04:52 +00:00
|
|
|
}
|
|
|
|
/*---------------------0.125 <= |x| < 0.5 -----------------------------*/
|
|
|
|
else if (k < 0x3fe00000) {
|
|
|
|
if (k<0x3fd00000) n = 11*((k&0x000fffff)>>15);
|
|
|
|
else n = 11*((k&0x000fffff)>>14)+352;
|
|
|
|
if (m>0) xx = x - asncs.x[n];
|
|
|
|
else xx = -x - asncs.x[n];
|
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+xx*(asncs.x[n+5]
|
|
|
|
+xx*asncs.x[n+6]))))+asncs.x[n+7];
|
|
|
|
t+=p;
|
|
|
|
res =asncs.x[n+8] +t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.524. */
|
|
|
|
return (m>0)?res:-res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fe00000) */
|
|
|
|
/*-------------------- 0.5 <= |x| < 0.75 -----------------------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fe80000) {
|
|
|
|
n = 1056+((k&0x000fe000)>>11)*3;
|
|
|
|
if (m>0) xx = x - asncs.x[n];
|
|
|
|
else xx = -x - asncs.x[n];
|
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+xx*(asncs.x[n+5]
|
|
|
|
+xx*(asncs.x[n+6]+xx*asncs.x[n+7])))))+asncs.x[n+8];
|
|
|
|
t+=p;
|
|
|
|
res =asncs.x[n+9] +t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.505. */
|
|
|
|
return (m>0)?res:-res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fe80000) */
|
|
|
|
/*--------------------- 0.75 <= |x|< 0.921875 ----------------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fed8000) {
|
|
|
|
n = 992+((k&0x000fe000)>>13)*13;
|
|
|
|
if (m>0) xx = x - asncs.x[n];
|
|
|
|
else xx = -x - asncs.x[n];
|
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+xx*(asncs.x[n+5]
|
|
|
|
+xx*(asncs.x[n+6]+xx*(asncs.x[n+7]+xx*asncs.x[n+8]))))))+asncs.x[n+9];
|
|
|
|
t+=p;
|
|
|
|
res =asncs.x[n+10] +t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.505. */
|
|
|
|
return (m>0)?res:-res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fed8000) */
|
|
|
|
/*-------------------0.921875 <= |x| < 0.953125 ------------------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fee8000) {
|
|
|
|
n = 884+((k&0x000fe000)>>13)*14;
|
|
|
|
if (m>0) xx = x - asncs.x[n];
|
|
|
|
else xx = -x - asncs.x[n];
|
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*(asncs.x[n+5]+xx*(asncs.x[n+6]
|
2001-03-12 00:04:52 +00:00
|
|
|
+xx*(asncs.x[n+7]+xx*(asncs.x[n+8]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*asncs.x[n+9])))))))+asncs.x[n+10];
|
2001-03-12 00:04:52 +00:00
|
|
|
t+=p;
|
|
|
|
res =asncs.x[n+11] +t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.505. */
|
|
|
|
return (m>0)?res:-res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fee8000) */
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2001-03-12 00:04:52 +00:00
|
|
|
/*--------------------0.953125 <= |x| < 0.96875 ------------------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fef0000) {
|
|
|
|
n = 768+((k&0x000fe000)>>13)*15;
|
|
|
|
if (m>0) xx = x - asncs.x[n];
|
|
|
|
else xx = -x - asncs.x[n];
|
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*(asncs.x[n+5]+xx*(asncs.x[n+6]
|
2001-03-12 00:04:52 +00:00
|
|
|
+xx*(asncs.x[n+7]+xx*(asncs.x[n+8]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*(asncs.x[n+9]+xx*asncs.x[n+10]))))))))+asncs.x[n+11];
|
2001-03-12 00:04:52 +00:00
|
|
|
t+=p;
|
|
|
|
res =asncs.x[n+12] +t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.505. */
|
|
|
|
return (m>0)?res:-res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fef0000) */
|
|
|
|
/*--------------------0.96875 <= |x| < 1 --------------------------------*/
|
|
|
|
else
|
|
|
|
if (k<0x3ff00000) {
|
|
|
|
z = 0.5*((m>0)?(1.0-x):(1.0+x));
|
|
|
|
v.x=z;
|
|
|
|
k=v.i[HIGH_HALF];
|
|
|
|
t=inroot[(k&0x001fffff)>>14]*powtwo[511-(k>>21)];
|
|
|
|
r=1.0-t*t*z;
|
|
|
|
t = t*(rt0+r*(rt1+r*(rt2+r*rt3)));
|
|
|
|
c=t*z;
|
|
|
|
t=c*(1.5-0.5*t*c);
|
|
|
|
y=(c+t24)-t24;
|
|
|
|
cc = (z-y*y)/(t+y);
|
|
|
|
p=(((((f6*z+f5)*z+f4)*z+f3)*z+f2)*z+f1)*z;
|
|
|
|
cor = (hp1.x - 2.0*cc)-2.0*(y+cc)*p;
|
|
|
|
res1 = hp0.x - 2.0*y;
|
|
|
|
res =res1 + cor;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.5015. */
|
|
|
|
return (m>0)?res:-res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3ff00000) */
|
|
|
|
/*---------------------------- |x|>=1 -------------------------------*/
|
|
|
|
else if (k==0x3ff00000 && u.i[LOW_HALF]==0) return (m>0)?hp0.x:-hp0.x;
|
2001-03-13 02:01:34 +00:00
|
|
|
else
|
2022-10-13 10:10:10 +00:00
|
|
|
return (x - x) / (x - x);
|
2001-03-12 00:04:52 +00:00
|
|
|
}
|
2011-10-25 00:19:17 +00:00
|
|
|
#ifndef __ieee754_asin
|
2019-07-16 15:17:22 +00:00
|
|
|
libm_alias_finite (__ieee754_asin, __asin)
|
2011-10-25 00:19:17 +00:00
|
|
|
#endif
|
2001-03-12 00:04:52 +00:00
|
|
|
|
|
|
|
/*******************************************************************/
|
|
|
|
/* */
|
|
|
|
/* End of arcsine, below is arccosine */
|
|
|
|
/* */
|
|
|
|
/*******************************************************************/
|
|
|
|
|
2021-03-10 12:39:56 +00:00
|
|
|
/* acos with max ULP of ~0.523 based on random sampling. */
|
2011-10-25 04:56:33 +00:00
|
|
|
double
|
|
|
|
SECTION
|
|
|
|
__ieee754_acos(double x)
|
1996-03-05 21:41:30 +00:00
|
|
|
{
|
2021-03-10 12:39:56 +00:00
|
|
|
double x2,xx,res1,p,t,res,r,cor,cc,y,c,z;
|
2001-03-12 00:04:52 +00:00
|
|
|
mynumber u,v;
|
2001-03-12 07:57:09 +00:00
|
|
|
int4 k,m,n;
|
2001-03-12 00:04:52 +00:00
|
|
|
u.x = x;
|
|
|
|
m = u.i[HIGH_HALF];
|
|
|
|
k = 0x7fffffff&m;
|
|
|
|
/*------------------- |x|<2.77556*10^-17 ----------------------*/
|
|
|
|
if (k < 0x3c880000) return hp0.x;
|
|
|
|
|
|
|
|
/*----------------- 2.77556*10^-17 <= |x| < 2^-3 --------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fc00000) {
|
|
|
|
x2 = x*x;
|
|
|
|
t = (((((f6*x2 + f5)*x2 + f4)*x2 + f3)*x2 + f2)*x2 + f1)*(x2*x);
|
|
|
|
r=hp0.x-x;
|
|
|
|
cor=(((hp0.x-r)-x)+hp1.x)-t;
|
|
|
|
res = r+cor;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.502. */
|
|
|
|
return res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fc00000) */
|
|
|
|
/*---------------------- 0.125 <= |x| < 0.5 --------------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fe00000) {
|
|
|
|
if (k<0x3fd00000) n = 11*((k&0x000fffff)>>15);
|
|
|
|
else n = 11*((k&0x000fffff)>>14)+352;
|
|
|
|
if (m>0) xx = x - asncs.x[n];
|
|
|
|
else xx = -x - asncs.x[n];
|
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*(asncs.x[n+5]+xx*asncs.x[n+6]))))+asncs.x[n+7];
|
2001-03-12 00:04:52 +00:00
|
|
|
t+=p;
|
|
|
|
y = (m>0)?(hp0.x-asncs.x[n+8]):(hp0.x+asncs.x[n+8]);
|
|
|
|
t = (m>0)?(hp1.x-t):(hp1.x+t);
|
|
|
|
res = y+t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.51. */
|
|
|
|
return res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fe00000) */
|
|
|
|
|
|
|
|
/*--------------------------- 0.5 <= |x| < 0.75 ---------------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fe80000) {
|
|
|
|
n = 1056+((k&0x000fe000)>>11)*3;
|
2021-03-10 12:39:56 +00:00
|
|
|
if (m>0) {xx = x - asncs.x[n]; }
|
|
|
|
else {xx = -x - asncs.x[n]; }
|
2001-03-12 00:04:52 +00:00
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*(asncs.x[n+5]+xx*(asncs.x[n+6]+
|
|
|
|
xx*asncs.x[n+7])))))+asncs.x[n+8];
|
2001-03-12 00:04:52 +00:00
|
|
|
t+=p;
|
|
|
|
y = (m>0)?(hp0.x-asncs.x[n+9]):(hp0.x+asncs.x[n+9]);
|
|
|
|
t = (m>0)?(hp1.x-t):(hp1.x+t);
|
|
|
|
res = y+t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.523 based on random sampling. */
|
|
|
|
return res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fe80000) */
|
|
|
|
|
|
|
|
/*------------------------- 0.75 <= |x| < 0.921875 -------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fed8000) {
|
|
|
|
n = 992+((k&0x000fe000)>>13)*13;
|
2021-03-10 12:39:56 +00:00
|
|
|
if (m>0) {xx = x - asncs.x[n]; }
|
|
|
|
else {xx = -x - asncs.x[n]; }
|
2001-03-12 00:04:52 +00:00
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*(asncs.x[n+5]+xx*(asncs.x[n+6]+xx*(asncs.x[n+7]+
|
|
|
|
xx*asncs.x[n+8]))))))+asncs.x[n+9];
|
2001-03-12 00:04:52 +00:00
|
|
|
t+=p;
|
|
|
|
y = (m>0)?(hp0.x-asncs.x[n+10]):(hp0.x+asncs.x[n+10]);
|
|
|
|
t = (m>0)?(hp1.x-t):(hp1.x+t);
|
|
|
|
res = y+t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.523 based on random sampling. */
|
|
|
|
return res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fed8000) */
|
|
|
|
|
|
|
|
/*-------------------0.921875 <= |x| < 0.953125 ------------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fee8000) {
|
|
|
|
n = 884+((k&0x000fe000)>>13)*14;
|
2021-03-10 12:39:56 +00:00
|
|
|
if (m>0) {xx = x - asncs.x[n]; }
|
|
|
|
else {xx = -x - asncs.x[n]; }
|
2001-03-12 00:04:52 +00:00
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*(asncs.x[n+5]+xx*(asncs.x[n+6]
|
2001-03-12 00:04:52 +00:00
|
|
|
+xx*(asncs.x[n+7]+xx*(asncs.x[n+8]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*asncs.x[n+9])))))))+asncs.x[n+10];
|
2001-03-12 00:04:52 +00:00
|
|
|
t+=p;
|
|
|
|
y = (m>0)?(hp0.x-asncs.x[n+11]):(hp0.x+asncs.x[n+11]);
|
|
|
|
t = (m>0)?(hp1.x-t):(hp1.x+t);
|
|
|
|
res = y+t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.523 based on random sampling. */
|
|
|
|
return res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fee8000) */
|
|
|
|
|
|
|
|
/*--------------------0.953125 <= |x| < 0.96875 ----------------*/
|
|
|
|
else
|
|
|
|
if (k < 0x3fef0000) {
|
|
|
|
n = 768+((k&0x000fe000)>>13)*15;
|
2021-03-10 12:39:56 +00:00
|
|
|
if (m>0) {xx = x - asncs.x[n]; }
|
|
|
|
else {xx = -x - asncs.x[n]; }
|
2001-03-12 00:04:52 +00:00
|
|
|
t = asncs.x[n+1]*xx;
|
|
|
|
p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*(asncs.x[n+5]+xx*(asncs.x[n+6]
|
2001-03-12 00:04:52 +00:00
|
|
|
+xx*(asncs.x[n+7]+xx*(asncs.x[n+8]+xx*(asncs.x[n+9]+
|
2011-10-12 15:27:51 +00:00
|
|
|
xx*asncs.x[n+10]))))))))+asncs.x[n+11];
|
2001-03-12 00:04:52 +00:00
|
|
|
t+=p;
|
|
|
|
y = (m>0)?(hp0.x-asncs.x[n+12]):(hp0.x+asncs.x[n+12]);
|
|
|
|
t = (m>0)?(hp1.x-t):(hp1.x+t);
|
|
|
|
res = y+t;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.523 based on random sampling. */
|
|
|
|
return res;
|
2001-03-12 00:04:52 +00:00
|
|
|
} /* else if (k < 0x3fef0000) */
|
|
|
|
/*-----------------0.96875 <= |x| < 1 ---------------------------*/
|
|
|
|
|
|
|
|
else
|
|
|
|
if (k<0x3ff00000) {
|
|
|
|
z = 0.5*((m>0)?(1.0-x):(1.0+x));
|
|
|
|
v.x=z;
|
|
|
|
k=v.i[HIGH_HALF];
|
|
|
|
t=inroot[(k&0x001fffff)>>14]*powtwo[511-(k>>21)];
|
|
|
|
r=1.0-t*t*z;
|
|
|
|
t = t*(rt0+r*(rt1+r*(rt2+r*rt3)));
|
|
|
|
c=t*z;
|
|
|
|
t=c*(1.5-0.5*t*c);
|
|
|
|
y = (t27*c+c)-t27*c;
|
|
|
|
cc = (z-y*y)/(t+y);
|
|
|
|
p=(((((f6*z+f5)*z+f4)*z+f3)*z+f2)*z+f1)*z;
|
|
|
|
if (m<0) {
|
|
|
|
cor = (hp1.x - cc)-(y+cc)*p;
|
|
|
|
res1 = hp0.x - y;
|
|
|
|
res =res1 + cor;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.501. */
|
|
|
|
return (res+res);
|
2001-03-12 00:04:52 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
cor = cc+p*(y+cc);
|
|
|
|
res = y + cor;
|
2021-03-10 12:39:56 +00:00
|
|
|
/* Max ULP is 0.515. */
|
|
|
|
return (res+res);
|
2001-03-12 00:04:52 +00:00
|
|
|
}
|
|
|
|
} /* else if (k < 0x3ff00000) */
|
|
|
|
|
|
|
|
/*---------------------------- |x|>=1 -----------------------*/
|
|
|
|
else
|
|
|
|
if (k==0x3ff00000 && u.i[LOW_HALF]==0) return (m>0)?0:2.0*hp0.x;
|
2001-03-13 02:01:34 +00:00
|
|
|
else
|
2022-10-13 10:10:10 +00:00
|
|
|
return (x - x) / (x - x);
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2011-10-25 00:19:17 +00:00
|
|
|
#ifndef __ieee754_acos
|
2019-07-16 15:17:22 +00:00
|
|
|
libm_alias_finite (__ieee754_acos, __acos)
|
2011-10-25 00:19:17 +00:00
|
|
|
#endif
|