Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / s390 / fpu / bits / fenv.h
blob6df7b177f9769d899f97c637c143ee46bcb6d925
1 /* Copyright (C) 2000, 2012 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Denis Joseph Barrow <djbarrow@de.ibm.com>.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #ifndef _FENV_H
20 # error "Never use <bits/fenv.h> directly; include <fenv.h> instead."
21 #endif
23 /* Define bits representing the exception. We use the bit positions
24 of the appropriate bits in the FPU control word. */
25 enum
27 FE_INVALID = 0x80,
28 #define FE_INVALID FE_INVALID
29 FE_DIVBYZERO = 0x40,
30 #define FE_DIVBYZERO FE_DIVBYZERO
31 FE_OVERFLOW = 0x20,
32 #define FE_OVERFLOW FE_OVERFLOW
33 FE_UNDERFLOW = 0x10,
34 #define FE_UNDERFLOW FE_UNDERFLOW
35 FE_INEXACT = 0x08
36 #define FE_INEXACT FE_INEXACT
38 /* We dont use the y bit of the DXC in the floating point control register
39 as glibc has no FE encoding for fe inexact incremented
40 or fe inexact truncated.
41 We currently use the flag bits in the fpc
42 as these are sticky for feholdenv & feupdatenv as it is defined
43 in the HP Manpages. */
46 #define FE_ALL_EXCEPT \
47 (FE_INEXACT | FE_DIVBYZERO | FE_UNDERFLOW | FE_OVERFLOW | FE_INVALID)
49 enum
51 FE_TONEAREST = 0,
52 #define FE_TONEAREST FE_TONEAREST
53 FE_DOWNWARD = 0x3,
54 #define FE_DOWNWARD FE_DOWNWARD
55 FE_UPWARD = 0x2,
56 #define FE_UPWARD FE_UPWARD
57 FE_TOWARDZERO = 0x1
58 #define FE_TOWARDZERO FE_TOWARDZERO
62 /* Type representing exception flags. */
63 typedef unsigned int fexcept_t; /* size of fpc */
66 /* Type representing floating-point environment. This function corresponds
67 to the layout of the block written by the `fstenv'. */
68 typedef struct
70 fexcept_t fpc;
71 void *ieee_instruction_pointer;
72 /* failing instruction for ieee exceptions */
73 } fenv_t;
75 /* If the default argument is used we use this value. */
76 #define FE_DFL_ENV ((const fenv_t *) -1)
78 #ifdef __USE_GNU
79 /* Floating-point environment where none of the exceptions are masked. */
80 # define FE_NOMASK_ENV ((const fenv_t *) -2)
81 #endif