fenv.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* Copyright (C) 2004-2016 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, see
  13. <http://www.gnu.org/licenses/>. */
  14. #ifndef _FENV_H
  15. # error "Never use <bits/fenv.h> directly; include <fenv.h> instead."
  16. #endif
  17. /* Define bits representing exceptions in the FPU status word. */
  18. enum
  19. {
  20. FE_INVALID =
  21. #define FE_INVALID 1
  22. FE_INVALID,
  23. FE_DIVBYZERO =
  24. #define FE_DIVBYZERO 2
  25. FE_DIVBYZERO,
  26. FE_OVERFLOW =
  27. #define FE_OVERFLOW 4
  28. FE_OVERFLOW,
  29. FE_UNDERFLOW =
  30. #define FE_UNDERFLOW 8
  31. FE_UNDERFLOW,
  32. FE_INEXACT =
  33. #define FE_INEXACT 16
  34. FE_INEXACT,
  35. };
  36. /* Amount to shift by to convert an exception to a mask bit. */
  37. #define FE_EXCEPT_SHIFT 8
  38. /* All supported exceptions. */
  39. #define FE_ALL_EXCEPT \
  40. (FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW | FE_INEXACT)
  41. /* VFP supports all of the four defined rounding modes. */
  42. enum
  43. {
  44. FE_TONEAREST =
  45. #define FE_TONEAREST 0
  46. FE_TONEAREST,
  47. FE_UPWARD =
  48. #define FE_UPWARD 0x400000
  49. FE_UPWARD,
  50. FE_DOWNWARD =
  51. #define FE_DOWNWARD 0x800000
  52. FE_DOWNWARD,
  53. FE_TOWARDZERO =
  54. #define FE_TOWARDZERO 0xc00000
  55. FE_TOWARDZERO
  56. };
  57. /* Type representing exception flags. */
  58. typedef unsigned int fexcept_t;
  59. /* Type representing floating-point environment. */
  60. typedef struct
  61. {
  62. unsigned int __cw;
  63. }
  64. fenv_t;
  65. /* If the default argument is used we use this value. */
  66. #define FE_DFL_ENV ((const fenv_t *) -1l)
  67. #ifdef __USE_GNU
  68. /* Floating-point environment where none of the exceptions are masked. */
  69. # define FE_NOMASK_ENV ((const fenv_t *) -2)
  70. #endif