s_scalbn.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. * scalbn (double x, int n)
  13. * scalbn(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 scalbn(double x, int 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) return x; /* +-0 */
  31. x *= two54;
  32. GET_HIGH_WORD(hx,x);
  33. k = ((hx&0x7ff00000)>>20) - 54;
  34. if (n< -50000) return tiny*x; /*underflow*/
  35. }
  36. if (k==0x7ff) return x+x; /* NaN or Inf */
  37. k = k+n;
  38. if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
  39. if (k > 0) /* normal result */
  40. {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}
  41. if (k <= -54) {
  42. if (n > 50000) /* in case integer overflow in n+k */
  43. return huge*copysign(huge,x); /*overflow*/
  44. else return tiny*copysign(tiny,x); /*underflow*/
  45. }
  46. k += 54; /* subnormal result */
  47. SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20));
  48. return x*twom54;
  49. }
  50. libm_hidden_def(scalbn)