s_scalbn.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. #if defined(LIBM_SCCS) && !defined(lint)
  13. static char rcsid[] = "$NetBSD: s_scalbn.c,v 1.8 1995/05/10 20:48:08 jtc 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 "math.h"
  22. #include "math_private.h"
  23. libm_hidden_proto(copysign)
  24. #ifdef __STDC__
  25. static const double
  26. #else
  27. static double
  28. #endif
  29. two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
  30. twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
  31. huge = 1.0e+300,
  32. tiny = 1.0e-300;
  33. libm_hidden_proto(scalbn)
  34. #ifdef __STDC__
  35. double scalbn (double x, int n)
  36. #else
  37. double scalbn (x,n)
  38. double x; int n;
  39. #endif
  40. {
  41. int32_t k,hx,lx;
  42. EXTRACT_WORDS(hx,lx,x);
  43. k = (hx&0x7ff00000)>>20; /* extract exponent */
  44. if (k==0) { /* 0 or subnormal x */
  45. if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
  46. x *= two54;
  47. GET_HIGH_WORD(hx,x);
  48. k = ((hx&0x7ff00000)>>20) - 54;
  49. if (n< -50000) return tiny*x; /*underflow*/
  50. }
  51. if (k==0x7ff) return x+x; /* NaN or Inf */
  52. k = k+n;
  53. if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
  54. if (k > 0) /* normal result */
  55. {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}
  56. if (k <= -54) {
  57. if (n > 50000) /* in case integer overflow in n+k */
  58. return huge*copysign(huge,x); /*overflow*/
  59. else return tiny*copysign(tiny,x); /*underflow*/
  60. }
  61. k += 54; /* subnormal result */
  62. SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20));
  63. return x*twom54;
  64. }
  65. libm_hidden_def(scalbn)