uClibc_fpmax.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* Copyright (C) 2003 Manuel Novoa III
  2. *
  3. * This library is free software; you can redistribute it and/or
  4. * modify it under the terms of the GNU Library General Public
  5. * License as published by the Free Software Foundation; either
  6. * version 2 of the License, or (at your option) any later version.
  7. *
  8. * This library is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * Library General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Library General Public
  14. * License along with this library; if not, write to the Free
  15. * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. */
  17. /* Define a maximal floating point type, and the associated constants
  18. * that are defined for the floating point types in float.h.
  19. *
  20. * This is to support archs that are missing long double, or even double.
  21. */
  22. #ifndef _UCLIBC_FPMAX_H
  23. #define _UCLIBC_FPMAX_H
  24. #ifndef _ISOC99_SOURCE
  25. #define _ISOC99_SOURCE 1
  26. #endif
  27. #include <features.h>
  28. #include <float.h>
  29. #ifdef __UCLIBC_HAS_FLOATS__
  30. #if defined(LDBL_MANT_DIG)
  31. typedef long double __fpmax_t;
  32. #define FPMAX_TYPE 3
  33. #define FPMAX_MANT_DIG LDBL_MANT_DIG
  34. #define FPMAX_DIG LDBL_DIG
  35. #define FPMAX_EPSILON LDBL_EPSILON
  36. #define FPMAX_MIN_EXP LDBL_MIN_EXP
  37. #define FPMAX_MIN LDBL_MIN
  38. #define FPMAX_MIN_10_EXP LDBL_MIN_10_EXP
  39. #define FPMAX_MAX_EXP LDBL_MAX_EXP
  40. #define FPMAX_MAX LDBL_MAX
  41. #define FPMAX_MAX_10_EXP LDBL_MAX_10_EXP
  42. #elif defined(DBL_MANT_DIG)
  43. typedef double __fpmax_t;
  44. #define FPMAX_TYPE 2
  45. #define FPMAX_MANT_DIG DBL_MANT_DIG
  46. #define FPMAX_DIG DBL_DIG
  47. #define FPMAX_EPSILON DBL_EPSILON
  48. #define FPMAX_MIN_EXP DBL_MIN_EXP
  49. #define FPMAX_MIN DBL_MIN
  50. #define FPMAX_MIN_10_EXP DBL_MIN_10_EXP
  51. #define FPMAX_MAX_EXP DBL_MAX_EXP
  52. #define FPMAX_MAX DBL_MAX
  53. #define FPMAX_MAX_10_EXP DBL_MAX_10_EXP
  54. #elif defined(FLT_MANT_DIG)
  55. typedef float __fpmax_t;
  56. #define FPMAX_TYPE 1
  57. #define FPMAX_MANT_DIG FLT_MANT_DIG
  58. #define FPMAX_DIG FLT_DIG
  59. #define FPMAX_EPSILON FLT_EPSILON
  60. #define FPMAX_MIN_EXP FLT_MIN_EXP
  61. #define FPMAX_MIN FLT_MIN
  62. #define FPMAX_MIN_10_EXP FLT_MIN_10_EXP
  63. #define FPMAX_MAX_EXP FLT_MAX_EXP
  64. #define FPMAX_MAX FLT_MAX
  65. #define FPMAX_MAX_10_EXP FLT_MAX_10_EXP
  66. #else
  67. #error unable to determine appropriate type for __fpmax_t!
  68. #endif
  69. #ifndef DECIMAL_DIG
  70. #ifdef L___strtofpmax
  71. /* Emit warning only once. */
  72. #warning DECIMAL_DIG is not defined! If you are using gcc, it may not be defining __STDC_VERSION__ as it should.
  73. #endif
  74. #if !defined(FLT_RADIX) || (FLT_RADIX != 2)
  75. #error unable to compensate for missing DECIMAL_DIG!
  76. #endif
  77. /* ceil (1 + #mantissa * log10 (FLT_RADIX)) */
  78. #define DECIMAL_DIG (1 + (((FPMAX_MANT_DIG * 100) + 331) / 332))
  79. #endif /* DECIMAL_DIG */
  80. extern __fpmax_t __strtofpmax(const char *str, char **endptr, int exp_adjust);
  81. #ifdef __UCLIBC_HAS_XLOCALE__
  82. extern __fpmax_t __strtofpmax_l(const char *str, char **endptr, int exp_adjust,
  83. __locale_t locale_arg);
  84. #endif
  85. #ifdef __UCLIBC_HAS_WCHAR__
  86. extern __fpmax_t __wcstofpmax(const wchar_t *wcs, wchar_t **endptr,
  87. int exp_adjust);
  88. #ifdef __UCLIBC_HAS_XLOCALE__
  89. extern __fpmax_t __wcstofpmax_l(const wchar_t *wcs, wchar_t **endptr,
  90. int exp_adjust, __locale_t locale_arg);
  91. #endif
  92. #endif /* __UCLIBC_HAS_WCHAR__ */
  93. /* The following checks in an __fpmax_t is either 0 or +/- infinity.
  94. *
  95. * WARNING!!! WARNING!!! WARNING!!! WARNING!!! WARNING!!! WARNING!!!
  96. *
  97. * This only works if __fpmax_t is the actual maximal floating point type used
  98. * in intermediate calculations. Otherwise, excess precision in the
  99. * intermediate values can cause the test to fail.
  100. *
  101. * WARNING!!! WARNING!!! WARNING!!! WARNING!!! WARNING!!! WARNING!!!
  102. */
  103. #define __FPMAX_ZERO_OR_INF_CHECK(x) ((x) == ((x)/4) )
  104. #endif /* __UCLIBC_HAS_FLOATS__ */
  105. #endif /* _UCLIBC_FPMAX_H */