OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [final_interface/] [gdb-5.0/] [sim/] [common/] [cgen-ops.h] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
/* Semantics ops support for CGEN-based simulators.
2
   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
3
   Contributed by Cygnus Solutions.
4
 
5
This file is part of the GNU Simulators.
6
 
7
This program is free software; you can redistribute it and/or modify
8
it under the terms of the GNU General Public License as published by
9
the Free Software Foundation; either version 2, or (at your option)
10
any later version.
11
 
12
This program is distributed in the hope that it will be useful,
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
GNU General Public License for more details.
16
 
17
You should have received a copy of the GNU General Public License along
18
with this program; if not, write to the Free Software Foundation, Inc.,
19
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
 
21
*/
22
 
23
#ifndef CGEN_SEM_OPS_H
24
#define CGEN_SEM_OPS_H
25
 
26
#if defined (__GNUC__) && ! defined (SEMOPS_DEFINE_INLINE)
27
#define SEMOPS_DEFINE_INLINE
28
#define SEMOPS_INLINE extern inline
29
#else
30
#define SEMOPS_INLINE
31
#endif
32
 
33
/* Semantic operations.
34
   At one point this file was machine generated.  Maybe it will be again.  */
35
 
36
/* TODO: Lazy encoding/decoding of fp values.  */
37
 
38
/* These don't really have a mode.  */
39
#define ANDIF(x, y) ((x) && (y))
40
#define ORIF(x, y) ((x) || (y))
41
 
42
#define ANDBI(x, y) ((x) & (y))
43
#define ORBI(x, y) ((x) | (y))
44
#define XORBI(x, y) ((x) ^ (y))
45
#define NEGBI(x) (- (x))
46
#define NOTBI(x) (! (BI) (x))
47
#define INVBI(x) (~ (x))
48
#define EQBI(x, y) ((BI) (x) == (BI) (y))
49
#define NEBI(x, y) ((BI) (x) != (BI) (y))
50
#define LTBI(x, y) ((BI) (x) < (BI) (y))
51
#define LEBI(x, y) ((BI) (x) <= (BI) (y))
52
#define GTBI(x, y) ((BI) (x) > (BI) (y))
53
#define GEBI(x, y) ((BI) (x) >= (BI) (y))
54
#define LTUBI(x, y) ((BI) (x) < (BI) (y))
55
#define LEUBI(x, y) ((BI) (x) <= (BI) (y))
56
#define GTUBI(x, y) ((BI) (x) > (BI) (y))
57
#define GEUBI(x, y) ((BI) (x) >= (BI) (y))
58
 
59
#define ADDQI(x, y) ((x) + (y))
60
#define SUBQI(x, y) ((x) - (y))
61
#define MULQI(x, y) ((x) * (y))
62
#define DIVQI(x, y) ((QI) (x) / (QI) (y))
63
#define UDIVQI(x, y) ((UQI) (x) / (UQI) (y))
64
#define MODQI(x, y) ((QI) (x) % (QI) (y))
65
#define UMODQI(x, y) ((UQI) (x) % (UQI) (y))
66
#define SRAQI(x, y) ((QI) (x) >> (y))
67
#define SRLQI(x, y) ((UQI) (x) >> (y))
68
#define SLLQI(x, y) ((UQI) (x) << (y))
69
extern QI RORQI (QI, int);
70
extern QI ROLQI (QI, int);
71
#define ANDQI(x, y) ((x) & (y))
72
#define ORQI(x, y) ((x) | (y))
73
#define XORQI(x, y) ((x) ^ (y))
74
#define NEGQI(x) (- (x))
75
#define NOTQI(x) (! (QI) (x))
76
#define INVQI(x) (~ (x))
77
#define ABSQI(x) ((x) < 0 ? -(x) : (x))
78
#define EQQI(x, y) ((QI) (x) == (QI) (y))
79
#define NEQI(x, y) ((QI) (x) != (QI) (y))
80
#define LTQI(x, y) ((QI) (x) < (QI) (y))
81
#define LEQI(x, y) ((QI) (x) <= (QI) (y))
82
#define GTQI(x, y) ((QI) (x) > (QI) (y))
83
#define GEQI(x, y) ((QI) (x) >= (QI) (y))
84
#define LTUQI(x, y) ((UQI) (x) < (UQI) (y))
85
#define LEUQI(x, y) ((UQI) (x) <= (UQI) (y))
86
#define GTUQI(x, y) ((UQI) (x) > (UQI) (y))
87
#define GEUQI(x, y) ((UQI) (x) >= (UQI) (y))
88
 
