fenv.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #ifndef _FENV_H
  16. # error "Never use <bits/fenv.h> directly; include <fenv.h> instead."
  17. #endif
  18. #ifdef __MAVERICK__
  19. /* Define bits representing exceptions in the FPU status word. */
  20. enum
  21. {
  22. FE_INVALID = 1,
  23. #define FE_INVALID FE_INVALID
  24. FE_OVERFLOW = 4,
  25. #define FE_OVERFLOW FE_OVERFLOW
  26. FE_UNDERFLOW = 8,
  27. #define FE_UNDERFLOW FE_UNDERFLOW
  28. FE_INEXACT = 16,
  29. #define FE_INEXACT FE_INEXACT
  30. };
  31. /* Amount to shift by to convert an exception to a mask bit. */
  32. #define FE_EXCEPT_SHIFT 5
  33. /* All supported exceptions. */
  34. #define FE_ALL_EXCEPT \
  35. (FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW | FE_INEXACT)
  36. /* IEEE rounding modes. */
  37. enum
  38. {
  39. FE_TONEAREST = 0,
  40. #define FE_TONEAREST FE_TONEAREST
  41. FE_TOWARDZERO = 0x400,
  42. #define FE_TOWARDZERO FE_TOWARDZERO
  43. FE_DOWNWARD = 0x800,
  44. #define FE_DOWNWARD FE_DOWNWARD
  45. FE_UPWARD = 0xc00,
  46. #define FE_UPWARD FE_UPWARD
  47. };
  48. #define FE_ROUND_MASK (FE_UPWARD)
  49. #else /* !__MAVERICK__ */
  50. /* Define bits representing exceptions in the FPU status word. */
  51. enum
  52. {
  53. FE_INVALID = 1,
  54. #define FE_INVALID FE_INVALID
  55. FE_DIVBYZERO = 2,
  56. #define FE_DIVBYZERO FE_DIVBYZERO
  57. FE_OVERFLOW = 4,
  58. #define FE_OVERFLOW FE_OVERFLOW
  59. FE_UNDERFLOW = 8,
  60. #define FE_UNDERFLOW FE_UNDERFLOW
  61. };
  62. /* Amount to shift by to convert an exception to a mask bit. */
  63. #define FE_EXCEPT_SHIFT 16
  64. /* All supported exceptions. */
  65. #define FE_ALL_EXCEPT \
  66. (FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW)
  67. /* The ARM FPU basically only supports round-to-nearest. Other rounding
  68. modes exist, but you have to encode them in the actual instruction. */
  69. #define FE_TONEAREST 0
  70. #endif /* __MAVERICK__ */
  71. /* Type representing exception flags. */
  72. typedef unsigned long int fexcept_t;
  73. /* Type representing floating-point environment. */
  74. typedef struct
  75. {
  76. unsigned long int __cw;
  77. }
  78. fenv_t;
  79. /* If the default argument is used we use this value. */
  80. #define FE_DFL_ENV ((fenv_t *) -1l)