]> git.xonotic.org Git - xonotic/gmqcc.git/blob - fold.c
More work for arithmetic exception on vectors.
[xonotic/gmqcc.git] / fold.c
1 /*
2  * Copyright (C) 2012, 2013, 2014
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include <string.h>
24 #include <math.h>
25
26 #include "ast.h"
27 #include "parser.h"
28
29 #define FOLD_STRING_UNTRANSLATE_HTSIZE 1024
30 #define FOLD_STRING_DOTRANSLATE_HTSIZE 1024
31
32 /* The options to use for inexact and arithmetic exceptions */
33 #define FOLD_ROUNDING SFLOAT_ROUND_NEAREST_EVEN
34 #define FOLD_TINYNESS SFLOAT_TBEFORE
35
36 /*
37  * The constant folder is also responsible for validating if the constant
38  * expressions produce valid results. We cannot trust the FPU control
39  * unit for these exceptions because setting FPU control words might not
40  * work. Systems can set and enforce FPU modes of operation. It's also valid
41  * for libc's to simply ignore FPU exceptions. For instance ARM CPUs in
42  * glibc. We implement some trivial and IEE 754 conformant functions which
43  * emulate those operations. This is an entierly optional compiler feature
44  * which shouldn't be enabled for anything other than performing strict
45  * passes on constant expressions since it's quite slow.
46  */
47 typedef uint32_t sfloat_t;
48
49 typedef union {
50     qcfloat_t f;
51     sfloat_t  s;
52 } sfloat_cast_t;
53
54 typedef enum {
55     SFLOAT_INVALID   = 1,
56     SFLOAT_DIVBYZERO = 4,
57     SFLOAT_OVERFLOW  = 8,
58     SFLOAT_UNDERFLOW = 16,
59     SFLOAT_INEXACT   = 32
60 } sfloat_exceptionflags_t;
61
62 typedef enum {
63     SFLOAT_ROUND_NEAREST_EVEN,
64     SFLOAT_ROUND_DOWN,
65     SFLOAT_ROUND_UP,
66     SFLOAT_ROUND_TO_ZERO
67 } sfloat_roundingmode_t;
68
69 typedef enum {
70     SFLOAT_TAFTER,
71     SFLOAT_TBEFORE
72 } sfloat_tdetect_t;
73
74 typedef struct {
75     sfloat_roundingmode_t   roundingmode;
76     sfloat_exceptionflags_t exceptionflags;
77     sfloat_tdetect_t        tiny;
78 } sfloat_state_t;
79
80 /* Count of leading zero bits before the most-significand 1 bit. */
81 #ifdef _MSC_VER
82 /* MSVC has an intrinsic for this */
83     static GMQCC_INLINE uint32_t sfloat_clz(uint32_t x) {
84         int r = 0;
85         _BitScanForward(&r, x);
86         return r;
87     }
88 #   define SFLOAT_CLZ(X, SUB) \
89         (sfloat_clz((X)) - (SUB))
90 #elif defined(__GNUC__) || defined(__CLANG__)
91 /* Clang and GCC have a builtin for this */
92 #   define SFLOAT_CLZ(X, SUB) \
93         (__builtin_clz((X)) - (SUB))
94 #else
95 /* Native fallback */
96     static GMQCC_INLINE uint32_t sfloat_popcnt(uint32_t x) {
97         x -= ((x >> 1) & 0x55555555);
98         x  = (((x >> 2) & 0x33333333) + (x & 0x33333333));
99         x  = (((x >> 4) + x) & 0x0F0F0F0F);
100         x += x >> 8;
101         x += x >> 16;
102         return x & 0x0000003F;
103     }
104     static GMQCC_INLINE uint32_t sfloat_clz(uint32_t x) {
105         x |= (x >> 1);
106         x |= (x >> 2);
107         x |= (x >> 4);
108         x |= (x >> 8);
109         x |= (x >> 16);
110         return 32 - sfloat_popcnt(x);
111     }
112 #   define SFLOAT_CLZ(X, SUB) \
113         (sfloat_clz((X) - (SUB)))
114 #endif
115
116 /* The value of a NaN */
117 #define SFLOAT_NAN 0xFFC00000
118 /* Test if NaN */
119 #define SFLOAT_ISNAN(A) \
120     (0xFF000000 < (uint32_t)((A) << 1))
121 /* Test if signaling NaN */
122 #define SFLOAT_ISSNAN(A) \
123     (((((A) >> 22) & 0x1FF) == 0x1FE) && ((A) & 0x003FFFFF))
124 /* Raise exception */
125 #define SFLOAT_RAISE(STATE, FLAGS) \
126     ((STATE)->exceptionflags |= (FLAGS))
127 /*
128  * Shifts `A' right `COUNT' bits. Non-zero bits are stored in LSB. Size
129  * sets the arbitrarly-large limit.
130  */
131 #define SFLOAT_SHIFT(SIZE, A, COUNT, Z)                                      \
132     *(Z) = ((COUNT) == 0)                                                    \
133         ? 1                                                                  \
134         : (((COUNT) < (SIZE))                                                \
135             ? ((A) >> (COUNT)) | (((A) << ((-(COUNT)) & ((SIZE) - 1))) != 0) \
136             : ((A) != 0))
137 /* Extract fractional component */
138 #define SFLOAT_EXTRACT_FRAC(X) \
139     ((uint32_t)((X) & 0x007FFFFF))
140 /* Extract exponent component */
141 #define SFLOAT_EXTRACT_EXP(X) \
142     ((int16_t)((X) >> 23) & 0xFF)
143 /* Extract sign bit */
144 #define SFLOAT_EXTRACT_SIGN(X) \
145     ((X) >> 31)
146 /* Normalize a subnormal */
147 #define SFLOAT_SUBNORMALIZE(SA, Z, SZ) \
148     (void)(*(SZ) = (SA) << SFLOAT_CLZ((SA), 8), *(SZ) = 1 - SFLOAT_CLZ((SA), 8))
149 /*
150  * Pack sign, exponent and significand and produce a float.
151  *
152  * Integer portions of the significand are added to the exponent. The
153  * exponent input should be one less than the result exponent whenever
154  * the significand is normalized since normalized significand will
155  * always have an integer portion of value one.
156  */
157 #define SFLOAT_PACK(SIGN, EXP, SIG) \
158     (sfloat_t)((((uint32_t)(SIGN)) << 31) + (((uint32_t)(EXP)) << 23) + (SIG))
159
160 /* Calculate NaN. If either operands are signaling then raise invalid */
161 static sfloat_t sfloat_propagate_nan(sfloat_state_t *state, sfloat_t a, sfloat_t b) {
162     bool isnan_a  = SFLOAT_ISNAN(a);
163     bool issnan_a = SFLOAT_ISSNAN(a);
164     bool isnan_b  = SFLOAT_ISNAN(b);
165     bool issnan_b = SFLOAT_ISSNAN(b);
166
167     a |= 0x00400000;
168     b |= 0x00400000;
169
170     if (issnan_a | issnan_b)
171         SFLOAT_RAISE(state, SFLOAT_INEXACT);
172     if (issnan_a) {
173         if (issnan_b)
174             goto larger;
175         return isnan_b ? b : a;
176     } else if (isnan_a) {
177         if (issnan_b | !isnan_b)
178             return a;
179 larger:
180         if ((uint32_t)(a << 1) < (uint32_t)(b << 1)) return b;
181         if ((uint32_t)(b << 1) < (uint32_t)(a << 1)) return a;
182         return (a < b) ? a : b;
183     }
184     return b;
185 }
186
187 /* Round and pack */
188 static sfloat_t SFLOAT_PACK_round(sfloat_state_t *state, bool sign_z, int16_t exp_z, uint32_t sig_z) {
189     sfloat_roundingmode_t mode      = state->roundingmode;
190     bool                  even      = !!(mode == SFLOAT_ROUND_NEAREST_EVEN);
191     unsigned char         increment = 0x40;
192     unsigned char         bits      = sig_z & 0x7F;
193
194     if (!even) {
195         if (mode == SFLOAT_ROUND_TO_ZERO)
196             increment = 0;
197         else {
198             increment = 0x7F;
199             if (sign_z) {
200                 if (mode == SFLOAT_ROUND_UP)
201                     increment = 0;
202             } else {
203                 if (mode == SFLOAT_ROUND_DOWN)
204                     increment = 0;
205             }
206         }
207     }
208
209     if (0xFD <= (uint16_t)exp_z) {
210         if ((0xFD < exp_z) || ((exp_z == 0xFD) && ((int32_t)(sig_z + increment) < 0))) {
211             SFLOAT_RAISE(state, SFLOAT_OVERFLOW | SFLOAT_INEXACT);
212             return SFLOAT_PACK(sign_z, 0xFF, 0) - (increment == 0);
213         }
214         if (exp_z < 0) {
215             /* Check for underflow */
216             bool tiny = (state->tiny == SFLOAT_TBEFORE) || (exp_z < -1) || (sig_z + increment < 0x80000000);
217             SFLOAT_SHIFT(32, sig_z, -exp_z, &sig_z);
218             exp_z = 0;
219             bits = sig_z & 0x7F;
220             if (tiny && bits)
221                 SFLOAT_RAISE(state, SFLOAT_UNDERFLOW);
222         }
223     }
224
225     /*
226      * Significand has point between bits 30 and 29, 7 bits to the left of
227      * the usual place. This shifted significand has to be normalized
228      * or smaller, if it isn't the exponent must be zero, in which case
229      * no rounding occurs since the result will be a subnormal.
230      */
231     if (bits)
232         SFLOAT_RAISE(state, SFLOAT_INEXACT);
233     sig_z = (sig_z + increment) >> 7;
234     sig_z &= ~(((bits ^ 0x40) == 0) & even);
235     if (sig_z == 0)
236         exp_z = 0;
237     return SFLOAT_PACK(sign_z, exp_z, sig_z);
238 }
239
240 /* Normalized round and pack */
241 static sfloat_t SFLOAT_PACK_normal(sfloat_state_t *state, bool sign_z, int16_t exp_z, uint32_t sig_z) {
242     unsigned char c = SFLOAT_CLZ(sig_z, 1);
243     return SFLOAT_PACK_round(state, sign_z, exp_z - c, sig_z << c);
244 }
245
246 static sfloat_t sfloat_add_impl(sfloat_state_t *state, sfloat_t a, sfloat_t b, bool sign_z) {
247     int16_t  exp_a = SFLOAT_EXTRACT_EXP(a);
248     int16_t  exp_b = SFLOAT_EXTRACT_EXP(b);
249     int16_t  exp_z = 0;
250     int16_t  exp_d = exp_a - exp_b;
251     uint32_t sig_a = SFLOAT_EXTRACT_FRAC(a) << 6;
252     uint32_t sig_b = SFLOAT_EXTRACT_FRAC(b) << 6;
253     uint32_t sig_z = 0;
254
255     if (0 < exp_d) {
256         if (exp_a == 0xFF)
257             return sig_a ? sfloat_propagate_nan(state, a, b) : a;
258         if (exp_b == 0)
259             --exp_d;
260         else
261             sig_b |= 0x20000000;
262         SFLOAT_SHIFT(32, sig_b, exp_d, &sig_b);
263         exp_z = exp_a;
264     } else if (exp_d < 0) {
265         if (exp_b == 0xFF)
266             return sig_b ? sfloat_propagate_nan(state, a, b) : SFLOAT_PACK(sign_z, 0xFF, 0);
267         if (exp_a == 0)
268             ++exp_d;
269         else
270             sig_a |= 0x20000000;
271         SFLOAT_SHIFT(32, sig_a, -exp_d, &sig_a);
272         exp_z = exp_b;
273     } else {
274         if (exp_a == 0xFF)
275             return (sig_a | sig_b) ? sfloat_propagate_nan(state, a, b) : a;
276         if (exp_a == 0)
277             return SFLOAT_PACK(sign_z, 0, (sig_a + sig_b) >> 6);
278         sig_z = 0x40000000 + sig_a + sig_b;
279         exp_z = exp_a;
280         goto end;
281     }
282     sig_a |= 0x20000000;
283     sig_z = (sig_a + sig_b) << 1;
284     --exp_z;
285     if ((int32_t)sig_z < 0) {
286         sig_z = sig_a + sig_b;
287         ++exp_z;
288     }
289 end:
290     return SFLOAT_PACK_round(state, sign_z, exp_z, sig_z);
291 }
292
293 static sfloat_t sfloat_sub_impl(sfloat_state_t *state, sfloat_t a, sfloat_t b, bool sign_z) {
294     int16_t  exp_a = SFLOAT_EXTRACT_EXP(a);
295     int16_t  exp_b = SFLOAT_EXTRACT_EXP(b);
296     int16_t  exp_z = 0;
297     int16_t  exp_d = exp_a - exp_b;
298     uint32_t sig_a = SFLOAT_EXTRACT_FRAC(a) << 7;
299     uint32_t sig_b = SFLOAT_EXTRACT_FRAC(b) << 7;
300     uint32_t sig_z = 0;
301
302     if (0 < exp_d) goto exp_greater_a;
303     if (exp_d < 0) goto exp_greater_b;
304
305     if (exp_a == 0xFF) {
306         if (sig_a | sig_b)
307             return sfloat_propagate_nan(state, a, b);
308         SFLOAT_RAISE(state, SFLOAT_INVALID);
309         return SFLOAT_NAN;
310     }
311
312     if (exp_a == 0)
313         exp_a = exp_b = 1;
314
315     if (sig_b < sig_a) goto greater_a;
316     if (sig_a < sig_b) goto greater_b;
317
318     return SFLOAT_PACK(state->roundingmode == SFLOAT_ROUND_DOWN, 0, 0);
319
320 exp_greater_b:
321     if (exp_b == 0xFF)
322         return (sig_b) ? sfloat_propagate_nan(state, a, b) : SFLOAT_PACK(sign_z ^ 1, 0xFF, 0);
323     if (exp_a == 0)
324         ++exp_d;
325     else
326         sig_a |= 0x40000000;
327     SFLOAT_SHIFT(32, sig_a, -exp_d, &sig_a);
328     sig_b |= 0x40000000;
329 greater_b:
330     sig_z = sig_b - sig_a;
331     exp_z = exp_b;
332     sign_z ^= 1;
333     goto end;
334
335 exp_greater_a:
336     if (exp_a == 0xFF)
337         return (sig_a) ? sfloat_propagate_nan(state, a, b) : a;
338     if (exp_b == 0)
339         --exp_d;
340     else
341         sig_b |= 0x40000000;
342     SFLOAT_SHIFT(32, sig_b, exp_d, &sig_b);
343     sig_a |= 0x40000000;
344 greater_a:
345     sig_z = sig_a - sig_b;
346     exp_z = exp_a;
347
348 end:
349     --exp_z;
350     return SFLOAT_PACK_normal(state, sign_z, exp_z, sig_z);
351 }
352
353 static GMQCC_INLINE sfloat_t sfloat_add(sfloat_state_t *state, sfloat_t a, sfloat_t b) {
354     bool sign_a = SFLOAT_EXTRACT_SIGN(a);
355     bool sign_b = SFLOAT_EXTRACT_SIGN(b);
356     return (sign_a == sign_b) ? sfloat_add_impl(state, a, b, sign_a)
357                               : sfloat_sub_impl(state, a, b, sign_a);
358 }
359
360 static GMQCC_INLINE sfloat_t sfloat_sub(sfloat_state_t *state, sfloat_t a, sfloat_t b) {
361     bool sign_a = SFLOAT_EXTRACT_SIGN(a);
362     bool sign_b = SFLOAT_EXTRACT_SIGN(b);
363     return (sign_a == sign_b) ? sfloat_sub_impl(state, a, b, sign_a)
364                               : sfloat_add_impl(state, a, b, sign_a);
365 }
366
367 static sfloat_t sfloat_mul(sfloat_state_t *state, sfloat_t a, sfloat_t b) {
368     int16_t  exp_a   = SFLOAT_EXTRACT_EXP(a);
369     int16_t  exp_b   = SFLOAT_EXTRACT_EXP(b);
370     int16_t  exp_z   = 0;
371     uint32_t sig_a   = SFLOAT_EXTRACT_FRAC(a);
372     uint32_t sig_b   = SFLOAT_EXTRACT_FRAC(b);
373     uint32_t sig_z   = 0;
374     uint64_t sig_z64 = 0;
375     bool     sign_a  = SFLOAT_EXTRACT_SIGN(a);
376     bool     sign_b  = SFLOAT_EXTRACT_SIGN(b);
377     bool     sign_z  = sign_a ^ sign_b;
378
379     if (exp_a == 0xFF) {
380         if (sig_a || ((exp_b == 0xFF) && sig_b))
381             return sfloat_propagate_nan(state, a, b);
382         if ((exp_b | sig_b) == 0) {
383             SFLOAT_RAISE(state, SFLOAT_INVALID);
384             return SFLOAT_NAN;
385         }
386         return SFLOAT_PACK(sign_z, 0xFF, 0);
387     }
388     if (exp_b == 0xFF) {
389         if (sig_b)
390             return sfloat_propagate_nan(state, a, b);
391         if ((exp_a | sig_a) == 0) {
392             SFLOAT_RAISE(state, SFLOAT_INVALID);
393             return SFLOAT_NAN;
394         }
395         return SFLOAT_PACK(sign_z, 0xFF, 0);
396     }
397     if (exp_a == 0) {
398         if (sig_a == 0)
399             return SFLOAT_PACK(sign_z, 0, 0);
400         SFLOAT_SUBNORMALIZE(sig_a, &exp_a, &sig_a);
401     }
402     if (exp_b == 0) {
403         if (sig_b == 0)
404             return SFLOAT_PACK(sign_z, 0, 0);
405         SFLOAT_SUBNORMALIZE(sig_b, &exp_b, &sig_b);
406     }
407     exp_z = exp_a + exp_b - 0x7F;
408     sig_a = (sig_a | 0x00800000) << 7;
409     sig_b = (sig_b | 0x00800000) << 8;
410     SFLOAT_SHIFT(64, ((uint64_t)sig_a) * sig_b, 32, &sig_z64);
411     sig_z = sig_z64;
412     if (0 <= (int32_t)(sig_z << 1)) {
413         sig_z <<= 1;
414         --exp_z;
415     }
416     return SFLOAT_PACK_round(state, sign_z, exp_z, sig_z);
417 }
418
419 static sfloat_t sfloat_div(sfloat_state_t *state, sfloat_t a, sfloat_t b) {
420     int16_t  exp_a   = SFLOAT_EXTRACT_EXP(a);
421     int16_t  exp_b   = SFLOAT_EXTRACT_EXP(b);
422     int16_t  exp_z   = 0;
423     uint32_t sig_a   = SFLOAT_EXTRACT_FRAC(a);
424     uint32_t sig_b   = SFLOAT_EXTRACT_FRAC(b);
425     uint32_t sig_z   = 0;
426     bool     sign_a  = SFLOAT_EXTRACT_SIGN(a);
427     bool     sign_b  = SFLOAT_EXTRACT_SIGN(b);
428     bool     sign_z  = sign_a ^ sign_b;
429
430     if (exp_a == 0xFF) {
431         if (sig_a)
432             return sfloat_propagate_nan(state, a, b);
433         if (exp_b == 0xFF) {
434             if (sig_b)
435                 return sfloat_propagate_nan(state, a, b);
436             SFLOAT_RAISE(state, SFLOAT_INVALID);
437             return SFLOAT_NAN;
438         }
439         return SFLOAT_PACK(sign_z, 0xFF, 0);
440     }
441     if (exp_b == 0xFF)
442         return (sig_b) ? sfloat_propagate_nan(state, a, b) : SFLOAT_PACK(sign_z, 0, 0);
443     if (exp_b == 0) {
444         if (sig_b == 0) {
445             if ((exp_a | sig_a) == 0) {
446                 SFLOAT_RAISE(state, SFLOAT_INVALID);
447                 return SFLOAT_NAN;
448             }
449             SFLOAT_RAISE(state, SFLOAT_DIVBYZERO);
450             return SFLOAT_PACK(sign_z, 0xFF, 0);
451         }
452         SFLOAT_SUBNORMALIZE(sig_b, &exp_b, &sig_b);
453     }
454     if (exp_a == 0) {
455         if (sig_a == 0)
456             return SFLOAT_PACK(sign_z, 0, 0);
457         SFLOAT_SUBNORMALIZE(sig_a, &exp_a, &sig_a);
458     }
459     exp_z = exp_a - exp_b + 0x7D;
460     sig_a = (sig_a | 0x00800000) << 7;
461     sig_b = (sig_b | 0x00800000) << 8;
462     if (sig_b <= (sig_a + sig_a)) {
463         sig_a >>= 1;
464         ++exp_z;
465     }
466     sig_z = (((uint64_t)sig_a) << 32) / sig_b;
467     if ((sig_z & 0x3F) == 0)
468         sig_z |= ((uint64_t)sig_b * sig_z != ((uint64_t)sig_a) << 32);
469     return SFLOAT_PACK_round(state, sign_z, exp_z, sig_z);
470 }
471
472 static GMQCC_INLINE void sfloat_check(lex_ctx_t ctx, sfloat_state_t *state, const char *vec) {
473     /* Exception comes from vector component */
474     if (vec) {
475         if (state->exceptionflags & SFLOAT_DIVBYZERO)
476             compile_error(ctx, "division by zero in `%s' component", vec);
477         if (state->exceptionflags & SFLOAT_INVALID)
478             compile_error(ctx, "undefined (inf) in `%s' component", vec);
479         if (state->exceptionflags & SFLOAT_OVERFLOW)
480             compile_error(ctx, "arithmetic overflow in `%s' component", vec);
481         if (state->exceptionflags & SFLOAT_UNDERFLOW)
482             compile_error(ctx, "arithmetic underflow in `%s' component", vec);
483             return;
484     }
485     if (state->exceptionflags & SFLOAT_DIVBYZERO)
486         compile_error(ctx, "division by zero");
487     if (state->exceptionflags & SFLOAT_INVALID)
488         compile_error(ctx, "undefined (inf)");
489     if (state->exceptionflags & SFLOAT_OVERFLOW)
490         compile_error(ctx, "arithmetic overflow");
491     if (state->exceptionflags & SFLOAT_UNDERFLOW)
492         compile_error(ctx, "arithmetic underflow");
493 }
494
495 static GMQCC_INLINE void sfloat_init(sfloat_state_t *state) {
496     state->exceptionflags = 0;
497     state->roundingmode   = FOLD_ROUNDING;
498     state->tiny           = FOLD_TINYNESS;
499 }
500
501 /*
502  * There is two stages to constant folding in GMQCC: there is the parse
503  * stage constant folding, where, witht he help of the AST, operator
504  * usages can be constant folded. Then there is the constant folding
505  * in the IR for things like eliding if statements, can occur.
506  *
507  * This file is thus, split into two parts.
508  */
509
510 #define isfloat(X)      (((ast_expression*)(X))->vtype == TYPE_FLOAT)
511 #define isvector(X)     (((ast_expression*)(X))->vtype == TYPE_VECTOR)
512 #define isstring(X)     (((ast_expression*)(X))->vtype == TYPE_STRING)
513 #define isfloats(X,Y)   (isfloat  (X) && isfloat (Y))
514
515 /*
516  * Implementation of basic vector math for vec3_t, for trivial constant
517  * folding.
518  *
519  * TODO: gcc/clang hinting for autovectorization
520  */
521 typedef enum {
522     VEC_COMP_X = 1 << 0,
523     VEC_COMP_Y = 1 << 1,
524     VEC_COMP_Z = 1 << 2
525 } vec3_comp_t;
526
527 typedef struct {
528     sfloat_cast_t x;
529     sfloat_cast_t y;
530     sfloat_cast_t z;
531 } vec3_soft_t;
532
533 typedef struct {
534     vec3_comp_t    faults;
535     sfloat_state_t state[3];
536 } vec3_soft_state_t;
537
538 static GMQCC_INLINE vec3_soft_t vec3_soft_convert(vec3_t vec) {
539     vec3_soft_t soft;
540     soft.x.f = vec.x;
541     soft.y.f = vec.y;
542     soft.z.f = vec.z;
543     return soft;
544 }
545
546 static GMQCC_INLINE bool vec3_soft_exception(vec3_soft_state_t *vstate, size_t index) {
547     sfloat_exceptionflags_t flags = vstate->state[index].exceptionflags;
548     if (flags & SFLOAT_DIVBYZERO) return true;
549     if (flags & SFLOAT_INVALID)   return true;
550     if (flags & SFLOAT_OVERFLOW)  return true;
551     if (flags & SFLOAT_UNDERFLOW) return true;
552     return false;
553 }
554
555 static GMQCC_INLINE void vec3_soft_eval(vec3_soft_state_t *state,
556                                         sfloat_t         (*callback)(sfloat_state_t *, sfloat_t, sfloat_t),
557                                         vec3_t             a,
558                                         vec3_t             b)
559 {
560     vec3_soft_t sa = vec3_soft_convert(a);
561     vec3_soft_t sb = vec3_soft_convert(b);
562     callback(&state->state[0], sa.x.s, sb.x.s);
563     if (vec3_soft_exception(state, 0)) state->faults |= VEC_COMP_X;
564     callback(&state->state[1], sa.y.s, sb.y.s);
565     if (vec3_soft_exception(state, 1)) state->faults |= VEC_COMP_Y;
566     callback(&state->state[2], sa.z.s, sb.z.s);
567     if (vec3_soft_exception(state, 2)) state->faults |= VEC_COMP_Z;
568 }
569
570 static GMQCC_INLINE void vec3_check_except(vec3_t     a,
571                                            vec3_t     b,
572                                            lex_ctx_t  ctx,
573                                            sfloat_t (*callback)(sfloat_state_t *, sfloat_t, sfloat_t))
574 {
575     vec3_soft_state_t state;
576     sfloat_init(&state.state[0]);
577     sfloat_init(&state.state[1]);
578     sfloat_init(&state.state[2]);
579
580     if (!OPTS_FLAG(ARITHMETIC_EXCEPTIONS))
581         return;
582
583     vec3_soft_eval(&state, callback, a, b);
584     if (state.faults & VEC_COMP_X) sfloat_check(ctx, &state.state[0], "x");
585     if (state.faults & VEC_COMP_Y) sfloat_check(ctx, &state.state[1], "y");
586     if (state.faults & VEC_COMP_Z) sfloat_check(ctx, &state.state[2], "z");
587 }
588
589 static GMQCC_INLINE vec3_t vec3_add(lex_ctx_t ctx, vec3_t a, vec3_t b) {
590     vec3_t out;
591     vec3_check_except(a, b, ctx, &sfloat_add);
592     out.x = a.x + b.x;
593     out.y = a.y + b.y;
594     out.z = a.z + b.z;
595     return out;
596 }
597
598 static GMQCC_INLINE vec3_t vec3_sub(lex_ctx_t ctx, vec3_t a, vec3_t b) {
599     vec3_t out;
600     vec3_check_except(a, b, ctx, &sfloat_sub);
601     out.x = a.x - b.x;
602     out.y = a.y - b.y;
603     out.z = a.z - b.z;
604     return out;
605 }
606
607 static GMQCC_INLINE vec3_t vec3_neg(vec3_t a) {
608     vec3_t out;
609     out.x = -a.x;
610     out.y = -a.y;
611     out.z = -a.z;
612     return out;
613 }
614
615 static GMQCC_INLINE vec3_t vec3_or(vec3_t a, vec3_t b) {
616     vec3_t out;
617     out.x = (qcfloat_t)(((qcint_t)a.x) | ((qcint_t)b.x));
618     out.y = (qcfloat_t)(((qcint_t)a.y) | ((qcint_t)b.y));
619     out.z = (qcfloat_t)(((qcint_t)a.z) | ((qcint_t)b.z));
620     return out;
621 }
622
623 static GMQCC_INLINE vec3_t vec3_orvf(vec3_t a, qcfloat_t b) {
624     vec3_t out;
625     out.x = (qcfloat_t)(((qcint_t)a.x) | ((qcint_t)b));
626     out.y = (qcfloat_t)(((qcint_t)a.y) | ((qcint_t)b));
627     out.z = (qcfloat_t)(((qcint_t)a.z) | ((qcint_t)b));
628     return out;
629 }
630
631 static GMQCC_INLINE vec3_t vec3_and(vec3_t a, vec3_t b) {
632     vec3_t out;
633     out.x = (qcfloat_t)(((qcint_t)a.x) & ((qcint_t)b.x));
634     out.y = (qcfloat_t)(((qcint_t)a.y) & ((qcint_t)b.y));
635     out.z = (qcfloat_t)(((qcint_t)a.z) & ((qcint_t)b.z));
636     return out;
637 }
638
639 static GMQCC_INLINE vec3_t vec3_andvf(vec3_t a, qcfloat_t b) {
640     vec3_t out;
641     out.x = (qcfloat_t)(((qcint_t)a.x) & ((qcint_t)b));
642     out.y = (qcfloat_t)(((qcint_t)a.y) & ((qcint_t)b));
643     out.z = (qcfloat_t)(((qcint_t)a.z) & ((qcint_t)b));
644     return out;
645 }
646
647 static GMQCC_INLINE vec3_t vec3_xor(vec3_t a, vec3_t b) {
648     vec3_t out;
649     out.x = (qcfloat_t)(((qcint_t)a.x) ^ ((qcint_t)b.x));
650     out.y = (qcfloat_t)(((qcint_t)a.y) ^ ((qcint_t)b.y));
651     out.z = (qcfloat_t)(((qcint_t)a.z) ^ ((qcint_t)b.z));
652     return out;
653 }
654
655 static GMQCC_INLINE vec3_t vec3_xorvf(vec3_t a, qcfloat_t b) {
656     vec3_t out;
657     out.x = (qcfloat_t)(((qcint_t)a.x) ^ ((qcint_t)b));
658     out.y = (qcfloat_t)(((qcint_t)a.y) ^ ((qcint_t)b));
659     out.z = (qcfloat_t)(((qcint_t)a.z) ^ ((qcint_t)b));
660     return out;
661 }
662
663 static GMQCC_INLINE vec3_t vec3_not(vec3_t a) {
664     vec3_t out;
665     out.x = -1-a.x;
666     out.y = -1-a.y;
667     out.z = -1-a.z;
668     return out;
669 }
670
671 static GMQCC_INLINE qcfloat_t vec3_mulvv(lex_ctx_t ctx, vec3_t a, vec3_t b) {
672     vec3_soft_t    sa = vec3_soft_convert(a);
673     vec3_soft_t    sb = vec3_soft_convert(b);
674     sfloat_state_t s[5];
675     sfloat_t       r[5];
676
677     sfloat_init(&s[0]);
678     sfloat_init(&s[1]);
679     sfloat_init(&s[2]);
680     sfloat_init(&s[3]);
681     sfloat_init(&s[4]);
682
683     r[0] = sfloat_mul(&s[0], sa.x.s, sb.x.s);
684     r[1] = sfloat_mul(&s[1], sa.y.s, sb.y.s);
685     r[2] = sfloat_mul(&s[2], sa.z.s, sb.z.s);
686     r[3] = sfloat_add(&s[3], r[0],   r[1]);
687     r[4] = sfloat_add(&s[4], r[3],   r[2]);
688
689     sfloat_check(ctx, &s[0], NULL);
690     sfloat_check(ctx, &s[1], NULL);
691     sfloat_check(ctx, &s[2], NULL);
692     sfloat_check(ctx, &s[3], NULL);
693     sfloat_check(ctx, &s[4], NULL);
694
695     return (a.x * b.x + a.y * b.y + a.z * b.z);
696 }
697
698 static GMQCC_INLINE vec3_t vec3_mulvf(lex_ctx_t ctx, vec3_t a, qcfloat_t b) {
699     vec3_t         out;
700     vec3_soft_t    sa = vec3_soft_convert(a);
701     sfloat_cast_t  sb;
702     sfloat_state_t s[3];
703
704     sb.f = b;
705     sfloat_init(&s[0]);
706     sfloat_init(&s[1]);
707     sfloat_init(&s[2]);
708
709     sfloat_mul(&s[0], sa.x.s, sb.s);
710     sfloat_mul(&s[1], sa.y.s, sb.s);
711     sfloat_mul(&s[2], sa.z.s, sb.s);
712
713     sfloat_check(ctx, &s[0], "x");
714     sfloat_check(ctx, &s[1], "y");
715     sfloat_check(ctx, &s[2], "z");
716
717     out.x = a.x * b;
718     out.y = a.y * b;
719     out.z = a.z * b;
720     return out;
721 }
722
723 static GMQCC_INLINE bool vec3_cmp(vec3_t a, vec3_t b) {
724     return a.x == b.x &&
725            a.y == b.y &&
726            a.z == b.z;
727 }
728
729 static GMQCC_INLINE vec3_t vec3_create(float x, float y, float z) {
730     vec3_t out;
731     out.x = x;
732     out.y = y;
733     out.z = z;
734     return out;
735 }
736
737 static GMQCC_INLINE qcfloat_t vec3_notf(vec3_t a) {
738     return (!a.x && !a.y && !a.z);
739 }
740
741 static GMQCC_INLINE bool vec3_pbool(vec3_t a) {
742     return (a.x || a.y || a.z);
743 }
744
745 static GMQCC_INLINE vec3_t vec3_cross(vec3_t a, vec3_t b) {
746     vec3_t out;
747     out.x = a.y * b.z - a.z * b.y;
748     out.y = a.z * b.x - a.x * b.z;
749     out.z = a.x * b.y - a.y * b.x;
750     return out;
751 }
752
753 static lex_ctx_t fold_ctx(fold_t *fold) {
754     lex_ctx_t ctx;
755     if (fold->parser->lex)
756         return parser_ctx(fold->parser);
757
758     memset(&ctx, 0, sizeof(ctx));
759     return ctx;
760 }
761
762 static GMQCC_INLINE bool fold_immediate_true(fold_t *fold, ast_value *v) {
763     switch (v->expression.vtype) {
764         case TYPE_FLOAT:
765             return !!v->constval.vfloat;
766         case TYPE_INTEGER:
767             return !!v->constval.vint;
768         case TYPE_VECTOR:
769             if (OPTS_FLAG(CORRECT_LOGIC))
770                 return vec3_pbool(v->constval.vvec);
771             return !!(v->constval.vvec.x);
772         case TYPE_STRING:
773             if (!v->constval.vstring)
774                 return false;
775             if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
776                 return true;
777             return !!v->constval.vstring[0];
778         default:
779             compile_error(fold_ctx(fold), "internal error: fold_immediate_true on invalid type");
780             break;
781     }
782     return !!v->constval.vfunc;
783 }
784
785 /* Handy macros to determine if an ast_value can be constant folded. */
786 #define fold_can_1(X)  \
787     (ast_istype(((ast_expression*)(X)), ast_value) && (X)->hasvalue && ((X)->cvq == CV_CONST) && \
788                 ((ast_expression*)(X))->vtype != TYPE_FUNCTION)
789
790 #define fold_can_2(X, Y) (fold_can_1(X) && fold_can_1(Y))
791
792 #define fold_immvalue_float(E)  ((E)->constval.vfloat)
793 #define fold_immvalue_vector(E) ((E)->constval.vvec)
794 #define fold_immvalue_string(E) ((E)->constval.vstring)
795
796 fold_t *fold_init(parser_t *parser) {
797     fold_t *fold                 = (fold_t*)mem_a(sizeof(fold_t));
798     fold->parser                 = parser;
799     fold->imm_float              = NULL;
800     fold->imm_vector             = NULL;
801     fold->imm_string             = NULL;
802     fold->imm_string_untranslate = util_htnew(FOLD_STRING_UNTRANSLATE_HTSIZE);
803     fold->imm_string_dotranslate = util_htnew(FOLD_STRING_DOTRANSLATE_HTSIZE);
804
805     /*
806      * prime the tables with common constant values at constant
807      * locations.
808      */
809     (void)fold_constgen_float (fold,  0.0f, false);
810     (void)fold_constgen_float (fold,  1.0f, false);
811     (void)fold_constgen_float (fold, -1.0f, false);
812     (void)fold_constgen_float (fold,  2.0f, false);
813
814     (void)fold_constgen_vector(fold, vec3_create(0.0f, 0.0f, 0.0f));
815     (void)fold_constgen_vector(fold, vec3_create(-1.0f, -1.0f, -1.0f));
816
817     return fold;
818 }
819
820 bool fold_generate(fold_t *fold, ir_builder *ir) {
821     /* generate globals for immediate folded values */
822     size_t     i;
823     ast_value *cur;
824
825     for (i = 0; i < vec_size(fold->imm_float);   ++i)
826         if (!ast_global_codegen ((cur = fold->imm_float[i]), ir, false)) goto err;
827     for (i = 0; i < vec_size(fold->imm_vector);  ++i)
828         if (!ast_global_codegen((cur = fold->imm_vector[i]), ir, false)) goto err;
829     for (i = 0; i < vec_size(fold->imm_string);  ++i)
830         if (!ast_global_codegen((cur = fold->imm_string[i]), ir, false)) goto err;
831
832     return true;
833
834 err:
835     con_out("failed to generate global %s\n", cur->name);
836     ir_builder_delete(ir);
837     return false;
838 }
839
840 void fold_cleanup(fold_t *fold) {
841     size_t i;
842
843     for (i = 0; i < vec_size(fold->imm_float);  ++i) ast_delete(fold->imm_float[i]);
844     for (i = 0; i < vec_size(fold->imm_vector); ++i) ast_delete(fold->imm_vector[i]);
845     for (i = 0; i < vec_size(fold->imm_string); ++i) ast_delete(fold->imm_string[i]);
846
847     vec_free(fold->imm_float);
848     vec_free(fold->imm_vector);
849     vec_free(fold->imm_string);
850
851     util_htdel(fold->imm_string_untranslate);
852     util_htdel(fold->imm_string_dotranslate);
853
854     mem_d(fold);
855 }
856
857 ast_expression *fold_constgen_float(fold_t *fold, qcfloat_t value, bool inexact) {
858     ast_value  *out = NULL;
859     size_t      i;
860
861     for (i = 0; i < vec_size(fold->imm_float); i++) {
862         if (!memcmp(&fold->imm_float[i]->constval.vfloat, &value, sizeof(qcfloat_t)))
863             return (ast_expression*)fold->imm_float[i];
864     }
865
866     out                  = ast_value_new(fold_ctx(fold), "#IMMEDIATE", TYPE_FLOAT);
867     out->cvq             = CV_CONST;
868     out->hasvalue        = true;
869     out->inexact         = inexact;
870     out->constval.vfloat = value;
871
872     vec_push(fold->imm_float, out);
873
874     return (ast_expression*)out;
875 }
876
877 ast_expression *fold_constgen_vector(fold_t *fold, vec3_t value) {
878     ast_value *out;
879     size_t     i;
880
881     for (i = 0; i < vec_size(fold->imm_vector); i++) {
882         if (vec3_cmp(fold->imm_vector[i]->constval.vvec, value))
883             return (ast_expression*)fold->imm_vector[i];
884     }
885
886     out                = ast_value_new(fold_ctx(fold), "#IMMEDIATE", TYPE_VECTOR);
887     out->cvq           = CV_CONST;
888     out->hasvalue      = true;
889     out->constval.vvec = value;
890
891     vec_push(fold->imm_vector, out);
892
893     return (ast_expression*)out;
894 }
895
896 ast_expression *fold_constgen_string(fold_t *fold, const char *str, bool translate) {
897     hash_table_t *table = (translate) ? fold->imm_string_untranslate : fold->imm_string_dotranslate;
898     ast_value    *out   = NULL;
899     size_t        hash  = util_hthash(table, str);
900
901     if ((out = (ast_value*)util_htgeth(table, str, hash)))
902         return (ast_expression*)out;
903
904     if (translate) {
905         char name[32];
906         util_snprintf(name, sizeof(name), "dotranslate_%lu", (unsigned long)(fold->parser->translated++));
907         out                    = ast_value_new(parser_ctx(fold->parser), name, TYPE_STRING);
908         out->expression.flags |= AST_FLAG_INCLUDE_DEF; /* def needs to be included for translatables */
909     } else
910         out                    = ast_value_new(fold_ctx(fold), "#IMMEDIATE", TYPE_STRING);
911
912     out->cvq              = CV_CONST;
913     out->hasvalue         = true;
914     out->isimm            = true;
915     out->constval.vstring = parser_strdup(str);
916
917     vec_push(fold->imm_string, out);
918     util_htseth(table, str, hash, out);
919
920     return (ast_expression*)out;
921 }
922
923
924 static GMQCC_INLINE ast_expression *fold_op_mul_vec(fold_t *fold, vec3_t vec, ast_value *sel, const char *set) {
925     /*
926      * vector-component constant folding works by matching the component sets
927      * to eliminate expensive operations on whole-vectors (3 components at runtime).
928      * to achive this effect in a clean manner this function generalizes the
929      * values through the use of a set paramater, which is used as an indexing method
930      * for creating the elided ast binary expression.
931      *
932      * Consider 'n 0 0' where y, and z need to be tested for 0, and x is
933      * used as the value in a binary operation generating an INSTR_MUL instruction,
934      * to acomplish the indexing of the correct component value we use set[0], set[1], set[2]
935      * as x, y, z, where the values of those operations return 'x', 'y', 'z'. Because
936      * of how ASCII works we can easily deliniate:
937      * vec.z is the same as set[2]-'x' for when set[2] is 'z', 'z'-'x' results in a
938      * literal value of 2, using this 2, we know that taking the address of vec->x (float)
939      * and indxing it with this literal will yeild the immediate address of that component
940      *
941      * Of course more work needs to be done to generate the correct index for the ast_member_new
942      * call, which is no problem: set[0]-'x' suffices that job.
943      */
944     qcfloat_t x = (&vec.x)[set[0]-'x'];
945     qcfloat_t y = (&vec.x)[set[1]-'x'];
946     qcfloat_t z = (&vec.x)[set[2]-'x'];
947
948     if (!y && !z) {
949         ast_expression *out;
950         ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
951         out                        = (ast_expression*)ast_member_new(fold_ctx(fold), (ast_expression*)sel, set[0]-'x', NULL);
952         out->node.keep             = false;
953         ((ast_member*)out)->rvalue = true;
954         if (x != -1.0f)
955             return (ast_expression*)ast_binary_new(fold_ctx(fold), INSTR_MUL_F, fold_constgen_float(fold, x, false), out);
956     }
957     return NULL;
958 }
959
960
961 static GMQCC_INLINE ast_expression *fold_op_neg(fold_t *fold, ast_value *a) {
962     if (isfloat(a)) {
963         if (fold_can_1(a))
964             return fold_constgen_float(fold, -fold_immvalue_float(a), false);
965     } else if (isvector(a)) {
966         if (fold_can_1(a))
967             return fold_constgen_vector(fold, vec3_neg(fold_immvalue_vector(a)));
968     }
969     return NULL;
970 }
971
972 static GMQCC_INLINE ast_expression *fold_op_not(fold_t *fold, ast_value *a) {
973     if (isfloat(a)) {
974         if (fold_can_1(a))
975             return fold_constgen_float(fold, !fold_immvalue_float(a), false);
976     } else if (isvector(a)) {
977         if (fold_can_1(a))
978             return fold_constgen_float(fold, vec3_notf(fold_immvalue_vector(a)), false);
979     } else if (isstring(a)) {
980         if (fold_can_1(a)) {
981             if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
982                 return fold_constgen_float(fold, !fold_immvalue_string(a), false);
983             else
984                 return fold_constgen_float(fold, !fold_immvalue_string(a) || !*fold_immvalue_string(a), false);
985         }
986     }
987     return NULL;
988 }
989
990 static bool fold_check_except_float(sfloat_t (*callback)(sfloat_state_t *, sfloat_t, sfloat_t),
991                                     fold_t    *fold,
992                                     ast_value *a,
993                                     ast_value *b)
994 {
995     sfloat_state_t s;
996     sfloat_cast_t ca;
997     sfloat_cast_t cb;
998
999     if (!OPTS_FLAG(ARITHMETIC_EXCEPTIONS) && !OPTS_WARN(WARN_INEXACT_COMPARES))
1000         return false;
1001
1002     sfloat_init(&s);
1003     ca.f = fold_immvalue_float(a);
1004     cb.f = fold_immvalue_float(b);
1005
1006     callback(&s, ca.s, cb.s);
1007     if (s.exceptionflags == 0)
1008         return false;
1009
1010     if (!OPTS_FLAG(ARITHMETIC_EXCEPTIONS))
1011         goto inexact_possible;
1012
1013     sfloat_check(fold_ctx(fold), &s, NULL);
1014
1015 inexact_possible:
1016     return s.exceptionflags & SFLOAT_INEXACT;
1017 }
1018
1019 static bool fold_check_inexact_float(fold_t *fold, ast_value *a, ast_value *b) {
1020     lex_ctx_t ctx = fold_ctx(fold);
1021     if (!OPTS_WARN(WARN_INEXACT_COMPARES))
1022         return false;
1023     if (!a->inexact && !b->inexact)
1024         return false;
1025     return compile_warning(ctx, WARN_INEXACT_COMPARES, "inexact value in comparison");
1026 }
1027
1028 static GMQCC_INLINE ast_expression *fold_op_add(fold_t *fold, ast_value *a, ast_value *b) {
1029     if (isfloat(a)) {
1030         if (fold_can_2(a, b)) {
1031             bool inexact = fold_check_except_float(&sfloat_add, fold, a, b);
1032             return fold_constgen_float(fold, fold_immvalue_float(a) + fold_immvalue_float(b), inexact);
1033         }
1034     } else if (isvector(a)) {
1035         if (fold_can_2(a, b))
1036             return fold_constgen_vector(fold, vec3_add(fold_ctx(fold),
1037                                                        fold_immvalue_vector(a),
1038                                                        fold_immvalue_vector(b)));
1039     }
1040     return NULL;
1041 }
1042
1043 static GMQCC_INLINE ast_expression *fold_op_sub(fold_t *fold, ast_value *a, ast_value *b) {
1044     if (isfloat(a)) {
1045         if (fold_can_2(a, b)) {
1046             bool inexact = fold_check_except_float(&sfloat_sub, fold, a, b);
1047             return fold_constgen_float(fold, fold_immvalue_float(a) - fold_immvalue_float(b), inexact);
1048         }
1049     } else if (isvector(a)) {
1050         if (fold_can_2(a, b))
1051             return fold_constgen_vector(fold, vec3_sub(fold_ctx(fold),
1052                                                        fold_immvalue_vector(a),
1053                                                        fold_immvalue_vector(b)));
1054     }
1055     return NULL;
1056 }
1057
1058 static GMQCC_INLINE ast_expression *fold_op_mul(fold_t *fold, ast_value *a, ast_value *b) {
1059     if (isfloat(a)) {
1060         if (isvector(b)) {
1061             if (fold_can_2(a, b))
1062                 return fold_constgen_vector(fold, vec3_mulvf(fold_ctx(fold), fold_immvalue_vector(b), fold_immvalue_float(a)));
1063         } else {
1064             if (fold_can_2(a, b)) {
1065                 bool inexact = fold_check_except_float(&sfloat_mul, fold, a, b);
1066                 return fold_constgen_float(fold, fold_immvalue_float(a) * fold_immvalue_float(b), inexact);
1067             }
1068         }
1069     } else if (isvector(a)) {
1070         if (isfloat(b)) {
1071             if (fold_can_2(a, b))
1072                 return fold_constgen_vector(fold, vec3_mulvf(fold_ctx(fold), fold_immvalue_vector(a), fold_immvalue_float(b)));
1073         } else {
1074             if (fold_can_2(a, b)) {
1075                 return fold_constgen_float(fold, vec3_mulvv(fold_ctx(fold), fold_immvalue_vector(a), fold_immvalue_vector(b)), false);
1076             } else if (OPTS_OPTIMIZATION(OPTIM_VECTOR_COMPONENTS) && fold_can_1(a)) {
1077                 ast_expression *out;
1078                 if ((out = fold_op_mul_vec(fold, fold_immvalue_vector(a), b, "xyz"))) return out;
1079                 if ((out = fold_op_mul_vec(fold, fold_immvalue_vector(a), b, "yxz"))) return out;
1080                 if ((out = fold_op_mul_vec(fold, fold_immvalue_vector(a), b, "zxy"))) return out;
1081             } else if (OPTS_OPTIMIZATION(OPTIM_VECTOR_COMPONENTS) && fold_can_1(b)) {
1082                 ast_expression *out;
1083                 if ((out = fold_op_mul_vec(fold, fold_immvalue_vector(b), a, "xyz"))) return out;
1084                 if ((out = fold_op_mul_vec(fold, fold_immvalue_vector(b), a, "yxz"))) return out;
1085                 if ((out = fold_op_mul_vec(fold, fold_immvalue_vector(b), a, "zxy"))) return out;
1086             }
1087         }
1088     }
1089     return NULL;
1090 }
1091
1092 static GMQCC_INLINE ast_expression *fold_op_div(fold_t *fold, ast_value *a, ast_value *b) {
1093     if (isfloat(a)) {
1094         if (fold_can_2(a, b)) {
1095             bool inexact = fold_check_except_float(&sfloat_div, fold, a, b);
1096             return fold_constgen_float(fold, fold_immvalue_float(a) / fold_immvalue_float(b), inexact);
1097         } else if (fold_can_1(b)) {
1098             return (ast_expression*)ast_binary_new(
1099                 fold_ctx(fold),
1100                 INSTR_MUL_F,
1101                 (ast_expression*)a,
1102                 fold_constgen_float(fold, 1.0f / fold_immvalue_float(b), false)
1103             );
1104         }
1105     } else if (isvector(a)) {
1106         if (fold_can_2(a, b)) {
1107             return fold_constgen_vector(fold, vec3_mulvf(fold_ctx(fold), fold_immvalue_vector(a), 1.0f / fold_immvalue_float(b)));
1108         } else {
1109             return (ast_expression*)ast_binary_new(
1110                 fold_ctx(fold),
1111                 INSTR_MUL_VF,
1112                 (ast_expression*)a,
1113                 (fold_can_1(b))
1114                     ? (ast_expression*)fold_constgen_float(fold, 1.0f / fold_immvalue_float(b), false)
1115                     : (ast_expression*)ast_binary_new(
1116                                             fold_ctx(fold),
1117                                             INSTR_DIV_F,
1118                                             (ast_expression*)fold->imm_float[1],
1119                                             (ast_expression*)b
1120                     )
1121             );
1122         }
1123     }
1124     return NULL;
1125 }
1126
1127 static GMQCC_INLINE ast_expression *fold_op_mod(fold_t *fold, ast_value *a, ast_value *b) {
1128     return (fold_can_2(a, b))
1129                 ? fold_constgen_float(fold, fmod(fold_immvalue_float(a), fold_immvalue_float(b)), false)
1130                 : NULL;
1131 }
1132
1133 static GMQCC_INLINE ast_expression *fold_op_bor(fold_t *fold, ast_value *a, ast_value *b) {
1134     if (isfloat(a)) {
1135         if (fold_can_2(a, b))
1136             return fold_constgen_float(fold, (qcfloat_t)(((qcint_t)fold_immvalue_float(a)) | ((qcint_t)fold_immvalue_float(b))), false);
1137     } else {
1138         if (isvector(b)) {
1139             if (fold_can_2(a, b))
1140                 return fold_constgen_vector(fold, vec3_or(fold_immvalue_vector(a), fold_immvalue_vector(b)));
1141         } else {
1142             if (fold_can_2(a, b))
1143                 return fold_constgen_vector(fold, vec3_orvf(fold_immvalue_vector(a), fold_immvalue_float(b)));
1144         }
1145     }
1146     return NULL;
1147 }
1148
1149 static GMQCC_INLINE ast_expression *fold_op_band(fold_t *fold, ast_value *a, ast_value *b) {
1150     if (isfloat(a)) {
1151         if (fold_can_2(a, b))
1152             return fold_constgen_float(fold, (qcfloat_t)(((qcint_t)fold_immvalue_float(a)) & ((qcint_t)fold_immvalue_float(b))), false);
1153     } else {
1154         if (isvector(b)) {
1155             if (fold_can_2(a, b))
1156                 return fold_constgen_vector(fold, vec3_and(fold_immvalue_vector(a), fold_immvalue_vector(b)));
1157         } else {
1158             if (fold_can_2(a, b))
1159                 return fold_constgen_vector(fold, vec3_andvf(fold_immvalue_vector(a), fold_immvalue_float(b)));
1160         }
1161     }
1162     return NULL;
1163 }
1164
1165 static GMQCC_INLINE ast_expression *fold_op_xor(fold_t *fold, ast_value *a, ast_value *b) {
1166     if (isfloat(a)) {
1167         if (fold_can_2(a, b))
1168             return fold_constgen_float(fold, (qcfloat_t)(((qcint_t)fold_immvalue_float(a)) ^ ((qcint_t)fold_immvalue_float(b))), false);
1169     } else {
1170         if (fold_can_2(a, b)) {
1171             if (isvector(b))
1172                 return fold_constgen_vector(fold, vec3_xor(fold_immvalue_vector(a), fold_immvalue_vector(b)));
1173             else
1174                 return fold_constgen_vector(fold, vec3_xorvf(fold_immvalue_vector(a), fold_immvalue_float(b)));
1175         }
1176     }
1177     return NULL;
1178 }
1179
1180 static GMQCC_INLINE ast_expression *fold_op_lshift(fold_t *fold, ast_value *a, ast_value *b) {
1181     if (fold_can_2(a, b) && isfloats(a, b))
1182         return fold_constgen_float(fold, (qcfloat_t)floorf(fold_immvalue_float(a) * powf(2.0f, fold_immvalue_float(b))), false);
1183     return NULL;
1184 }
1185
1186 static GMQCC_INLINE ast_expression *fold_op_rshift(fold_t *fold, ast_value *a, ast_value *b) {
1187     if (fold_can_2(a, b) && isfloats(a, b))
1188         return fold_constgen_float(fold, (qcfloat_t)floorf(fold_immvalue_float(a) / powf(2.0f, fold_immvalue_float(b))), false);
1189     return NULL;
1190 }
1191
1192 static GMQCC_INLINE ast_expression *fold_op_andor(fold_t *fold, ast_value *a, ast_value *b, float expr) {
1193     if (fold_can_2(a, b)) {
1194         if (OPTS_FLAG(PERL_LOGIC)) {
1195             if (expr)
1196                 return (fold_immediate_true(fold, a)) ? (ast_expression*)a : (ast_expression*)b;
1197             else
1198                 return (fold_immediate_true(fold, a)) ? (ast_expression*)b : (ast_expression*)a;
1199         } else {
1200             return fold_constgen_float (
1201                 fold,
1202                 ((expr) ? (fold_immediate_true(fold, a) || fold_immediate_true(fold, b))
1203                         : (fold_immediate_true(fold, a) && fold_immediate_true(fold, b)))
1204                             ? 1
1205                             : 0,
1206                 false
1207             );
1208         }
1209     }
1210     return NULL;
1211 }
1212
1213 static GMQCC_INLINE ast_expression *fold_op_tern(fold_t *fold, ast_value *a, ast_value *b, ast_value *c) {
1214     if (fold_can_1(a)) {
1215         return fold_immediate_true(fold, a)
1216                     ? (ast_expression*)b
1217                     : (ast_expression*)c;
1218     }
1219     return NULL;
1220 }
1221
1222 static GMQCC_INLINE ast_expression *fold_op_exp(fold_t *fold, ast_value *a, ast_value *b) {
1223     if (fold_can_2(a, b))
1224         return fold_constgen_float(fold, (qcfloat_t)powf(fold_immvalue_float(a), fold_immvalue_float(b)), false);
1225     return NULL;
1226 }
1227
1228 static GMQCC_INLINE ast_expression *fold_op_lteqgt(fold_t *fold, ast_value *a, ast_value *b) {
1229     if (fold_can_2(a,b)) {
1230         fold_check_inexact_float(fold, a, b);
1231         if (fold_immvalue_float(a) <  fold_immvalue_float(b)) return (ast_expression*)fold->imm_float[2];
1232         if (fold_immvalue_float(a) == fold_immvalue_float(b)) return (ast_expression*)fold->imm_float[0];
1233         if (fold_immvalue_float(a) >  fold_immvalue_float(b)) return (ast_expression*)fold->imm_float[1];
1234     }
1235     return NULL;
1236 }
1237
1238 static GMQCC_INLINE ast_expression *fold_op_ltgt(fold_t *fold, ast_value *a, ast_value *b, bool lt) {
1239     if (fold_can_2(a, b)) {
1240         fold_check_inexact_float(fold, a, b);
1241         return (lt) ? (ast_expression*)fold->imm_float[!!(fold_immvalue_float(a) < fold_immvalue_float(b))]
1242                     : (ast_expression*)fold->imm_float[!!(fold_immvalue_float(a) > fold_immvalue_float(b))];
1243     }
1244     return NULL;
1245 }
1246
1247 static GMQCC_INLINE ast_expression *fold_op_cmp(fold_t *fold, ast_value *a, ast_value *b, bool ne) {
1248     if (fold_can_2(a, b)) {
1249         if (isfloat(a) && isfloat(b)) {
1250             float la = fold_immvalue_float(a);
1251             float lb = fold_immvalue_float(b);
1252             fold_check_inexact_float(fold, a, b);
1253             return (ast_expression*)fold->imm_float[!(ne ? la == lb : la != lb)];
1254         } if (isvector(a) && isvector(b)) {
1255             vec3_t la = fold_immvalue_vector(a);
1256             vec3_t lb = fold_immvalue_vector(b);
1257             return (ast_expression*)fold->imm_float[!(ne ? vec3_cmp(la, lb) : !vec3_cmp(la, lb))];
1258         }
1259     }
1260     return NULL;
1261 }
1262
1263 static GMQCC_INLINE ast_expression *fold_op_bnot(fold_t *fold, ast_value *a) {
1264     if (isfloat(a)) {
1265         if (fold_can_1(a))
1266             return fold_constgen_float(fold, -1-fold_immvalue_float(a), false);
1267     } else {
1268         if (isvector(a)) {
1269             if (fold_can_1(a))
1270                 return fold_constgen_vector(fold, vec3_not(fold_immvalue_vector(a)));
1271         }
1272     }
1273     return NULL;
1274 }
1275
1276 static GMQCC_INLINE ast_expression *fold_op_cross(fold_t *fold, ast_value *a, ast_value *b) {
1277     if (fold_can_2(a, b))
1278         return fold_constgen_vector(fold, vec3_cross(fold_immvalue_vector(a), fold_immvalue_vector(b)));
1279     return NULL;
1280 }
1281
1282 ast_expression *fold_op(fold_t *fold, const oper_info *info, ast_expression **opexprs) {
1283     ast_value      *a = (ast_value*)opexprs[0];
1284     ast_value      *b = (ast_value*)opexprs[1];
1285     ast_value      *c = (ast_value*)opexprs[2];
1286     ast_expression *e = NULL;
1287
1288     /* can a fold operation be applied to this operator usage? */
1289     if (!info->folds)
1290         return NULL;
1291
1292     switch(info->operands) {
1293         case 3: if(!c) return NULL;
1294         case 2: if(!b) return NULL;
1295         case 1:
1296         if(!a) {
1297             compile_error(fold_ctx(fold), "internal error: fold_op no operands to fold\n");
1298             return NULL;
1299         }
1300     }
1301
1302     /*
1303      * we could use a boolean and default case but ironically gcc produces
1304      * invalid broken assembly from that operation. clang/tcc get it right,
1305      * but interestingly ignore compiling this to a jump-table when I do that,
1306      * this happens to be the most efficent method, since you have per-level
1307      * granularity on the pointer check happening only for the case you check
1308      * it in. Opposed to the default method which would involve a boolean and
1309      * pointer check after wards.
1310      */
1311     #define fold_op_case(ARGS, ARGS_OPID, OP, ARGS_FOLD)    \
1312         case opid##ARGS ARGS_OPID:                          \
1313             if ((e = fold_op_##OP ARGS_FOLD)) {             \
1314                 ++opts_optimizationcount[OPTIM_CONST_FOLD]; \
1315             }                                               \
1316             return e
1317
1318     switch(info->id) {
1319         fold_op_case(2, ('-', 'P'),    neg,    (fold, a));
1320         fold_op_case(2, ('!', 'P'),    not,    (fold, a));
1321         fold_op_case(1, ('+'),         add,    (fold, a, b));
1322         fold_op_case(1, ('-'),         sub,    (fold, a, b));
1323         fold_op_case(1, ('*'),         mul,    (fold, a, b));
1324         fold_op_case(1, ('/'),         div,    (fold, a, b));
1325         fold_op_case(1, ('%'),         mod,    (fold, a, b));
1326         fold_op_case(1, ('|'),         bor,    (fold, a, b));
1327         fold_op_case(1, ('&'),         band,   (fold, a, b));
1328         fold_op_case(1, ('^'),         xor,    (fold, a, b));
1329         fold_op_case(1, ('<'),         ltgt,   (fold, a, b, true));
1330         fold_op_case(1, ('>'),         ltgt,   (fold, a, b, false));
1331         fold_op_case(2, ('<', '<'),    lshift, (fold, a, b));
1332         fold_op_case(2, ('>', '>'),    rshift, (fold, a, b));
1333         fold_op_case(2, ('|', '|'),    andor,  (fold, a, b, true));
1334         fold_op_case(2, ('&', '&'),    andor,  (fold, a, b, false));
1335         fold_op_case(2, ('?', ':'),    tern,   (fold, a, b, c));
1336         fold_op_case(2, ('*', '*'),    exp,    (fold, a, b));
1337         fold_op_case(3, ('<','=','>'), lteqgt, (fold, a, b));
1338         fold_op_case(2, ('!', '='),    cmp,    (fold, a, b, true));
1339         fold_op_case(2, ('=', '='),    cmp,    (fold, a, b, false));
1340         fold_op_case(2, ('~', 'P'),    bnot,   (fold, a));
1341         fold_op_case(2, ('>', '<'),    cross,  (fold, a, b));
1342     }
1343     #undef fold_op_case
1344     compile_error(fold_ctx(fold), "internal error: attempted to constant-fold for unsupported operator");
1345     return NULL;
1346 }
1347
1348 /*
1349  * Constant folding for compiler intrinsics, simaler approach to operator
1350  * folding, primarly: individual functions for each intrinsics to fold,
1351  * and a generic selection function.
1352  */
1353 static GMQCC_INLINE ast_expression *fold_intrin_isfinite(fold_t *fold, ast_value *a) {
1354     return fold_constgen_float(fold, isfinite(fold_immvalue_float(a)), false);
1355 }
1356 static GMQCC_INLINE ast_expression *fold_intrin_isinf(fold_t *fold, ast_value *a) {
1357     return fold_constgen_float(fold, isinf(fold_immvalue_float(a)), false);
1358 }
1359 static GMQCC_INLINE ast_expression *fold_intrin_isnan(fold_t *fold, ast_value *a) {
1360     return fold_constgen_float(fold, isnan(fold_immvalue_float(a)), false);
1361 }
1362 static GMQCC_INLINE ast_expression *fold_intrin_isnormal(fold_t *fold, ast_value *a) {
1363     return fold_constgen_float(fold, isnormal(fold_immvalue_float(a)), false);
1364 }
1365 static GMQCC_INLINE ast_expression *fold_intrin_signbit(fold_t *fold, ast_value *a) {
1366     return fold_constgen_float(fold, signbit(fold_immvalue_float(a)), false);
1367 }
1368 static GMQCC_INLINE ast_expression *fold_intirn_acosh(fold_t *fold, ast_value *a) {
1369     return fold_constgen_float(fold, acoshf(fold_immvalue_float(a)), false);
1370 }
1371 static GMQCC_INLINE ast_expression *fold_intrin_asinh(fold_t *fold, ast_value *a) {
1372     return fold_constgen_float(fold, asinhf(fold_immvalue_float(a)), false);
1373 }
1374 static GMQCC_INLINE ast_expression *fold_intrin_atanh(fold_t *fold, ast_value *a) {
1375     return fold_constgen_float(fold, (float)atanh(fold_immvalue_float(a)), false);
1376 }
1377 static GMQCC_INLINE ast_expression *fold_intrin_exp(fold_t *fold, ast_value *a) {
1378     return fold_constgen_float(fold, expf(fold_immvalue_float(a)), false);
1379 }
1380 static GMQCC_INLINE ast_expression *fold_intrin_exp2(fold_t *fold, ast_value *a) {
1381     return fold_constgen_float(fold, exp2f(fold_immvalue_float(a)), false);
1382 }
1383 static GMQCC_INLINE ast_expression *fold_intrin_expm1(fold_t *fold, ast_value *a) {
1384     return fold_constgen_float(fold, expm1f(fold_immvalue_float(a)), false);
1385 }
1386 static GMQCC_INLINE ast_expression *fold_intrin_mod(fold_t *fold, ast_value *lhs, ast_value *rhs) {
1387     return fold_constgen_float(fold, fmodf(fold_immvalue_float(lhs), fold_immvalue_float(rhs)), false);
1388 }
1389 static GMQCC_INLINE ast_expression *fold_intrin_pow(fold_t *fold, ast_value *lhs, ast_value *rhs) {
1390     return fold_constgen_float(fold, powf(fold_immvalue_float(lhs), fold_immvalue_float(rhs)), false);
1391 }
1392 static GMQCC_INLINE ast_expression *fold_intrin_fabs(fold_t *fold, ast_value *a) {
1393     return fold_constgen_float(fold, fabsf(fold_immvalue_float(a)), false);
1394 }
1395
1396
1397 ast_expression *fold_intrin(fold_t *fold, const char *intrin, ast_expression **arg) {
1398     ast_expression *ret = NULL;
1399     ast_value      *a   = (ast_value*)arg[0];
1400     ast_value      *b   = (ast_value*)arg[1];
1401
1402     if (!strcmp(intrin, "isfinite")) ret = fold_intrin_isfinite(fold, a);
1403     if (!strcmp(intrin, "isinf"))    ret = fold_intrin_isinf(fold, a);
1404     if (!strcmp(intrin, "isnan"))    ret = fold_intrin_isnan(fold, a);
1405     if (!strcmp(intrin, "isnormal")) ret = fold_intrin_isnormal(fold, a);
1406     if (!strcmp(intrin, "signbit"))  ret = fold_intrin_signbit(fold, a);
1407     if (!strcmp(intrin, "acosh"))    ret = fold_intirn_acosh(fold, a);
1408     if (!strcmp(intrin, "asinh"))    ret = fold_intrin_asinh(fold, a);
1409     if (!strcmp(intrin, "atanh"))    ret = fold_intrin_atanh(fold, a);
1410     if (!strcmp(intrin, "exp"))      ret = fold_intrin_exp(fold, a);
1411     if (!strcmp(intrin, "exp2"))     ret = fold_intrin_exp2(fold, a);
1412     if (!strcmp(intrin, "expm1"))    ret = fold_intrin_expm1(fold, a);
1413     if (!strcmp(intrin, "mod"))      ret = fold_intrin_mod(fold, a, b);
1414     if (!strcmp(intrin, "pow"))      ret = fold_intrin_pow(fold, a, b);
1415     if (!strcmp(intrin, "fabs"))     ret = fold_intrin_fabs(fold, a);
1416
1417     if (ret)
1418         ++opts_optimizationcount[OPTIM_CONST_FOLD];
1419
1420     return ret;
1421 }
1422
1423 /*
1424  * These are all the actual constant folding methods that happen in between
1425  * the AST/IR stage of the compiler , i.e eliminating branches for const
1426  * expressions, which is the only supported thing so far. We undefine the
1427  * testing macros here because an ir_value is differant than an ast_value.
1428  */
1429 #undef expect
1430 #undef isfloat
1431 #undef isstring
1432 #undef isvector
1433 #undef fold_immvalue_float
1434 #undef fold_immvalue_string
1435 #undef fold_immvalue_vector
1436 #undef fold_can_1
1437 #undef fold_can_2
1438
1439 #define isfloat(X)              ((X)->vtype == TYPE_FLOAT)
1440 /*#define isstring(X)             ((X)->vtype == TYPE_STRING)*/
1441 /*#define isvector(X)             ((X)->vtype == TYPE_VECTOR)*/
1442 #define fold_immvalue_float(X)  ((X)->constval.vfloat)
1443 #define fold_immvalue_vector(X) ((X)->constval.vvec)
1444 /*#define fold_immvalue_string(X) ((X)->constval.vstring)*/
1445 #define fold_can_1(X)           ((X)->hasvalue && (X)->cvq == CV_CONST)
1446 /*#define fold_can_2(X,Y)         (fold_can_1(X) && fold_can_1(Y))*/
1447
1448 static ast_expression *fold_superfluous(ast_expression *left, ast_expression *right, int op) {
1449     ast_expression *swapped = NULL; /* using this as bool */
1450     ast_value *load;
1451
1452     if (!ast_istype(right, ast_value) || !fold_can_1((load = (ast_value*)right))) {
1453         swapped = left;
1454         left    = right;
1455         right   = swapped;
1456     }
1457
1458     if (!ast_istype(right, ast_value) || !fold_can_1((load = (ast_value*)right)))
1459         return NULL;
1460
1461     switch (op) {
1462         case INSTR_DIV_F:
1463             if (swapped)
1464                 return NULL;
1465         case INSTR_MUL_F:
1466             if (fold_immvalue_float(load) == 1.0f) {
1467                 ++opts_optimizationcount[OPTIM_PEEPHOLE];
1468                 ast_unref(right);
1469                 return left;
1470             }
1471             break;
1472
1473
1474         case INSTR_SUB_F:
1475             if (swapped)
1476                 return NULL;
1477         case INSTR_ADD_F:
1478             if (fold_immvalue_float(load) == 0.0f) {
1479                 ++opts_optimizationcount[OPTIM_PEEPHOLE];
1480                 ast_unref(right);
1481                 return left;
1482             }
1483             break;
1484
1485         case INSTR_MUL_V:
1486             if (vec3_cmp(fold_immvalue_vector(load), vec3_create(1, 1, 1))) {
1487                 ++opts_optimizationcount[OPTIM_PEEPHOLE];
1488                 ast_unref(right);
1489                 return left;
1490             }
1491             break;
1492
1493         case INSTR_SUB_V:
1494             if (swapped)
1495                 return NULL;
1496         case INSTR_ADD_V:
1497             if (vec3_cmp(fold_immvalue_vector(load), vec3_create(0, 0, 0))) {
1498                 ++opts_optimizationcount[OPTIM_PEEPHOLE];
1499                 ast_unref(right);
1500                 return left;
1501             }
1502             break;
1503     }
1504
1505     return NULL;
1506 }
1507
1508 ast_expression *fold_binary(lex_ctx_t ctx, int op, ast_expression *left, ast_expression *right) {
1509     ast_expression *ret = fold_superfluous(left, right, op);
1510     if (ret)
1511         return ret;
1512     return (ast_expression*)ast_binary_new(ctx, op, left, right);
1513 }
1514
1515 static GMQCC_INLINE int fold_cond(ir_value *condval, ast_function *func, ast_ifthen *branch) {
1516     if (isfloat(condval) && fold_can_1(condval) && OPTS_OPTIMIZATION(OPTIM_CONST_FOLD_DCE)) {
1517         ast_expression_codegen *cgen;
1518         ir_block               *elide;
1519         ir_value               *dummy;
1520         bool                    istrue  = (fold_immvalue_float(condval) != 0.0f && branch->on_true);
1521         bool                    isfalse = (fold_immvalue_float(condval) == 0.0f && branch->on_false);
1522         ast_expression         *path    = (istrue)  ? branch->on_true  :
1523                                           (isfalse) ? branch->on_false : NULL;
1524         if (!path) {
1525             /*
1526              * no path to take implies that the evaluation is if(0) and there
1527              * is no else block. so eliminate all the code.
1528              */
1529             ++opts_optimizationcount[OPTIM_CONST_FOLD_DCE];
1530             return true;
1531         }
1532
1533         if (!(elide = ir_function_create_block(ast_ctx(branch), func->ir_func, ast_function_label(func, ((istrue) ? "ontrue" : "onfalse")))))
1534             return false;
1535         if (!(*(cgen = path->codegen))((ast_expression*)path, func, false, &dummy))
1536             return false;
1537         if (!ir_block_create_jump(func->curblock, ast_ctx(branch), elide))
1538             return false;
1539         /*
1540          * now the branch has been eliminated and the correct block for the constant evaluation
1541          * is expanded into the current block for the function.
1542          */
1543         func->curblock = elide;
1544         ++opts_optimizationcount[OPTIM_CONST_FOLD_DCE];
1545         return true;
1546     }
1547     return -1; /* nothing done */
1548 }
1549
1550 int fold_cond_ternary(ir_value *condval, ast_function *func, ast_ternary *branch) {
1551     return fold_cond(condval, func, (ast_ifthen*)branch);
1552 }
1553
1554 int fold_cond_ifthen(ir_value *condval, ast_function *func, ast_ifthen *branch) {
1555     return fold_cond(condval, func, branch);
1556 }