89
#define ADDHI(x, y) ((x) + (y))
90
#define SUBHI(x, y) ((x) - (y))
91
#define MULHI(x, y) ((x) * (y))
92
#define DIVHI(x, y) ((HI) (x) / (HI) (y))
93
#define UDIVHI(x, y) ((UHI) (x) / (UHI) (y))
94
#define MODHI(x, y) ((HI) (x) % (HI) (y))
95
#define UMODHI(x, y) ((UHI) (x) % (UHI) (y))
96
#define SRAHI(x, y) ((HI) (x) >> (y))
97
#define SRLHI(x, y) ((UHI) (x) >> (y))
98
#define SLLHI(x, y) ((UHI) (x) << (y))
99
extern HI RORHI (HI, int);
100
extern HI ROLHI (HI, int);
101
#define ANDHI(x, y) ((x) & (y))
102
#define ORHI(x, y) ((x) | (y))
103
#define XORHI(x, y) ((x) ^ (y))
104
#define NEGHI(x) (- (x))
105
#define NOTHI(x) (! (HI) (x))
106
#define INVHI(x) (~ (x))
107
#define ABSHI(x) ((x) < 0 ? -(x) : (x))
108
#define EQHI(x, y) ((HI) (x) == (HI) (y))
109
#define NEHI(x, y) ((HI) (x) != (HI) (y))
110
#define LTHI(x, y) ((HI) (x) < (HI) (y))
111
#define LEHI(x, y) ((HI) (x) <= (HI) (y))
112
#define GTHI(x, y) ((HI) (x) > (HI) (y))
113
#define GEHI(x, y) ((HI) (x) >= (HI) (y))
114
#define LTUHI(x, y) ((UHI) (x) < (UHI) (y))
115
#define LEUHI(x, y) ((UHI) (x) <= (UHI) (y))
116
#define GTUHI(x, y) ((UHI) (x) > (UHI) (y))
117
#define GEUHI(x, y) ((UHI) (x) >= (UHI) (y))
118
 
119
#define ADDSI(x, y) ((x) + (y))
120
#define SUBSI(x, y) ((x) - (y))
121
#define MULSI(x, y) ((x) * (y))
122
#define DIVSI(x, y) ((SI) (x) / (SI) (y))
123
#define UDIVSI(x, y) ((USI) (x) / (USI) (y))
124
#define MODSI(x, y) ((SI) (x) % (SI) (y))
125
#define UMODSI(x, y) ((USI) (x) % (USI) (y))
126
#define SRASI(x, y) ((SI) (x) >> (y))
127
#define SRLSI(x, y) ((USI) (x) >> (y))
128
#define SLLSI(x, y) ((USI) (x) << (y))
129
extern SI RORSI (SI, int);
130
extern SI ROLSI (SI, int);
131
#define ANDSI(x, y) ((x) & (y))
132
#define ORSI(x, y) ((x) | (y))
133
#define XORSI(x, y) ((x) ^ (y))
134
#define NEGSI(x) (- (x))
135
#define NOTSI(x) (! (SI) (x))
136
#define INVSI(x) (~ (x))
137
#define ABSSI(x) ((x) < 0 ? -(x) : (x))
138
#define EQSI(x, y) ((SI) (x) == (SI) (y))
139
#define NESI(x, y) ((SI) (x) != (SI) (y))
140
#define LTSI(x, y) ((SI) (x) < (SI) (y))
141
#define LESI(x, y) ((SI) (x) <= (SI) (y))
142
#define GTSI(x, y) ((SI) (x) > (SI) (y))
143
#define GESI(x, y) ((SI) (x) >= (SI) (y))
144
#define LTUSI(x, y) ((USI) (x) < (USI) (y))
145
#define LEUSI(x, y) ((USI) (x) <= (USI) (y))
146
#define GTUSI(x, y) ((USI) (x) > (USI) (y))
147
#define GEUSI(x, y) ((USI) (x) >= (USI) (y))
148
 
