aboutsummaryrefslogtreecommitdiff
path: root/sim/common/sim-alu.h
blob: e556dce05800679c5143cad801b20b5a7205aab7 (plain)
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
/*  This file is part of the program psim.

    Copyright (C) 1994-1996, Andrew Cagney <cagney@highland.com.au>
    Copyright (C) 1997, Free Software Foundation, Inc.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
    */


#ifndef _SIM_ALU_H_
#define _SIM_ALU_H_

#include "sim-xcat.h"


/* Binary addition, carry and overflow:


   Overflow - method 1:

   Overflow occures when the sign of the two operands is identical but
   different to the sign of the result:

		SIGN_BIT (~(a ^ b) & ((a + b) ^ b))

   Note that, for subtraction, care must be taken with MIN_INTn.


   Overflow - method 2:

   The two N bit operands are sign extended to M>N bits and then
   added.  Overflow occures when SIGN_BIT<n> and SIGN_BIT<m> do not
   match.
  
		SIGN_BIT (r >> (M-N) ^ r)


   Overflow - method 3:

   The two N bit operands are sign extended to M>N bits and then
   added.  Overflow occures when the result is outside of signextended
   MIN_INTn, MAX_INTn.


   Overflow - method 4:

   Given the carry bit, the overflow can be computed using the
   equation:

		SIGN_BIT (((A ^ B) ^ R) ^ C)

   As shown in the table below:

         I  A  B  R  C | V | A^B  ^R  ^C
        ---------------+---+-------------
         0  0  0  0  0 | 0 |  0    0   0
         0  0  1  1  0 | 0 |  1    0   0
         0  1  0  1  0 | 0 |  1    0   0
         0  1  1  0  1 | 1 |  0    0   1
         1  0  0  1  0 | 1 |  0    1   1
         1  0  1  0  1 | 0 |  1    1   0
         1  1  0  0  1 | 0 |  1    1   0
         1  1  1  1  1 | 0 |  0    1   0



   Carry - method 1:

   Consider the truth table (carryIn, Result, Carryout, Result):

         I  A  B  R | C
        ------------+---
         0  0  0  0 | 0
         0  0  1  1 | 0
         0  1  0  1 | 0
         0  1  1  0 | 1
         1  0  0  1 | 0
         1  0  1  0 | 1
         1  1  0  0 | 1
         1  1  1  1 | 1

   Looking at the terms A, B and R we want an equation for C.

       AB\R  0  1
          +-------
       00 |  0  0 
       01 |  1  0
       11 |  1  1
       10 |  1  0

   This giving us the sum-of-prod equation:

		SIGN_BIT ((A & B) | (A & ~R) | (B & ~R))

   Verifying:

         I  A  B  R | C | A&B  A&~R B&~R 
        ------------+---+---------------
         0  0  0  0 | 0 |  0    0    0
         0  0  1  1 | 0 |  0    0    0
         0  1  0  1 | 0 |  0    0    0
         0  1  1  0 | 1 |  1    1    1
         1  0  0  1 | 0 |  0    0    0
         1  0  1  0 | 1 |  0    0    1
         1  1  0  0 | 1 |  0    1    0
         1  1  1  1 | 1 |  1    0    0



   Carry - method 2:

   Given two signed N bit numbers, a carry can be detected by treating
   the numbers as N bit unsigned and adding them using M>N unsigned
   arrithmetic.  Carry is indicated by bit (1 << N) being set (result
   >= 2**N).

		SIGN_BITm (r)


   Carry - method 3:

   Given the overflow bit.  The carry can be computed from:

		(~R&V) | (R&V)

   Carry - method 4:

   Add the two signed N bit numbers as unsigned N bit numbers, and then
   compare the result to either one of the inputs via unsigned compare.
   If the result is less than the inputs, carry occurred.   

	C = ((unsigned)(a+b)) < (unsigned)a	if adding
		(or)
	C = (unsigned)a < (unsigned)b		if subtracting
   */



/* 8 bit target expressions:

   Since the host's natural bitsize > 8 bits, carry method 2 and
   overflow method 2 are used. */

#define ALU8_BEGIN(VAL) \
signed alu8_cr = (unsigned8) (VAL); \
unsigned alu8_vr = (signed8) (alu8_cr)

