]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/msun/i387/fenv.h
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / lib / msun / i387 / fenv.h
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$
27  */
28
29 #ifndef _FENV_H_
30 #define _FENV_H_
31
32 #include <sys/cdefs.h>
33 #include <sys/_types.h>
34
35 /*                   
36  * To preserve binary compatibility with FreeBSD 5.3, we pack the
37  * mxcsr into some reserved fields, rather than changing sizeof(fenv_t).
38  */
39 typedef struct {
40         __uint16_t      __control;
41         __uint16_t      __mxcsr_hi;
42         __uint16_t      __status;
43         __uint16_t      __mxcsr_lo;
44         __uint32_t      __tag;
45         char            __other[16];
46 } fenv_t;
47
48 #define __get_mxcsr(env)        (((env).__mxcsr_hi << 16) |     \
49                                  ((env).__mxcsr_lo))
50 #define __set_mxcsr(env, x)     do {                            \
51         (env).__mxcsr_hi = (__uint32_t)(x) >> 16;               \
52         (env).__mxcsr_lo = (__uint16_t)(x);                     \
53 } while (0)
54
55 typedef __uint16_t      fexcept_t;
56
57 /* Exception flags */
58 #define FE_INVALID      0x01
59 #define FE_DENORMAL     0x02
60 #define FE_DIVBYZERO    0x04
61 #define FE_OVERFLOW     0x08
62 #define FE_UNDERFLOW    0x10
63 #define FE_INEXACT      0x20
64 #define FE_ALL_EXCEPT   (FE_DIVBYZERO | FE_DENORMAL | FE_INEXACT | \
65                          FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
66
67 /* Rounding modes */
68 #define FE_TONEAREST    0x0000
69 #define FE_DOWNWARD     0x0400
70 #define FE_UPWARD       0x0800
71 #define FE_TOWARDZERO   0x0c00
72 #define _ROUND_MASK     (FE_TONEAREST | FE_DOWNWARD | \
73                          FE_UPWARD | FE_TOWARDZERO)
74
75 /*
76  * As compared to the x87 control word, the SSE unit's control word
77  * has the rounding control bits offset by 3 and the exception mask
78  * bits offset by 7.
79  */
80 #define _SSE_ROUND_SHIFT        3
81 #define _SSE_EMASK_SHIFT        7
82
83 __BEGIN_DECLS
84
85 /* After testing for SSE support once, we cache the result in __has_sse. */
86 enum __sse_support { __SSE_YES, __SSE_NO, __SSE_UNK };
87 extern enum __sse_support __has_sse;
88 int __test_sse(void);
89 #ifdef __SSE__
90 #define __HAS_SSE()     1
91 #else
92 #define __HAS_SSE()     (__has_sse == __SSE_YES ||                      \
93                          (__has_sse == __SSE_UNK && __test_sse()))
94 #endif
95
96 /* Default floating-point environment */
97 extern const fenv_t     __fe_dfl_env;
98 #define FE_DFL_ENV      (&__fe_dfl_env)
99
100 #define __fldcw(__cw)           __asm __volatile("fldcw %0" : : "m" (__cw))
101 #define __fldenv(__env)         __asm __volatile("fldenv %0" : : "m" (__env))
102 #define __fldenvx(__env)        __asm __volatile("fldenv %0" : : "m" (__env)  \
103                                 : "st", "st(1)", "st(2)", "st(3)", "st(4)",   \
104                                 "st(5)", "st(6)", "st(7)")
105 #define __fnclex()              __asm __volatile("fnclex")
106 #define __fnstenv(__env)        __asm __volatile("fnstenv %0" : "=m" (*(__env)))
107 #define __fnstcw(__cw)          __asm __volatile("fnstcw %0" : "=m" (*(__cw)))
108 #define __fnstsw(__sw)          __asm __volatile("fnstsw %0" : "=am" (*(__sw)))
109 #define __fwait()               __asm __volatile("fwait")
110 #define __ldmxcsr(__csr)        __asm __volatile("ldmxcsr %0" : : "m" (__csr))
111 #define __stmxcsr(__csr)        __asm __volatile("stmxcsr %0" : "=m" (*(__csr)))
112
113 static __inline int
114 feclearexcept(int __excepts)
115 {
116         fenv_t __env;
117         int __mxcsr;
118
119         if (__excepts == FE_ALL_EXCEPT) {
120                 __fnclex();
121         } else {
122                 __fnstenv(&__env);
123                 __env.__status &= ~__excepts;
124                 __fldenv(__env);
125         }
126         if (__HAS_SSE()) {
127                 __stmxcsr(&__mxcsr);
128                 __mxcsr &= ~__excepts;
129                 __ldmxcsr(__mxcsr);
130         }
131         return (0);
132 }
133
134 static __inline int
135 fegetexceptflag(fexcept_t *__flagp, int __excepts)
136 {
137         int __mxcsr, __status;
138
139         __fnstsw(&__status);
140         if (__HAS_SSE())
141                 __stmxcsr(&__mxcsr);
142         else
143                 __mxcsr = 0;
144         *__flagp = (__mxcsr | __status) & __excepts;
145         return (0);
146 }
147
148 int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
149 int feraiseexcept(int __excepts);
150
151 static __inline int
152 fetestexcept(int __excepts)
153 {
154         int __mxcsr, __status;
155
156         __fnstsw(&__status);
157         if (__HAS_SSE())
158                 __stmxcsr(&__mxcsr);
159         else
160                 __mxcsr = 0;
161         return ((__status | __mxcsr) & __excepts);
162 }
163
164 static __inline int
165 fegetround(void)
166 {
167         int __control;
168
169         /*
170          * We assume that the x87 and the SSE unit agree on the
171          * rounding mode.  Reading the control word on the x87 turns
172          * out to be about 5 times faster than reading it on the SSE
173          * unit on an Opteron 244.
174          */
175         __fnstcw(&__control);
176         return (__control & _ROUND_MASK);
177 }
178
179 static __inline int
180 fesetround(int __round)
181 {
182         int __mxcsr, __control;
183
184         if (__round & ~_ROUND_MASK)
185                 return (-1);
186
187         __fnstcw(&__control);
188         __control &= ~_ROUND_MASK;
189         __control |= __round;
190         __fldcw(__control);
191
192         if (__HAS_SSE()) {
193                 __stmxcsr(&__mxcsr);
194                 __mxcsr &= ~(_ROUND_MASK << _SSE_ROUND_SHIFT);
195                 __mxcsr |= __round << _SSE_ROUND_SHIFT;
196                 __ldmxcsr(__mxcsr);
197         }
198
199         return (0);
200 }
201
202 int fegetenv(fenv_t *__envp);
203 int feholdexcept(fenv_t *__envp);
204
205 static __inline int
206 fesetenv(const fenv_t *__envp)
207 {
208         fenv_t __env = *__envp;
209         int __mxcsr;
210
211         __mxcsr = __get_mxcsr(__env);
212         __set_mxcsr(__env, 0xffffffff);
213         /*
214          * XXX Using fldenvx() instead of fldenv() tells the compiler that this
215          * instruction clobbers the i387 register stack.  This happens because
216          * we restore the tag word from the saved environment.  Normally, this
217          * would happen anyway and we wouldn't care, because the ABI allows
218          * function calls to clobber the i387 regs.  However, fesetenv() is
219          * inlined, so we need to be more careful.
220          */
221         __fldenvx(__env);
222         if (__HAS_SSE())
223                 __ldmxcsr(__mxcsr);
224         return (0);
225 }
226
227 int feupdateenv(const fenv_t *__envp);
228
229 #if __BSD_VISIBLE
230
231 int feenableexcept(int __mask);
232 int fedisableexcept(int __mask);
233
234 static __inline int
235 fegetexcept(void)
236 {
237         int __control;
238
239         /*
240          * We assume that the masks for the x87 and the SSE unit are
241          * the same.
242          */
243         __fnstcw(&__control);
244         return (~__control & FE_ALL_EXCEPT);
245 }
246
247 #endif /* __BSD_VISIBLE */
248
249 __END_DECLS
250
251 #endif  /* !_FENV_H_ */