s_scalbn.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* @(#)s_scalbn.c 5.1 93/09/24 */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunPro, a Sun Microsystems, Inc. business.
  7. * Permission to use, copy, modify, and distribute this
  8. * software is freely granted, provided that this notice
  9. * is preserved.
  10. * ====================================================
  11. */
  12. /*
  13. * scalbn (double x, int n)
  14. * scalbn(x,n) returns x* 2**n computed by exponent
  15. * manipulation rather than by actually performing an
  16. * exponentiation or a multiplication.
  17. */
  18. #include "cdefs-compat.h"
  19. #include <float.h>
  20. #include "openlibm.h"
  21. #include "math_private.h"
  22. static const double
  23. two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
  24. twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
  25. huge = 1.0e+300,
  26. tiny = 1.0e-300;
  27. double
  28. scalbn (double x, int 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) return x; /* +-0 */
  35. x *= two54;
  36. GET_HIGH_WORD(hx,x);
  37. k = ((hx&0x7ff00000)>>20) - 54;
  38. if (n< -50000) return tiny*x; /*underflow*/
  39. }
  40. if (k==0x7ff) return x+x; /* NaN or Inf */
  41. k = k+n;
  42. if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
  43. if (k > 0) /* normal result */
  44. {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}
  45. if (k <= -54) {
  46. if (n > 50000) /* in case integer overflow in n+k */
  47. return huge*copysign(huge,x); /*overflow*/
  48. else return tiny*copysign(tiny,x); /*underflow*/
  49. }
  50. k += 54; /* subnormal result */
  51. SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20));
  52. return x*twom54;
  53. }
  54. #if (LDBL_MANT_DIG == 53)
  55. __weak_reference(scalbn, ldexpl);
  56. __weak_reference(scalbn, scalbnl);
  57. #endif