s_scalbn.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * ====================================================
  3. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  4. *
  5. * Developed at SunPro, a Sun Microsystems, Inc. business.
  6. * Permission to use, copy, modify, and distribute this
  7. * software is freely granted, provided that this notice
  8. * is preserved.
  9. * ====================================================
  10. */
  11. /*
  12. * scalbln(double x, long n)
  13. * scalbln(x,n) returns x * 2**n computed by exponent
  14. * manipulation rather than by actually performing an
  15. * exponentiation or a multiplication.
  16. */
  17. #include "math.h"
  18. #include "math_private.h"
  19. static const double
  20. two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
  21. twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
  22. huge = 1.0e+300,
  23. tiny = 1.0e-300;
  24. double scalbln(double x, long n)
  25. {
  26. int32_t k, hx, lx;
  27. EXTRACT_WORDS(hx, lx, x);
  28. k = (hx & 0x7ff00000) >> 20; /* extract exponent */
  29. if (k == 0) { /* 0 or subnormal x */
  30. if ((lx | (hx & 0x7fffffff)) == 0)
  31. return x; /* +-0 */
  32. x *= two54;
  33. GET_HIGH_WORD(hx, x);
  34. k = ((hx & 0x7ff00000) >> 20) - 54;
  35. }
  36. if (k == 0x7ff)
  37. return x + x; /* NaN or Inf */
  38. k = k + n;
  39. if (k > 0x7fe)
  40. return huge * copysign(huge, x); /* overflow */
  41. if (n < -50000)
  42. return tiny * copysign(tiny, x); /* underflow */
  43. if (k > 0) { /* normal result */
  44. SET_HIGH_WORD(x, (hx & 0x800fffff) | (k << 20));
  45. return x;
  46. }
  47. if (k <= -54) {
  48. if (n > 50000) /* in case integer overflow in n+k */
  49. return huge * copysign(huge, x); /* overflow */
  50. return tiny * copysign(tiny, x); /* underflow */
  51. }
  52. k += 54; /* subnormal result */
  53. SET_HIGH_WORD(x, (hx & 0x800fffff) | (k << 20));
  54. return x * twom54;
  55. }
  56. libm_hidden_def(scalbln)
  57. #if LONG_MAX == INT_MAX
  58. /* strong_alias(scalbln, scalbn) - "error: conflicting types for 'scalbn'"
  59. * because it tries to declare "typeof(scalbln) scalbn;"
  60. * which tries to give "long" parameter to scalbn.
  61. * Doing it by hand:
  62. */
  63. __typeof(scalbn) scalbn __attribute__((alias("scalbln")));
  64. #else
  65. double scalbn(double x, int n)
  66. {
  67. return scalbn(x, n);
  68. }
  69. #endif
  70. libm_hidden_def(scalbn)