uClibc_fpmax.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Copyright (C) 2003-2006 Manuel Novoa III
  3. *
  4. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  5. */
  6. /* Define a maximal floating point type, and the associated constants
  7. * that are defined for the floating point types in float.h.
  8. *
  9. * This is to support archs that are missing long double, or even double.
  10. */
  11. #ifndef _UCLIBC_FPMAX_H
  12. #define _UCLIBC_FPMAX_H
  13. #ifndef _ISOC99_SOURCE
  14. #define _ISOC99_SOURCE 1
  15. #endif
  16. #include <features.h>
  17. #include <float.h>
  18. #ifdef __UCLIBC_HAS_FLOATS__
  19. #if defined(LDBL_MANT_DIG)
  20. typedef long double __fpmax_t;
  21. #define FPMAX_TYPE 3
  22. #define FPMAX_MANT_DIG LDBL_MANT_DIG
  23. #define FPMAX_DIG LDBL_DIG
  24. #define FPMAX_EPSILON LDBL_EPSILON
  25. #define FPMAX_MIN_EXP LDBL_MIN_EXP
  26. #define FPMAX_MIN LDBL_MIN
  27. #define FPMAX_MIN_10_EXP LDBL_MIN_10_EXP
  28. #define FPMAX_MAX_EXP LDBL_MAX_EXP
  29. #define FPMAX_MAX LDBL_MAX
  30. #define FPMAX_MAX_10_EXP LDBL_MAX_10_EXP
  31. #elif defined(DBL_MANT_DIG)
  32. typedef double __fpmax_t;
  33. #define FPMAX_TYPE 2
  34. #define FPMAX_MANT_DIG DBL_MANT_DIG
  35. #define FPMAX_DIG DBL_DIG
  36. #define FPMAX_EPSILON DBL_EPSILON
  37. #define FPMAX_MIN_EXP DBL_MIN_EXP
  38. #define FPMAX_MIN DBL_MIN
  39. #define FPMAX_MIN_10_EXP DBL_MIN_10_EXP
  40. #define FPMAX_MAX_EXP DBL_MAX_EXP
  41. #define FPMAX_MAX DBL_MAX
  42. #define FPMAX_MAX_10_EXP DBL_MAX_10_EXP
  43. #elif defined(FLT_MANT_DIG)
  44. typedef float __fpmax_t;
  45. #define FPMAX_TYPE 1
  46. #define FPMAX_MANT_DIG FLT_MANT_DIG
  47. #define FPMAX_DIG FLT_DIG
  48. #define FPMAX_EPSILON FLT_EPSILON
  49. #define FPMAX_MIN_EXP FLT_MIN_EXP
  50. #define FPMAX_MIN FLT_MIN
  51. #define FPMAX_MIN_10_EXP FLT_MIN_10_EXP
  52. #define FPMAX_MAX_EXP FLT_MAX_EXP
  53. #define FPMAX_MAX FLT_MAX
  54. #define FPMAX_MAX_10_EXP FLT_MAX_10_EXP
  55. #else
  56. #error unable to determine appropriate type for __fpmax_t!
  57. #endif
  58. #ifndef DECIMAL_DIG
  59. #ifdef L___strtofpmax
  60. /* Emit warning only once. */
  61. #warning DECIMAL_DIG is not defined! If you are using gcc, it may not be defining __STDC_VERSION__ as it should.
  62. #endif
  63. #if !defined(FLT_RADIX) || (FLT_RADIX != 2)
  64. #error unable to compensate for missing DECIMAL_DIG!
  65. #endif
  66. /* ceil (1 + #mantissa * log10 (FLT_RADIX)) */
  67. #define DECIMAL_DIG (1 + (((FPMAX_MANT_DIG * 100) + 331) / 332))
  68. #endif /* DECIMAL_DIG */
  69. #if defined _LIBC && defined IS_IN_libc
  70. extern __fpmax_t __strtofpmax(const char *str, char **endptr, int exp_adjust) attribute_hidden;
  71. #ifdef __UCLIBC_HAS_XLOCALE__
  72. extern __fpmax_t __strtofpmax_l(const char *str, char **endptr, int exp_adjust,
  73. __locale_t locale_arg) attribute_hidden;
  74. #endif
  75. #ifdef __UCLIBC_HAS_WCHAR__
  76. extern __fpmax_t __wcstofpmax(const wchar_t *wcs, wchar_t **endptr,
  77. int exp_adjust) attribute_hidden;
  78. #ifdef __UCLIBC_HAS_XLOCALE__
  79. extern __fpmax_t __wcstofpmax_l(const wchar_t *wcs, wchar_t **endptr,
  80. int exp_adjust, __locale_t locale_arg) attribute_hidden;
  81. #endif
  82. #endif /* __UCLIBC_HAS_WCHAR__ */
  83. #endif /* _LIBC */
  84. /* The following checks in an __fpmax_t is either 0 or +/- infinity.
  85. *
  86. * WARNING!!! WARNING!!! WARNING!!! WARNING!!! WARNING!!! WARNING!!!
  87. *
  88. * This only works if __fpmax_t is the actual maximal floating point type used
  89. * in intermediate calculations. Otherwise, excess precision in the
  90. * intermediate values can cause the test to fail.
  91. *
  92. * WARNING!!! WARNING!!! WARNING!!! WARNING!!! WARNING!!! WARNING!!!
  93. */
  94. #define __FPMAX_ZERO_OR_INF_CHECK(x) ((x) == ((x)/4) )
  95. #endif /* __UCLIBC_HAS_FLOATS__ */
  96. #endif /* _UCLIBC_FPMAX_H */