2014-01-01 11:03:15 +00:00
|
|
|
/* Copyright (C) 1997-2014 Free Software Foundation, Inc.
|
1997-06-21 02:31:18 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-06-21 02:31:18 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-06-21 02:31:18 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1997-06-21 02:31:18 +00:00
|
|
|
|
|
|
|
#ifndef _FENV_H
|
1997-11-26 04:14:44 +00:00
|
|
|
# error "Never use <bits/fenv.h> directly; include <fenv.h> instead."
|
1997-06-21 02:31:18 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Define bits representing the exception. We use the bit positions of
|
|
|
|
the appropriate bits in the FPSR Accrued Exception Byte. */
|
|
|
|
enum
|
|
|
|
{
|
2012-11-03 17:07:56 +00:00
|
|
|
FE_INEXACT =
|
|
|
|
#define FE_INEXACT (1 << 3)
|
|
|
|
FE_INEXACT,
|
|
|
|
FE_DIVBYZERO =
|
|
|
|
#define FE_DIVBYZERO (1 << 4)
|
|
|
|
FE_DIVBYZERO,
|
|
|
|
FE_UNDERFLOW =
|
|
|
|
#define FE_UNDERFLOW (1 << 5)
|
|
|
|
FE_UNDERFLOW,
|
|
|
|
FE_OVERFLOW =
|
|
|
|
#define FE_OVERFLOW (1 << 6)
|
|
|
|
FE_OVERFLOW,
|
|
|
|
FE_INVALID =
|
|
|
|
#define FE_INVALID (1 << 7)
|
|
|
|
FE_INVALID
|
1997-06-21 02:31:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define FE_ALL_EXCEPT \
|
|
|
|
(FE_INEXACT | FE_DIVBYZERO | FE_UNDERFLOW | FE_OVERFLOW | FE_INVALID)
|
|
|
|
|
|
|
|
/* The m68k FPU supports all of the four defined rounding modes. We use
|
|
|
|
the bit positions in the FPCR Mode Control Byte as the values for the
|
|
|
|
appropriate macros. */
|
|
|
|
enum
|
|
|
|
{
|
2012-11-03 17:07:56 +00:00
|
|
|
FE_TONEAREST =
|
|
|
|
#define FE_TONEAREST 0
|
|
|
|
FE_TONEAREST,
|
|
|
|
FE_TOWARDZERO =
|
|
|
|
#define FE_TOWARDZERO (1 << 4)
|
|
|
|
FE_TOWARDZERO,
|
|
|
|
FE_DOWNWARD =
|
|
|
|
#define FE_DOWNWARD (2 << 4)
|
|
|
|
FE_DOWNWARD,
|
|
|
|
FE_UPWARD =
|
|
|
|
#define FE_UPWARD (3 << 4)
|
|
|
|
FE_UPWARD
|
1997-06-21 02:31:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Type representing exception flags. */
|
|
|
|
typedef unsigned int fexcept_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* Type representing floating-point environment. This structure
|
|
|
|
corresponds to the layout of the block written by `fmovem'. */
|
|
|
|
typedef struct
|
|
|
|
{
|
1999-05-22 17:14:30 +00:00
|
|
|
unsigned int __control_register;
|
|
|
|
unsigned int __status_register;
|
|
|
|
unsigned int __instruction_address;
|
1997-06-21 02:31:18 +00:00
|
|
|
}
|
|
|
|
fenv_t;
|
|
|
|
|
|
|
|
/* If the default argument is used we use this value. */
|
2012-01-08 13:21:01 +00:00
|
|
|
#define FE_DFL_ENV ((const fenv_t *) -1)
|
1997-06-21 02:31:18 +00:00
|
|
|
|
|
|
|
#ifdef __USE_GNU
|
|
|
|
/* Floating-point environment where none of the exceptions are masked. */
|
2012-01-08 13:21:01 +00:00
|
|
|
# define FE_NOMASK_ENV ((const fenv_t *) -2)
|
1997-06-21 02:31:18 +00:00
|
|
|
#endif
|