2000-06-20 13:05:21 +00:00
|
|
|
/* Raise given exceptions.
|
2002-03-17 12:07:44 +00:00
|
|
|
Copyright (C) 2000, 2002 Free Software Foundation, Inc.
|
2000-06-20 13:05:21 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Andreas Jaeger <aj@suse.de>, 2000.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +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.
|
2000-06-20 13:05:21 +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:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
2000-06-20 13:05:21 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
2000-06-20 13:05:21 +00:00
|
|
|
|
|
|
|
#include <fenv.h>
|
2002-03-17 12:07:44 +00:00
|
|
|
#include <fenv_libc.h>
|
2000-06-20 13:05:21 +00:00
|
|
|
#include <fpu_control.h>
|
|
|
|
|
|
|
|
int
|
2002-09-10 11:27:29 +00:00
|
|
|
feraiseexcept (int excepts)
|
2000-06-20 13:05:21 +00:00
|
|
|
{
|
|
|
|
fpu_control_t cw;
|
|
|
|
|
|
|
|
/* Get current state. */
|
|
|
|
_FPU_GETCW (cw);
|
|
|
|
|
2002-09-10 11:27:29 +00:00
|
|
|
/* Set flag bits (which are accumulative), and *also* set the
|
|
|
|
cause bits. The setting of the cause bits is what actually causes
|
|
|
|
the hardware to generate the exception, if the corresponding enable
|
2002-03-17 12:07:44 +00:00
|
|
|
bit is set as well. */
|
|
|
|
|
|
|
|
excepts &= FE_ALL_EXCEPT;
|
|
|
|
cw |= excepts | (excepts << CAUSE_SHIFT);
|
2000-06-20 13:05:21 +00:00
|
|
|
|
|
|
|
/* Set new state. */
|
|
|
|
_FPU_SETCW (cw);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2002-10-02 11:01:06 +00:00
|
|
|
|
|
|
|
libm_hidden_def (feraiseexcept)
|