-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfp_osx.h
323 lines (251 loc) · 8.82 KB
/
fp_osx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
/* Title: Floating-point exception handling example
Author: David N. Williams
File: fe-handlng-example.c
License: Public Domain
Version: 0.5.0
Started: 21-Sep-09
Revised: 22-Sep-09
Revised: 30-Sep-09 (comment typo)
Revised: 18 Oct-12 (chnaged char* to const char * on line 228, by R. Booth)
Revised: 17 Feb-15 (changed asm to __asm for being both C99 and
GNU99 compliant, by G. Kirstetter)
Revised: 14 Jun-18 (changed the defined() test condition, by G. Kirstetter)
This code is an example of alternate, nondefault handling of
IEEE 754 floating-point exceptions in OS X and Linux, based on
the GNU functions feenableexcept(), fedisableeexcept(), and
fegetexcept() [in libm], plus POSIX sigaction().
The GNU functions above are not implemented in OS X Leopard,
gcc 4.x, but are present in Linux. We implement them here for
OS X, at least until the underlying mechanism is no longer
supported by Apple.
The mechanism is to use the POSIX functions fegetenv() and
fesetenv(), which *are* present in OS X, to manipulate the ppc
and intel floating-point control registers, after changing bits
in fields corresponding to those registers in the fenv_t data
type.
Assembly language code to directly access the floating-point
status and control registers for ppc and intel is also included.
This example grew out of an update to legacy code for Apple
ppc's. The original legacy code is in Listing 7-1 in "PowerPC
Numerics", 2004:
http://lists.apple.com/archives/unix-porting/2003/May/msg00026.html
Another version of the ppc legacy code is here:
http://developer.apple.com/documentation/Performance/Conceptual/Mac_OSX_Numerics/Mac_OSX_Numerics.pdf
Terry Lambert pointed out that our naive update of the legacy
example to Mac OS X Leopard made egregious unsupported use of
system context structures in the handler. See his reply to
http://lists.apple.com/archives/Darwin-dev/2009/Sep/msg00091.html
The example in this file is more plain vanilla, and aims at
alternate handling that does not return to the application, but
rather aborts with a diagnostic message.
To compile it under Mac OS X, execute:
cc -o fe-handling fe-handling-example.c
To compile it under Linux, execute:
cc -DLINUX -lm -o fe-handling fe-handling-example.c
*/
#ifdef LINUX
/* BEGIN quote
http://graphviz.sourcearchive.com/documentation/2.16/gvrender__pango_8c-source.html
*/
/* _GNU_SOURCE is needed (supposedly) for the feenableexcept
* prototype to be defined in fenv.h on GNU systems.
* Presumably it will do no harm on other systems.
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
/* We are not supposed to need __USE_GNU, but I can't see
* how to get the prototype for fedisableexcept from
* /usr/include/fenv.h without it.
*/
#ifndef __USE_GNU
#define __USE_GNU
#endif
/* END quote */
#endif // LINUX
#include <fenv.h>
#if defined(__ppc__) || defined(__ppc64__)
#define DEFINED_PPC
#endif
#if defined(__i386__) || defined(__x86_64__)
#define DEFINED_INTEL 1
#endif
#ifndef LINUX
#if DEFINED_PPC
#define FE_EXCEPT_SHIFT 22 // shift flags right to get masks
#define FM_ALL_EXCEPT FE_ALL_EXCEPT >> FE_EXCEPT_SHIFT
/* GNU C Library:
http://www.gnu.org/software/libc/manual/html_node/Control-Functions.html
- Function: int fegetexcept (int excepts)
The function returns a bitmask of all currently enabled
exceptions. It returns -1 in case of failure.
The excepts argument appears in other functions in fenv.h,
and corresponds to the FE_xxx exception flag constants. It
is unclear whether the bitmask is for the flags or the masks.
We return that for the flags, which corresponds to the
excepts argument in feenableexcept(excepts) and
fedisableexcept(excepts). In GNU/Linux the argument is void,
and that's what we implement. Linux "man fegetenv" appears
to suggest that it's the mask corresponding to bits in
excepts that is returned.
*/
int
fegetexcept (void)
{
static fenv_t fenv;
return ( fegetenv (&fenv) ? -1 :
(
( fenv & (FM_ALL_EXCEPT) ) << FE_EXCEPT_SHIFT )
);
}
int
feenableexcept (unsigned int excepts)
{
static fenv_t fenv;
unsigned int new_excepts = (excepts & FE_ALL_EXCEPT) >> FE_EXCEPT_SHIFT,
old_excepts; // all previous masks
if ( fegetenv (&fenv) ) return -1;
old_excepts = (fenv & FM_ALL_EXCEPT) << FE_EXCEPT_SHIFT;
fenv = (fenv & ~new_excepts) | new_excepts;
return ( fesetenv (&fenv) ? -1 : old_excepts );
}
int
fedisableexcept (unsigned int excepts)
{
static fenv_t fenv;
unsigned int still_on = ~( (excepts & FE_ALL_EXCEPT) >> FE_EXCEPT_SHIFT ),
old_excepts; // previous masks
if ( fegetenv (&fenv) ) return -1;
old_excepts = (fenv & FM_ALL_EXCEPT) << FE_EXCEPT_SHIFT;
fenv &= still_on;
return ( fesetenv (&fenv) ? -1 : old_excepts );
}
#elif (DEFINED_INTEL == 1)
int
fegetexcept (void)
{
static fenv_t fenv;
return fegetenv (&fenv) ? -1 : (fenv.__control & FE_ALL_EXCEPT);
}
int
feenableexcept (unsigned int excepts)
{
static fenv_t fenv;
unsigned int new_excepts = excepts & FE_ALL_EXCEPT,
old_excepts; // previous masks
if ( fegetenv (&fenv) ) return -1;
old_excepts = fenv.__control & FE_ALL_EXCEPT;
// unmask
fenv.__control &= ~new_excepts;
fenv.__mxcsr &= ~(new_excepts << 7);
return ( fesetenv (&fenv) ? -1 : old_excepts );
}
int
fedisableexcept (unsigned int excepts)
{
static fenv_t fenv;
unsigned int new_excepts = excepts & FE_ALL_EXCEPT,
old_excepts; // all previous masks
if ( fegetenv (&fenv) ) return -1;
old_excepts = fenv.__control & FE_ALL_EXCEPT;
// mask
fenv.__control |= new_excepts;
fenv.__mxcsr |= new_excepts << 7;
return ( fesetenv (&fenv) ? -1 : old_excepts );
}
#else // not PPC and not INTEL
// This is an unsupported architecture.
// This could be ARM (for example) and should be completed somehow...
// Volunteers welcome...
int
fegetexcept (void) { return 0; }
int
feenableexcept (unsigned int excepts) { return 0; }
int
fedisableexcept (unsigned int excepts) { return 0; }
#endif // not PPC and no INTEL
#endif // not LINUX
#if DEFINED_PPC
#define getfpscr(x) asm volatile ("mffs %0" : "=f" (x));
#define setfpscr(x) asm volatile ("mtfsf 255,%0" : : "f" (x));
typedef union {
struct {
unsigned long hi;
unsigned long lo;
} i;
double d;
} hexdouble;
#endif // DEFINED_PPC
#if DEFINED_INTEL
// x87 fpu
#define getx87cr(x) __asm ("fnstcw %0" : "=m" (x));
#define setx87cr(x) __asm ("fldcw %0" : "=m" (x));
#define getx87sr(x) __asm ("fnstsw %0" : "=m" (x));
// SIMD, gcc with Intel Core 2 Duo uses SSE2(4)
#define getmxcsr(x) __asm ("stmxcsr %0" : "=m" (x));
#define setmxcsr(x) __asm ("ldmxcsr %0" : "=m" (x));
#endif // DEFINED_INTEL
#include <signal.h>
#include <stdio.h> // printf()
#include <stdlib.h> // abort(), exit()
static const char *fe_code_name[] = {
"FPE_NOOP",
"FPE_FLTDIV", "FPE_FLTINV", "FPE_FLTOVF", "FPE_FLTUND",
"FPE_FLTRES", "FPE_FLTSUB", "FPE_INTDIV", "FPE_INTOVF"
"FPE_UNKNOWN"
};
/* SAMPLE ALTERNATE FP EXCEPTION HANDLER
The sample handler just reports information about the
exception that invoked it, and aborts. It makes no attempt
to restore state and return to the application.
More sophisticated handling would have to confront at least
these issues:
* interface to the system context for restoring state
* imprecision of interrupts from hardware for the intel x87
fpu (but not the SIMD unit, nor the ppc)
* imprecision of interrupts from system software
*/
void
fhdl ( int sig, siginfo_t *sip, ucontext_t *scp )
{
int fe_code = sip->si_code;
unsigned int excepts = fetestexcept (FE_ALL_EXCEPT);
switch (fe_code)
{
#ifdef FPE_NOOP // occurs in OS X
case FPE_NOOP: fe_code = 0; break;
#endif
case FPE_FLTDIV: fe_code = 1; break; // divideByZero
case FPE_FLTINV: fe_code = 2; break; // invalid
case FPE_FLTOVF: fe_code = 3; break; // overflow
case FPE_FLTUND: fe_code = 4; break; // underflow
case FPE_FLTRES: fe_code = 5; break; // inexact
case FPE_FLTSUB: fe_code = 6; break; // invalid
case FPE_INTDIV: fe_code = 7; break; // overflow
case FPE_INTOVF: fe_code = 8; break; // underflow
default: fe_code = 9;
}
if ( sig == SIGFPE )
{
#if DEFINED_INTEL
unsigned short x87cr,x87sr;
unsigned int mxcsr;
getx87cr (x87cr);
getx87sr (x87sr);
getmxcsr (mxcsr);
printf ("X87CR: 0x%04X\n", x87cr);
printf ("X87SR: 0x%04X\n", x87sr);
printf ("MXCSR: 0x%08X\n", mxcsr);
#endif
#if DEFINED_PPC
hexdouble t;
getfpscr (t.d);
printf ("FPSCR: 0x%08X\n", t.i.lo);
#endif
printf ("signal: SIGFPE with code %s\n", fe_code_name[fe_code]);
printf ("invalid flag: 0x%04X\n", excepts & FE_INVALID);
printf ("divByZero flag: 0x%04X\n", excepts & FE_DIVBYZERO);
}
else printf ("Signal is not SIGFPE, it's %i.\n", sig);
abort();
}