-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathfltfenv.c
689 lines (602 loc) · 12.4 KB
/
fltfenv.c
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
/*
* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
* See https://llvm.org/LICENSE.txt for license information.
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
*/
/** \file
* \brief Set ieee floating point environment.
*/
#include <stdint.h>
#if (defined(TARGET_X8664) || defined(TARGET_X86) || defined(X86))
/* These routines are included in linux and osx.
Plus, we can standardize our support of F2003 ieee_exceptions
and ieee_arithmetic modules across all platforms
*/
typedef struct {
unsigned int mxcsr;
unsigned int x87cw;
unsigned int x87sw;
} fenv_t;
typedef unsigned int fexcept_t;
#define IS_SSE_ENABLED 1
#define IS_SSE2_ENABLED 1
typedef union {
int w;
struct {
unsigned int ie : 1;
unsigned int de : 1;
unsigned int ze : 1;
unsigned int oe : 1;
unsigned int ue : 1;
unsigned int pe : 1;
unsigned int rs2 : 2;
unsigned int pc : 2; /* 0 - 32
* 1 - reserved
* 2 - 64
* 3 - 80
*/
unsigned int rc : 2; /* 0 - round to nearest
* 1 - round down
* 2 - round up
* 3 - chop
*/
unsigned int ic : 1;
unsigned int rs3 : 3;
} xbits;
} FCW;
typedef union {
int w;
struct {
unsigned int ie : 1;
unsigned int de : 1;
unsigned int ze : 1;
unsigned int oe : 1;
unsigned int ue : 1;
unsigned int pe : 1;
unsigned int daz : 1;
unsigned int iem : 1;
unsigned int dem : 1;
unsigned int zem : 1;
unsigned int oem : 1;
unsigned int uem : 1;
unsigned int pem : 1;
unsigned int rc : 2; /* 0 - round to nearest
* 1 - round down
* 2 - round up
* 3 - chop
*/
unsigned int fz : 1;
} mbits;
} MXCSR;
int
__fenv_fegetround(void)
{
FCW x87;
MXCSR sse;
int rmode_x87;
int rmode_sse;
rmode_sse = 0;
asm("\tfnstcw %0" : "=m"(x87) :);
rmode_x87 = x87.xbits.rc;
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
rmode_sse = sse.mbits.rc;
}
return ((rmode_x87 | rmode_sse) << 10);
}
int
__fenv_fesetround(int rmode)
{
FCW x87;
MXCSR sse;
asm("\tfnstcw %0" : "=m"(x87) :);
x87.xbits.rc = (rmode >> 10);
asm("\tfldcw %0" ::"m"(x87));
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse.mbits.rc = (rmode >> 10);
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
int
__fenv_fegetexceptflag(fexcept_t *flagp, int exc)
{
int x87;
int sse;
sse = 0;
asm("\tfnstsw %0" : "=m"(x87) :);
x87 &= exc;
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse &= exc;
x87 = 0;
}
*flagp = ((x87 | sse) & 63);
return 0;
}
int
__fenv_fesetexceptflag(fexcept_t *flagp, int exc)
{
unsigned int x87[7];
unsigned int sse;
unsigned int uexc;
uexc = exc & 63;
asm("\tfnstenv %0" : "=m"(x87[0]) :);
x87[1] &= ~uexc;
x87[1] |= (uexc & *flagp);
asm("\tfldenv %0\n\tfwait" ::"m"(x87[0]));
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse &= ~uexc;
sse |= (uexc & *flagp);
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
int
__fenv_fetestexcept(int exc)
{
int x87;
int sse;
sse = 0;
/* Windows doesn't seem to preserve x87 exception bits across context
* switches, so this info is unreliable.
*/
#if defined(_WIN64)
x87 = 0;
#else
asm("\tfnstsw %0" : "=m"(x87) :);
x87 &= exc;
#endif
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse &= exc;
}
return ((x87 | sse) & 63);
}
int
__fenv_feclearexcept(int exc)
{
unsigned int x87[7];
int sse;
unsigned int uexc;
uexc = exc & 63;
asm("\tfnstenv %0" : "=m"(x87[0]) :);
x87[1] &= ~uexc;
asm("\tfldenv %0\n\tfwait" ::"m"(x87[0]));
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse &= ~uexc;
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
int
__fenv_feclearx87except(int exc)
{
unsigned int x87[7];
int sse;
unsigned int uexc;
uexc = exc & 63;
asm("\tfnstenv %0" : "=m"(x87[0]) :);
x87[1] &= ~uexc;
asm("\tfldenv %0\n\tfwait" ::"m"(x87[0]));
return 0;
}
int
__fenv_feraiseexcept(int exc)
{
unsigned int x87[7];
int sse;
exc &= 63;
asm("\tfnstenv %0" : "=m"(x87[0]) :);
x87[1] |= exc;
asm("\tfldenv %0\n\tfwait" ::"m"(x87[0]));
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse |= exc;
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
int
__fenv_feenableexcept(int exc)
{
unsigned int x87;
unsigned int sse;
unsigned int uexc;
uexc = exc & 63;
asm("\tfnstcw %0" : "=m"(x87) :);
x87 &= ~uexc;
asm("\tfldcw %0" ::"m"(x87));
if (IS_SSE_ENABLED) {
uexc = ((exc & 63) << 7);
asm("\tstmxcsr %0" : "=m"(sse) :);
sse &= ~uexc;
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
int
__fenv_fedisableexcept(int exc)
{
int x87;
int sse;
asm("\tfnstcw %0" : "=m"(x87) :);
x87 |= (exc & 63);
asm("\tfldcw %0" ::"m"(x87));
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse |= ((exc & 63) << 7);
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
int
__fenv_fegetexcept(void)
{
int x87;
int sse;
sse = 0;
asm("\tfnstcw %0" : "=m"(x87) :);
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse = sse >> 7;
x87 = 0;
}
return (63 - ((x87 | sse) & 63));
}
int
__fenv_fegetenv(fenv_t *env)
{
unsigned int fcw;
unsigned int x87[7];
unsigned int sse;
asm("\tfnstcw %0" : "=m"(fcw) :);
env->x87cw = fcw;
asm("\tfnstenv %0" : "=m"(x87[0]) :);
env->x87sw = x87[1];
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
env->mxcsr = sse;
}
return 0;
}
int
__fenv_feholdexcept(fenv_t *env)
{
unsigned int fcw;
unsigned int x87[7];
unsigned int sse;
unsigned int uexc;
asm("\tfnstcw %0" : "=m"(fcw) :);
env->x87cw = fcw;
asm("\tfnstenv %0" : "=m"(x87[0]) :);
env->x87sw = x87[1];
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
env->mxcsr = sse;
}
uexc = 63;
fcw |= uexc;
asm("\tfldcw %0" ::"m"(fcw));
x87[1] &= ~uexc;
asm("\tfldenv %0" ::"m"(x87[0]));
if (IS_SSE_ENABLED) {
sse &= ~uexc;
sse |= (uexc << 7);
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
int
__fenv_fesetenv(fenv_t *env)
{
unsigned int fcw;
unsigned int x87[7];
unsigned int sse;
unsigned int uexc;
asm("\tfnstcw %0" : "=m"(fcw) :);
fcw = fcw & 0xFFFFF0C0;
fcw = fcw | (env->x87cw & 0x00000F3F);
asm("\tfldcw %0" ::"m"(fcw));
asm("\tfnstenv %0" : "=m"(x87[0]) :);
x87[1] = x87[1] & 0xFFFFFFC0;
x87[1] = x87[1] | (env->x87sw & 0x0000003F);
asm("\tfldenv %0" ::"m"(x87[0]));
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse = sse & 0xFFFF8040;
sse = sse | (env->mxcsr & 0x00007FBF);
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
int
__fenv_feupdateenv(fenv_t *env)
{
unsigned int fcw;
unsigned int x87[7];
unsigned int sse;
unsigned int uexc;
asm("\tfnstcw %0" : "=m"(fcw) :);
fcw = fcw & 0xFFFFF0C0;
fcw = fcw | (env->x87cw & 0x00000F3F);
asm("\tfldcw %0" ::"m"(fcw));
asm("\tfnstenv %0" : "=m"(x87[0]) :);
x87[1] = x87[1] | (env->x87sw & 0x0000003F);
asm("\tfldenv %0" ::"m"(x87[0]));
if (IS_SSE_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse = sse & 0xFFFF807F;
sse = sse | (env->mxcsr & 0x00007FBF);
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
/** \brief Set (flush to zero) underflow mode
*
* \param uflow zero to allow denorm numbers,
* non-zero integer to flush to zero
*
* \return zero (?)
*/
int
__fenv_fesetzerodenorm(int uflow)
{
unsigned int sse;
unsigned int uexc;
if (IS_SSE2_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
uexc = (1 << 15) | (1 << 6);
sse = sse & ~uexc;
uexc = uflow ? 1 : 0;
sse = sse | (uexc << 15);
sse = sse | (uexc << 6);
asm("\tldmxcsr %0" ::"m"(sse));
}
return 0;
}
/** \brief Get (flush to zero) underflow mode
*
* \return 1 if flush to zero is set, 0 otherwise
*/
int
__fenv_fegetzerodenorm(void)
{
unsigned int sse;
sse = 0;
if (IS_SSE2_ENABLED) {
asm("\tstmxcsr %0" : "=m"(sse) :);
sse = ((sse >> 15) | (sse >> 6)) & 1;
}
return sse;
}
/** \brief
* Mask mxcsr, e.g., a value of 0xffff7fbf says to clear FZ and DAZ
* (i.e., enable 'full' denorm support).
*
* Save the current value of the mxcsr if requested.
* Note this routine will only be called by the compiler for SSE2 or
* better targets.
*/
void
__fenv_mask_mxcsr(int mask, int *psv)
{
int tmp;
asm("\tstmxcsr %0" : "=m"(tmp) :);
if (psv)
*psv = tmp;
tmp &= mask;
asm("\tldmxcsr %0" ::"m"(tmp));
return;
}
/** \brief
* Restore the current value of the mxcsr.
*/
void
__fenv_restore_mxcsr(int sv)
{
asm("\tldmxcsr %0" ::"m"(sv));
return;
}
#else /* #if (defined(TARGET_X8664) || defined(TARGET_X86) || defined(X86)) */
/*
* aarch64 and POWER (not X86-64).
*
* Without loss of generality, use libc's implemenations of floating point
* control/status get/set operations.
*/
#include <fenv.h>
int
__fenv_fegetround(void)
{
return fegetround();
}
int
__fenv_fesetround(int rmode)
{
return fesetround(rmode);
}
int
__fenv_fegetexceptflag(fexcept_t *flagp, int exc)
{
return fegetexceptflag(flagp, exc);
}
int
__fenv_fesetexceptflag(fexcept_t *flagp, int exc)
{
return fesetexceptflag(flagp, exc);
}
int
__fenv_fetestexcept(int exc)
{
return fetestexcept(exc);
}
int
__fenv_feclearexcept(int exc)
{
return feclearexcept(exc);
}
int
__fenv_feraiseexcept(int exc)
{
return feraiseexcept(exc);
}
#if defined(TARGET_WIN_ARM64)
/* TODO: Implement and test these functions */
int
__fenv_feenableexcept(int exc)
{
// implement function.
return 0;
}
int
__fenv_fedisableexcept(int exc)
{
// implement function.
return 0;
}
int
__fenv_fegetexcept(void)
{
// implement function.
return 0;
}
#else
int
__fenv_feenableexcept(int exc)
{
return feenableexcept(exc);
}
int
__fenv_fedisableexcept(int exc)
{
return fedisableexcept(exc);
}
int
__fenv_fegetexcept(void)
{
return fegetexcept();
}
#endif
int
__fenv_fegetenv(fenv_t *env)
{
return fegetenv(env);
}
int
__fenv_feholdexcept(fenv_t *env)
{
return feholdexcept(env);
}
int
__fenv_fesetenv(fenv_t *env)
{
return fesetenv(env);
}
int
__fenv_feupdateenv(fenv_t *env)
{
return feupdateenv(env);
}
#if defined(TARGET_LINUX_ARM)
/*
* ARM aarch64.
* Does implement __fenv_fesetzerodenorm() and __fenv_fegetzerodenorm.
*
* Additional compiler support routines:
* __fenv_mask_fz() and __fenv_restore_fz().
*/
#include <fpu_control.h>
/** \brief Set (flush to zero) underflow mode
*
* \param uflow zero to allow denorm numbers,
* non-zero integer to flush to zero
*/
int
__fenv_fesetzerodenorm(int uflow)
{
uint64_t cw;
_FPU_GETCW(cw);
if (uflow)
cw |= (1ULL << 24);
else
cw &= ~(1ULL << 24);
_FPU_SETCW(cw);
return 0;
}
/** \brief Get (flush to zero) underflow mode
*
* \return 1 if flush to zero is set, 0 otherwise
*/
int
__fenv_fegetzerodenorm(void)
{
uint64_t cw;
_FPU_GETCW(cw);
return (cw & (1ULL << 24)) ? 1 : 0;
}
/** \brief
* Mask fz bit of fpcr, e.g., a value of 0x0 says to clear FZ
* (i.e., enable 'full' denorm support).
*
* Save the current value of the fpcr.fz if requested.
* Note this routine will only be called by the compiler for
* better targets.
*/
void
__fenv_mask_fz(int mask, int *psv)
{
uint64_t tmp;
_FPU_GETCW(tmp);
if (psv)
*psv = ((tmp & (1ULL << 24)) ? 1 : 0);
if (mask)
tmp |= (1ULL << 24);
else
tmp &= ~(1ULL << 24);
_FPU_SETCW(tmp);
}
/** \brief
* Restore the current value of the fpcr.fz.
*/
void
__fenv_restore_fz(int sv)
{
uint64_t tmp;
_FPU_GETCW(tmp);
if (sv)
tmp |= (1ULL << 24);
else
tmp &= ~(1ULL << 24);
_FPU_SETCW(tmp);
}
#else
/*
* Other architectures - currently only POWER.
* Stub out __fenv_fesetzerodenorm() and __fenv_fegetzerodenorm().
*/
/** \brief Unimplemented: Set (flush to zero) underflow mode
*
* \param uflow zero to allow denorm numbers,
* non-zero integer to flush to zero
*/
int
__fenv_fesetzerodenorm(int uflow)
{
return 0;
}
/** \brief Unimplemented: Get (flush to zero) underflow mode
*
* \return 1 if flush to zero is set, 0 otherwise
*/
int
__fenv_fegetzerodenorm(void)
{
return 0;
}
#endif /* #if ! defined(TARGET_LINUX_ARM) */
#endif /* #if (defined(TARGET_X8664) || defined(TARGET_X86) || defined(X86)) */