]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Semantics ops support for CGEN-based simulators. |
dea03d4e | 2 | Copyright (C) 1996, 1997, 1998, 1999, 2002 Free Software Foundation, Inc. |
c906108c SS |
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 | ||
4f49fa1b BE |
26 | #include <assert.h> |
27 | ||
7a292a7a SS |
28 | #if defined (__GNUC__) && ! defined (SEMOPS_DEFINE_INLINE) |
29 | #define SEMOPS_DEFINE_INLINE | |
30 | #define SEMOPS_INLINE extern inline | |
31 | #else | |
32 | #define SEMOPS_INLINE | |
33 | #endif | |
34 | ||
c906108c SS |
35 | /* Semantic operations. |
36 | At one point this file was machine generated. Maybe it will be again. */ | |
37 | ||
43ff13b4 JM |
38 | /* TODO: Lazy encoding/decoding of fp values. */ |
39 | ||
c906108c SS |
40 | /* These don't really have a mode. */ |
41 | #define ANDIF(x, y) ((x) && (y)) | |
42 | #define ORIF(x, y) ((x) || (y)) | |
43 | ||
4f49fa1b | 44 | #define SUBBI(x, y) ((x) - (y)) |
c906108c SS |
45 | #define ANDBI(x, y) ((x) & (y)) |
46 | #define ORBI(x, y) ((x) | (y)) | |
47 | #define XORBI(x, y) ((x) ^ (y)) | |
48 | #define NEGBI(x) (- (x)) | |
49 | #define NOTBI(x) (! (BI) (x)) | |
50 | #define INVBI(x) (~ (x)) | |
51 | #define EQBI(x, y) ((BI) (x) == (BI) (y)) | |
52 | #define NEBI(x, y) ((BI) (x) != (BI) (y)) | |
53 | #define LTBI(x, y) ((BI) (x) < (BI) (y)) | |
54 | #define LEBI(x, y) ((BI) (x) <= (BI) (y)) | |
55 | #define GTBI(x, y) ((BI) (x) > (BI) (y)) | |
56 | #define GEBI(x, y) ((BI) (x) >= (BI) (y)) | |
57 | #define LTUBI(x, y) ((BI) (x) < (BI) (y)) | |
58 | #define LEUBI(x, y) ((BI) (x) <= (BI) (y)) | |
59 | #define GTUBI(x, y) ((BI) (x) > (BI) (y)) | |
60 | #define GEUBI(x, y) ((BI) (x) >= (BI) (y)) | |
43ff13b4 | 61 | \f |
c906108c SS |
62 | #define ADDQI(x, y) ((x) + (y)) |
63 | #define SUBQI(x, y) ((x) - (y)) | |
64 | #define MULQI(x, y) ((x) * (y)) | |
65 | #define DIVQI(x, y) ((QI) (x) / (QI) (y)) | |
66 | #define UDIVQI(x, y) ((UQI) (x) / (UQI) (y)) | |
67 | #define MODQI(x, y) ((QI) (x) % (QI) (y)) | |
68 | #define UMODQI(x, y) ((UQI) (x) % (UQI) (y)) | |
69 | #define SRAQI(x, y) ((QI) (x) >> (y)) | |
70 | #define SRLQI(x, y) ((UQI) (x) >> (y)) | |
71 | #define SLLQI(x, y) ((UQI) (x) << (y)) | |
43ff13b4 JM |
72 | extern QI RORQI (QI, int); |
73 | extern QI ROLQI (QI, int); | |
c906108c SS |
74 | #define ANDQI(x, y) ((x) & (y)) |
75 | #define ORQI(x, y) ((x) | (y)) | |
76 | #define XORQI(x, y) ((x) ^ (y)) | |
77 | #define NEGQI(x) (- (x)) | |
78 | #define NOTQI(x) (! (QI) (x)) | |
79 | #define INVQI(x) (~ (x)) | |
0fda6bd2 | 80 | #define ABSQI(x) ((x) < 0 ? -(x) : (x)) |
c906108c SS |
81 | #define EQQI(x, y) ((QI) (x) == (QI) (y)) |
82 | #define NEQI(x, y) ((QI) (x) != (QI) (y)) | |
83 | #define LTQI(x, y) ((QI) (x) < (QI) (y)) | |
84 | #define LEQI(x, y) ((QI) (x) <= (QI) (y)) | |
85 | #define GTQI(x, y) ((QI) (x) > (QI) (y)) | |
86 | #define GEQI(x, y) ((QI) (x) >= (QI) (y)) | |
87 | #define LTUQI(x, y) ((UQI) (x) < (UQI) (y)) | |
88 | #define LEUQI(x, y) ((UQI) (x) <= (UQI) (y)) | |
89 | #define GTUQI(x, y) ((UQI) (x) > (UQI) (y)) | |
90 | #define GEUQI(x, y) ((UQI) (x) >= (UQI) (y)) | |
43ff13b4 | 91 | \f |
c906108c SS |
92 | #define ADDHI(x, y) ((x) + (y)) |
93 | #define SUBHI(x, y) ((x) - (y)) | |
94 | #define MULHI(x, y) ((x) * (y)) | |
95 | #define DIVHI(x, y) ((HI) (x) / (HI) (y)) | |
96 | #define UDIVHI(x, y) ((UHI) (x) / (UHI) (y)) | |
97 | #define MODHI(x, y) ((HI) (x) % (HI) (y)) | |
98 | #define UMODHI(x, y) ((UHI) (x) % (UHI) (y)) | |
99 | #define SRAHI(x, y) ((HI) (x) >> (y)) | |
100 | #define SRLHI(x, y) ((UHI) (x) >> (y)) | |
101 | #define SLLHI(x, y) ((UHI) (x) << (y)) | |
43ff13b4 JM |
102 | extern HI RORHI (HI, int); |
103 | extern HI ROLHI (HI, int); | |
c906108c SS |
104 | #define ANDHI(x, y) ((x) & (y)) |
105 | #define ORHI(x, y) ((x) | (y)) | |
106 | #define XORHI(x, y) ((x) ^ (y)) | |
107 | #define NEGHI(x) (- (x)) | |
108 | #define NOTHI(x) (! (HI) (x)) | |
109 | #define INVHI(x) (~ (x)) | |
0fda6bd2 | 110 | #define ABSHI(x) ((x) < 0 ? -(x) : (x)) |
c906108c SS |
111 | #define EQHI(x, y) ((HI) (x) == (HI) (y)) |
112 | #define NEHI(x, y) ((HI) (x) != (HI) (y)) | |
113 | #define LTHI(x, y) ((HI) (x) < (HI) (y)) | |
114 | #define LEHI(x, y) ((HI) (x) <= (HI) (y)) | |
115 | #define GTHI(x, y) ((HI) (x) > (HI) (y)) | |
116 | #define GEHI(x, y) ((HI) (x) >= (HI) (y)) | |
117 | #define LTUHI(x, y) ((UHI) (x) < (UHI) (y)) | |
118 | #define LEUHI(x, y) ((UHI) (x) <= (UHI) (y)) | |
119 | #define GTUHI(x, y) ((UHI) (x) > (UHI) (y)) | |
120 | #define GEUHI(x, y) ((UHI) (x) >= (UHI) (y)) | |
43ff13b4 | 121 | \f |
c906108c SS |
122 | #define ADDSI(x, y) ((x) + (y)) |
123 | #define SUBSI(x, y) ((x) - (y)) | |
124 | #define MULSI(x, y) ((x) * (y)) | |
125 | #define DIVSI(x, y) ((SI) (x) / (SI) (y)) | |
126 | #define UDIVSI(x, y) ((USI) (x) / (USI) (y)) | |
127 | #define MODSI(x, y) ((SI) (x) % (SI) (y)) | |
128 | #define UMODSI(x, y) ((USI) (x) % (USI) (y)) | |
129 | #define SRASI(x, y) ((SI) (x) >> (y)) | |
130 | #define SRLSI(x, y) ((USI) (x) >> (y)) | |
131 | #define SLLSI(x, y) ((USI) (x) << (y)) | |
43ff13b4 JM |
132 | extern SI RORSI (SI, int); |
133 | extern SI ROLSI (SI, int); | |
c906108c SS |
134 | #define ANDSI(x, y) ((x) & (y)) |
135 | #define ORSI(x, y) ((x) | (y)) | |
136 | #define XORSI(x, y) ((x) ^ (y)) | |
137 | #define NEGSI(x) (- (x)) | |
138 | #define NOTSI(x) (! (SI) (x)) | |
139 | #define INVSI(x) (~ (x)) | |
0fda6bd2 | 140 | #define ABSSI(x) ((x) < 0 ? -(x) : (x)) |
c906108c SS |
141 | #define EQSI(x, y) ((SI) (x) == (SI) (y)) |
142 | #define NESI(x, y) ((SI) (x) != (SI) (y)) | |
143 | #define LTSI(x, y) ((SI) (x) < (SI) (y)) | |
144 | #define LESI(x, y) ((SI) (x) <= (SI) (y)) | |
145 | #define GTSI(x, y) ((SI) (x) > (SI) (y)) | |
146 | #define GESI(x, y) ((SI) (x) >= (SI) (y)) | |
147 | #define LTUSI(x, y) ((USI) (x) < (USI) (y)) | |
148 | #define LEUSI(x, y) ((USI) (x) <= (USI) (y)) | |
149 | #define GTUSI(x, y) ((USI) (x) > (USI) (y)) | |
150 | #define GEUSI(x, y) ((USI) (x) >= (USI) (y)) | |
43ff13b4 | 151 | \f |
c906108c | 152 | #ifdef DI_FN_SUPPORT |
43ff13b4 JM |
153 | extern DI ADDDI (DI, DI); |
154 | extern DI SUBDI (DI, DI); | |
155 | extern DI MULDI (DI, DI); | |
156 | extern DI DIVDI (DI, DI); | |
157 | extern DI UDIVDI (DI, DI); | |
158 | extern DI MODDI (DI, DI); | |
159 | extern DI UMODDI (DI, DI); | |
160 | extern DI SRADI (DI, int); | |
161 | extern UDI SRLDI (UDI, int); | |
162 | extern UDI SLLDI (UDI, int); | |
163 | extern DI RORDI (DI, int); | |
164 | extern DI ROLDI (DI, int); | |
165 | extern DI ANDDI (DI, DI); | |
166 | extern DI ORDI (DI, DI); | |
167 | extern DI XORDI (DI, DI); | |
168 | extern DI NEGDI (DI); | |
169 | extern int NOTDI (DI); | |
170 | extern DI INVDI (DI); | |
171 | extern int EQDI (DI, DI); | |
172 | extern int NEDI (DI, DI); | |
173 | extern int LTDI (DI, DI); | |
174 | extern int LEDI (DI, DI); | |
175 | extern int GTDI (DI, DI); | |
176 | extern int GEDI (DI, DI); | |
177 | extern int LTUDI (UDI, UDI); | |
178 | extern int LEUDI (UDI, UDI); | |
179 | extern int GTUDI (UDI, UDI); | |
180 | extern int GEUDI (UDI, UDI); | |
c906108c SS |
181 | #else /* ! DI_FN_SUPPORT */ |
182 | #define ADDDI(x, y) ((x) + (y)) | |
183 | #define SUBDI(x, y) ((x) - (y)) | |
184 | #define MULDI(x, y) ((x) * (y)) | |
185 | #define DIVDI(x, y) ((DI) (x) / (DI) (y)) | |
186 | #define UDIVDI(x, y) ((UDI) (x) / (UDI) (y)) | |
187 | #define MODDI(x, y) ((DI) (x) % (DI) (y)) | |
188 | #define UMODDI(x, y) ((UDI) (x) % (UDI) (y)) | |
189 | #define SRADI(x, y) ((DI) (x) >> (y)) | |
190 | #define SRLDI(x, y) ((UDI) (x) >> (y)) | |
191 | #define SLLDI(x, y) ((UDI) (x) << (y)) | |
43ff13b4 JM |
192 | extern DI RORDI (DI, int); |
193 | extern DI ROLDI (DI, int); | |
c906108c SS |
194 | #define ANDDI(x, y) ((x) & (y)) |
195 | #define ORDI(x, y) ((x) | (y)) | |
196 | #define XORDI(x, y) ((x) ^ (y)) | |
197 | #define NEGDI(x) (- (x)) | |
198 | #define NOTDI(x) (! (DI) (x)) | |
199 | #define INVDI(x) (~ (x)) | |
0fda6bd2 | 200 | #define ABSDI(x) ((x) < 0 ? -(x) : (x)) |
c906108c SS |
201 | #define EQDI(x, y) ((DI) (x) == (DI) (y)) |
202 | #define NEDI(x, y) ((DI) (x) != (DI) (y)) | |
203 | #define LTDI(x, y) ((DI) (x) < (DI) (y)) | |
204 | #define LEDI(x, y) ((DI) (x) <= (DI) (y)) | |
205 | #define GTDI(x, y) ((DI) (x) > (DI) (y)) | |
206 | #define GEDI(x, y) ((DI) (x) >= (DI) (y)) | |
207 | #define LTUDI(x, y) ((UDI) (x) < (UDI) (y)) | |
208 | #define LEUDI(x, y) ((UDI) (x) <= (UDI) (y)) | |
209 | #define GTUDI(x, y) ((UDI) (x) > (UDI) (y)) | |
210 | #define GEUDI(x, y) ((UDI) (x) >= (UDI) (y)) | |
211 | #endif /* DI_FN_SUPPORT */ | |
43ff13b4 | 212 | \f |
c906108c SS |
213 | #define EXTBIQI(x) ((QI) (BI) (x)) |
214 | #define EXTBIHI(x) ((HI) (BI) (x)) | |
215 | #define EXTBISI(x) ((SI) (BI) (x)) | |
216 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 217 | extern DI EXTBIDI (BI); |
c906108c SS |
218 | #else |
219 | #define EXTBIDI(x) ((DI) (BI) (x)) | |
220 | #endif | |
221 | #define EXTQIHI(x) ((HI) (QI) (x)) | |
222 | #define EXTQISI(x) ((SI) (QI) (x)) | |
223 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 224 | extern DI EXTQIDI (QI); |
c906108c SS |
225 | #else |
226 | #define EXTQIDI(x) ((DI) (QI) (x)) | |
227 | #endif | |
f743149e | 228 | #define EXTHIHI(x) ((HI) (HI) (x)) |
c906108c | 229 | #define EXTHISI(x) ((SI) (HI) (x)) |
0fda6bd2 | 230 | #define EXTSISI(x) ((SI) (SI) (x)) |
c906108c | 231 | #if defined (DI_FN_SUPPORT) |
43ff13b4 | 232 | extern DI EXTHIDI (HI); |
c906108c SS |
233 | #else |
234 | #define EXTHIDI(x) ((DI) (HI) (x)) | |
235 | #endif | |
236 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 237 | extern DI EXTSIDI (SI); |
c906108c SS |
238 | #else |
239 | #define EXTSIDI(x) ((DI) (SI) (x)) | |
240 | #endif | |
43ff13b4 | 241 | \f |
c906108c SS |
242 | #define ZEXTBIQI(x) ((QI) (BI) (x)) |
243 | #define ZEXTBIHI(x) ((HI) (BI) (x)) | |
244 | #define ZEXTBISI(x) ((SI) (BI) (x)) | |
245 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 246 | extern DI ZEXTBIDI (BI); |
c906108c SS |
247 | #else |
248 | #define ZEXTBIDI(x) ((DI) (BI) (x)) | |
249 | #endif | |
250 | #define ZEXTQIHI(x) ((HI) (UQI) (x)) | |
251 | #define ZEXTQISI(x) ((SI) (UQI) (x)) | |
252 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 253 | extern DI ZEXTQIDI (QI); |
c906108c SS |
254 | #else |
255 | #define ZEXTQIDI(x) ((DI) (UQI) (x)) | |
256 | #endif | |
257 | #define ZEXTHISI(x) ((SI) (UHI) (x)) | |
0fda6bd2 JM |
258 | #define ZEXTHIHI(x) ((HI) (UHI) (x)) |
259 | #define ZEXTSISI(x) ((SI) (USI) (x)) | |
c906108c | 260 | #if defined (DI_FN_SUPPORT) |
43ff13b4 | 261 | extern DI ZEXTHIDI (HI); |
c906108c SS |
262 | #else |
263 | #define ZEXTHIDI(x) ((DI) (UHI) (x)) | |
264 | #endif | |
265 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 266 | extern DI ZEXTSIDI (SI); |
c906108c SS |
267 | #else |
268 | #define ZEXTSIDI(x) ((DI) (USI) (x)) | |
269 | #endif | |
43ff13b4 | 270 | \f |
c906108c SS |
271 | #define TRUNCQIBI(x) ((BI) (QI) (x)) |
272 | #define TRUNCHIBI(x) ((BI) (HI) (x)) | |
273 | #define TRUNCHIQI(x) ((QI) (HI) (x)) | |
274 | #define TRUNCSIBI(x) ((BI) (SI) (x)) | |
275 | #define TRUNCSIQI(x) ((QI) (SI) (x)) | |
276 | #define TRUNCSIHI(x) ((HI) (SI) (x)) | |
0f831eb3 | 277 | #define TRUNCSISI(x) ((SI) (SI) (x)) |
c906108c | 278 | #if defined (DI_FN_SUPPORT) |
43ff13b4 | 279 | extern BI TRUNCDIBI (DI); |
c906108c SS |
280 | #else |
281 | #define TRUNCDIBI(x) ((BI) (DI) (x)) | |
282 | #endif | |
283 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 284 | extern QI TRUNCDIQI (DI); |
c906108c SS |
285 | #else |
286 | #define TRUNCDIQI(x) ((QI) (DI) (x)) | |
287 | #endif | |
288 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 289 | extern HI TRUNCDIHI (DI); |
c906108c SS |
290 | #else |
291 | #define TRUNCDIHI(x) ((HI) (DI) (x)) | |
292 | #endif | |
293 | #if defined (DI_FN_SUPPORT) | |
43ff13b4 | 294 | extern SI TRUNCDISI (DI); |
c906108c SS |
295 | #else |
296 | #define TRUNCDISI(x) ((SI) (DI) (x)) | |
297 | #endif | |
c906108c | 298 | \f |
6426a772 JM |
299 | /* Composing/decomposing the various types. |
300 | Word ordering is endian-independent. Words are specified most to least | |
301 | significant and word number 0 is the most significant word. | |
302 | ??? May also wish an endian-dependent version. Later. */ | |
43ff13b4 | 303 | |
c906108c | 304 | #ifdef SEMOPS_DEFINE_INLINE |
7a292a7a SS |
305 | |
306 | SEMOPS_INLINE SF | |
6426a772 | 307 | SUBWORDSISF (SI in) |
7a292a7a SS |
308 | { |
309 | union { SI in; SF out; } x; | |
310 | x.in = in; | |
311 | return x.out; | |
312 | } | |
313 | ||
4f49fa1b BE |
314 | SEMOPS_INLINE DF |
315 | SUBWORDDIDF (DI in) | |
316 | { | |
317 | union { DI in; DF out; } x; | |
318 | x.in = in; | |
319 | return x.out; | |
320 | } | |
321 | ||
322 | SEMOPS_INLINE QI | |
323 | SUBWORDSIQI (SI in, int byte) | |
324 | { | |
325 | assert (byte >= 0 && byte <= 3); | |
6227bc85 | 326 | return (UQI) (in >> (8 * (3 - byte))) & 0xFF; |
4f49fa1b BE |
327 | } |
328 | ||
329 | SEMOPS_INLINE UQI | |
330 | SUBWORDSIUQI (SI in, int byte) | |
331 | { | |
332 | assert (byte >= 0 && byte <= 3); | |
6227bc85 BE |
333 | return (UQI) (in >> (8 * (3 - byte))) & 0xFF; |
334 | } | |
335 | ||
336 | SEMOPS_INLINE QI | |
337 | SUBWORDDIQI (DI in, int byte) | |
338 | { | |
339 | assert (byte >= 0 && byte <= 7); | |
340 | return (UQI) (in >> (8 * (7 - byte))) & 0xFF; | |
4f49fa1b BE |
341 | } |
342 | ||
343 | SEMOPS_INLINE HI | |
344 | SUBWORDDIHI (DI in, int word) | |
345 | { | |
346 | assert (word >= 0 && word <= 3); | |
6227bc85 | 347 | return (UHI) (in >> (16 * (3 - word))) & 0xFFFF; |
4f49fa1b BE |
348 | } |
349 | ||
350 | SEMOPS_INLINE HI | |
351 | SUBWORDSIHI (SI in, int word) | |
352 | { | |
353 | if (word == 0) | |
354 | return (USI) in >> 16; | |
355 | else | |
356 | return in; | |
357 | } | |
358 | ||
7a292a7a | 359 | SEMOPS_INLINE SI |
6426a772 | 360 | SUBWORDSFSI (SF in) |
7a292a7a SS |
361 | { |
362 | union { SF in; SI out; } x; | |
363 | x.in = in; | |
364 | return x.out; | |
365 | } | |
366 | ||
0d277f51 BE |
367 | SEMOPS_INLINE DI |
368 | SUBWORDDFDI (DF in) | |
369 | { | |
370 | union { DF in; DI out; } x; | |
371 | x.in = in; | |
372 | return x.out; | |
373 | } | |
374 | ||
4f49fa1b BE |
375 | SEMOPS_INLINE UQI |
376 | SUBWORDDIUQI (DI in, int byte) | |
377 | { | |
378 | assert (byte >= 0 && byte <= 7); | |
379 | return (UQI) (in >> (8 * (7 - byte))); | |
380 | } | |
381 | ||
7a292a7a | 382 | SEMOPS_INLINE SI |
6426a772 | 383 | SUBWORDDISI (DI in, int word) |
7a292a7a | 384 | { |
6426a772 JM |
385 | if (word == 0) |
386 | return (UDI) in >> 32; | |
7a292a7a | 387 | else |
6426a772 | 388 | return in; |
7a292a7a SS |
389 | } |
390 | ||
391 | SEMOPS_INLINE SI | |
6426a772 | 392 | SUBWORDDFSI (DF in, int word) |
7a292a7a | 393 | { |
6426a772 JM |
394 | /* Note: typedef UDI DF; */ |
395 | if (word == 0) | |
396 | return (UDI) in >> 32; | |
7a292a7a | 397 | else |
6426a772 | 398 | return in; |
7a292a7a SS |
399 | } |
400 | ||
43ff13b4 | 401 | SEMOPS_INLINE SI |
6426a772 | 402 | SUBWORDXFSI (XF in, int word) |
43ff13b4 | 403 | { |
6426a772 | 404 | /* Note: typedef struct { SI parts[3]; } XF; */ |
43ff13b4 JM |
405 | union { XF in; SI out[3]; } x; |
406 | x.in = in; | |
6426a772 | 407 | return x.out[word]; |
43ff13b4 JM |
408 | } |
409 | ||
7a292a7a | 410 | SEMOPS_INLINE SI |
6426a772 | 411 | SUBWORDTFSI (TF in, int word) |
7a292a7a | 412 | { |
6426a772 | 413 | /* Note: typedef struct { SI parts[4]; } TF; */ |
7a292a7a SS |
414 | union { TF in; SI out[4]; } x; |
415 | x.in = in; | |
6426a772 | 416 | return x.out[word]; |
7a292a7a SS |
417 | } |
418 | ||
419 | SEMOPS_INLINE DI | |
6426a772 | 420 | JOINSIDI (SI x0, SI x1) |
7a292a7a SS |
421 | { |
422 | if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN) | |
423 | return MAKEDI (x0, x1); | |
424 | else | |
425 | return MAKEDI (x1, x0); | |
426 | } | |
427 | ||
428 | SEMOPS_INLINE DF | |
6426a772 | 429 | JOINSIDF (SI x0, SI x1) |
7a292a7a SS |
430 | { |
431 | union { SI in[2]; DF out; } x; | |
432 | if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN) | |
433 | x.in[0] = x0, x.in[1] = x1; | |
434 | else | |
435 | x.in[1] = x0, x.in[0] = x1; | |
436 | return x.out; | |
437 | } | |
438 | ||
43ff13b4 | 439 | SEMOPS_INLINE XF |
6426a772 | 440 | JOINSIXF (SI x0, SI x1, SI x2) |
43ff13b4 JM |
441 | { |
442 | union { SI in[3]; XF out; } x; | |
443 | if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN) | |
444 | x.in[0] = x0, x.in[1] = x1, x.in[2] = x2; | |
445 | else | |
446 | x.in[2] = x0, x.in[1] = x1, x.in[0] = x2; | |
447 | return x.out; | |
448 | } | |
449 | ||
7a292a7a | 450 | SEMOPS_INLINE TF |
6426a772 | 451 | JOINSITF (SI x0, SI x1, SI x2, SI x3) |
7a292a7a SS |
452 | { |
453 | union { SI in[4]; TF out; } x; | |
454 | if (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN) | |
455 | x.in[0] = x0, x.in[1] = x1, x.in[2] = x2, x.in[3] = x3; | |
456 | else | |
457 | x.in[3] = x0, x.in[2] = x1, x.in[1] = x2, x.in[0] = x3; | |
458 | return x.out; | |
459 | } | |
460 | ||
c906108c | 461 | #else |
7a292a7a | 462 | |
4f49fa1b BE |
463 | QI SUBWORDSIQI (SI); |
464 | HI SUBWORDSIHI (HI); | |
6426a772 | 465 | SI SUBWORDSFSI (SF); |
4f49fa1b | 466 | SF SUBWORDSISF (SI); |
0d277f51 | 467 | DI SUBWORDDFDI (DF); |
4f49fa1b | 468 | DF SUBWORDDIDF (DI); |
6227bc85 | 469 | QI SUBWORDDIQI (DI, int); |
4f49fa1b | 470 | HI SUBWORDDIHI (DI, int); |
6426a772 JM |
471 | SI SUBWORDDISI (DI, int); |
472 | SI SUBWORDDFSI (DF, int); | |
473 | SI SUBWORDXFSI (XF, int); | |
474 | SI SUBWORDTFSI (TF, int); | |
7a292a7a | 475 | |
4f49fa1b BE |
476 | UQI SUBWORDSIUQI (SI); |
477 | UQI SUBWORDDIUQI (DI); | |
478 | ||
6426a772 JM |
479 | DI JOINSIDI (SI, SI); |
480 | DF JOINSIDF (SI, SI); | |
481 | XF JOINSIXF (SI, SI, SI); | |
482 | TF JOINSITF (SI, SI, SI, SI); | |
7a292a7a SS |
483 | |
484 | #endif /* SUBWORD,JOIN */ | |
485 | \f | |
486 | /* Semantic support utilities. */ | |
487 | ||
488 | #ifdef SEMOPS_DEFINE_INLINE | |
c906108c SS |
489 | |
490 | SEMOPS_INLINE SI | |
491 | ADDCSI (SI a, SI b, BI c) | |
492 | { | |
493 | SI res = ADDSI (a, ADDSI (b, c)); | |
494 | return res; | |
495 | } | |
496 | ||
497 | SEMOPS_INLINE BI | |
498 | ADDCFSI (SI a, SI b, BI c) | |
499 | { | |
500 | SI tmp = ADDSI (a, ADDSI (b, c)); | |
501 | BI res = ((USI) tmp < (USI) a) || (c && tmp == a); | |
502 | return res; | |
503 | } | |
504 | ||
505 | SEMOPS_INLINE BI | |
506 | ADDOFSI (SI a, SI b, BI c) | |
507 | { | |
508 | SI tmp = ADDSI (a, ADDSI (b, c)); | |
509 | BI res = (((a < 0) == (b < 0)) | |
510 | && ((a < 0) != (tmp < 0))); | |
511 | return res; | |
512 | } | |
513 | ||
514 | SEMOPS_INLINE SI | |
515 | SUBCSI (SI a, SI b, BI c) | |
516 | { | |
517 | SI res = SUBSI (a, ADDSI (b, c)); | |
518 | return res; | |
519 | } | |
520 | ||
521 | SEMOPS_INLINE BI | |
522 | SUBCFSI (SI a, SI b, BI c) | |
523 | { | |
524 | BI res = ((USI) a < (USI) b) || (c && a == b); | |
525 | return res; | |
526 | } | |
527 | ||
528 | SEMOPS_INLINE BI | |
529 | SUBOFSI (SI a, SI b, BI c) | |
530 | { | |
531 | SI tmp = SUBSI (a, ADDSI (b, c)); | |
532 | BI res = (((a < 0) != (b < 0)) | |
533 | && ((a < 0) != (tmp < 0))); | |
534 | return res; | |
535 | } | |
536 | ||
0fda6bd2 JM |
537 | SEMOPS_INLINE HI |
538 | ADDCHI (HI a, HI b, BI c) | |
539 | { | |
540 | HI res = ADDHI (a, ADDHI (b, c)); | |
541 | return res; | |
542 | } | |
543 | ||
544 | SEMOPS_INLINE BI | |
545 | ADDCFHI (HI a, HI b, BI c) | |
546 | { | |
547 | HI tmp = ADDHI (a, ADDHI (b, c)); | |
548 | BI res = ((UHI) tmp < (UHI) a) || (c && tmp == a); | |
549 | return res; | |
550 | } | |
551 | ||
552 | SEMOPS_INLINE BI | |
553 | ADDOFHI (HI a, HI b, BI c) | |
554 | { | |
555 | HI tmp = ADDHI (a, ADDHI (b, c)); | |
556 | BI res = (((a < 0) == (b < 0)) | |
557 | && ((a < 0) != (tmp < 0))); | |
558 | return res; | |
559 | } | |
560 | ||
561 | SEMOPS_INLINE HI | |
562 | SUBCHI (HI a, HI b, BI c) | |
563 | { | |
564 | HI res = SUBHI (a, ADDHI (b, c)); | |
565 | return res; | |
566 | } | |
567 | ||
568 | SEMOPS_INLINE BI | |
569 | SUBCFHI (HI a, HI b, BI c) | |
570 | { | |
571 | BI res = ((UHI) a < (UHI) b) || (c && a == b); | |
572 | return res; | |
573 | } | |
574 | ||
575 | SEMOPS_INLINE BI | |
576 | SUBOFHI (HI a, HI b, BI c) | |
577 | { | |
578 | HI tmp = SUBHI (a, ADDHI (b, c)); | |
579 | BI res = (((a < 0) != (b < 0)) | |
580 | && ((a < 0) != (tmp < 0))); | |
581 | return res; | |
582 | } | |
583 | ||
dea03d4e HPN |
584 | SEMOPS_INLINE QI |
585 | ADDCQI (QI a, QI b, BI c) | |
586 | { | |
587 | QI res = ADDQI (a, ADDQI (b, c)); | |
588 | return res; | |
589 | } | |
590 | ||
591 | SEMOPS_INLINE BI | |
592 | ADDCFQI (QI a, QI b, BI c) | |
593 | { | |
594 | QI tmp = ADDQI (a, ADDQI (b, c)); | |
595 | BI res = ((UQI) tmp < (UQI) a) || (c && tmp == a); | |
596 | return res; | |
597 | } | |
598 | ||
599 | SEMOPS_INLINE BI | |
600 | ADDOFQI (QI a, QI b, BI c) | |
601 | { | |
602 | QI tmp = ADDQI (a, ADDQI (b, c)); | |
603 | BI res = (((a < 0) == (b < 0)) | |
604 | && ((a < 0) != (tmp < 0))); | |
605 | return res; | |
606 | } | |
607 | ||
608 | SEMOPS_INLINE QI | |
609 | SUBCQI (QI a, QI b, BI c) | |
610 | { | |
611 | QI res = SUBQI (a, ADDQI (b, c)); | |
612 | return res; | |
613 | } | |
614 | ||
615 | SEMOPS_INLINE BI | |
616 | SUBCFQI (QI a, QI b, BI c) | |
617 | { | |
618 | BI res = ((UQI) a < (UQI) b) || (c && a == b); | |
619 | return res; | |
620 | } | |
621 | ||
622 | SEMOPS_INLINE BI | |
623 | SUBOFQI (QI a, QI b, BI c) | |
624 | { | |
625 | QI tmp = SUBQI (a, ADDQI (b, c)); | |
626 | BI res = (((a < 0) != (b < 0)) | |
627 | && ((a < 0) != (tmp < 0))); | |
628 | return res; | |
629 | } | |
630 | ||
c906108c SS |
631 | #else |
632 | ||
633 | SI ADDCSI (SI, SI, BI); | |
634 | UBI ADDCFSI (SI, SI, BI); | |
635 | UBI ADDOFSI (SI, SI, BI); | |
636 | SI SUBCSI (SI, SI, BI); | |
637 | UBI SUBCFSI (SI, SI, BI); | |
638 | UBI SUBOFSI (SI, SI, BI); | |
0fda6bd2 JM |
639 | HI ADDCHI (HI, HI, BI); |
640 | UBI ADDCFHI (HI, HI, BI); | |
641 | UBI ADDOFHI (HI, HI, BI); | |
642 | HI SUBCHI (HI, HI, BI); | |
643 | UBI SUBCFHI (HI, HI, BI); | |
644 | UBI SUBOFHI (HI, HI, BI); | |
dea03d4e HPN |
645 | QI ADDCQI (QI, QI, BI); |
646 | UBI ADDCFQI (QI, QI, BI); | |
647 | UBI ADDOFQI (QI, QI, BI); | |
648 | QI SUBCQI (QI, QI, BI); | |
649 | UBI SUBCFQI (QI, QI, BI); | |
650 | UBI SUBOFQI (QI, QI, BI); | |
c906108c SS |
651 | |
652 | #endif | |
c906108c SS |
653 | |
654 | #endif /* CGEN_SEM_OPS_H */ |