Forgot to commit ChangeLog entry for CRIS gas tests. Oops.
[deliverable/binutils-gdb.git] / sim / common / cgen-ops.h
CommitLineData
c906108c 1/* Semantics ops support for CGEN-based simulators.
7a292a7a 2 Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
c906108c
SS
3 Contributed by Cygnus Solutions.
4
5This file is part of the GNU Simulators.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License along
18with this program; if not, write to the Free Software Foundation, Inc.,
1959 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
7a292a7a
SS
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
c906108c
SS
33/* Semantic operations.
34 At one point this file was machine generated. Maybe it will be again. */
35
43ff13b4
JM
36/* TODO: Lazy encoding/decoding of fp values. */
37
c906108c
SS
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))
43ff13b4 58\f
c906108c
SS
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))
43ff13b4
JM
69extern QI RORQI (QI, int);
70extern QI ROLQI (QI, int);
c906108c
SS
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))
0fda6bd2 77#define ABSQI(x) ((x) < 0 ? -(x) : (x))
c906108c
SS
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))
43ff13b4 88\f
c906108c
SS
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))
43ff13b4
JM
99extern HI RORHI (HI, int);
100extern HI ROLHI (HI, int);
c906108c
SS
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))
0fda6bd2 107#define ABSHI(x) ((x) < 0 ? -(x) : (x))
c906108c
SS
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))
43ff13b4 118\f
c906108c
SS
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))
43ff13b4
JM
129extern SI RORSI (SI, int);
130extern SI ROLSI (SI, int);
c906108c
SS
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))
0fda6bd2 137#define ABSSI(x) ((x) < 0 ? -(x) : (x))
c906108c
SS
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))
43ff13b4 148\f
c906108c 149#ifdef DI_FN_SUPPORT
43ff13b4
JM
150extern DI ADDDI (DI, DI);
151extern DI SUBDI (DI, DI);
152extern DI MULDI (DI, DI);
153extern DI DIVDI (DI, DI);
154extern DI UDIVDI (DI, DI);
155extern DI MODDI (DI, DI);
156extern DI UMODDI (DI, DI);
157extern DI SRADI (DI, int);
158extern UDI SRLDI (UDI, int);
159extern UDI SLLDI (UDI, int);
160extern DI RORDI (DI, int);
161extern DI ROLDI (DI, int);
162extern DI ANDDI (DI, DI);
163extern DI ORDI (DI, DI);
164extern DI XORDI (DI, DI);
165extern DI NEGDI (DI);
166extern int NOTDI (DI);
167extern DI INVDI (DI);
168extern int EQDI (DI, DI);
169extern int NEDI (DI, DI);
170extern int LTDI (DI, DI);
171extern int LEDI (DI, DI);
172extern int GTDI (DI, DI);
173extern int GEDI (DI, DI);
174extern int LTUDI (UDI, UDI);
175extern int LEUDI (UDI, UDI);
176extern int GTUDI (UDI, UDI);
177extern int GEUDI (UDI, UDI);
c906108c
SS
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))
43ff13b4
JM
189extern DI RORDI (DI, int);
190extern DI ROLDI (DI, int);
c906108c
SS
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))
0fda6bd2 197#define ABSDI(x) ((x) < 0 ? -(x) : (x))
c906108c
SS
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 */
43ff13b4 209\f
c906108c
SS
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)
43ff13b4 214extern DI EXTBIDI (BI);
c906108c
SS
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)
43ff13b4 221extern DI EXTQIDI (QI);
c906108c
SS
222#else
223#define EXTQIDI(x) ((DI) (QI) (x))
224#endif
f743149e 225#define EXTHIHI(x) ((HI) (HI) (x))
c906108c 226#define EXTHISI(x) ((SI) (HI) (x))
0fda6bd2 227#define EXTSISI(x) ((SI) (SI) (x))
c906108c 228#if defined (DI_FN_SUPPORT)
43ff13b4 229extern DI EXTHIDI (HI);
c906108c
SS
230#else
231#define EXTHIDI(x) ((DI) (HI) (x))
232#endif
233#if defined (DI_FN_SUPPORT)
43ff13b4 234extern DI EXTSIDI (SI);
c906108c
SS
235#else
236#define EXTSIDI(x) ((DI) (SI) (x))
237#endif
43ff13b4 238\f
c906108c
SS
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)
43ff13b4 243extern DI ZEXTBIDI (BI);
c906108c
SS
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)
43ff13b4 250extern DI ZEXTQIDI (QI);
c906108c
SS
251#else
252#define ZEXTQIDI(x) ((DI) (UQI) (x))
253#endif
254#define ZEXTHISI(x) ((SI) (UHI) (x))
0fda6bd2
JM
255#define ZEXTHIHI(x) ((HI) (UHI) (x))
256#define ZEXTSISI(x) ((SI) (USI) (x))
c906108c 257#if defined (DI_FN_SUPPORT)
43ff13b4 258extern DI ZEXTHIDI (HI);
c906108c
SS
259#else
260#define ZEXTHIDI(x) ((DI) (UHI) (x))
261#endif
262#if defined (DI_FN_SUPPORT)
43ff13b4 263extern DI ZEXTSIDI (SI);
c906108c
SS
264#else
265#define ZEXTSIDI(x) ((DI) (USI) (x))
266#endif
43ff13b4 267\f
c906108c
SS
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))
0f831eb3 274#define TRUNCSISI(x) ((SI) (SI) (x))
c906108c 275#if defined (DI_FN_SUPPORT)
43ff13b4 276extern BI TRUNCDIBI (DI);
c906108c
SS
277#else
278#define TRUNCDIBI(x) ((BI) (DI) (x))
279#endif
280#if defined (DI_FN_SUPPORT)
43ff13b4 281extern QI TRUNCDIQI (DI);
c906108c
SS
282#else
283#define TRUNCDIQI(x) ((QI) (DI) (x))
284#endif
285#if defined (DI_FN_SUPPORT)
43ff13b4 286extern HI TRUNCDIHI (DI);
c906108c
SS
287#else
288#define TRUNCDIHI(x) ((HI) (DI) (x))
289#endif
290#if defined (DI_FN_SUPPORT)
43ff13b4 291extern SI TRUNCDISI (DI);
c906108c
SS
292#else
293#define TRUNCDISI(x) ((SI) (DI) (x))
294#endif
c906108c 295\f
6426a772
JM
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. */
43ff13b4 300
c906108c 301#ifdef SEMOPS_DEFINE_INLINE
7a292a7a
SS
302
303SEMOPS_INLINE SF
6426a772 304SUBWORDSISF (SI in)
7a292a7a
SS
305{
306 union { SI in; SF out; } x;
307 x.in = in;
308 return x.out;
309}
310
311SEMOPS_INLINE SI
6426a772 312SUBWORDSFSI (SF in)
7a292a7a
SS
313{
314 union { SF in; SI out; } x;
315 x.in = in;
316 return x.out;
317}
318
319SEMOPS_INLINE SI
6426a772 320SUBWORDDISI (DI in, int word)
7a292a7a 321{
6426a772
JM
322 if (word == 0)
323 return (UDI) in >> 32;
7a292a7a 324 else
6426a772 325 return in;
7a292a7a
SS
326}
327
328SEMOPS_INLINE SI
6426a772 329SUBWORDDFSI (DF in, int word)
7a292a7a 330{
6426a772
JM
331 /* Note: typedef UDI DF; */
332 if (word == 0)
333 return (UDI) in >> 32;
7a292a7a 334 else
6426a772 335 return in;
7a292a7a
SS
336}
337
43ff13b4 338SEMOPS_INLINE SI
6426a772 339SUBWORDXFSI (XF in, int word)
43ff13b4 340{
6426a772 341 /* Note: typedef struct { SI parts[3]; } XF; */
43ff13b4
JM
342 union { XF in; SI out[3]; } x;
343 x.in = in;
6426a772 344 return x.out[word];
43ff13b4
JM
345}
346
7a292a7a 347SEMOPS_INLINE SI
6426a772 348SUBWORDTFSI (TF in, int word)
7a292a7a 349{
6426a772 350 /* Note: typedef struct { SI parts[4]; } TF; */
7a292a7a
SS
351 union { TF in; SI out[4]; } x;
352 x.in = in;
6426a772 353 return x.out[word];
7a292a7a
SS
354}
355
356SEMOPS_INLINE DI
6426a772 357JOINSIDI (SI x0, SI x1)
7a292a7a
SS
358{
359 if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN)
360 return MAKEDI (x0, x1);
361 else
362 return MAKEDI (x1, x0);
363}
364
365SEMOPS_INLINE DF
6426a772 366JOINSIDF (SI x0, SI x1)
7a292a7a
SS
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
43ff13b4 376SEMOPS_INLINE XF
6426a772 377JOINSIXF (SI x0, SI x1, SI x2)
43ff13b4
JM
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
7a292a7a 387SEMOPS_INLINE TF
6426a772 388JOINSITF (SI x0, SI x1, SI x2, SI x3)
7a292a7a
SS
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
c906108c 398#else
7a292a7a 399
6426a772
JM
400SF SUBWORDSISF (SI);
401SI SUBWORDSFSI (SF);
402SI SUBWORDDISI (DI, int);
403SI SUBWORDDFSI (DF, int);
404SI SUBWORDXFSI (XF, int);
405SI SUBWORDTFSI (TF, int);
7a292a7a 406
6426a772
JM
407DI JOINSIDI (SI, SI);
408DF JOINSIDF (SI, SI);
409XF JOINSIXF (SI, SI, SI);
410TF JOINSITF (SI, SI, SI, SI);
7a292a7a
SS
411
412#endif /* SUBWORD,JOIN */
413\f
414/* Semantic support utilities. */
415
416#ifdef SEMOPS_DEFINE_INLINE
c906108c
SS
417
418SEMOPS_INLINE SI
419ADDCSI (SI a, SI b, BI c)
420{
421 SI res = ADDSI (a, ADDSI (b, c));
422 return res;
423}
424
425SEMOPS_INLINE BI
426ADDCFSI (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
433SEMOPS_INLINE BI
434ADDOFSI (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
442SEMOPS_INLINE SI
443SUBCSI (SI a, SI b, BI c)
444{
445 SI res = SUBSI (a, ADDSI (b, c));
446 return res;
447}
448
449SEMOPS_INLINE BI
450SUBCFSI (SI a, SI b, BI c)
451{
452 BI res = ((USI) a < (USI) b) || (c && a == b);
453 return res;
454}
455
456SEMOPS_INLINE BI
457SUBOFSI (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
0fda6bd2
JM
465SEMOPS_INLINE HI
466ADDCHI (HI a, HI b, BI c)
467{
468 HI res = ADDHI (a, ADDHI (b, c));
469 return res;
470}
471
472SEMOPS_INLINE BI
473ADDCFHI (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
480SEMOPS_INLINE BI
481ADDOFHI (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
489SEMOPS_INLINE HI
490SUBCHI (HI a, HI b, BI c)
491{
492 HI res = SUBHI (a, ADDHI (b, c));
493 return res;
494}
495
496SEMOPS_INLINE BI
497SUBCFHI (HI a, HI b, BI c)
498{
499 BI res = ((UHI) a < (UHI) b) || (c && a == b);
500 return res;
501}
502
503SEMOPS_INLINE BI
504SUBOFHI (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
c906108c
SS
512#else
513
514SI ADDCSI (SI, SI, BI);
515UBI ADDCFSI (SI, SI, BI);
516UBI ADDOFSI (SI, SI, BI);
517SI SUBCSI (SI, SI, BI);
518UBI SUBCFSI (SI, SI, BI);
519UBI SUBOFSI (SI, SI, BI);
0fda6bd2
JM
520HI ADDCHI (HI, HI, BI);
521UBI ADDCFHI (HI, HI, BI);
522UBI ADDOFHI (HI, HI, BI);
523HI SUBCHI (HI, HI, BI);
524UBI SUBCFHI (HI, HI, BI);
525UBI SUBOFHI (HI, HI, BI);
c906108c
SS
526
527#endif
c906108c
SS
528
529#endif /* CGEN_SEM_OPS_H */
This page took 0.071431 seconds and 4 git commands to generate.