Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
openlibm_fenv_i387.h
Go to the documentation of this file.
1/*-
2 * Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
13 *
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
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: src/lib/msun/i387/fenv.h,v 1.8 2011/10/10 15:43:09 das Exp $
27 */
28
29#ifndef _FENV_H_
30#define _FENV_H_
31
32#include "openlibm_defs.h"
33#include "../inc/cdefs-compat.h"
34#include "../inc/types-compat.h"
35
36#ifndef __fenv_static
37#define __fenv_static static
38#endif
39
40/*
41 * To preserve binary compatibility with FreeBSD 5.3, we pack the
42 * mxcsr into some reserved fields, rather than changing sizeof(fenv_t).
43 */
44typedef struct {
49 uint32_t __tag;
50 char __other[16];
51} fenv_t;
52
53#define __get_mxcsr(env) (((env).__mxcsr_hi << 16) | \
54 ((env).__mxcsr_lo))
55
56#define __set_mxcsr(env, x) do { \
57 (env).__mxcsr_hi = (uint32_t)(x) >> 16; \
58 (env).__mxcsr_lo = (uint16_t)(x); \
59} while (0)
60
62
63/* Exception flags */
64#define FE_INVALID 0x01
65#define FE_DENORMAL 0x02
66#define FE_DIVBYZERO 0x04
67#define FE_OVERFLOW 0x08
68#define FE_UNDERFLOW 0x10
69#define FE_INEXACT 0x20
70#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_DENORMAL | FE_INEXACT | \
71 FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
72
73/* Rounding modes */
74#define FE_TONEAREST 0x0000
75#define FE_DOWNWARD 0x0400
76#define FE_UPWARD 0x0800
77#define FE_TOWARDZERO 0x0c00
78#define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
79 FE_UPWARD | FE_TOWARDZERO)
80
81/*
82 * As compared to the x87 control word, the SSE unit's control word
83 * has the rounding control bits offset by 3 and the exception mask
84 * bits offset by 7.
85 */
86#define _SSE_ROUND_SHIFT 3
87#define _SSE_EMASK_SHIFT 7
88
90
91/* After testing for SSE support once, we cache the result in __has_sse. */
93extern enum __sse_support __has_sse;
94int __test_sse(void);
95#ifdef __SSE__
96#define __HAS_SSE() 1
97#else
98#define __HAS_SSE() (__has_sse == __SSE_YES || \
99 (__has_sse == __SSE_UNK && __test_sse()))
100#endif
101
102/* Default floating-point environment */
103extern const fenv_t __fe_dfl_env;
104#define FE_DFL_ENV (&__fe_dfl_env)
105
106#ifndef _MSC_BUILD
107#define __fldcw(__cw) __asm __volatile("fldcw %0" : : "m" (__cw))
108#define __fldenv(__env) __asm __volatile("fldenv %0" : : "m" (__env))
109#define __fldenvx(__env) __asm __volatile("fldenv %0" : : "m" (__env) \
110 : "st", "st(1)", "st(2)", "st(3)", "st(4)", \
111 "st(5)", "st(6)", "st(7)")
112#define __fnclex() __asm __volatile("fnclex")
113#define __fnstenv(__env) __asm __volatile("fnstenv %0" : "=m" (*(__env)))
114#define __fnstcw(__cw) __asm __volatile("fnstcw %0" : "=m" (*(__cw)))
115#define __fnstsw(__sw) __asm __volatile("fnstsw %0" : "=am" (*(__sw)))
116#define __fwait() __asm __volatile("fwait")
117#define __ldmxcsr(__csr) __asm __volatile("ldmxcsr %0" : : "m" (__csr))
118#define __stmxcsr(__csr) __asm __volatile("stmxcsr %0" : "=m" (*(__csr)))
119#else
120#define __fldcw(__cw) __asm { __asm fldcw __cw }
121#define __fldenv(__env) __asm { __asm fldenv __env }
122#define __fnclex() __asm { __asm fnclex }
123#define __fnstenv(__env) __asm { __asm fnstenv (__env) }
124#define __fnstcw(__cw) __asm { __asm fnstcw __cw }
125#define __fnstsw(__sw) __asm { __asm fnstsw __sw }
126#define __fwait() __asm { __asm fwait }
127#define __ldmxcsr(__csr) __asm { __asm ldmxcsr __csr }
128#define __stmxcsr(__csr) __asm { __asm stmxcsr __csr }
129#endif /* _MSC_BUILD */
130
131#ifndef _MSC_BUILD
132__fenv_static inline int
133feclearexcept(int __excepts)
134{
135 fenv_t __env;
136 uint32_t __mxcsr;
137
138 if (__excepts == FE_ALL_EXCEPT) {
139 __fnclex();
140 } else {
141 __fnstenv(&__env);
142 __env.__status &= ~__excepts;
143 __fldenv(__env);
144 }
145 if (__HAS_SSE()) {
146 __stmxcsr(&__mxcsr);
147 __mxcsr &= ~__excepts;
148 __ldmxcsr(__mxcsr);
149 }
150 return (0);
151}
152#else
153__fenv_static inline int
154feclearexcept(int __excepts) {
155 fenv_t __env;
156 uint32_t __mxcsr;
157
158 if (__excepts == FE_ALL_EXCEPT) {
159 __fnclex();
160 }
161 else {
162 __fnstenv(__env);
163 __env.__status &= ~__excepts;
164 __fldenv(__env);
165 }
166 if (__HAS_SSE()) {
167 __stmxcsr(__mxcsr);
168 __mxcsr &= ~__excepts;
169 __ldmxcsr(__mxcsr);
170 }
171 return (0);
172}
173#endif /* _MSC_BUILD */
174
175#ifndef _MSC_BUILD
176__fenv_static inline int
177fegetexceptflag(fexcept_t *__flagp, int __excepts)
178{
179 uint32_t __mxcsr;
180 uint16_t __status;
181
182 __fnstsw(&__status);
183 if (__HAS_SSE())
184 __stmxcsr(&__mxcsr);
185 else
186 __mxcsr = 0;
187 *__flagp = (__mxcsr | __status) & __excepts;
188 return (0);
189}
190
191#else
192
193__fenv_static inline int
194fegetexceptflag(fexcept_t *__flagp, int __excepts) {
195 uint32_t __mxcsr;
196 uint16_t __status;
197
198 __fnstsw(__status);
199 if (__HAS_SSE()) {
200 __stmxcsr(__mxcsr);
201 } else {
202 __mxcsr = 0;
203 }
204 *__flagp = (fexcept_t)((__mxcsr | __status) & __excepts);
205 return (0);
206}
207
208#endif /* _MSC_BUILD */
209
210OLM_DLLEXPORT int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
211OLM_DLLEXPORT int feraiseexcept(int __excepts);
212
213#ifndef _MSC_BUILD
214__fenv_static inline int
215fetestexcept(int __excepts)
216{
217 uint32_t __mxcsr;
218 uint16_t __status;
219
220 __fnstsw(&__status);
221 if (__HAS_SSE())
222 __stmxcsr(&__mxcsr);
223 else
224 __mxcsr = 0;
225 return ((__status | __mxcsr) & __excepts);
226}
227
228__fenv_static inline int
230{
231 uint16_t __control;
232
233 /*
234 * We assume that the x87 and the SSE unit agree on the
235 * rounding mode. Reading the control word on the x87 turns
236 * out to be about 5 times faster than reading it on the SSE
237 * unit on an Opteron 244.
238 */
239 __fnstcw(&__control);
240 return (__control & _ROUND_MASK);
241}
242
243__fenv_static inline int
244fesetround(int __round)
245{
246 uint32_t __mxcsr;
247 uint16_t __control;
248
249 if (__round & ~_ROUND_MASK)
250 return (-1);
251
252 __fnstcw(&__control);
253 __control &= ~_ROUND_MASK;
254 __control |= __round;
255 __fldcw(__control);
256
257 if (__HAS_SSE()) {
258 __stmxcsr(&__mxcsr);
259 __mxcsr &= ~(_ROUND_MASK << _SSE_ROUND_SHIFT);
260 __mxcsr |= __round << _SSE_ROUND_SHIFT;
261 __ldmxcsr(__mxcsr);
262 }
263
264 return (0);
265}
266
267OLM_DLLEXPORT int fegetenv(fenv_t *__envp);
269
270__fenv_static inline int
271fesetenv(const fenv_t *__envp)
272{
273 fenv_t __env = *__envp;
274 uint32_t __mxcsr;
275
276 __mxcsr = __get_mxcsr(__env);
277 __set_mxcsr(__env, 0xffffffff);
278 /*
279 * XXX Using fldenvx() instead of fldenv() tells the compiler that this
280 * instruction clobbers the i387 register stack. This happens because
281 * we restore the tag word from the saved environment. Normally, this
282 * would happen anyway and we wouldn't care, because the ABI allows
283 * function calls to clobber the i387 regs. However, fesetenv() is
284 * inlined, so we need to be more careful.
285 */
286 __fldenvx(__env);
287 if (__HAS_SSE())
288 __ldmxcsr(__mxcsr);
289 return (0);
290}
291#endif /* _MSC_BUILD */
292
293OLM_DLLEXPORT int feupdateenv(const fenv_t *__envp);
294
295#if __BSD_VISIBLE
296
297OLM_DLLEXPORT int feenableexcept(int __mask);
298OLM_DLLEXPORT int fedisableexcept(int __mask);
299
300/* We currently provide no external definition of fegetexcept(). */
301static inline int
302fegetexcept(void)
303{
304 uint16_t __control;
305
306 /*
307 * We assume that the masks for the x87 and the SSE unit are
308 * the same.
309 */
310 __fnstcw(&__control);
311 return (~__control & FE_ALL_EXCEPT);
312}
313
314#endif /* __BSD_VISIBLE */
315
317
318#endif /* !_FENV_H_ */
#define __END_DECLS
#define __BEGIN_DECLS
Definition cdefs-compat.h:9
#define OLM_DLLEXPORT
uint16_t fexcept_t
__fenv_static int fesetround(int __round)
#define FE_ALL_EXCEPT
__fenv_static int fetestexcept(int __excepts)
__sse_support
@ __SSE_YES
@ __SSE_NO
@ __SSE_UNK
OLM_DLLEXPORT int feraiseexcept(int __excepts)
#define __fnstenv(__env)
#define __fenv_static
OLM_DLLEXPORT int feupdateenv(const fenv_t *__envp)
#define __fnstsw(__sw)
#define __fldenvx(__env)
#define __stmxcsr(__csr)
OLM_DLLEXPORT int feholdexcept(fenv_t *__envp)
#define __fldenv(__env)
#define __ldmxcsr(__csr)
#define __set_mxcsr(env, x)
const fenv_t __fe_dfl_env
__fenv_static int fegetexceptflag(fexcept_t *__flagp, int __excepts)
enum __sse_support __has_sse
#define _ROUND_MASK
#define __get_mxcsr(env)
#define _SSE_ROUND_SHIFT
#define __HAS_SSE()
__fenv_static int fegetround(void)
int __test_sse(void)
__fenv_static int fesetenv(const fenv_t *__envp)
__fenv_static int feclearexcept(int __excepts)
#define __fnstcw(__cw)
OLM_DLLEXPORT int fegetenv(fenv_t *__envp)
uint16_t fexcept_t
#define __fldcw(__cw)
#define __fnclex()
OLM_DLLEXPORT int fesetexceptflag(const fexcept_t *__flagp, int __excepts)
unsigned __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64
uint16_t __status
uint16_t __mxcsr_hi
uint16_t __control
uint16_t __mxcsr_lo
uint32_t __status