e_acosl.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* @(#)e_acos.c 1.3 95/01/18 */
  2. /* FreeBSD: head/lib/msun/src/e_acos.c 176451 2008-02-22 02:30:36Z das */
  3. /*
  4. * ====================================================
  5. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  6. *
  7. * Developed at SunSoft, a Sun Microsystems, Inc. business.
  8. * Permission to use, copy, modify, and distribute this
  9. * software is freely granted, provided that this notice
  10. * is preserved.
  11. * ====================================================
  12. */
  13. #include "cdefs-compat.h"
  14. //__FBSDID("$FreeBSD: src/lib/msun/src/e_acosl.c,v 1.2 2008/08/02 03:56:22 das Exp $");
  15. /*
  16. * See comments in e_acos.c.
  17. * Converted to long double by David Schultz <das@FreeBSD.ORG>.
  18. */
  19. #include <float.h>
  20. #include <openlibm_math.h>
  21. #include "invtrig.h"
  22. #include "math_private.h"
  23. static const long double
  24. one= 1.00000000000000000000e+00;
  25. #ifdef __i386__
  26. /* XXX Work around the fact that gcc truncates long double constants on i386 */
  27. static volatile double
  28. pi1 = 3.14159265358979311600e+00, /* 0x1.921fb54442d18p+1 */
  29. pi2 = 1.22514845490862001043e-16; /* 0x1.1a80000000000p-53 */
  30. #define pi ((long double)pi1 + pi2)
  31. #else
  32. static const long double
  33. pi = 3.14159265358979323846264338327950280e+00L;
  34. #endif
  35. OLM_DLLEXPORT long double
  36. acosl(long double x)
  37. {
  38. union IEEEl2bits u;
  39. long double z,p,q,r,w,s,c,df;
  40. int16_t expsign, expt;
  41. u.e = x;
  42. expsign = u.xbits.expsign;
  43. expt = expsign & 0x7fff;
  44. if(expt >= BIAS) { /* |x| >= 1 */
  45. if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) {
  46. if (expsign>0) return 0.0; /* acos(1) = 0 */
  47. else return pi+2.0*pio2_lo; /* acos(-1)= pi */
  48. }
  49. return (x-x)/(x-x); /* acos(|x|>1) is NaN */
  50. }
  51. if(expt<BIAS-1) { /* |x| < 0.5 */
  52. if(expt<ACOS_CONST) return pio2_hi+pio2_lo;/*x tiny: acosl=pi/2*/
  53. z = x*x;
  54. p = P(z);
  55. q = Q(z);
  56. r = p/q;
  57. return pio2_hi - (x - (pio2_lo-x*r));
  58. } else if (expsign<0) { /* x < -0.5 */
  59. z = (one+x)*0.5;
  60. p = P(z);
  61. q = Q(z);
  62. s = sqrtl(z);
  63. r = p/q;
  64. w = r*s-pio2_lo;
  65. return pi - 2.0*(s+w);
  66. } else { /* x > 0.5 */
  67. z = (one-x)*0.5;
  68. s = sqrtl(z);
  69. u.e = s;
  70. u.bits.manl = 0;
  71. df = u.e;
  72. c = (z-df*df)/(s+df);
  73. p = P(z);
  74. q = Q(z);
  75. r = p/q;
  76. w = r*s+c;
  77. return 2.0*(df+w);
  78. }
  79. }