-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathE803ops.c
439 lines (307 loc) · 7.44 KB
/
E803ops.c
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
/* This file is part of the Elliott 803 emulator.
Copyright © 2020 Peter Onion
See LICENCE file.
*/
// Various operations on 803 words
#include <stdio.h>
#include "E803-types.h"
#include "E803ops.h"
/*
BitsSign is the sign bit in the accumulator
BitsSign2 is the duplicated signbit
BitsCarry is the bit in the AR to set/test for carry to ACC
BitsOver is the bit to test in ACC to detect carry. It should
be the same state as the carry bit if no overflow.
*/
// *b = *b + *a
int E803_add(E803word *a, E803word *b)
{
uint64_t res,signBitCopy;
int ovr;
res = *a + *b;
signBitCopy = (res << 1) & BitsSign2;
ovr = ((res ^ signBitCopy) & BitsOver) != 0;
*b = (res & Bits39) | signBitCopy;
return(ovr);
}
// *b = *b - *a
int E803_sub(E803word *a, E803word *b)
{
uint64_t res,signBitCopy;
int ovr;
res = *b - *a;
signBitCopy = (res << 1) & BitsSign2;
ovr = ((res ^ signBitCopy) & BitsOver) != 0;
*b = (res & Bits39) | signBitCopy;
return(ovr);
}
// 40 bit versions for divide.
int E803_add56(E803word *a, E803word *b)
{
uint64_t res;
res = *a + *b;
*b = (res & Bits40);
return(0);
}
// *b = *b - *a
int E803_sub56(E803word *a, E803word *b)
{
uint64_t res;
res = *b - *a;
*b = (res & Bits40);
return(0);
}
// *b = - *a
int E803_neg(E803word *a, E803word *b)
{
uint64_t res,signBitCopy;
int ovr;
res = - *a;
signBitCopy = (res << 1) & BitsSign2;
ovr = ((res ^ signBitCopy) & BitsOver) != 0;
*b = (res & Bits39) | signBitCopy;
return(ovr);
}
// *b = *b & *a
int E803_and(E803word *a, E803word *b)
{
uint64_t res,signBitCopy;
res = *b & *a;
signBitCopy = (res << 1) & BitsSign2;
*b = (res & Bits39) | signBitCopy;
return(0);
}
// *b = *a - *b
int E803_neg_add(E803word *a, E803word *b)
{
uint64_t res,signBitCopy;
int ovr;
res = *a - *b;
signBitCopy = (res << 1) & BitsSign2;
ovr = ((res ^ signBitCopy) & BitsOver) != 0;
*b = (res & Bits39) | signBitCopy;
return(ovr);
}
void E803_signed_shift_right(E803word *acc, E803word *ar )
{
uint64_t res;
res = *acc;
if((res & 1) != 0)
{
*ar |= BitsCarry;
}
if((res & BitsSign) != 0)
{
res >>= 1;
res &= Bits38;
res |= BitsSign + BitsSign2;
}
else
{
res >>= 1;
res &= Bits38;
}
*acc = res;
res = *ar;
res >>= 1;
res &= Bits38;
*ar = res;
return;
}
void E803_unsigned_shift_right(E803word *a)
{
*a >>= 1;
*a &= Bits38; /* Sign bit and copy set to zero */
}
void E803_Double_M( E803word *a)
{
*a = (*a << 1) & 0xFFFFFFFFFELL;
}
void E803_Acc_to_Q(E803word *acc, E803word *qacc, E803word *qar )
{
*qar = *acc & Bits38;
*qacc = (*acc & BitsSign) ? Bits40 : 0x0L;
}
int E803_dadd(E803word *qacc, E803word *qar ,
E803word *acc, E803word *ar)
{
uint64_t c,signBitCopy,res;
int ovr;
res = *ar + *qar;
c = (res & BitsCarry) >> 38;
*ar = res & Bits38;
res = *acc + *qacc + c;
signBitCopy = (res << 1) & BitsSign2;
ovr = ((res ^ signBitCopy) & BitsOver) != 0;
*acc = (res & Bits39) | signBitCopy;
return(ovr);
}
int E803_dsub(E803word *qacc, E803word *qar ,
E803word *acc, E803word *ar)
{
uint64_t b,signBitCopy,res;
int ovr;
res = *ar - *qar;
b = (res & BitsCarry) >> 38;
*ar = res & Bits38;
res = *acc - *qacc - b;
signBitCopy = (res << 1) & BitsSign2;
ovr = ((res ^ signBitCopy) & BitsOver) != 0;
*acc = (res & Bits39) | signBitCopy;
return(ovr);
}
int E803_shift_left(E803word *acc, E803word *ar )
{
uint64_t res,carry,signBitCopy;
int ovr;
res = *ar << 1;
carry = (res & BitsCarry) >> 38;
*ar = res & Bits38;
res = (*acc << 1) | carry;
signBitCopy = (res << 1) & BitsSign2;
ovr = ((res ^ signBitCopy) & BitsOver) != 0;
*acc = (res & Bits39) | signBitCopy;
return(ovr);
}
int E803_shift_left56(E803word *acc, E803word *ar )
{
uint64_t res,carry;
res = *ar << 1;
carry = (res & BitsCarry) >> 38;
*ar = res & Bits38;
*acc = ((*acc << 1) | carry) & Bits40;
return(0);
}
/* Return value
0xXX00 if M == 0 XX = 00 else FF
0x00YY if M == -1 YY = FF else 00
*/
int E803_Shift_M_Right(E803word *m )
{
uint64_t res,signBitCopy;
int ret;
res = *m >> 1;
signBitCopy = (res << 1) & BitsSign2;
*m = (res & Bits39) | signBitCopy;
ret = 0;
res &= Bits39;
if(res != 0) ret |= 0xFF00;
if(res == Bits39) ret |= 0xFF;
return(ret);
}
void E803_AR_to_ACC(E803word *acc, E803word *ar )
{
*acc = *ar & Bits38;
}
int E803_mant_shift_right(E803word *mant,int shiftA ,int shiftB)
{
uint64_t res,signBitCopy;
int ret;
ret = 0;
res = *mant;
while(shiftA--)
{
ret += (int) (res & 1);
res >>= 1;
signBitCopy = (res << 1) & BitsSign2;
res = (res & Bits39) | signBitCopy;
}
*mant = res;
while(shiftB--)
{
ret += (int) (res & 1);
res >>= 1;
// Are these needed ? res is not used
signBitCopy = (res << 1) & BitsSign2;
res = (res & Bits39) | signBitCopy;
}
return(ret);
}
/*
803 floating point format numbers
E803word.bytes[] 4 3 2 1 0
SMMMMMMM MMMMMMMM MMMMMMMM MMMMMMmE EEEEEEEE
S = replicated Sign bit
M = Mantissa m = 2^-29 LSB of Mantisa
E = Exponent
Separated Mantissae are held as...
E803word.bytes[] 4 3 2 1 0
SSMMMMMM MMMMMMMM MMMMMMMM MMMMMMMm nn000000
n = extra mantisa bits held during calculations
*/
#define BitsMant (0xFFFFFFFF00LL)
int E803_fp_split( E803word *acc , E803word *mant)
{
uint64_t res,signBitCopy;
res = *acc;
signBitCopy = res & BitsSign2;
res >>= 1;
// Does this need an extra mask ?
res = (res | signBitCopy) & BitsMant;
*mant = res;
return(*acc & 511);
}
void E803_fp_join( E803word *mant, int *exp, E803word *acc)
{
uint64_t res;
res = (*mant << 1) & (BitsMant - 0x100LL);
res |= *exp & 0x1FFLL;
*acc = res;
}
int E803_mant_add( E803word *a, E803word *b)
{
uint64_t res,signBitCopy;
int ovr;
res = *a + *b;
signBitCopy = (res << 1) & BitsSign;
ovr = ((res ^ signBitCopy) & BitsSign) != 0;
*b = res;
return(ovr);
}
int E803_mant_sub( E803word *a, E803word *b)
{
uint64_t res,signBitCopy;
int ovr;
res = *b - *a;
signBitCopy = (res << 1) & BitsSign;
ovr = ((res ^ signBitCopy) & BitsSign) != 0;
*b = res;
return(ovr);
}
void E803_rotate_left(E803word *acc, int *cnt )
{
uint64_t res,c,signBitCopy;
int count;
count = *cnt;
res = *acc;
while(count--)
{
c = (res & BitsSign) >> 38;
res <<= 1;
res += c;
}
signBitCopy = (res << 1) & BitsSign2;
*acc = (res & Bits39) | signBitCopy;
}
void E803_shift_left_F65( E803word *acc, int *cnt )
{
uint64_t res,signBitCopy;
int count;
count = *cnt;
res = *acc;
res <<= count;
signBitCopy = (res << 1) & BitsSign2;
*acc = (res & Bits39) | signBitCopy;
}
/* FIxed bug 1/1/06 */
/* Fixed again 6/3/10 ! */
void E803_SCR_to_STORE(int32_t *SCR, E803word *ptr)
{
uint64_t res,scr;
scr = (uint64_t) *SCR;
// Modified 14/10/09 after checking on the real 803 at TNMOC.
res = (scr >> 1) & 8191;
// The half bit is present in the upper copy of the SCR.
res |= ((scr) & 16383) << 23;
*ptr = res;
}