149
#ifdef DI_FN_SUPPORT
150
extern DI ADDDI (DI, DI);
151
extern DI SUBDI (DI, DI);
152
extern DI MULDI (DI, DI);
153
extern DI DIVDI (DI, DI);
154
extern DI UDIVDI (DI, DI);
155
extern DI MODDI (DI, DI);
156
extern DI UMODDI (DI, DI);
157
extern DI SRADI (DI, int);
158
extern UDI SRLDI (UDI, int);
159
extern UDI SLLDI (UDI, int);
160
extern DI RORDI (DI, int);
161
extern DI ROLDI (DI, int);
162
extern DI ANDDI (DI, DI);
163
extern DI ORDI (DI, DI);
164
extern DI XORDI (DI, DI);
165
extern DI NEGDI (DI);
166
extern int NOTDI (DI);
167
extern DI INVDI (DI);
168
extern int EQDI (DI, DI);
169
extern int NEDI (DI, DI);
170
extern int LTDI (DI, DI);
171
extern int LEDI (DI, DI);
172
extern int GTDI (DI, DI);
173
extern int GEDI (DI, DI);
174
extern int LTUDI (UDI, UDI);
175
extern int LEUDI (UDI, UDI);
176
extern int GTUDI (UDI, UDI);
177
extern int GEUDI (UDI, UDI);
178
#else /* ! DI_FN_SUPPORT */
179
#define ADDDI(x, y) ((x) + (y))
180
#define SUBDI(x, y) ((x) - (y))
181
#define MULDI(x, y) ((x) * (y))
182
#define DIVDI(x, y) ((DI) (x) / (DI) (y))
183
#define UDIVDI(x, y) ((UDI) (x) / (UDI) (y))
184
#define MODDI(x, y) ((DI) (x) % (DI) (y))
185
#define UMODDI(x, y) ((UDI) (x) % (UDI) (y))
186
#define SRADI(x, y) ((DI) (x) >> (y))
187
#define SRLDI(x, y) ((UDI) (x) >> (y))
188
#define SLLDI(x, y) ((UDI) (x) << (y))
189
extern DI RORDI (DI, int);
190
extern DI ROLDI (DI, int);
191
#define ANDDI(x, y) ((x) & (y))
192
#define ORDI(x, y) ((x) | (y))
193
#define XORDI(x, y) ((x) ^ (y))
194
#define NEGDI(x) (- (x))
195
#define NOTDI(x) (! (DI) (x))
196
#define INVDI(x) (~ (x))
197
#define ABSDI(x) ((x) < 0 ? -(x) : (x))
198
#define EQDI(x, y) ((DI) (x) == (DI) (y))
199
#define NEDI(x, y) ((DI) (x) != (DI) (y))
200
#define LTDI(x, y) ((DI) (x) < (DI) (y))
201
#define LEDI(x, y) ((DI) (x) <= (DI) (y))
202
#define GTDI(x, y) ((DI) (x) > (DI) (y))
203
#define GEDI(x, y) ((DI) (x) >= (DI) (y))
204
#define LTUDI(x, y) ((UDI) (x) < (UDI) (y))
205
#define LEUDI(x, y) ((UDI) (x) <= (UDI) (y))
206
#define GTUDI(x, y) ((UDI) (x) > (UDI) (y))
207
#define GEUDI(x, y) ((UDI) (x) >= (UDI) (y))
208
#endif /* DI_FN_SUPPORT */
209
 
