1 /* Set floating-point environment exception handling.
2 Copyright (C) 2001, 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 fesetexceptflag (const fexcept_t
*flagp
, int excepts
)
29 /* XXX: Do we really need to set both the exception in both units?
30 Shouldn't it be enough to set only the SSE unit? */
32 /* Get the current x87 FPU environment. We have to do this since we
33 cannot separately set the status word. */
34 __asm__ ("fnstenv %0" : "=m" (*&temp
));
36 temp
.__status_word
&= ~(excepts
& FE_ALL_EXCEPT
);
37 temp
.__status_word
|= *flagp
& excepts
& FE_ALL_EXCEPT
;
39 /* Store the new status word (along with the rest of the environment.
40 Possibly new exceptions are set but they won't get executed unless
41 the next floating-point instruction. */
42 __asm__ ("fldenv %0" : : "m" (*&temp
));
44 /* And now the same for SSE. */
45 __asm__ ("stmxcsr %0" : "=m" (*&mxcsr
));
47 mxcsr
&= ~(excepts
& FE_ALL_EXCEPT
);
48 mxcsr
|= *flagp
& excepts
& FE_ALL_EXCEPT
;
50 __asm__ ("ldmxcsr %0" : : "m" (*&mxcsr
));