#define ALU8_SET(VAL) \
alu8_cr = (unsigned8) (VAL); \
alu8_vr = (signed8) (alu8_cr)

#define ALU8_SET_CARRY(CARRY)						\
do {									\
  if (CARRY)								\
    alu8_cr |= ((signed)-1) << 8;					\
  else									\
    alu8_cr &= 0xff;							\
} while (0)
    
#define ALU8_HAD_CARRY (alu8_cr & LSBIT32(8))
#define ALU8_HAD_OVERFLOW (((alu8_vr >> 8) ^ alu8_vr) & LSBIT32 (8-1))

#define ALU8_RESULT ((unsigned8) alu8_cr)
#define ALU8_CARRY_RESULT ((unsigned8) alu8_cr)
#define ALU8_OVERFLOW_RESULT ((unsigned8) alu8_vr)

/* #define ALU8_END ????? - target dependant */



/* 16 bit target expressions:

   Since the host's natural bitsize > 16 bits, carry method 2 and
   overflow method 2 are used. */

#define ALU16_BEGIN(VAL) \
signed alu16_cr = (unsigned16) (VAL); \
unsigned alu16_vr = (signed16) (alu16_cr)

#define ALU16_SET(VAL) \
alu16_cr = (unsigned16) (VAL); \
alu16_vr = (signed16) (alu16_cr)

#define ALU16_SET_CARRY(CARRY)						\
do {									\
  if (CARRY)								\
    alu16_cr |= ((signed)-1) << 16;					\
  else									\
    alu16_cr &= 0xffff;							\
} while (0)

#define ALU16_HAD_CARRY (alu16_cr & LSBIT32(16))
#define ALU16_HAD_OVERFLOW (((alu16_vr >> 16) ^ alu16_vr) & LSBIT32 (16-1))

#define ALU16_RESULT ((unsigned16) alu16_cr)
#define ALU16_CARRY_RESULT ((unsigned16) alu16_cr)
#define ALU16_OVERFLOW_RESULT ((unsigned16) alu16_vr)

/* #define ALU16_END ????? - target dependant */



/* 32 bit target expressions:

   Since most hosts do not support 64 (> 32) bit arrithmetic, carry
   method 4 and overflow method 4 are used.

   FIXME: 64 bit hosts should use the same method as for the 16 bit
   ALU. */

#define ALU32_BEGIN(VAL) \
unsigned32 alu32_r = (VAL); \
int alu32_c = 0; \
int alu32_v = 0

#define ALU32_SET(VAL) \
alu32_r = (VAL); \
alu32_c = 0; \
alu32_v = 0

#define ALU32_SET_CARRY(CARRY) alu32_c = (CARRY)

#define ALU32_HAD_OVERFLOW (alu32_v)
#define ALU32_HAD_CARRY (alu32_c)

#define ALU32_RESULT (alu32_r)
#define ALU32_CARRY_RESULT (alu32_r)
#define ALU32_OVERFLOW_RESULT (alu32_r)



/* 64 bit target expressions:

   Even though the host typically doesn't support native 64 bit
   arrithmetic, it is still used. */

#define ALU64_BEGIN(VAL) \
natural64 alu64_r = (VAL); \
int alu64_c = 0; \
int alu64_v = 0

#define ALU64_SET(VAL) \
alu64_r = (VAL); \
alu64_c = 0; \
alu64_v = 0

#define ALU64_SET_CARRY(CARRY) alu64_c = (CARRY)

#define ALU64_HAD_CARRY (alu64_c)
#define ALU64_HAD_OVERFLOW (alu64_v)

#define ALU64_RESULT (alu64_r)
#define ALU64_CARRY_RESULT (alu64_r)
#define ALU64_OVERFLOW_RESULT (alu64_r)



/* Generic versions of above macros */

#define ALU_BEGIN	    XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_BEGIN)
#define ALU_SET		    XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_SET)
#define ALU_SET_CARRY	    XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_SET_CARRY)

#define ALU_HAD_OVERFLOW    XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_HAD_OVERFLOW)
#define ALU_HAD_CARRY       XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_HAD_CARRY)