210
#define EXTBIQI(x) ((QI) (BI) (x))
211
#define EXTBIHI(x) ((HI) (BI) (x))
212
#define EXTBISI(x) ((SI) (BI) (x))
213
#if defined (DI_FN_SUPPORT)
214
extern DI EXTBIDI (BI);
215
#else
216
#define EXTBIDI(x) ((DI) (BI) (x))
217
#endif
218
#define EXTQIHI(x) ((HI) (QI) (x))
219
#define EXTQISI(x) ((SI) (QI) (x))
220
#if defined (DI_FN_SUPPORT)
221
extern DI EXTQIDI (QI);
222
#else
223
#define EXTQIDI(x) ((DI) (QI) (x))
224
#endif
225
#define EXTHIHI(x) ((HI) (HI) (x))
226
#define EXTHISI(x) ((SI) (HI) (x))
227
#define EXTSISI(x) ((SI) (SI) (x))
228
#if defined (DI_FN_SUPPORT)
229
extern DI EXTHIDI (HI);
230
#else
231
#define EXTHIDI(x) ((DI) (HI) (x))
232
#endif
233
#if defined (DI_FN_SUPPORT)
234
extern DI EXTSIDI (SI);
235
#else
236
#define EXTSIDI(x) ((DI) (SI) (x))
237
#endif
238
 
239
#define ZEXTBIQI(x) ((QI) (BI) (x))
240
#define ZEXTBIHI(x) ((HI) (BI) (x))
241
#define ZEXTBISI(x) ((SI) (BI) (x))
242
#if defined (DI_FN_SUPPORT)
243
extern DI ZEXTBIDI (BI);
244
#else
245
#define ZEXTBIDI(x) ((DI) (BI) (x))
246
#endif
247
#define ZEXTQIHI(x) ((HI) (UQI) (x))
248
#define ZEXTQISI(x) ((SI) (UQI) (x))
249
#if defined (DI_FN_SUPPORT)
250
extern DI ZEXTQIDI (QI);
251
#else
252
#define ZEXTQIDI(x) ((DI) (UQI) (x))
253
#endif
254
#define ZEXTHISI(x) ((SI) (UHI) (x))
255
#define ZEXTHIHI(x) ((HI) (UHI) (x))
256
#define ZEXTSISI(x) ((SI) (USI) (x))
257
#if defined (DI_FN_SUPPORT)
258
extern DI ZEXTHIDI (HI);
259
#else
260
#define ZEXTHIDI(x) ((DI) (UHI) (x))
261
#endif
262
#if defined (DI_FN_SUPPORT)
263
extern DI ZEXTSIDI (SI);
264
#else
265
#define ZEXTSIDI(x) ((DI) (USI) (x))
266
#endif
267
 
268
#define TRUNCQIBI(x) ((BI) (QI) (x))
269
#define TRUNCHIBI(x) ((BI) (HI) (x))
270
#define TRUNCHIQI(x) ((QI) (HI) (x))
271
#define TRUNCSIBI(x) ((BI) (SI) (x))
272
#define TRUNCSIQI(x) ((QI) (SI) (x))
273
#define TRUNCSIHI(x) ((HI) (SI) (x))
274
#define TRUNCSISI(x) ((SI) (SI) (x))
275
#if defined (DI_FN_SUPPORT)
276
extern BI TRUNCDIBI (DI);
277
#else
278
#define TRUNCDIBI(x) ((BI) (DI) (x))
279
#endif
280
#if defined (DI_FN_SUPPORT)
281
extern QI TRUNCDIQI (DI);
282
#else
283
#define TRUNCDIQI(x) ((QI) (DI) (x))
284
#endif
285
#if defined (DI_FN_SUPPORT)
286
extern HI TRUNCDIHI (DI);
287
#else
288
#define TRUNCDIHI(x) ((HI) (DI) (x))
289
#endif
290
#if defined (DI_FN_SUPPORT)
291
extern SI TRUNCDISI (DI);
292
#else
293
#define TRUNCDISI(x) ((SI) (DI) (x))
294
#endif
295
 
