Update copyright notices with scripts/update-copyrights
[glibc.git] / ports / sysdeps / ia64 / bits / fenv.h
blob3de41601f2d884db22218c3302feeda91c486c8f
1 /* Copyright (C) 1999-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #ifndef _FENV_H
19 # error "Never use <bits/fenv.h> directly; include <fenv.h> instead."
20 #endif
23 /* Define bits representing the exception. We use the bit positions of
24 the appropriate bits in the FPSR... (Tahoe EAS 2.4 5-4)*/
26 enum
28 FE_INEXACT =
29 #define FE_INEXACT (1 << 5)
30 FE_INEXACT,
32 FE_UNDERFLOW =
33 #define FE_UNDERFLOW (1 << 4)
34 FE_UNDERFLOW,
36 FE_OVERFLOW =
37 #define FE_OVERFLOW (1 << 3)
38 FE_OVERFLOW,
40 FE_DIVBYZERO =
41 #define FE_DIVBYZERO (1 << 2)
42 FE_DIVBYZERO,
44 FE_UNNORMAL =
45 #define FE_UNNORMAL (1 << 1)
46 FE_UNNORMAL,
48 FE_INVALID =
49 #define FE_INVALID (1 << 0)
50 FE_INVALID,
52 FE_ALL_EXCEPT =
53 #define FE_ALL_EXCEPT (FE_INEXACT | FE_UNDERFLOW | FE_OVERFLOW | FE_DIVBYZERO | FE_UNNORMAL | FE_INVALID)
54 FE_ALL_EXCEPT
58 enum
60 FE_TOWARDZERO =
61 #define FE_TOWARDZERO 3
62 FE_TOWARDZERO,
64 FE_UPWARD =
65 #define FE_UPWARD 2
66 FE_UPWARD,
68 FE_DOWNWARD =
69 #define FE_DOWNWARD 1
70 FE_DOWNWARD,
72 FE_TONEAREST =
73 #define FE_TONEAREST 0
74 FE_TONEAREST,
78 /* Type representing exception flags. */
79 typedef unsigned long int fexcept_t;
81 /* Type representing floating-point environment. */
82 typedef unsigned long int fenv_t;
84 /* If the default argument is used we use this value. */
85 #define FE_DFL_ENV ((const fenv_t *) 0xc009804c0270033fUL)
87 #ifdef __USE_GNU
88 /* Floating-point environment where only FE_UNNORMAL is masked since this
89 exception is not generally supported by glibc. */
90 # define FE_NOMASK_ENV ((const fenv_t *) 0xc009804c02700302UL)
92 /* Floating-point environment with (processor-dependent) non-IEEE
93 floating point. In this case, turning on flush-to-zero mode for
94 s0, s2, and s3. */
95 # define FE_NONIEEE_ENV ((const fenv_t *) 0xc009a04d0270037fUL)
96 #endif