s_cosf.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* s_cosf.c -- float version of s_cos.c.
  2. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
  3. * Optimized by Bruce D. Evans.
  4. */
  5. /*
  6. * ====================================================
  7. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  8. *
  9. * Developed at SunPro, a Sun Microsystems, Inc. business.
  10. * Permission to use, copy, modify, and distribute this
  11. * software is freely granted, provided that this notice
  12. * is preserved.
  13. * ====================================================
  14. */
  15. #include "cdefs-compat.h"
  16. //__FBSDID("$FreeBSD: src/lib/msun/src/s_cosf.c,v 1.18 2008/02/25 22:19:17 bde Exp $");
  17. #include <float.h>
  18. #include <openlibm_math.h>
  19. //#define INLINE_KERNEL_COSDF
  20. //#define INLINE_KERNEL_SINDF
  21. //#define INLINE_REM_PIO2F
  22. #include "math_private.h"
  23. //#include "e_rem_pio2f.c"
  24. //#include "k_cosf.c"
  25. //#include "k_sinf.c"
  26. /* Small multiples of pi/2 rounded to double precision. */
  27. static const double
  28. c1pio2 = 1*M_PI_2, /* 0x3FF921FB, 0x54442D18 */
  29. c2pio2 = 2*M_PI_2, /* 0x400921FB, 0x54442D18 */
  30. c3pio2 = 3*M_PI_2, /* 0x4012D97C, 0x7F3321D2 */
  31. c4pio2 = 4*M_PI_2; /* 0x401921FB, 0x54442D18 */
  32. OLM_DLLEXPORT float
  33. cosf(float x)
  34. {
  35. double y;
  36. int32_t n, hx, ix;
  37. GET_FLOAT_WORD(hx,x);
  38. ix = hx & 0x7fffffff;
  39. if(ix <= 0x3f490fda) { /* |x| ~<= pi/4 */
  40. if(ix<0x39800000) /* |x| < 2**-12 */
  41. if(((int)x)==0) return 1.0; /* 1 with inexact if x != 0 */
  42. return __kernel_cosdf(x);
  43. }
  44. if(ix<=0x407b53d1) { /* |x| ~<= 5*pi/4 */
  45. if(ix<=0x4016cbe3) { /* |x| ~> 3*pi/4 */
  46. if(hx>0)
  47. return __kernel_sindf(c1pio2 - x);
  48. else
  49. return __kernel_sindf(x + c1pio2);
  50. } else
  51. return -__kernel_cosdf(x + (hx > 0 ? -c2pio2 : c2pio2));
  52. }
  53. if(ix<=0x40e231d5) { /* |x| ~<= 9*pi/4 */
  54. if(ix<=0x40afeddf) { /* |x| ~> 7*pi/4 */
  55. if(hx>0)
  56. return __kernel_sindf(x - c3pio2);
  57. else
  58. return __kernel_sindf(-c3pio2 - x);
  59. } else
  60. return __kernel_cosdf(x + (hx > 0 ? -c4pio2 : c4pio2));
  61. }
  62. /* cos(Inf or NaN) is NaN */
  63. else if (ix>=0x7f800000) return x-x;
  64. /* general argument reduction needed */
  65. else {
  66. n = __ieee754_rem_pio2f(x,&y);
  67. switch(n&3) {
  68. case 0: return __kernel_cosdf(y);
  69. case 1: return __kernel_sindf(-y);
  70. case 2: return -__kernel_cosdf(y);
  71. default:
  72. return __kernel_sindf(y);
  73. }
  74. }
  75. }