s_scalbn.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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_libm.h"
  18. #include "math_private.h"
  19. #include <limits.h>
  20. #ifdef __WATCOMC__ /* Watcom defines huge=__huge */
  21. #undef huge
  22. #endif
  23. static const double
  24. two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
  25. twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
  26. huge = 1.0e+300,
  27. tiny = 1.0e-300;
  28. double scalbln(double x, long n)
  29. {
  30. int32_t k, hx, lx;
  31. EXTRACT_WORDS(hx, lx, x);
  32. k = (hx & 0x7ff00000) >> 20; /* extract exponent */
  33. if (k == 0) { /* 0 or subnormal x */
  34. if ((lx | (hx & 0x7fffffff)) == 0)
  35. return x; /* +-0 */
  36. x *= two54;
  37. GET_HIGH_WORD(hx, x);
  38. k = ((hx & 0x7ff00000) >> 20) - 54;
  39. }
  40. if (k == 0x7ff)
  41. return x + x; /* NaN or Inf */
  42. k = (int32_t)(k + n);
  43. if (k > 0x7fe)
  44. return huge * copysign(huge, x); /* overflow */
  45. if (n < -50000)
  46. return tiny * copysign(tiny, x); /* underflow */
  47. if (k > 0) { /* normal result */
  48. SET_HIGH_WORD(x, (hx & 0x800fffff) | (k << 20));
  49. return x;
  50. }
  51. if (k <= -54) {
  52. if (n > 50000) /* in case integer overflow in n+k */
  53. return huge * copysign(huge, x); /* overflow */
  54. return tiny * copysign(tiny, x); /* underflow */
  55. }
  56. k += 54; /* subnormal result */
  57. SET_HIGH_WORD(x, (hx & 0x800fffff) | (k << 20));
  58. return x * twom54;
  59. }
  60. libm_hidden_def(scalbln)
  61. double scalbn(double x, int n)
  62. {
  63. return scalbln(x, n);
  64. }
  65. libm_hidden_def(scalbn)