s_scalbn.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. #ifndef lint
  13. static char rcsid[] = "$FreeBSD: src/lib/msun/src/s_scalbn.c,v 1.11 2005/03/07 21:27:37 das Exp $";
  14. #endif
  15. /*
  16. * scalbn (double x, int n)
  17. * scalbn(x,n) returns x* 2**n computed by exponent
  18. * manipulation rather than by actually performing an
  19. * exponentiation or a multiplication.
  20. */
  21. #include <sys/cdefs.h>
  22. #include <float.h>
  23. #include "openlibm.h"
  24. #include "math_private.h"
  25. static const double
  26. two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
  27. twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
  28. huge = 1.0e+300,
  29. tiny = 1.0e-300;
  30. double
  31. scalbn (double x, int n)
  32. {
  33. int32_t k,hx,lx;
  34. EXTRACT_WORDS(hx,lx,x);
  35. k = (hx&0x7ff00000)>>20; /* extract exponent */
  36. if (k==0) { /* 0 or subnormal x */
  37. if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
  38. x *= two54;
  39. GET_HIGH_WORD(hx,x);
  40. k = ((hx&0x7ff00000)>>20) - 54;
  41. if (n< -50000) return tiny*x; /*underflow*/
  42. }
  43. if (k==0x7ff) return x+x; /* NaN or Inf */
  44. k = k+n;
  45. if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
  46. if (k > 0) /* normal result */
  47. {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}
  48. if (k <= -54)
  49. if (n > 50000) /* in case integer overflow in n+k */
  50. return huge*copysign(huge,x); /*overflow*/
  51. else return tiny*copysign(tiny,x); /*underflow*/
  52. k += 54; /* subnormal result */
  53. SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20));
  54. return x*twom54;
  55. }
  56. #if (LDBL_MANT_DIG == 53)
  57. __weak_reference(scalbn, ldexpl);
  58. __weak_reference(scalbn, scalbnl);
  59. #endif