296
/* Composing/decomposing the various types.
297
   Word ordering is endian-independent.  Words are specified most to least
298
   significant and word number 0 is the most significant word.
299
   ??? May also wish an endian-dependent version.  Later.  */
300
 
301
#ifdef SEMOPS_DEFINE_INLINE
302
 
303
SEMOPS_INLINE SF
304
SUBWORDSISF (SI in)
305
{
306
  union { SI in; SF out; } x;
307
  x.in = in;
308
  return x.out;
309
}
310
 
311
SEMOPS_INLINE SI
312
SUBWORDSFSI (SF in)
313
{
314
  union { SF in; SI out; } x;
315
  x.in = in;
316
  return x.out;
317
}
318
 
319
SEMOPS_INLINE SI
320
SUBWORDDISI (DI in, int word)
321
{
322
  if (word == 0)
323
    return (UDI) in >> 32;
324
  else
325
    return in;
326
}
327
 
328
SEMOPS_INLINE SI
329
SUBWORDDFSI (DF in, int word)
330
{
331
  /* Note: typedef UDI DF; */
332
  if (word == 0)
333
    return (UDI) in >> 32;
334
  else
335
    return in;
336
}
337
 
338
SEMOPS_INLINE SI
339
SUBWORDXFSI (XF in, int word)
340
{
341
  /* Note: typedef struct { SI parts[3]; } XF; */
342
  union { XF in; SI out[3]; } x;
343
  x.in = in;
344
  return x.out[word];
345
}
346
 
347
SEMOPS_INLINE SI
348
SUBWORDTFSI (TF in, int word)
349
{
350
  /* Note: typedef struct { SI parts[4]; } TF; */
351
  union { TF in; SI out[4]; } x;
352
  x.in = in;
353
  return x.out[word];
354
}
355
 
356
SEMOPS_INLINE DI
357
JOINSIDI (SI x0, SI x1)
358
{
359
  if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN)
360
    return MAKEDI (x0, x1);
361
  else
362
    return MAKEDI (x1, x0);
363
}
364
 
365
SEMOPS_INLINE DF
366
JOINSIDF (SI x0, SI x1)
367
{
368
  union { SI in[2]; DF out; } x;
369
  if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN)
370
    x.in[0] = x0, x.in[1] = x1;
371
  else
372
    x.in[1] = x0, x.in[0] = x1;
373
  return x.out;
374
}
375
 
376
SEMOPS_INLINE XF
377
JOINSIXF (SI x0, SI x1, SI x2)
378
{
379
  union { SI in[3]; XF out; } x;
380
  if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN)
381
    x.in[0] = x0, x.in[1] = x1, x.in[2] = x2;
382
  else
383
    x.in[2] = x0, x.in[1] = x1, x.in[0] = x2;
384
  return x.out;
385
}
386
 
387
SEMOPS_INLINE TF
388
JOINSITF (SI x0, SI x1, SI x2, SI x3)
389
{
390
  union { SI in[4]; TF out; } x;
391
  if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN)
392
    x.in[0] = x0, x.in[1] = x1, x.in[2] = x2, x.in[3] = x3;
393
  else
394
    x.in[3] = x0, x.in[2] = x1, x.in[1] = x2, x.in[0] = x3;
395
  return x.out;
396
}
397
 
398
#else
399
 
400
SF SUBWORDSISF (SI);
401
SI SUBWORDSFSI (SF);
402
SI SUBWORDDISI (DI, int);
403
SI SUBWORDDFSI (DF, int);
404
SI SUBWORDXFSI (XF, int);
405
SI SUBWORDTFSI (TF, int);
406
 
407
DI JOINSIDI (SI, SI);
408
DF JOINSIDF (SI, SI);
409
XF JOINSIXF (SI, SI, SI);
410
TF JOINSITF (SI, SI, SI, SI);
411
 
412
#endif /* SUBWORD,JOIN */
413
 
414
/* Semantic support utilities.  */
415
 
416
#ifdef SEMOPS_DEFINE_INLINE
417
 
