alpha: create kernel-features.h.
[glibc.git] / sysdeps / m68k / fpu_control.h
blobcef5625fa72eec8cecdc5a36685f6bf4366bb2d9
1 /* 68k FPU control word definitions.
2 Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #ifndef _FPU_CONTROL_H
21 #define _FPU_CONTROL_H
24 * Motorola floating point control register bits.
26 * 31-16 -> reserved (read as 0, ignored on write)
27 * 15 -> enable trap for BSUN exception
28 * 14 -> enable trap for SNAN exception
29 * 13 -> enable trap for OPERR exception
30 * 12 -> enable trap for OVFL exception
31 * 11 -> enable trap for UNFL exception
32 * 10 -> enable trap for DZ exception
33 * 9 -> enable trap for INEX2 exception (INEX on Coldfire)
34 * 8 -> enable trap for INEX1 exception (IDE on Coldfire)
35 * 7-6 -> Precision Control (only bit 6 is used on Coldfire)
36 * 5-4 -> Rounding Control
37 * 3-0 -> zero (read as 0, write as 0)
40 * Precision Control:
41 * 00 - round to extended precision
42 * 01 - round to single precision
43 * 10 - round to double precision
44 * 11 - undefined
46 * Rounding Control:
47 * 00 - rounding to nearest (RN)
48 * 01 - rounding toward zero (RZ)
49 * 10 - rounding (down)toward minus infinity (RM)
50 * 11 - rounding (up) toward plus infinity (RP)
52 * The hardware default is 0x0000. I choose 0x5400.
55 #include <features.h>
57 /* masking of interrupts */
58 #define _FPU_MASK_BSUN 0x8000
59 #define _FPU_MASK_SNAN 0x4000
60 #define _FPU_MASK_OPERR 0x2000
61 #define _FPU_MASK_OVFL 0x1000
62 #define _FPU_MASK_UNFL 0x0800
63 #define _FPU_MASK_DZ 0x0400
64 #define _FPU_MASK_INEX1 0x0200
65 #define _FPU_MASK_INEX2 0x0100
67 /* precision control */
68 #ifdef __mcoldfire__
69 #define _FPU_DOUBLE 0x00
70 #else
71 #define _FPU_EXTENDED 0x00 /* RECOMMENDED */
72 #define _FPU_DOUBLE 0x80
73 #endif
74 #define _FPU_SINGLE 0x40 /* DO NOT USE */
76 /* rounding control */
77 #define _FPU_RC_NEAREST 0x00 /* RECOMMENDED */
78 #define _FPU_RC_ZERO 0x10
79 #define _FPU_RC_DOWN 0x20
80 #define _FPU_RC_UP 0x30
82 #ifdef __mcoldfire__
83 #define _FPU_RESERVED 0xFFFF800F
84 #else
85 #define _FPU_RESERVED 0xFFFF000F /* Reserved bits in fpucr */
86 #endif
89 /* Now two recommended fpucr */
91 /* The fdlibm code requires no interrupts for exceptions. Don't
92 change the rounding mode, it would break long double I/O! */
93 #define _FPU_DEFAULT 0x00000000
95 /* IEEE: same as above, but exceptions. We must make it non-zero so
96 that __setfpucw works. This bit will be ignored. */
97 #define _FPU_IEEE 0x00000001
99 /* Type of the control word. */
100 typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
102 /* Macros for accessing the hardware control word. */
103 #define _FPU_GETCW(cw) __asm__ ("fmove%.l %!, %0" : "=dm" (cw))
104 #define _FPU_SETCW(cw) __asm__ volatile ("fmove%.l %0, %!" : : "dm" (cw))
106 /* Default control word set at startup. */
107 extern fpu_control_t __fpu_control;
109 #endif /* _M68K_FPU_CONTROL_H */