1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <mach.h>
.help IEEE
.nf ------------------------------------------------------------------------
Low level primitives for IEEE to native floating point datatype conversions.
See also the MII package, which provides a higher level interface, and the
IEEE related definitions in <mach.h>.
ieepak[rd] (datum) # scalar conversions
ieeupk[rd] (datum)
ieevpak[rd] (native, ieee, nelem) # vector conversions
ieevupk[rd] (ieee, native, nelem)
iee[sg]nan[rd] (NaN) # NaN handling
iee[sg]map[rd] (mapin, mapout)
ieestat[rd] (nin, nout)
ieezstat[rd] ()
The first two routines handle scalar conversions, the second two routines
vector conversions. The input and output vectors may be the same.
Unfortunately, for portability reasons, functions cannot be used, so the
scalar operators do an in-place conversion instead, and are a no-op on an
unswapped IEEE system. The routines iee[sg]nan[rd] set/get the native
floating value used to replace NaNs or overflows occuring when converting
IEEE to the native floating format (any floating value will do, e.g., zero or
INDEFR). If NaN mapping is enabled, the ieestat[rd] routines may be used to
determine the number of input or output NaN conversions occuring since the
last call to ieezstat[rd].
The NaN mapping enable switch and statistics counters are UNDEFINED at
process startup; programs which use the IEEE conversion package should call
ieesmap[rd] to enable or disable NaN mapping, and ieezstat[rd] to initialize
the statistics counters.
The routines in this file are the "portable" versions. The "portable"
solution it to merely copy the array, swapping the bytes if necessary - this
works on any host that uses the IEEE floating format. NaN mapping is
implemented in the portable code, but will work properly only for input
conversions; for output, the IEEE NaN value is undefined in the portable
version of the code (it is trivial to supply this value in an as$ieee.gx
version of the code).
If the local host does
not use IEEE floating, or if a significant efficiency gain can be realized
by programming in assembler or C, a host specific version of this file should
be written, placed in AS, and referenced in the MKPKG special file list.
.endhelp -------------------------------------------------------------------
# Give the generic preprocessor some help.
define IEEE_SWAP IEEE_SWAP4
define BSWAP bswap4
define NSWAP 4
define IOFF 1
# IEEVPAK -- Convert an array in the native floating point format into an
# array in IEEE floating format. The input and output arrays can be the same.
procedure ieevpakr (native, ieee, nelem)
real native[ARB] #I input native floating format array
real ieee[ARB] #O output IEEE floating format array
int nelem #I number of floating point numbers
int i
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
if (mapout == NO) {
if (IEEE_SWAP == YES)
call BSWAP (native, 1, ieee, 1, nelem * NSWAP)
else
call amovr (native, ieee, nelem)
} else {
do i = 1, nelem
if (native[i] == native_NaN) {
ieee(i) = ieee_NaN
nout = nout + 1
} else
ieee[i] = native[i]
# Byteswap if necessary.
if (IEEE_SWAP == YES)
call BSWAP (ieee, 1, ieee, 1, nelem * NSWAP)
}
end
# IEEVUPK -- Convert an array in IEEE floating format into the native
# floating point format. The input and output arrays can be the same.
procedure ieevupkr (ieee, native, nelem)
real ieee[ARB] #I input IEEE floating format array
real native[ARB] #O output native floating format array
int nelem #I number of floating point numbers
int expon, i, val
real fval
int ival[1]
% equivalence (fval, ival)
% equivalence (ival, val)
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
if (IEEE_SWAP == YES) {
call BSWAP (ieee, 1, native, 1, nelem * NSWAP)
if (mapin != NO) {
# Check for IEEE exceptional values and map NaN to the native
# NaN value, and denormalized numbers (zero exponent) to zero.
do i = 1, nelem {
fval = native[i]
expon = and (ival[IOFF], NaNmask)
if (expon == 0) {
native[i] = 0
} else if (expon == NaNmask) {
native[i] = native_NaN
nin = nin + 1
}
}
}
} else {
if (mapin == NO)
call amovr (ieee, native, nelem)
else {
# Check for IEEE exceptional values and map NaN to the native
# NaN value, and denormalized numbers (zero exponent) to zero.
do i = 1, nelem {
fval = ieee[i]
expon = and (ival[IOFF], NaNmask)
if (expon == 0) {
native[i] = 0
} else if (expon == NaNmask) {
native[i] = native_NaN
nin = nin + 1
} else
native[i] = ieee[i]
}
}
}
end
# IEEPAK -- Convert a native floating point number into IEEE format.
procedure ieepakr (x)
real x #U datum to be converted
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
if (mapout != NO)
if (x == native_NaN) {
x = ieee_NaN
nout = nout + 1
}
if (IEEE_SWAP == YES)
call BSWAP (x, 1, x, 1, NSWAP)
end
# IEEUPK -- Convert an IEEE format number into native floating point.
procedure ieeupkr (x)
real x #U datum to be converted
int expon, val
real fval
int ival[1]
% equivalence (fval, ival)
% equivalence (val, ival)
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
if (IEEE_SWAP == YES)
call BSWAP (x, 1, x, 1, NSWAP)
# Check for IEEE exceptional values and map NaN to the native NaN
# value, and denormalized numbers (zero exponent) to zero.
if (mapin != NO) {
fval = x
expon = and (ival[IOFF], NaNmask)
if (expon == 0)
x = 0
else if (expon == NaNmask) {
x = native_NaN
nin = nin + 1
}
}
end
# IEESNAN -- Set the native floating point value used to replace NaNs and
# overflows when converting IEEE to native. This must be a legal (finite)
# native floating point value.
procedure ieesnanr (x)
real x #I native value which will replace NaN
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
native_NaN = x
nin = 0
nout = 0
end
# IEEGNAN -- Get the NaN value.
procedure ieegnanr (x)
real x #O native value which will replace NaN
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
x = native_NaN
end
# IEESTAT -- Return statistics on the number of NaNs encountered in input
# conversions (unpack) and output conversions (pack).
procedure ieestatr (o_nin, o_nout)
int o_nin #O number of NaN seen on input
int o_nout #O number of NaN values output
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
o_nin = nin
o_nout = nout
end
# IEEZSTAT -- Zero the statistics counters.
procedure ieezstatr ()
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
nin = 0
nout = 0
end
# IEEMAP -- Same as IEESMAP. Retained for backwards compatibility.
procedure ieemapr (inval, outval)
int inval #I enable mapping on input
int outval #I enable mapping on output
begin
call ieesmapr (inval, outval)
end
# IEEGMAP -- Query the current values of the input and output mapping
# enables.
procedure ieegmapr (inval, outval)
int inval #O get input mapping enable flag
int outval #O get output mapping enable flag
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
inval = mapin
outval = mapout
end
# MACHINE DEPENDENT PART.
# ---------------------------
# IEESMAP -- Enable or disable NaN mapping.
#
# sEEE EEEE Emmm mmmm mmmm mmmm mmmm mmmm
# 3 2 1 0
# 1098 7654 3210 9876 5432 1098 7654 3210
# 7 f 8 0 0 0 0 0
procedure ieesmapr (inval, outval)
int inval #I enable NaN mapping for input?
int outval #I enable NaN mapping for output?
# MACHDEP.
#$if (datatype == r)
#% real r_quiet_nan
#$else
#% double precision d_quiet_nan
#$endif
real native_NaN, ieee_NaN
int mapin, mapout, nin, nout, NaNmask
common /ieenanr/ native_NaN, ieee_NaN, NaNmask, mapin, mapout, nin, nout
begin
mapin = inval
mapout = outval
# MACHDEP.
# if (mapout == YES)
# $if (datatype == r)
#% ieeenn = r_quiet_NaN()
# $else
#% ieeenn = d_quiet_NaN()
# $endif
if (mapin == YES)
NaNmask = 7F800000X
end
|