2 * Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 #include <sys/cdefs.h>
30 #include <sys/types.h>
31 #include <posix/fenv.h>
32 #include <arch/x86_64/fpu.h>
34 const fenv_t __fe_dfl_env
= {
35 { 0xffff0000 | __INITIAL_FPUCW__
,
38 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
39 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff }
45 fesetexceptflag(const fexcept_t
*flagp
, int excepts
)
49 __fnstenv(&env
.__x87
);
50 env
.__x87
.__status
&= ~excepts
;
51 env
.__x87
.__status
|= *flagp
& excepts
;
54 __stmxcsr(&env
.__mxcsr
);
55 env
.__mxcsr
&= ~excepts
;
56 env
.__mxcsr
|= *flagp
& excepts
;
57 __ldmxcsr(env
.__mxcsr
);
63 feraiseexcept(int excepts
)
65 fexcept_t ex
= excepts
;
67 fesetexceptflag(&ex
, excepts
);
73 fegetenv(fenv_t
*envp
)
76 __fnstenv(&envp
->__x87
);
77 __stmxcsr(&envp
->__mxcsr
);
79 * fnstenv masks all exceptions, so we need to restore the
80 * control word to avoid this side effect.
82 __fldcw(envp
->__x87
.__control
);
87 feholdexcept(fenv_t
*envp
)
92 __fnstenv(&envp
->__x87
);
94 envp
->__mxcsr
= mxcsr
;
95 mxcsr
&= ~FE_ALL_EXCEPT
;
96 mxcsr
|= FE_ALL_EXCEPT
<< _SSE_EMASK_SHIFT
;
102 feupdateenv(const fenv_t
*envp
)
110 feraiseexcept((mxcsr
| status
) & FE_ALL_EXCEPT
);
115 __feenableexcept(int mask
)
117 uint32_t mxcsr
, omask
;
120 mask
&= FE_ALL_EXCEPT
;
123 omask
= ~(control
| mxcsr
>> _SSE_EMASK_SHIFT
) & FE_ALL_EXCEPT
;
126 mxcsr
&= ~(mask
<< _SSE_EMASK_SHIFT
);
132 __fedisableexcept(int mask
)
134 uint32_t mxcsr
, omask
;
137 mask
&= FE_ALL_EXCEPT
;
140 omask
= ~(control
| mxcsr
>> _SSE_EMASK_SHIFT
) & FE_ALL_EXCEPT
;
143 mxcsr
|= mask
<< _SSE_EMASK_SHIFT
;
148 __weak_reference(__feenableexcept
, feenableexcept
);
149 __weak_reference(__fedisableexcept
, fedisableexcept
);