418
SEMOPS_INLINE SI
419
ADDCSI (SI a, SI b, BI c)
420
{
421
  SI res = ADDSI (a, ADDSI (b, c));
422
  return res;
423
}
424
 
425
SEMOPS_INLINE BI
426
ADDCFSI (SI a, SI b, BI c)
427
{
428
  SI tmp = ADDSI (a, ADDSI (b, c));
429
  BI res = ((USI) tmp < (USI) a) || (c && tmp == a);
430
  return res;
431
}
432
 
433
SEMOPS_INLINE BI
434
ADDOFSI (SI a, SI b, BI c)
435
{
436
  SI tmp = ADDSI (a, ADDSI (b, c));
437
  BI res = (((a < 0) == (b < 0))
438
            && ((a < 0) != (tmp < 0)));
439
  return res;
440
}
441
 
442
SEMOPS_INLINE SI
443
SUBCSI (SI a, SI b, BI c)
444
{
445
  SI res = SUBSI (a, ADDSI (b, c));
446
  return res;
447
}
448
 
449
SEMOPS_INLINE BI
450
SUBCFSI (SI a, SI b, BI c)
451
{
452
  BI res = ((USI) a < (USI) b) || (c && a == b);
453
  return res;
454
}
455
 
456
SEMOPS_INLINE BI
457
SUBOFSI (SI a, SI b, BI c)
458
{
459
  SI tmp = SUBSI (a, ADDSI (b, c));
460
  BI res = (((a < 0) != (b < 0))
461
            && ((a < 0) != (tmp < 0)));
462
  return res;
463
}
464
 
465
SEMOPS_INLINE HI
466
ADDCHI (HI a, HI b, BI c)
467
{
468
  HI res = ADDHI (a, ADDHI (b, c));
469
  return res;
470
}
471
 
472
SEMOPS_INLINE BI
473
ADDCFHI (HI a, HI b, BI c)
474
{
475
  HI tmp = ADDHI (a, ADDHI (b, c));
476
  BI res = ((UHI) tmp < (UHI) a) || (c && tmp == a);
477
  return res;
478
}
479
 
480
SEMOPS_INLINE BI
481
ADDOFHI (HI a, HI b, BI c)
482
{
483
  HI tmp = ADDHI (a, ADDHI (b, c));
484
  BI res = (((a < 0) == (b < 0))
485
            && ((a < 0) != (tmp < 0)));
486
  return res;
487
}
488
 
489
SEMOPS_INLINE HI
490
SUBCHI (HI a, HI b, BI c)
491
{
492
  HI res = SUBHI (a, ADDHI (b, c));
493
  return res;
494
}
495
 
496
SEMOPS_INLINE BI
497
SUBCFHI (HI a, HI b, BI c)
498
{
499
  BI res = ((UHI) a < (UHI) b) || (c && a == b);
500
  return res;
501
}
502
 
503
SEMOPS_INLINE BI
504
SUBOFHI (HI a, HI b, BI c)
505
{
506
  HI tmp = SUBHI (a, ADDHI (b, c));
507
  BI res = (((a < 0) != (b < 0))
508
            && ((a < 0) != (tmp < 0)));
509
  return res;
510
}
511
 
512
#else
513
 
514
SI ADDCSI (SI, SI, BI);
515
UBI ADDCFSI (SI, SI, BI);
516
UBI ADDOFSI (SI, SI, BI);
517
SI SUBCSI (SI, SI, BI);
518
UBI SUBCFSI (SI, SI, BI);
519
UBI SUBOFSI (SI, SI, BI);
520
HI ADDCHI (HI, HI, BI);
521
UBI ADDCFHI (HI, HI, BI);
522
UBI ADDOFHI (HI, HI, BI);
523
HI SUBCHI (HI, HI, BI);
524
UBI SUBCFHI (HI, HI, BI);
525
UBI SUBOFHI (HI, HI, BI);
526
 
527
#endif
528
 
529
#endif /* CGEN_SEM_OPS_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.