e_sinhf.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* e_sinhf.c -- float version of e_sinh.c.
  2. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
  3. */
  4. /*
  5. * ====================================================
  6. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  7. *
  8. * Developed at SunPro, a Sun Microsystems, Inc. business.
  9. * Permission to use, copy, modify, and distribute this
  10. * software is freely granted, provided that this notice
  11. * is preserved.
  12. * ====================================================
  13. */
  14. #include <sys/cdefs.h>
  15. __FBSDID("$FreeBSD$");
  16. #include "math.h"
  17. #include "math_private.h"
  18. static const float one = 1.0, shuge = 1.0e37;
  19. float
  20. __ieee754_sinhf(float x)
  21. {
  22. float t,h;
  23. int32_t ix,jx;
  24. GET_FLOAT_WORD(jx,x);
  25. ix = jx&0x7fffffff;
  26. /* x is INF or NaN */
  27. if(ix>=0x7f800000) return x+x;
  28. h = 0.5;
  29. if (jx<0) h = -h;
  30. /* |x| in [0,9], return sign(x)*0.5*(E+E/(E+1))) */
  31. if (ix < 0x41100000) { /* |x|<9 */
  32. if (ix<0x39800000) /* |x|<2**-12 */
  33. if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
  34. t = expm1f(fabsf(x));
  35. if(ix<0x3f800000) return h*((float)2.0*t-t*t/(t+one));
  36. return h*(t+t/(t+one));
  37. }
  38. /* |x| in [9, logf(maxfloat)] return 0.5*exp(|x|) */
  39. if (ix < 0x42b17217) return h*__ieee754_expf(fabsf(x));
  40. /* |x| in [logf(maxfloat), overflowthresold] */
  41. if (ix<=0x42b2d4fc)
  42. return h*2.0F*__ldexp_expf(fabsf(x), -1);
  43. /* |x| > overflowthresold, sinh(x) overflow */
  44. return x*shuge;
  45. }