1 /* $NetBSD: vaxfp.h,v 1.7 2008/04/28 20:23:39 martin Exp $ */
4 * Copyright (c) 2003 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 * vaxfp.h defines the layout of VAX Floating-Point data types.
34 * Only F_floating and D_floating types are defined here;
35 * G_floating and H_floating are not supported by NetBSD.
40 #include <sys/featuretest.h>
42 #if defined(_NETBSD_SOURCE) || defined(_ISOC99_SOURCE)
45 typedef int fexcept_t
;
47 #define FE_UNDERFLOW 0x01 /* underflow exception */
49 #define FE_ALL_EXCEPT 0x01
51 #if !defined(_ISOC99_SOURCE)
53 #define FFLT_EXPBITS 8
54 #define FFLT_FRACHBITS 7
55 #define FFLT_FRACLBITS 16
56 #define FFLT_FRACBITS (FFLT_FRACLBITS + FFLT_FRACHBITS)
58 struct vax_f_floating
{
59 unsigned int fflt_frach
:FFLT_FRACHBITS
;
60 unsigned int fflt_exp
:FFLT_EXPBITS
;
61 unsigned int fflt_sign
:1;
62 unsigned int fflt_fracl
:FFLT_FRACLBITS
;
65 #define DFLT_EXPBITS 8
66 #define DFLT_FRACHBITS 7
67 #define DFLT_FRACMBITS 16
68 #define DFLT_FRACLBITS 32
69 #define DFLT_FRACBITS (DFLT_FRACLBITS + DFLT_FRACMBITS + DFLT_FRACHBITS)
71 struct vax_d_floating
{
73 unsigned int dflt_frach
:DFLT_FRACHBITS
;
74 unsigned int dflt_exp
:DFLT_EXPBITS
;
75 unsigned int dflt_sign
:1;
76 unsigned int dflt_fracm
:DFLT_FRACMBITS
;
77 unsigned int dflt_fracl
:DFLT_FRACLBITS
;
83 #define FFLT_EXP_BIAS 128
84 #define DFLT_EXP_BIAS 128
87 * Convenience data structures.
89 union vax_ffloating_u
{
91 struct vax_f_floating ffltu_fflt
;
94 union vax_dfloating_u
{
96 struct vax_d_floating dfltu_dflt
;
99 #endif /* !_ISOC99_SOURCE */
101 #endif /* _NETBSD_SOURCE || _ISOC99_SOURCE */
103 #endif /* _VAX_VAXFP_H_ */