1999-11-12 17:23:30 +00:00
|
|
|
/* Disable floating-point exceptions.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 1999-2017 Free Software Foundation, Inc.
|
1999-11-12 17:23:30 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Andreas Jaeger <aj@suse.de>, 1999.
|
|
|
|
|
|
|
|
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.
|
1999-11-12 17:23:30 +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.
|
1999-11-12 17:23:30 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1999-11-12 17:23:30 +00:00
|
|
|
|
|
|
|
#include <fenv.h>
|
2003-04-29 07:18:57 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <ldsodefs.h>
|
|
|
|
#include <dl-procinfo.h>
|
1999-11-12 17:23:30 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
fedisableexcept (int excepts)
|
|
|
|
{
|
|
|
|
unsigned short int new_exc, old_exc;
|
2000-08-16 02:36:25 +00:00
|
|
|
|
1999-11-12 17:23:30 +00:00
|
|
|
/* Get the current control word. */
|
|
|
|
__asm__ ("fstcw %0" : "=m" (*&new_exc));
|
2000-08-16 02:36:25 +00:00
|
|
|
|
2000-08-17 18:43:01 +00:00
|
|
|
old_exc = (~new_exc) & FE_ALL_EXCEPT;
|
1999-11-12 17:23:30 +00:00
|
|
|
|
|
|
|
excepts &= FE_ALL_EXCEPT;
|
2000-08-16 02:36:25 +00:00
|
|
|
|
|
|
|
new_exc |= excepts;
|
1999-11-12 17:23:30 +00:00
|
|
|
__asm__ ("fldcw %0" : : "m" (*&new_exc));
|
|
|
|
|
2003-04-29 07:18:57 +00:00
|
|
|
/* If the CPU supports SSE we set the MXCSR as well. */
|
2004-03-05 10:29:47 +00:00
|
|
|
if ((GLRO(dl_hwcap) & HWCAP_I386_XMM) != 0)
|
2003-04-29 07:18:57 +00:00
|
|
|
{
|
|
|
|
unsigned int xnew_exc;
|
|
|
|
|
|
|
|
/* Get the current control word. */
|
|
|
|
__asm__ ("stmxcsr %0" : "=m" (*&xnew_exc));
|
|
|
|
|
2003-06-16 08:03:44 +00:00
|
|
|
xnew_exc |= excepts << 7;
|
2003-04-29 07:18:57 +00:00
|
|
|
|
|
|
|
__asm__ ("ldmxcsr %0" : : "m" (*&xnew_exc));
|
|
|
|
}
|
|
|
|
|
1999-11-12 17:23:30 +00:00
|
|
|
return old_exc;
|
|
|
|
}
|