e_log10f.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. #include "cdefs-compat.h"
  12. //__FBSDID("$FreeBSD: src/lib/msun/src/e_log10f.c,v 1.13 2011/10/16 05:36:23 das Exp $");
  13. /*
  14. * Float version of e_log10.c. See the latter for most comments.
  15. */
  16. #include "openlibm.h"
  17. #include "math_private.h"
  18. #include "k_logf.h"
  19. // VBS
  20. #define float_t float
  21. static const float
  22. two25 = 3.3554432000e+07, /* 0x4c000000 */
  23. ivln10hi = 4.3432617188e-01, /* 0x3ede6000 */
  24. ivln10lo = -3.1689971365e-05, /* 0xb804ead9 */
  25. log10_2hi = 3.0102920532e-01, /* 0x3e9a2080 */
  26. log10_2lo = 7.9034151668e-07; /* 0x355427db */
  27. static const float zero = 0.0;
  28. float
  29. __ieee754_log10f(float x)
  30. {
  31. float f,hfsq,hi,lo,r,y;
  32. int32_t i,k,hx;
  33. GET_FLOAT_WORD(hx,x);
  34. k=0;
  35. if (hx < 0x00800000) { /* x < 2**-126 */
  36. if ((hx&0x7fffffff)==0)
  37. return -two25/zero; /* log(+-0)=-inf */
  38. if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
  39. k -= 25; x *= two25; /* subnormal number, scale up x */
  40. GET_FLOAT_WORD(hx,x);
  41. }
  42. if (hx >= 0x7f800000) return x+x;
  43. if (hx == 0x3f800000)
  44. return zero; /* log(1) = +0 */
  45. k += (hx>>23)-127;
  46. hx &= 0x007fffff;
  47. i = (hx+(0x4afb0d))&0x800000;
  48. SET_FLOAT_WORD(x,hx|(i^0x3f800000)); /* normalize x or x/2 */
  49. k += (i>>23);
  50. y = (float)k;
  51. f = x - (float)1.0;
  52. hfsq = (float)0.5*f*f;
  53. r = k_log1pf(f);
  54. /* See e_log2f.c and e_log2.c for details. */
  55. if (sizeof(float_t) > sizeof(float))
  56. return (r - hfsq + f) * ((float_t)ivln10lo + ivln10hi) +
  57. y * ((float_t)log10_2lo + log10_2hi);
  58. hi = f - hfsq;
  59. GET_FLOAT_WORD(hx,hi);
  60. SET_FLOAT_WORD(hi,hx&0xfffff000);
  61. lo = (f - hi) - hfsq + r;
  62. return y*log10_2lo + (lo+hi)*ivln10lo + lo*ivln10hi + hi*ivln10hi +
  63. y*log10_2hi;
  64. }