aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/include/ieeefp.h
diff options
context:
space:
mode:
authorOlivier Houchard <cognet@FreeBSD.org>2004-05-14 11:46:45 +0000
committerOlivier Houchard <cognet@FreeBSD.org>2004-05-14 11:46:45 +0000
commit6fc729af6302dafea6d55379b7175fb40c81ac4d (patch)
tree3eb2afc6dea26c92444202ed2d06bac484ff40ae /sys/arm/include/ieeefp.h
parent0025fb0f4fd82acbf0aafca184feebdc4e37f6ea (diff)
downloadsrc-6fc729af6302dafea6d55379b7175fb40c81ac4d.tar.gz
src-6fc729af6302dafea6d55379b7175fb40c81ac4d.zip
Import FreeBSD/arm kernel bits.
It only supports sa1110 (on simics) right now, but xscale support should come soon. Some of the initial work has been provided by : Stephane Potvin <sepotvin at videotron.ca> Most of this comes from NetBSD.
Notes
Notes: svn path=/head/; revision=129198
Diffstat (limited to 'sys/arm/include/ieeefp.h')
-rw-r--r--sys/arm/include/ieeefp.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/sys/arm/include/ieeefp.h b/sys/arm/include/ieeefp.h
new file mode 100644
index 000000000000..0d0868605a91
--- /dev/null
+++ b/sys/arm/include/ieeefp.h
@@ -0,0 +1,51 @@
+/* $NetBSD: ieeefp.h,v 1.1 2001/01/10 19:02:06 bjh21 Exp $ */
+/* $FreeBSD$ */
+/*
+ * Based on ieeefp.h written by J.T. Conklin, Apr 28, 1995
+ * Public domain.
+ */
+
+#ifndef _MACHINE_IEEEFP_H_
+#define _MACHINE_IEEEFP_H_
+
+/* FP exception codes */
+#define FP_EXCEPT_INV 0
+#define FP_EXCEPT_DZ 1
+#define FP_EXCEPT_OFL 2
+#define FP_EXCEPT_UFL 3
+#define FP_EXCEPT_IMP 4
+
+/* Exception type (used by fpsetmask() et al.) */
+
+typedef int fp_except;
+
+/* Bit defines for fp_except */
+
+#define FP_X_INV (1 << FP_EXCEPT_INV) /* invalid operation exception */
+#define FP_X_DZ (1 << FP_EXCEPT_DZ) /* divide-by-zero exception */
+#define FP_X_OFL (1 << FP_EXCEPT_OFL) /* overflow exception */
+#define FP_X_UFL (1 << FP_EXCEPT_UFL) /* underflow exception */
+#define FP_X_IMP (1 << FP_EXCEPT_IMP) /* imprecise (loss of precision; "inexact") */
+
+/* Rounding modes */
+
+typedef enum {
+ FP_RN=0, /* round to nearest representable number */
+ FP_RP=1, /* round toward positive infinity */
+ FP_RM=2, /* round toward negative infinity */
+ FP_RZ=3 /* round to zero (truncate) */
+} fp_rnd_t;
+
+/*
+ * FP precision modes
+ */
+typedef enum {
+ FP_PS=0, /* 24 bit (single-precision) */
+ FP_PRS, /* reserved */
+ FP_PD, /* 53 bit (double-precision) */
+ FP_PE /* 64 bit (extended-precision) */
+} fp_prec_t;
+
+#define fp_except_t int
+
+#endif /* _MACHINE_IEEEFP_H_ */