/src/pike_float.h

http://github.com/pikelang/Pike · C Header · 91 lines · 58 code · 16 blank · 17 comment · 2 complexity · 2698b51b9ec91e5082f36e8342e88cf4 MD5 · raw file

  1. /*
  2. || This file is part of Pike. For copyright information see COPYRIGHT.
  3. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
  4. || for more information.
  5. */
  6. /* Misc stuff for dealing with floats.
  7. */
  8. #ifndef PIKE_FLOAT_H
  9. #define PIKE_FLOAT_H
  10. #include "global.h"
  11. #include <math.h>
  12. #ifdef HAVE_FLOATINGPOINT_H
  13. #include <floatingpoint.h>
  14. #endif
  15. #ifdef HAVE_IEEEFP_H
  16. #include <ieeefp.h>
  17. #endif
  18. #ifdef HAVE_FP_CLASS_H
  19. #include <fp_class.h>
  20. #endif
  21. #ifdef HAVE__ISNAN
  22. #define PIKE_ISNAN(X) _isnan(X)
  23. #else
  24. #define PIKE_ISNAN(X) isnan(X)
  25. #endif
  26. #ifdef HAVE_ISINF
  27. #define PIKE_ISINF(X) isinf(X)
  28. #elif defined(HAVE_ISFINITE)
  29. #define PIKE_ISINF(X) (!isfinite(X))
  30. #elif defined(HAVE__FINITE)
  31. #define PIKE_ISINF(X) (!_finite(X))
  32. #else
  33. #define PIKE_ISINF(X) ((X) && ((X)+(X) == (X)))
  34. #endif /* HAVE_ISINF */
  35. #ifdef INFINITY
  36. #define MAKE_INF() INFINITY
  37. #else
  38. #define MAKE_INF() (DBL_MAX+DBL_MAX)
  39. #endif
  40. #ifdef HAVE_NAN
  41. #define MAKE_NAN() (nan(""))
  42. #else
  43. #define MAKE_NAN() (MAKE_INF()-MAKE_INF())
  44. #endif
  45. #ifdef HAVE_ISUNORDERED
  46. #define PIKE_ISUNORDERED(X,Y) isunordered(X,Y)
  47. #else
  48. #define PIKE_ISUNORDERED(X,Y) (PIKE_ISNAN(X)||PIKE_ISNAN(Y))
  49. #endif /* HAVE_ISUNORDERED */
  50. #ifndef FLOAT_IS_IEEE_BIG
  51. #ifndef FLOAT_IS_IEEE_LITTLE
  52. #define NEED_CUSTOM_IEEE
  53. #endif
  54. #endif
  55. #ifndef NEED_CUSTOM_IEEE
  56. #ifndef DOUBLE_IS_IEEE_BIG
  57. #ifndef DOUBLE_IS_IEEE_LITTLE
  58. #define NEED_CUSTOM_IEEE
  59. #endif
  60. #endif
  61. #endif
  62. /* This calculation should always give some margin based on the size. */
  63. /* It utilizes that log10(256) ~= 2.4 < 5/2. */
  64. /* One quarter of the float is the exponent. */
  65. #define MAX_FLOAT_EXP_LEN ((SIZEOF_FLOAT_TYPE * 5 + 4) / 8)
  66. /* Ten extra bytes: Mantissa sign, decimal point (up to four bytes),
  67. * zero before the decimal point, the 'e', the exponent sign, an extra
  68. * digit due to the mantissa/exponent split, and the \0 termination.
  69. *
  70. * Four bytes for the decimal point is built on the assumption that it
  71. * can be any unicode char, which in utf8 encoding can take up to four
  72. * bytes. See format_pike_float. */
  73. #define MAX_FLOAT_SPRINTF_LEN (10 + PIKEFLOAT_DIG + MAX_FLOAT_EXP_LEN)
  74. PMOD_EXPORT void format_pike_float (char *buf, FLOAT_TYPE f);
  75. #endif /* !PIKE_FLOAT_H */