s_scalbnl.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. * scalbnl (long double x, int n)
  14. * scalbnl(x,n) returns x* 2**n computed by exponent
  15. * manipulation rather than by actually performing an
  16. * exponentiation or a multiplication.
  17. */
  18. /*
  19. * We assume that a long double has a 15-bit exponent. On systems
  20. * where long double is the same as double, scalbnl() is an alias
  21. * for scalbn(), so we don't use this routine.
  22. */
  23. #include "cdefs-compat.h"
  24. #include <float.h>
  25. #include <openlibm_math.h>
  26. #include "fpmath.h"
  27. #include "math_private.h"
  28. #if LDBL_MAX_EXP != 0x4000
  29. #error "Unsupported long double format"
  30. #endif
  31. static const long double
  32. huge = 0x1p16000L,
  33. tiny = 0x1p-16000L;
  34. OLM_DLLEXPORT long double
  35. scalbnl (long double x, int n)
  36. {
  37. union IEEEl2bits u;
  38. int k;
  39. u.e = x;
  40. k = u.bits.exp; /* extract exponent */
  41. if (k==0) { /* 0 or subnormal x */
  42. if ((u.bits.manh|u.bits.manl)==0) return x; /* +-0 */
  43. u.e *= 0x1p+128;
  44. k = u.bits.exp - 128;
  45. if (n< -50000) return tiny*x; /*underflow*/
  46. }
  47. if (k==0x7fff) return x+x; /* NaN or Inf */
  48. k = k+n;
  49. if (k >= 0x7fff) return huge*copysignl(huge,x); /* overflow */
  50. if (k > 0) /* normal result */
  51. {u.bits.exp = k; return u.e;}
  52. if (k <= -128) {
  53. if (n > 50000) /* in case integer overflow in n+k */
  54. return huge*copysign(huge,x); /*overflow*/
  55. else return tiny*copysign(tiny,x); /*underflow*/
  56. }
  57. k += 128; /* subnormal result */
  58. u.bits.exp = k;
  59. return u.e*0x1p-128;
  60. }
  61. __strong_reference(scalbnl, ldexpl);