Rev 63 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
63 | pj | 1 | /* FPU control word bits. i387 version. |
2 | Copyright (C) 1993,1995,1996,1997,1998,2000,2001 Free Software Foundation, Inc. |
||
3 | This file is part of the GNU C Library. |
||
4 | Contributed by Olaf Flebbe. |
||
5 | |||
6 | The GNU C Library is free software; you can redistribute it and/or |
||
7 | modify it under the terms of the GNU Lesser General Public |
||
8 | License as published by the Free Software Foundation; either |
||
9 | version 2.1 of the License, or (at your option) any later version. |
||
10 | |||
11 | The GNU C Library is distributed in the hope that it will be useful, |
||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||
14 | Lesser General Public License for more details. |
||
15 | |||
16 | You should have received a copy of the GNU Lesser General Public |
||
17 | License along with the GNU C Library; if not, write to the Free |
||
18 | Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
||
19 | 02111-1307 USA. */ |
||
20 | |||
21 | #ifndef _FPU_CONTROL_H |
||
22 | #define _FPU_CONTROL_H 1 |
||
23 | |||
80 | pj | 24 | #include "ll/sys/cdefs.h" |
25 | |||
26 | __BEGIN_DECLS |
||
27 | |||
63 | pj | 28 | /* Here is the dirty part. Set up your 387 through the control word |
29 | * (cw) register. |
||
30 | * |
||
31 | * 15-13 12 11-10 9-8 7-6 5 4 3 2 1 0 |
||
32 | * | reserved | IC | RC | PC | reserved | PM | UM | OM | ZM | DM | IM |
||
33 | * |
||
34 | * IM: Invalid operation mask |
||
35 | * DM: Denormalized operand mask |
||
36 | * ZM: Zero-divide mask |
||
37 | * OM: Overflow mask |
||
38 | * UM: Underflow mask |
||
39 | * PM: Precision (inexact result) mask |
||
40 | * |
||
41 | * Mask bit is 1 means no interrupt. |
||
42 | * |
||
43 | * PC: Precision control |
||
44 | * 11 - round to extended precision |
||
45 | * 10 - round to double precision |
||
46 | * 00 - round to single precision |
||
47 | * |
||
48 | * RC: Rounding control |
||
49 | * 00 - rounding to nearest |
||
50 | * 01 - rounding down (toward - infinity) |
||
51 | * 10 - rounding up (toward + infinity) |
||
52 | * 11 - rounding toward zero |
||
53 | * |
||
54 | * IC: Infinity control |
||
55 | * That is for 8087 and 80287 only. |
||
56 | * |
||
57 | * The hardware default is 0x037f which we use. |
||
58 | */ |
||
59 | |||
60 | #include <features.h> |
||
61 | |||
62 | /* masking of interrupts */ |
||
63 | #define _FPU_MASK_IM 0x01 |
||
64 | #define _FPU_MASK_DM 0x02 |
||
65 | #define _FPU_MASK_ZM 0x04 |
||
66 | #define _FPU_MASK_OM 0x08 |
||
67 | #define _FPU_MASK_UM 0x10 |
||
68 | #define _FPU_MASK_PM 0x20 |
||
69 | |||
70 | /* precision control */ |
||
71 | #define _FPU_EXTENDED 0x300 /* libm requires double extended precision. */ |
||
72 | #define _FPU_DOUBLE 0x200 |
||
73 | #define _FPU_SINGLE 0x0 |
||
74 | |||
75 | /* rounding control */ |
||
76 | #define _FPU_RC_NEAREST 0x0 /* RECOMMENDED */ |
||
77 | #define _FPU_RC_DOWN 0x400 |
||
78 | #define _FPU_RC_UP 0x800 |
||
79 | #define _FPU_RC_ZERO 0xC00 |
||
80 | |||
81 | #define _FPU_RESERVED 0xF0C0 /* Reserved bits in cw */ |
||
82 | |||
83 | |||
84 | /* The fdlibm code requires strict IEEE double precision arithmetic, |
||
85 | and no interrupts for exceptions, rounding to nearest. */ |
||
86 | |||
87 | #define _FPU_DEFAULT 0x037f |
||
88 | |||
89 | /* IEEE: same as above. */ |
||
90 | #define _FPU_IEEE 0x037f |
||
91 | |||
92 | /* Type of the control word. */ |
||
93 | typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__HI__))); |
||
94 | |||
95 | /* Macros for accessing the hardware control word. */ |
||
96 | #define _FPU_GETCW(cw) __asm__ ("fnstcw %0" : "=m" (*&cw)) |
||
97 | #define _FPU_SETCW(cw) __asm__ ("fldcw %0" : : "m" (*&cw)) |
||
98 | |||
99 | /* Default control word set at startup. */ |
||
100 | extern fpu_control_t __fpu_control; |
||
101 | |||
80 | pj | 102 | __END_DECLS |
63 | pj | 103 | #endif /* fpu_control.h */ |