configure.ac: clean up; byteswap.h: avoid redefinition errors
[portablexdr.git] / xdr_float.c
1 /* @(#)xdr_float.c      2.1 88/07/29 4.0 RPCSRC */
2 /*
3  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4  * unrestricted use provided that this legend is included on all tape
5  * media and as a part of the software program in whole or part.  Users
6  * may copy or modify Sun RPC without charge, but are not authorized
7  * to license or distribute it to anyone else except as part of a product or
8  * program developed by the user.
9  * 
10  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13  * 
14  * Sun RPC is provided with no support and without any obligation on the
15  * part of Sun Microsystems, Inc. to assist in its use, correction,
16  * modification or enhancement.
17  * 
18  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20  * OR ANY PART THEREOF.
21  * 
22  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23  * or profits or other special, indirect and consequential damages, even if
24  * Sun has been advised of the possibility of such damages.
25  * 
26  * Sun Microsystems, Inc.
27  * 2550 Garcia Avenue
28  * Mountain View, California  94043
29  */
30 #if !defined(lint) && defined(SCCSIDS)
31 static char sccsid[] = "@(#)xdr_float.c 1.12 87/08/11 Copyr 1984 Sun Micro";
32 #endif
33
34 /*
35  * xdr_float.c, Generic XDR routines impelmentation.
36  *
37  * Copyright (C) 1984, Sun Microsystems, Inc.
38  *
39  * These are the "floating point" xdr routines used to (de)serialize
40  * most common data items.  See xdr.h for more info on the interface to
41  * xdr.
42  */
43
44 #include <stdio.h>
45
46 #include <rpc/types.h>
47 #include <rpc/xdr.h>
48
49 #if defined(__CYGWIN32__) || defined(__MINGW32__)
50 #define vax
51 #endif
52
53 /*
54  * NB: Not portable.
55  * This routine works on Suns (Sky / 68000's) and Vaxen.
56  */
57
58 #ifdef vax
59
60 /* What IEEE single precision floating point looks like on a Vax */
61 struct  ieee_single {
62         unsigned int    mantissa: 23;
63         unsigned int    exp     : 8;
64         unsigned int    sign    : 1;
65 };
66
67 /* Vax single precision floating point */
68 struct  vax_single {
69         unsigned int    mantissa1 : 7;
70         unsigned int    exp       : 8;
71         unsigned int    sign      : 1;
72         unsigned int    mantissa2 : 16;
73 };
74
75 #define VAX_SNG_BIAS    0x81
76 #define IEEE_SNG_BIAS   0x7f
77
78 static struct sgl_limits {
79         struct vax_single s;
80         struct ieee_single ieee;
81 } sgl_limits[2] = {
82         {{ 0x7f, 0xff, 0x0, 0xffff },   /* Max Vax */
83         { 0x0, 0xff, 0x0 }},            /* Max IEEE */
84         {{ 0x0, 0x0, 0x0, 0x0 },        /* Min Vax */
85         { 0x0, 0x0, 0x0 }}              /* Min IEEE */
86 };
87 #endif /* vax */
88
89 bool_t
90 xdr_float(xdrs, fp)
91         register XDR *xdrs;
92         register float *fp;
93 {
94 #if defined(vax)
95         struct ieee_single is;
96         struct vax_single vs, *vsp;
97         struct sgl_limits *lim;
98         int i;
99 #endif
100         switch (xdrs->x_op) {
101
102         case XDR_ENCODE:
103 #if !defined(vax)
104                 return (XDR_PUTLONG(xdrs, (long *)fp));
105 #else
106                 vs = *((struct vax_single *)fp);
107                 for (i = 0, lim = sgl_limits;
108                         i < sizeof(sgl_limits)/sizeof(struct sgl_limits);
109                         i++, lim++) {
110                         if ((vs.mantissa2 == lim->s.mantissa2) &&
111                                 (vs.exp == lim->s.exp) &&
112                                 (vs.mantissa1 == lim->s.mantissa1)) {
113                                 is = lim->ieee;
114                                 goto shipit;
115                         }
116                 }
117                 is.exp = vs.exp - VAX_SNG_BIAS + IEEE_SNG_BIAS;
118                 is.mantissa = (vs.mantissa1 << 16) | vs.mantissa2;
119         shipit:
120                 is.sign = vs.sign;
121                 return (XDR_PUTLONG(xdrs, (long *)(void *)&is));
122 #endif
123
124         case XDR_DECODE:
125 #if !defined(vax)
126                 return (XDR_GETLONG(xdrs, (long *)fp));
127 #else
128                 vsp = (struct vax_single *)fp;
129                 if (!XDR_GETLONG(xdrs, (long *)(void *)&is))
130                         return (FALSE);
131                 for (i = 0, lim = sgl_limits;
132                         i < sizeof(sgl_limits)/sizeof(struct sgl_limits);
133                         i++, lim++) {
134                         if ((is.exp == lim->ieee.exp) &&
135                                 (is.mantissa == lim->ieee.mantissa)) {
136                                 *vsp = lim->s;
137                                 goto doneit;
138                         }
139                 }
140                 vsp->exp = is.exp - IEEE_SNG_BIAS + VAX_SNG_BIAS;
141                 vsp->mantissa2 = is.mantissa;
142                 vsp->mantissa1 = (is.mantissa >> 16);
143         doneit:
144                 vsp->sign = is.sign;
145                 return (TRUE);
146 #endif
147
148         case XDR_FREE:
149                 return (TRUE);
150         }
151         return (FALSE);
152 }
153
154 /*
155  * This routine works on Suns (Sky / 68000's) and Vaxen.
156  */
157
158 #ifdef vax
159 /* What IEEE double precision floating point looks like on a Vax */
160 struct  ieee_double {
161         unsigned int    mantissa1 : 20;
162         unsigned int    exp       : 11;
163         unsigned int    sign      : 1;
164         unsigned int    mantissa2 : 32;
165 };
166
167 /* Vax double precision floating point */
168 struct  vax_double {
169         unsigned int    mantissa1 : 7;
170         unsigned int    exp       : 8;
171         unsigned int    sign      : 1;
172         unsigned int    mantissa2 : 16;
173         unsigned int    mantissa3 : 16;
174         unsigned int    mantissa4 : 16;
175 };
176
177 #define VAX_DBL_BIAS    0x81
178 #define IEEE_DBL_BIAS   0x3ff
179 #define MASK(nbits)     ((1 << nbits) - 1)
180
181 static struct dbl_limits {
182         struct  vax_double d;
183         struct  ieee_double ieee;
184 } dbl_limits[2] = {
185         {{ 0x7f, 0xff, 0x0, 0xffff, 0xffff, 0xffff },   /* Max Vax */
186         { 0x0, 0x7ff, 0x0, 0x0 }},                      /* Max IEEE */
187         {{ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},               /* Min Vax */
188         { 0x0, 0x0, 0x0, 0x0 }}                         /* Min IEEE */
189 };
190
191 #endif /* vax */
192
193
194 bool_t
195 xdr_double(xdrs, dp)
196         register XDR *xdrs;
197         double *dp;
198 {
199         register long *lp;
200 #if defined(vax)
201         struct  ieee_double id;
202         struct  vax_double vd;
203         register struct dbl_limits *lim;
204         int i;
205 #endif
206
207         switch (xdrs->x_op) {
208
209         case XDR_ENCODE:
210 #if !defined(vax)
211                 lp = (long *)dp;
212 #else
213                 vd = *((struct vax_double *)dp);
214                 for (i = 0, lim = dbl_limits;
215                         i < sizeof(dbl_limits)/sizeof(struct dbl_limits);
216                         i++, lim++) {
217                         if ((vd.mantissa4 == lim->d.mantissa4) &&
218                                 (vd.mantissa3 == lim->d.mantissa3) &&
219                                 (vd.mantissa2 == lim->d.mantissa2) &&
220                                 (vd.mantissa1 == lim->d.mantissa1) &&
221                                 (vd.exp == lim->d.exp)) {
222                                 id = lim->ieee;
223                                 goto shipit;
224                         }
225                 }
226                 id.exp = vd.exp - VAX_DBL_BIAS + IEEE_DBL_BIAS;
227                 id.mantissa1 = (vd.mantissa1 << 13) | (vd.mantissa2 >> 3);
228                 id.mantissa2 = ((vd.mantissa2 & MASK(3)) << 29) |
229                                 (vd.mantissa3 << 13) |
230                                 ((vd.mantissa4 >> 3) & MASK(13));
231         shipit:
232                 id.sign = vd.sign;
233                 lp = (long *)(void *)&id;
234 #endif
235 #if defined(__CYGWIN32__) || defined(__MINGW32__)
236                 return (XDR_PUTLONG(xdrs, lp+1) && XDR_PUTLONG(xdrs, lp));
237 #else
238                 return (XDR_PUTLONG(xdrs, lp++) && XDR_PUTLONG(xdrs, lp));
239 #endif
240
241         case XDR_DECODE:
242 #if !defined(vax)
243                 lp = (long *)dp;
244 #if defined(__CYGWIN32__) || defined(__MINGW32__)
245                 return (XDR_GETLONG(xdrs, lp+1) && XDR_GETLONG(xdrs, lp));
246 #else
247                 return (XDR_GETLONG(xdrs, lp++) && XDR_GETLONG(xdrs, lp));
248 #endif
249 #else
250                 lp = (long *)(void *)&id;
251                 if (!XDR_GETLONG(xdrs, lp++) || !XDR_GETLONG(xdrs, lp))
252                         return (FALSE);
253                 for (i = 0, lim = dbl_limits;
254                         i < sizeof(dbl_limits)/sizeof(struct dbl_limits);
255                         i++, lim++) {
256                         if ((id.mantissa2 == lim->ieee.mantissa2) &&
257                                 (id.mantissa1 == lim->ieee.mantissa1) &&
258                                 (id.exp == lim->ieee.exp)) {
259                                 vd = lim->d;
260                                 goto doneit;
261                         }
262                 }
263                 vd.exp = id.exp - IEEE_DBL_BIAS + VAX_DBL_BIAS;
264                 vd.mantissa1 = (id.mantissa1 >> 13);
265                 vd.mantissa2 = ((id.mantissa1 & MASK(13)) << 3) |
266                                 (id.mantissa2 >> 29);
267                 vd.mantissa3 = (id.mantissa2 >> 13);
268                 vd.mantissa4 = (id.mantissa2 << 3);
269         doneit:
270                 vd.sign = id.sign;
271                 *dp = *((double *)(void *)&vd);
272                 return (TRUE);
273 #endif
274
275         case XDR_FREE:
276                 return (TRUE);
277         }
278         return (FALSE);
279 }