#define ALU_RESULT          XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_RESULT)
#define ALU_OVERFLOW_RESULT XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_OVERFLOW_RESULT)
#define ALU_CARRY_RESULT    XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_CARRY_RESULT)



/* Basic operations */


#define ALU8_ADD(VAL)							\
do {									\
  unsigned8 alu8_tmp = (VAL);						\
  alu8_cr += (unsigned8)(alu8_tmp);					\
  alu8_vr += (signed8)(alu8_tmp);					\
} while (0)

#define ALU16_ADD(VAL)							\
do {									\
  unsigned16 alu16_tmp = (VAL);						\
  alu16_cr += (unsigned16)(alu16_tmp);					\
  alu16_vr += (signed16)(alu16_tmp);					\
} while (0)

#define ALU32_ADD(VAL)							\
do {									\
  unsigned32 alu32_tmp = (unsigned32) (VAL);				\
  unsigned32 alu32_sign = alu32_tmp ^ alu32_r;				\
  alu32_r += (alu32_tmp);						\
  alu32_c = (alu32_r < alu32_tmp);					\
  alu32_v = ((alu32_sign ^ - (unsigned32)alu32_c) ^ alu32_r) >> 31;	\
} while (0)

#define ALU64_ADD(VAL)							\
do {									\
  unsigned64 alu64_tmp = (unsigned64) (VAL);				\
  unsigned64 alu64_sign = alu64_tmp ^ alu64_r;				\
  alu64_r += (alu64_tmp);						\
  alu64_c = (alu64_r < alu64_tmp);					\
  alu64_v = ((alu64_sign ^ - (unsigned64)alu64_c) ^ alu64_r) >> 63;	\
} while (0)

#define ALU_ADD(VAL) XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_ADD)(VAL)



#define ALU8_ADD_CA(VAL)						\
do {									\
  unsigned8 alu8_ca_tmp = (VAL) + ALU8_HAD_CARRY;			\
  ALU8_ADD(alu8_ca_tmp);						\
} while (0)

#define ALU16_ADD_CA(VAL)						\
do {									\
  unsigned16 alu16_ca_tmp = (VAL) + ALU16_HAD_CARRY;			\
  ALU16_ADD(alu16_ca_tmp);						\
} while (0)

#define ALU32_ADD_CA(VAL)						\
do {									\
  unsigned32 alu32_ca_tmp = (VAL) + ALU32_HAD_CARRY;			\
  ALU32_ADD(alu32_ca_tmp);						\
} while (0)

#define ALU64_ADD_CA(VAL)						\
do {									\
  unsigned64 alu64_ca_tmp = (VAL) + ALU64_HAD_CARRY;			\
  ALU64_ADD(alu64_ca_tmp);						\
} while (0)

#define ALU_ADD_CA(VAL) XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_ADD_CA)(VAL)



/* Remember: Hardware implements subtract as an ADD with a carry in of
   1 into the least significant bit */

#define ALU8_SUB(VAL)							\
do {									\
  signed alu8sub_val = ~(VAL);						\
  ALU8_ADD (alu8sub_val);						\
  ALU8_ADD (1);								\
} while (0)

#define ALU16_SUB(VAL)							\
do {									\
  signed alu16sub_val = ~(VAL);						\
  ALU16_ADD (alu16sub_val);						\
  ALU16_ADD (1);							\
} while (0)

#define ALU32_SUB(VAL)							\
do {									\
  unsigned32 alu32_tmp = (unsigned32) (VAL);				\
  unsigned32 alu32_sign = alu32_tmp ^ alu32_r;				\
  alu32_c = (alu32_r < alu32_tmp);					\
  alu32_r -= (alu32_tmp);						\
  alu32_v = ((alu32_sign ^ - (unsigned32)alu32_c) ^ alu32_r) >> 31;	\
} while (0)

#define ALU64_SUB(VAL)							\
do {									\
  unsigned64 alu64_tmp = (unsigned64) (VAL);				\
  unsigned64 alu64_sign = alu64_tmp ^ alu64_r;				\
  alu64_c = (alu64_r < alu64_tmp);					\
  alu64_r -= (alu64_tmp);						\
  alu64_v = ((alu64_sign ^ - (unsigned64)alu64_c) ^ alu64_r) >> 63;	\
} while (0)

