s_truncl.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. * From: @(#)s_floor.c 5.1 93/09/24
  12. */
  13. #include <sys/cdefs.h>
  14. /*
  15. * truncl(x)
  16. * Return x rounded toward 0 to integral value
  17. * Method:
  18. * Bit twiddling.
  19. * Exception:
  20. * Inexact flag raised if x not equal to truncl(x).
  21. */
  22. #include <float.h>
  23. #include "openlibm.h"
  24. #include <stdint.h>
  25. #include "fpmath.h"
  26. #ifdef LDBL_IMPLICIT_NBIT
  27. #define MANH_SIZE (LDBL_MANH_SIZE + 1)
  28. #else
  29. #define MANH_SIZE LDBL_MANH_SIZE
  30. #endif
  31. static const long double huge = 1.0e300;
  32. static const float zero[] = { 0.0, -0.0 };
  33. long double
  34. truncl(long double x)
  35. {
  36. union IEEEl2bits u = { .e = x };
  37. int e = u.bits.exp - LDBL_MAX_EXP + 1;
  38. if (e < MANH_SIZE - 1) {
  39. if (e < 0) { /* raise inexact if x != 0 */
  40. if (huge + x > 0.0)
  41. u.e = zero[u.bits.sign];
  42. } else {
  43. uint64_t m = ((1llu << MANH_SIZE) - 1) >> (e + 1);
  44. if (((u.bits.manh & m) | u.bits.manl) == 0)
  45. return (x); /* x is integral */
  46. if (huge + x > 0.0) { /* raise inexact flag */
  47. u.bits.manh &= ~m;
  48. u.bits.manl = 0;
  49. }
  50. }
  51. } else if (e < LDBL_MANT_DIG - 1) {
  52. uint64_t m = (uint64_t)-1 >> (64 - LDBL_MANT_DIG + e + 1);
  53. if ((u.bits.manl & m) == 0)
  54. return (x); /* x is integral */
  55. if (huge + x > 0.0) /* raise inexact flag */
  56. u.bits.manl &= ~m;
  57. }
  58. return (u.e);
  59. }