#define ALU_SUB(VAL) XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_SUB)(VAL)




#define ALU8_SUB_CA(VAL)						\
do {									\
  unsigned8 alu8_ca_tmp = (VAL) + ALU8_HAD_CARRY;			\
  ALU8_SUB(alu8_ca_tmp);						\
} while (0)

#define ALU16_SUB_CA(VAL)						\
do {									\
  unsigned16 alu16_ca_tmp = (VAL) + ALU16_HAD_CARRY;			\
  ALU16_SUB(alu16_ca_tmp);						\
} while (0)

#define ALU32_SUB_CA(VAL)						\
do {									\
  unsigned32 alu32_ca_tmp = (VAL) + ALU32_HAD_CARRY;			\
  ALU32_SUB(alu32_ca_tmp);						\
} while (0)

#define ALU64_SUB_CA(VAL)						\
do {									\
  unsigned64 alu64_ca_tmp = (VAL) + ALU64_HAD_CARRY;			\
  ALU64_SUB(alu64_ca_tmp);						\
} while (0)

#define ALU_SUB_CA(VAL) XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_SUB_CA)(VAL)



#define ALU16_OR(VAL)							\
do {									\
  error("ALU16_OR");							\
} while (0)

#define ALU32_OR(VAL)							\
do {									\
  alu32_r |= (VAL);							\
  alu32_c = 0;								\
  alu32_v = 0;								\
} while (0)

#define ALU64_OR(VAL)							\
do {									\
  alu64_r |= (VAL);							\
  alu64_c = 0;								\
  alu64_v = 0;								\
} while (0)

#define ALU_OR(VAL) XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_OR)(VAL)



#define ALU16_XOR(VAL)							\
do {									\
  error("ALU16_XOR");							\
} while (0)

#define ALU32_XOR(VAL)							\
do {									\
  alu32_r ^= (VAL);							\
  alu32_c = 0;								\
  alu32_v = 0;								\
} while (0)

#define ALU64_XOR(VAL)							\
do {									\
  alu64_r ^= (VAL);							\
  alu64_c = 0;								\
  alu64_v = 0;								\
} while (0)

#define ALU_XOR(VAL) XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_XOR)(VAL)




#define ALU8_NEGATE()							\
do {									\
  signed alu8neg_val = ~(ALU8_RESULT);					\
  ALU8_SET (1);								\
  ALU8_ADD (alu8neg_val);						\
} while (0)

#define ALU16_NEGATE()							\
do {									\
  signed alu16neg_val = ~(ALU16_RESULT);				\
  ALU16_SET (1);							\
  ALU16_ADD (alu16neg_val);						\
} while (0)

#define ALU32_NEGATE()							\
do {									\
  unsigned32 alu32_tmp_orig = alu32_r;					\
  ALU32_SET (0);							\
  ALU32_SUB (alu32_tmp_orig);						\
} while(0)

#define ALU64_NEGATE()							\
do {									\
  unsigned64 alu64_tmp_orig = alu64_r;					\
  ALU64_SET (0);							\
  ALU64_SUB (alu64_tmp_orig);						\
} while (0)

#define ALU_NEGATE XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_NEGATE)




#define ALU16_AND(VAL)							\
do {									\
  error("ALU_AND16");							\
} while (0)

#define ALU32_AND(VAL)							\
do {									\
  alu32_r &= (VAL);							\
  alu32_r = 0;								\
  alu32_v = 0;								\
} while (0)

#define ALU64_AND(VAL)							\
do {									\
  alu64_r &= (VAL);							\
  alu64_r = 0;								\
  alu64_v = 0;								\
} while (0)

#define ALU_AND(VAL) XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_AND)(VAL)




#define ALU16_NOT(VAL)							\
do {									\
  error("ALU_NOT16");							\
} while (0)

#define ALU32_NOT							\
do {									\
  alu32_r = ~alu32_r;							\
  alu32_c = 0;								\
  alu32_v = 0;								\
} while (0)

#define ALU64_NOT							\
do {									\
  alu64_r = ~alu64_r;							\
  alu64_c = 0;								\
  alu64_v = 0;								\
} while (0)

#define ALU_NOT XCONCAT3(ALU,WITH_TARGET_WORD_BITSIZE,_NOT)

#endif