Update doc/specification.tex
[xonotic/gmqcc.git] / parser.c
1 /*
2  * Copyright (C) 2012, 2013
3  *     Wolfgang Bumiller
4  *     Dale Weiler
5  * 
6  * Permission is hereby granted, free of charge, to any person obtaining a copy of
7  * this software and associated documentation files (the "Software"), to deal in
8  * the Software without restriction, including without limitation the rights to
9  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is furnished to do
11  * so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 #include <stdio.h>
25 #include <stdarg.h>
26
27 #include "gmqcc.h"
28 #include "lexer.h"
29 #include "ast.h"
30
31 /* beginning of locals */
32 #define PARSER_HT_LOCALS  2
33
34 #define PARSER_HT_SIZE    128
35 #define TYPEDEF_HT_SIZE   16
36
37 typedef struct {
38     lex_file *lex;
39     int      tok;
40
41     ast_expression **globals;
42     ast_expression **fields;
43     ast_function **functions;
44     ast_value    **imm_float;
45     ast_value    **imm_string;
46     ast_value    **imm_vector;
47     size_t         translated;
48
49     /* must be deleted first, they reference immediates and values */
50     ast_value    **accessors;
51
52     ast_value *imm_float_zero;
53     ast_value *imm_float_one;
54     ast_value *imm_float_neg_one;
55
56     ast_value *imm_vector_zero;
57
58     ast_value *nil;
59     ast_value *reserved_version;
60
61     size_t crc_globals;
62     size_t crc_fields;
63
64     ast_function *function;
65
66     /* All the labels the function defined...
67      * Should they be in ast_function instead?
68      */
69     ast_label  **labels;
70     ast_goto   **gotos;
71     const char **breaks;
72     const char **continues;
73
74     /* A list of hashtables for each scope */
75     ht *variables;
76     ht htfields;
77     ht htglobals;
78     ht *typedefs;
79
80     /* same as above but for the spelling corrector */
81     correct_trie_t  **correct_variables;
82     size_t         ***correct_variables_score;  /* vector of vector of size_t* */
83
84     /* not to be used directly, we use the hash table */
85     ast_expression **_locals;
86     size_t          *_blocklocals;
87     ast_value      **_typedefs;
88     size_t          *_blocktypedefs;
89     lex_ctx         *_block_ctx;
90
91     /* we store the '=' operator info */
92     const oper_info *assign_op;
93
94     /* magic values */
95     ast_value *const_vec[3];
96
97     /* pragma flags */
98     bool noref;
99
100     /* collected information */
101     size_t     max_param_count;
102 } parser_t;
103
104 static ast_expression * const intrinsic_debug_typestring = (ast_expression*)0x1;
105
106 static void parser_enterblock(parser_t *parser);
107 static bool parser_leaveblock(parser_t *parser);
108 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e);
109 static void parser_addglobal(parser_t *parser, const char *name, ast_expression *e);
110 static bool parse_typedef(parser_t *parser);
111 static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofields, int qualifier, ast_value *cached_typedef, bool noref, bool is_static, uint32_t qflags, char *vstring);
112 static ast_block* parse_block(parser_t *parser);
113 static bool parse_block_into(parser_t *parser, ast_block *block);
114 static bool parse_statement_or_block(parser_t *parser, ast_expression **out);
115 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases);
116 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma, bool truthvalue, bool with_labels);
117 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma, bool with_labels);
118 static ast_value* parser_create_array_setter_proto(parser_t *parser, ast_value *array, const char *funcname);
119 static ast_value* parser_create_array_getter_proto(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname);
120 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef);
121
122 static void parseerror(parser_t *parser, const char *fmt, ...)
123 {
124     va_list ap;
125     va_start(ap, fmt);
126     vcompile_error(parser->lex->tok.ctx, fmt, ap);
127     va_end(ap);
128 }
129
130 /* returns true if it counts as an error */
131 static bool GMQCC_WARN parsewarning(parser_t *parser, int warntype, const char *fmt, ...)
132 {
133     bool    r;
134     va_list ap;
135     va_start(ap, fmt);
136     r = vcompile_warning(parser->lex->tok.ctx, warntype, fmt, ap);
137     va_end(ap);
138     return r;
139 }
140
141 /**********************************************************************
142  * some maths used for constant folding
143  */
144
145 vector vec3_add(vector a, vector b)
146 {
147     vector out;
148     out.x = a.x + b.x;
149     out.y = a.y + b.y;
150     out.z = a.z + b.z;
151     return out;
152 }
153
154 vector vec3_sub(vector a, vector b)
155 {
156     vector out;
157     out.x = a.x - b.x;
158     out.y = a.y - b.y;
159     out.z = a.z - b.z;
160     return out;
161 }
162
163 qcfloat vec3_mulvv(vector a, vector b)
164 {
165     return (a.x * b.x + a.y * b.y + a.z * b.z);
166 }
167
168 vector vec3_mulvf(vector a, float b)
169 {
170     vector out;
171     out.x = a.x * b;
172     out.y = a.y * b;
173     out.z = a.z * b;
174     return out;
175 }
176
177 /**********************************************************************
178  * parsing
179  */
180
181 bool parser_next(parser_t *parser)
182 {
183     /* lex_do kills the previous token */
184     parser->tok = lex_do(parser->lex);
185     if (parser->tok == TOKEN_EOF)
186         return true;
187     if (parser->tok >= TOKEN_ERROR) {
188         parseerror(parser, "lex error");
189         return false;
190     }
191     return true;
192 }
193
194 #define parser_tokval(p) ((p)->lex->tok.value)
195 #define parser_token(p)  (&((p)->lex->tok))
196 #define parser_ctx(p)    ((p)->lex->tok.ctx)
197
198 static ast_value* parser_const_float(parser_t *parser, double d)
199 {
200     size_t i;
201     ast_value *out;
202     lex_ctx ctx;
203     for (i = 0; i < vec_size(parser->imm_float); ++i) {
204         const double compare = parser->imm_float[i]->constval.vfloat;
205         if (memcmp((const void*)&compare, (const void *)&d, sizeof(double)) == 0)
206             return parser->imm_float[i];
207     }
208     if (parser->lex)
209         ctx = parser_ctx(parser);
210     else {
211         memset(&ctx, 0, sizeof(ctx));
212     }
213     out = ast_value_new(ctx, "#IMMEDIATE", TYPE_FLOAT);
214     out->cvq      = CV_CONST;
215     out->hasvalue = true;
216     out->constval.vfloat = d;
217     vec_push(parser->imm_float, out);
218     return out;
219 }
220
221 static ast_value* parser_const_float_0(parser_t *parser)
222 {
223     if (!parser->imm_float_zero)
224         parser->imm_float_zero = parser_const_float(parser, 0);
225     return parser->imm_float_zero;
226 }
227
228 static ast_value* parser_const_float_neg1(parser_t *parser) {
229     if (!parser->imm_float_neg_one)
230         parser->imm_float_neg_one = parser_const_float(parser, -1);
231     return parser->imm_float_neg_one;
232 }
233
234 static ast_value* parser_const_float_1(parser_t *parser)
235 {
236     if (!parser->imm_float_one)
237         parser->imm_float_one = parser_const_float(parser, 1);
238     return parser->imm_float_one;
239 }
240
241 static char *parser_strdup(const char *str)
242 {
243     if (str && !*str) {
244         /* actually dup empty strings */
245         char *out = (char*)mem_a(1);
246         *out = 0;
247         return out;
248     }
249     return util_strdup(str);
250 }
251
252 static ast_value* parser_const_string(parser_t *parser, const char *str, bool dotranslate)
253 {
254     size_t i;
255     ast_value *out;
256     for (i = 0; i < vec_size(parser->imm_string); ++i) {
257         if (!strcmp(parser->imm_string[i]->constval.vstring, str))
258             return parser->imm_string[i];
259     }
260     if (dotranslate) {
261         char name[32];
262         snprintf(name, sizeof(name), "dotranslate_%lu", (unsigned long)(parser->translated++));
263         out = ast_value_new(parser_ctx(parser), name, TYPE_STRING);
264     } else
265         out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_STRING);
266     out->cvq      = CV_CONST;
267     out->hasvalue = true;
268     out->constval.vstring = parser_strdup(str);
269     vec_push(parser->imm_string, out);
270     return out;
271 }
272
273 static ast_value* parser_const_vector(parser_t *parser, vector v)
274 {
275     size_t i;
276     ast_value *out;
277     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
278         if (!memcmp(&parser->imm_vector[i]->constval.vvec, &v, sizeof(v)))
279             return parser->imm_vector[i];
280     }
281     out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_VECTOR);
282     out->cvq      = CV_CONST;
283     out->hasvalue = true;
284     out->constval.vvec = v;
285     vec_push(parser->imm_vector, out);
286     return out;
287 }
288
289 static ast_value* parser_const_vector_f(parser_t *parser, float x, float y, float z)
290 {
291     vector v;
292     v.x = x;
293     v.y = y;
294     v.z = z;
295     return parser_const_vector(parser, v);
296 }
297
298 static ast_value* parser_const_vector_0(parser_t *parser)
299 {
300     if (!parser->imm_vector_zero)
301         parser->imm_vector_zero = parser_const_vector_f(parser, 0, 0, 0);
302     return parser->imm_vector_zero;
303 }
304
305 static ast_expression* parser_find_field(parser_t *parser, const char *name)
306 {
307     return ( ast_expression*)util_htget(parser->htfields, name);
308 }
309
310 static ast_expression* parser_find_label(parser_t *parser, const char *name)
311 {
312     size_t i;
313     for(i = 0; i < vec_size(parser->labels); i++)
314         if (!strcmp(parser->labels[i]->name, name))
315             return (ast_expression*)parser->labels[i];
316     return NULL;
317 }
318
319 static ast_expression* parser_find_global(parser_t *parser, const char *name)
320 {
321     return (ast_expression*)util_htget(parser->htglobals, name);
322 }
323
324 static ast_expression* parser_find_param(parser_t *parser, const char *name)
325 {
326     size_t i;
327     ast_value *fun;
328     if (!parser->function)
329         return NULL;
330     fun = parser->function->vtype;
331     for (i = 0; i < vec_size(fun->expression.params); ++i) {
332         if (!strcmp(fun->expression.params[i]->name, name))
333             return (ast_expression*)(fun->expression.params[i]);
334     }
335     return NULL;
336 }
337
338 static ast_expression* parser_find_local(parser_t *parser, const char *name, size_t upto, bool *isparam)
339 {
340     size_t          i, hash;
341     ast_expression *e;
342
343     hash = util_hthash(parser->htglobals, name);
344
345     *isparam = false;
346     for (i = vec_size(parser->variables); i > upto;) {
347         --i;
348         if ( (e = (ast_expression*)util_htgeth(parser->variables[i], name, hash)) )
349             return e;
350     }
351     *isparam = true;
352     return parser_find_param(parser, name);
353 }
354
355 static ast_expression* parser_find_var(parser_t *parser, const char *name)
356 {
357     bool dummy;
358     ast_expression *v;
359     v         = parser_find_local(parser, name, 0, &dummy);
360     if (!v) v = parser_find_global(parser, name);
361     return v;
362 }
363
364 static ast_value* parser_find_typedef(parser_t *parser, const char *name, size_t upto)
365 {
366     size_t     i, hash;
367     ast_value *e;
368     hash = util_hthash(parser->typedefs[0], name);
369
370     for (i = vec_size(parser->typedefs); i > upto;) {
371         --i;
372         if ( (e = (ast_value*)util_htgeth(parser->typedefs[i], name, hash)) )
373             return e;
374     }
375     return NULL;
376 }
377
378 typedef struct
379 {
380     size_t etype; /* 0 = expression, others are operators */
381     bool            isparen;
382     size_t          off;
383     ast_expression *out;
384     ast_block      *block; /* for commas and function calls */
385     lex_ctx ctx;
386 } sy_elem;
387
388 enum {
389     PAREN_EXPR,
390     PAREN_FUNC,
391     PAREN_INDEX,
392     PAREN_TERNARY1,
393     PAREN_TERNARY2
394 };
395 typedef struct
396 {
397     sy_elem        *out;
398     sy_elem        *ops;
399     size_t         *argc;
400     unsigned int   *paren;
401 } shunt;
402
403 static sy_elem syexp(lex_ctx ctx, ast_expression *v) {
404     sy_elem e;
405     e.etype = 0;
406     e.off   = 0;
407     e.out   = v;
408     e.block = NULL;
409     e.ctx   = ctx;
410     e.isparen = false;
411     return e;
412 }
413
414 static sy_elem syblock(lex_ctx ctx, ast_block *v) {
415     sy_elem e;
416     e.etype = 0;
417     e.off   = 0;
418     e.out   = (ast_expression*)v;
419     e.block = v;
420     e.ctx   = ctx;
421     e.isparen = false;
422     return e;
423 }
424
425 static sy_elem syop(lex_ctx ctx, const oper_info *op) {
426     sy_elem e;
427     e.etype = 1 + (op - operators);
428     e.off   = 0;
429     e.out   = NULL;
430     e.block = NULL;
431     e.ctx   = ctx;
432     e.isparen = false;
433     return e;
434 }
435
436 static sy_elem syparen(lex_ctx ctx, size_t off) {
437     sy_elem e;
438     e.etype = 0;
439     e.off   = off;
440     e.out   = NULL;
441     e.block = NULL;
442     e.ctx   = ctx;
443     e.isparen = true;
444     return e;
445 }
446
447 /* With regular precedence rules, ent.foo[n] is the same as (ent.foo)[n],
448  * so we need to rotate it to become ent.(foo[n]).
449  */
450 static bool rotate_entfield_array_index_nodes(ast_expression **out)
451 {
452     ast_array_index *index, *oldindex;
453     ast_entfield    *entfield;
454
455     ast_value       *field;
456     ast_expression  *sub;
457     ast_expression  *entity;
458
459     lex_ctx ctx = ast_ctx(*out);
460
461     if (!ast_istype(*out, ast_array_index))
462         return false;
463     index = (ast_array_index*)*out;
464
465     if (!ast_istype(index->array, ast_entfield))
466         return false;
467     entfield = (ast_entfield*)index->array;
468
469     if (!ast_istype(entfield->field, ast_value))
470         return false;
471     field = (ast_value*)entfield->field;
472
473     sub    = index->index;
474     entity = entfield->entity;
475
476     oldindex = index;
477
478     index = ast_array_index_new(ctx, (ast_expression*)field, sub);
479     entfield = ast_entfield_new(ctx, entity, (ast_expression*)index);
480     *out = (ast_expression*)entfield;
481
482     oldindex->array = NULL;
483     oldindex->index = NULL;
484     ast_delete(oldindex);
485
486     return true;
487 }
488
489 static bool immediate_is_true(lex_ctx ctx, ast_value *v)
490 {
491     switch (v->expression.vtype) {
492         case TYPE_FLOAT:
493             return !!v->constval.vfloat;
494         case TYPE_INTEGER:
495             return !!v->constval.vint;
496         case TYPE_VECTOR:
497             if (OPTS_FLAG(CORRECT_LOGIC))
498                 return v->constval.vvec.x &&
499                        v->constval.vvec.y &&
500                        v->constval.vvec.z;
501             else
502                 return !!(v->constval.vvec.x);
503         case TYPE_STRING:
504             if (!v->constval.vstring)
505                 return false;
506             if (v->constval.vstring && OPTS_FLAG(TRUE_EMPTY_STRINGS))
507                 return true;
508             return !!v->constval.vstring[0];
509         default:
510             compile_error(ctx, "internal error: immediate_is_true on invalid type");
511             return !!v->constval.vfunc;
512     }
513 }
514
515 static bool parser_sy_apply_operator(parser_t *parser, shunt *sy)
516 {
517     const oper_info *op;
518     lex_ctx ctx;
519     ast_expression *out = NULL;
520     ast_expression *exprs[3];
521     ast_block      *blocks[3];
522     ast_value      *asvalue[3];
523     ast_binstore   *asbinstore;
524     size_t i, assignop, addop, subop;
525     qcint  generated_op = 0;
526
527     char ty1[1024];
528     char ty2[1024];
529
530     if (!vec_size(sy->ops)) {
531         parseerror(parser, "internal error: missing operator");
532         return false;
533     }
534
535     if (vec_last(sy->ops).isparen) {
536         parseerror(parser, "unmatched parenthesis");
537         return false;
538     }
539
540     op = &operators[vec_last(sy->ops).etype - 1];
541     ctx = vec_last(sy->ops).ctx;
542
543     if (vec_size(sy->out) < op->operands) {
544         compile_error(ctx, "internal error: not enough operands: %i (operator %s (%i))", vec_size(sy->out),
545                       op->op, (int)op->id);
546         return false;
547     }
548
549     vec_shrinkby(sy->ops, 1);
550
551     /* op(:?) has no input and no output */
552     if (!op->operands)
553         return true;
554
555     vec_shrinkby(sy->out, op->operands);
556     for (i = 0; i < op->operands; ++i) {
557         exprs[i]  = sy->out[vec_size(sy->out)+i].out;
558         blocks[i] = sy->out[vec_size(sy->out)+i].block;
559         asvalue[i] = (ast_value*)exprs[i];
560
561         if (exprs[i]->expression.vtype == TYPE_NOEXPR &&
562             !(i != 0 && op->id == opid2('?',':')) &&
563             !(i == 1 && op->id == opid1('.')))
564         {
565             if (ast_istype(exprs[i], ast_label))
566                 compile_error(ast_ctx(exprs[i]), "expected expression, got an unknown identifier");
567             else
568                 compile_error(ast_ctx(exprs[i]), "not an expression");
569             (void)!compile_warning(ast_ctx(exprs[i]), WARN_DEBUG, "expression %u\n", (unsigned int)i);
570         }
571     }
572
573     if (blocks[0] && !vec_size(blocks[0]->exprs) && op->id != opid1(',')) {
574         compile_error(ctx, "internal error: operator cannot be applied on empty blocks");
575         return false;
576     }
577
578 #define NotSameType(T) \
579              (exprs[0]->expression.vtype != exprs[1]->expression.vtype || \
580               exprs[0]->expression.vtype != T)
581 #define CanConstFold1(A) \
582              (ast_istype((A), ast_value) && ((ast_value*)(A))->hasvalue && (((ast_value*)(A))->cvq == CV_CONST) &&\
583               (A)->expression.vtype != TYPE_FUNCTION)
584 #define CanConstFold(A, B) \
585              (CanConstFold1(A) && CanConstFold1(B))
586 #define ConstV(i) (asvalue[(i)]->constval.vvec)
587 #define ConstF(i) (asvalue[(i)]->constval.vfloat)
588 #define ConstS(i) (asvalue[(i)]->constval.vstring)
589     switch (op->id)
590     {
591         default:
592             compile_error(ctx, "internal error: unhandled operator: %s (%i)", op->op, (int)op->id);
593             return false;
594
595         case opid1('.'):
596             if (exprs[0]->expression.vtype == TYPE_VECTOR &&
597                 exprs[1]->expression.vtype == TYPE_NOEXPR)
598             {
599                 if      (exprs[1] == (ast_expression*)parser->const_vec[0])
600                     out = (ast_expression*)ast_member_new(ctx, exprs[0], 0, NULL);
601                 else if (exprs[1] == (ast_expression*)parser->const_vec[1])
602                     out = (ast_expression*)ast_member_new(ctx, exprs[0], 1, NULL);
603                 else if (exprs[1] == (ast_expression*)parser->const_vec[2])
604                     out = (ast_expression*)ast_member_new(ctx, exprs[0], 2, NULL);
605                 else {
606                     compile_error(ctx, "access to invalid vector component");
607                     return false;
608                 }
609             }
610             else if (exprs[0]->expression.vtype == TYPE_ENTITY) {
611                 if (exprs[1]->expression.vtype != TYPE_FIELD) {
612                     compile_error(ast_ctx(exprs[1]), "type error: right hand of member-operand should be an entity-field");
613                     return false;
614                 }
615                 out = (ast_expression*)ast_entfield_new(ctx, exprs[0], exprs[1]);
616             }
617             else if (exprs[0]->expression.vtype == TYPE_VECTOR) {
618                 compile_error(ast_ctx(exprs[1]), "vectors cannot be accessed this way");
619                 return false;
620             }
621             else {
622                 compile_error(ast_ctx(exprs[1]), "type error: member-of operator on something that is not an entity or vector");
623                 return false;
624             }
625             break;
626
627         case opid1('['):
628             if (exprs[0]->expression.vtype != TYPE_ARRAY &&
629                 !(exprs[0]->expression.vtype == TYPE_FIELD &&
630                   exprs[0]->expression.next->expression.vtype == TYPE_ARRAY))
631             {
632                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
633                 compile_error(ast_ctx(exprs[0]), "cannot index value of type %s", ty1);
634                 return false;
635             }
636             if (exprs[1]->expression.vtype != TYPE_FLOAT) {
637                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
638                 compile_error(ast_ctx(exprs[1]), "index must be of type float, not %s", ty1);
639                 return false;
640             }
641             out = (ast_expression*)ast_array_index_new(ctx, exprs[0], exprs[1]);
642             if (rotate_entfield_array_index_nodes(&out))
643             {
644 #if 0
645                 /* This is not broken in fteqcc anymore */
646                 if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_GMQCC) {
647                     /* this error doesn't need to make us bail out */
648                     (void)!parsewarning(parser, WARN_EXTENSIONS,
649                                         "accessing array-field members of an entity without parenthesis\n"
650                                         " -> this is an extension from -std=gmqcc");
651                 }
652 #endif
653             }
654             break;
655
656         case opid1(','):
657             if (vec_size(sy->paren) && vec_last(sy->paren) == PAREN_FUNC) {
658                 vec_push(sy->out, syexp(ctx, exprs[0]));
659                 vec_push(sy->out, syexp(ctx, exprs[1]));
660                 vec_last(sy->argc)++;
661                 return true;
662             }
663             if (blocks[0]) {
664                 if (!ast_block_add_expr(blocks[0], exprs[1]))
665                     return false;
666             } else {
667                 blocks[0] = ast_block_new(ctx);
668                 if (!ast_block_add_expr(blocks[0], exprs[0]) ||
669                     !ast_block_add_expr(blocks[0], exprs[1]))
670                 {
671                     return false;
672                 }
673             }
674             if (!ast_block_set_type(blocks[0], exprs[1]))
675                 return false;
676
677             vec_push(sy->out, syblock(ctx, blocks[0]));
678             return true;
679
680         case opid2('+','P'):
681             out = exprs[0];
682             break;
683         case opid2('-','P'):
684             switch (exprs[0]->expression.vtype) {
685                 case TYPE_FLOAT:
686                     if (CanConstFold1(exprs[0]))
687                         out = (ast_expression*)parser_const_float(parser, -ConstF(0));
688                     else
689                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_F,
690                                                               (ast_expression*)parser_const_float_0(parser),
691                                                               exprs[0]);
692                     break;
693                 case TYPE_VECTOR:
694                     if (CanConstFold1(exprs[0]))
695                         out = (ast_expression*)parser_const_vector_f(parser,
696                             -ConstV(0).x, -ConstV(0).y, -ConstV(0).z);
697                     else
698                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_V,
699                                                               (ast_expression*)parser_const_vector_0(parser),
700                                                               exprs[0]);
701                     break;
702                 default:
703                 compile_error(ctx, "invalid types used in expression: cannot negate type %s",
704                               type_name[exprs[0]->expression.vtype]);
705                 return false;
706             }
707             break;
708
709         case opid2('!','P'):
710             switch (exprs[0]->expression.vtype) {
711                 case TYPE_FLOAT:
712                     if (CanConstFold1(exprs[0]))
713                         out = (ast_expression*)parser_const_float(parser, !ConstF(0));
714                     else
715                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, exprs[0]);
716                     break;
717                 case TYPE_VECTOR:
718                     if (CanConstFold1(exprs[0]))
719                         out = (ast_expression*)parser_const_float(parser,
720                             (!ConstV(0).x && !ConstV(0).y && !ConstV(0).z));
721                     else
722                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_V, exprs[0]);
723                     break;
724                 case TYPE_STRING:
725                     if (CanConstFold1(exprs[0])) {
726                         if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
727                             out = (ast_expression*)parser_const_float(parser, !ConstS(0));
728                         else
729                             out = (ast_expression*)parser_const_float(parser, !ConstS(0) || !*ConstS(0));
730                     } else {
731                         if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
732                             out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, exprs[0]);
733                         else
734                             out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_S, exprs[0]);
735                     }
736                     break;
737                 /* we don't constant-fold NOT for these types */
738                 case TYPE_ENTITY:
739                     out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_ENT, exprs[0]);
740                     break;
741                 case TYPE_FUNCTION:
742                     out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_FNC, exprs[0]);
743                     break;
744                 default:
745                 compile_error(ctx, "invalid types used in expression: cannot logically negate type %s",
746                               type_name[exprs[0]->expression.vtype]);
747                 return false;
748             }
749             break;
750
751         case opid1('+'):
752             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype ||
753                 (exprs[0]->expression.vtype != TYPE_VECTOR && exprs[0]->expression.vtype != TYPE_FLOAT) )
754             {
755                 compile_error(ctx, "invalid types used in expression: cannot add type %s and %s",
756                               type_name[exprs[0]->expression.vtype],
757                               type_name[exprs[1]->expression.vtype]);
758                 return false;
759             }
760             switch (exprs[0]->expression.vtype) {
761                 case TYPE_FLOAT:
762                     if (CanConstFold(exprs[0], exprs[1]))
763                     {
764                         out = (ast_expression*)parser_const_float(parser, ConstF(0) + ConstF(1));
765                     }
766                     else
767                         out = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_F, exprs[0], exprs[1]);
768                     break;
769                 case TYPE_VECTOR:
770                     if (CanConstFold(exprs[0], exprs[1]))
771                         out = (ast_expression*)parser_const_vector(parser, vec3_add(ConstV(0), ConstV(1)));
772                     else
773                         out = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_V, exprs[0], exprs[1]);
774                     break;
775                 default:
776                     compile_error(ctx, "invalid types used in expression: cannot add type %s and %s",
777                                   type_name[exprs[0]->expression.vtype],
778                                   type_name[exprs[1]->expression.vtype]);
779                     return false;
780             };
781             break;
782         case opid1('-'):
783             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype ||
784                 (exprs[0]->expression.vtype != TYPE_VECTOR && exprs[0]->expression.vtype != TYPE_FLOAT) )
785             {
786                 compile_error(ctx, "invalid types used in expression: cannot subtract type %s from %s",
787                               type_name[exprs[1]->expression.vtype],
788                               type_name[exprs[0]->expression.vtype]);
789                 return false;
790             }
791             switch (exprs[0]->expression.vtype) {
792                 case TYPE_FLOAT:
793                     if (CanConstFold(exprs[0], exprs[1]))
794                         out = (ast_expression*)parser_const_float(parser, ConstF(0) - ConstF(1));
795                     else
796                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_F, exprs[0], exprs[1]);
797                     break;
798                 case TYPE_VECTOR:
799                     if (CanConstFold(exprs[0], exprs[1]))
800                         out = (ast_expression*)parser_const_vector(parser, vec3_sub(ConstV(0), ConstV(1)));
801                     else
802                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_V, exprs[0], exprs[1]);
803                     break;
804                 default:
805                     compile_error(ctx, "invalid types used in expression: cannot subtract type %s from %s",
806                                   type_name[exprs[1]->expression.vtype],
807                                   type_name[exprs[0]->expression.vtype]);
808                     return false;
809             };
810             break;
811         case opid1('*'):
812             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype &&
813                 !(exprs[0]->expression.vtype == TYPE_VECTOR &&
814                   exprs[1]->expression.vtype == TYPE_FLOAT) &&
815                 !(exprs[1]->expression.vtype == TYPE_VECTOR &&
816                   exprs[0]->expression.vtype == TYPE_FLOAT)
817                 )
818             {
819                 compile_error(ctx, "invalid types used in expression: cannot multiply types %s and %s",
820                               type_name[exprs[1]->expression.vtype],
821                               type_name[exprs[0]->expression.vtype]);
822                 return false;
823             }
824             switch (exprs[0]->expression.vtype) {
825                 case TYPE_FLOAT:
826                     if (exprs[1]->expression.vtype == TYPE_VECTOR)
827                     {
828                         if (CanConstFold(exprs[0], exprs[1]))
829                             out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(1), ConstF(0)));
830                         else
831                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_FV, exprs[0], exprs[1]);
832                     }
833                     else
834                     {
835                         if (CanConstFold(exprs[0], exprs[1]))
836                             out = (ast_expression*)parser_const_float(parser, ConstF(0) * ConstF(1));
837                         else
838                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, exprs[0], exprs[1]);
839                     }
840                     break;
841                 case TYPE_VECTOR:
842                     if (exprs[1]->expression.vtype == TYPE_FLOAT)
843                     {
844                         if (CanConstFold(exprs[0], exprs[1]))
845                             out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(0), ConstF(1)));
846                         else
847                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_VF, exprs[0], exprs[1]);
848                     }
849                     else
850                     {
851                         if (CanConstFold(exprs[0], exprs[1]))
852                             out = (ast_expression*)parser_const_float(parser, vec3_mulvv(ConstV(0), ConstV(1)));
853                         else if (OPTS_OPTIMIZATION(OPTIM_VECTOR_COMPONENTS) && CanConstFold1(exprs[0])) {
854                             vector vec = ConstV(0);
855                             if (!vec.y && !vec.z) { /* 'n 0 0' * v */
856                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
857                                 out = (ast_expression*)ast_member_new(ctx, exprs[1], 0, NULL);
858                                 out->expression.node.keep = false;
859                                 ((ast_member*)out)->rvalue = true;
860                                 if (vec.x != 1)
861                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, (ast_expression*)parser_const_float(parser, vec.x), out);
862                             }
863                             else if (!vec.x && !vec.z) { /* '0 n 0' * v */
864                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
865                                 out = (ast_expression*)ast_member_new(ctx, exprs[1], 1, NULL);
866                                 out->expression.node.keep = false;
867                                 ((ast_member*)out)->rvalue = true;
868                                 if (vec.y != 1)
869                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, (ast_expression*)parser_const_float(parser, vec.y), out);
870                             }
871                             else if (!vec.x && !vec.y) { /* '0 n 0' * v */
872                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
873                                 out = (ast_expression*)ast_member_new(ctx, exprs[1], 2, NULL);
874                                 out->expression.node.keep = false;
875                                 ((ast_member*)out)->rvalue = true;
876                                 if (vec.z != 1)
877                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, (ast_expression*)parser_const_float(parser, vec.z), out);
878                             }
879                             else
880                                 out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
881                         }
882                         else if (OPTS_OPTIMIZATION(OPTIM_VECTOR_COMPONENTS) && CanConstFold1(exprs[1])) {
883                             vector vec = ConstV(1);
884                             if (!vec.y && !vec.z) { /* v * 'n 0 0' */
885                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
886                                 out = (ast_expression*)ast_member_new(ctx, exprs[0], 0, NULL);
887                                 out->expression.node.keep = false;
888                                 ((ast_member*)out)->rvalue = true;
889                                 if (vec.x != 1)
890                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, out, (ast_expression*)parser_const_float(parser, vec.x));
891                             }
892                             else if (!vec.x && !vec.z) { /* v * '0 n 0' */
893                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
894                                 out = (ast_expression*)ast_member_new(ctx, exprs[0], 1, NULL);
895                                 out->expression.node.keep = false;
896                                 ((ast_member*)out)->rvalue = true;
897                                 if (vec.y != 1)
898                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, out, (ast_expression*)parser_const_float(parser, vec.y));
899                             }
900                             else if (!vec.x && !vec.y) { /* v * '0 n 0' */
901                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
902                                 out = (ast_expression*)ast_member_new(ctx, exprs[0], 2, NULL);
903                                 out->expression.node.keep = false;
904                                 ((ast_member*)out)->rvalue = true;
905                                 if (vec.z != 1)
906                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, out, (ast_expression*)parser_const_float(parser, vec.z));
907                             }
908                             else
909                                 out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
910                         }
911                         else
912                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
913                     }
914                     break;
915                 default:
916                     compile_error(ctx, "invalid types used in expression: cannot multiply types %s and %s",
917                                   type_name[exprs[1]->expression.vtype],
918                                   type_name[exprs[0]->expression.vtype]);
919                     return false;
920             };
921             break;
922         case opid1('/'):
923             if (exprs[1]->expression.vtype != TYPE_FLOAT) {
924                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
925                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
926                 compile_error(ctx, "invalid types used in expression: cannot divide tyeps %s and %s", ty1, ty2);
927                 return false;
928             }
929             if (exprs[0]->expression.vtype == TYPE_FLOAT) {
930                 if (CanConstFold(exprs[0], exprs[1]))
931                     out = (ast_expression*)parser_const_float(parser, ConstF(0) / ConstF(1));
932                 else
933                     out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F, exprs[0], exprs[1]);
934             }
935             else if (exprs[0]->expression.vtype == TYPE_VECTOR) {
936                 if (CanConstFold(exprs[0], exprs[1]))
937                     out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(0), 1.0/ConstF(1)));
938                 else {
939                     if (CanConstFold1(exprs[1])) {
940                         out = (ast_expression*)parser_const_float(parser, 1.0 / ConstF(1));
941                     } else {
942                         out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F,
943                                                               (ast_expression*)parser_const_float_1(parser),
944                                                               exprs[1]);
945                     }
946                     if (!out) {
947                         compile_error(ctx, "internal error: failed to generate division");
948                         return false;
949                     }
950                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_VF, exprs[0], out);
951                 }
952             }
953             else
954             {
955                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
956                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
957                 compile_error(ctx, "invalid types used in expression: cannot divide tyeps %s and %s", ty1, ty2);
958                 return false;
959             }
960             break;
961         case opid1('%'):
962         case opid2('%','='):
963             compile_error(ctx, "qc does not have a modulo operator");
964             return false;
965         case opid1('|'):
966         case opid1('&'):
967             if (NotSameType(TYPE_FLOAT)) {
968                 compile_error(ctx, "invalid types used in expression: cannot perform bit operations between types %s and %s",
969                               type_name[exprs[0]->expression.vtype],
970                               type_name[exprs[1]->expression.vtype]);
971                 return false;
972             }
973             if (CanConstFold(exprs[0], exprs[1]))
974                 out = (ast_expression*)parser_const_float(parser,
975                     (op->id == opid1('|') ? (float)( ((qcint)ConstF(0)) | ((qcint)ConstF(1)) ) :
976                                             (float)( ((qcint)ConstF(0)) & ((qcint)ConstF(1)) ) ));
977             else
978                 out = (ast_expression*)ast_binary_new(ctx,
979                     (op->id == opid1('|') ? INSTR_BITOR : INSTR_BITAND),
980                     exprs[0], exprs[1]);
981             break;
982         case opid1('^'):
983             compile_error(ast_ctx(exprs[0]), "Not Yet Implemented: bit-xor via ^");
984             return false;
985
986         case opid2('<','<'):
987         case opid2('>','>'):
988             if (CanConstFold(exprs[0], exprs[1]) && ! NotSameType(TYPE_FLOAT)) {
989                 if (op->id == opid2('<','<'))
990                     out = (ast_expression*)parser_const_float(parser, (double)((int)(ConstF(0)) << (int)(ConstF(1))));
991                 else
992                     out = (ast_expression*)parser_const_float(parser, (double)((int)(ConstF(0)) >> (int)(ConstF(1))));
993                 break;
994             }
995         case opid3('<','<','='):
996         case opid3('>','>','='):
997             compile_error(ast_ctx(exprs[0]), "Not Yet Implemented: bit-shifts");
998             return false;
999
1000         case opid2('|','|'):
1001             generated_op += 1; /* INSTR_OR */
1002         case opid2('&','&'):
1003             generated_op += INSTR_AND;
1004             if (CanConstFold(exprs[0], exprs[1]))
1005             {
1006                 if (OPTS_FLAG(PERL_LOGIC)) {
1007                     if (immediate_is_true(ctx, asvalue[0]))
1008                         out = exprs[1];
1009                 }
1010                 else
1011                     out = (ast_expression*)parser_const_float(parser,
1012                           ( (generated_op == INSTR_OR)
1013                             ? (immediate_is_true(ctx, asvalue[0]) || immediate_is_true(ctx, asvalue[1]))
1014                             : (immediate_is_true(ctx, asvalue[0]) && immediate_is_true(ctx, asvalue[1])) )
1015                           ? 1 : 0);
1016             }
1017             else
1018             {
1019                 if (OPTS_FLAG(PERL_LOGIC) && !ast_compare_type(exprs[0], exprs[1])) {
1020                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1021                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1022                     compile_error(ctx, "invalid types for logical operation with -fperl-logic: %s and %s", ty1, ty2);
1023                     return false;
1024                 }
1025                 for (i = 0; i < 2; ++i) {
1026                     if (OPTS_FLAG(CORRECT_LOGIC) && exprs[i]->expression.vtype == TYPE_VECTOR) {
1027                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_V, exprs[i]);
1028                         if (!out) break;
1029                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, out);
1030                         if (!out) break;
1031                         exprs[i] = out; out = NULL;
1032                         if (OPTS_FLAG(PERL_LOGIC)) {
1033                             /* here we want to keep the right expressions' type */
1034                             break;
1035                         }
1036                     }
1037                     else if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && exprs[i]->expression.vtype == TYPE_STRING) {
1038                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_S, exprs[i]);
1039                         if (!out) break;
1040                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, out);
1041                         if (!out) break;
1042                         exprs[i] = out; out = NULL;
1043                         if (OPTS_FLAG(PERL_LOGIC)) {
1044                             /* here we want to keep the right expressions' type */
1045                             break;
1046                         }
1047                     }
1048                 }
1049                 out = (ast_expression*)ast_binary_new(ctx, generated_op, exprs[0], exprs[1]);
1050             }
1051             break;
1052
1053         case opid2('?',':'):
1054             if (vec_last(sy->paren) != PAREN_TERNARY2) {
1055                 compile_error(ctx, "mismatched parenthesis/ternary");
1056                 return false;
1057             }
1058             vec_pop(sy->paren);
1059             if (!ast_compare_type(exprs[1], exprs[2])) {
1060                 ast_type_to_string(exprs[1], ty1, sizeof(ty1));
1061                 ast_type_to_string(exprs[2], ty2, sizeof(ty2));
1062                 compile_error(ctx, "operands of ternary expression must have the same type, got %s and %s", ty1, ty2);
1063                 return false;
1064             }
1065             if (CanConstFold1(exprs[0]))
1066                 out = (immediate_is_true(ctx, asvalue[0]) ? exprs[1] : exprs[2]);
1067             else
1068                 out = (ast_expression*)ast_ternary_new(ctx, exprs[0], exprs[1], exprs[2]);
1069             break;
1070
1071         case opid1('>'):
1072             generated_op += 1; /* INSTR_GT */
1073         case opid1('<'):
1074             generated_op += 1; /* INSTR_LT */
1075         case opid2('>', '='):
1076             generated_op += 1; /* INSTR_GE */
1077         case opid2('<', '='):
1078             generated_op += INSTR_LE;
1079             if (NotSameType(TYPE_FLOAT)) {
1080                 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
1081                               type_name[exprs[0]->expression.vtype],
1082                               type_name[exprs[1]->expression.vtype]);
1083                 return false;
1084             }
1085             out = (ast_expression*)ast_binary_new(ctx, generated_op, exprs[0], exprs[1]);
1086             break;
1087         case opid2('!', '='):
1088             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype) {
1089                 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
1090                               type_name[exprs[0]->expression.vtype],
1091                               type_name[exprs[1]->expression.vtype]);
1092                 return false;
1093             }
1094             out = (ast_expression*)ast_binary_new(ctx, type_ne_instr[exprs[0]->expression.vtype], exprs[0], exprs[1]);
1095             break;
1096         case opid2('=', '='):
1097             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype) {
1098                 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
1099                               type_name[exprs[0]->expression.vtype],
1100                               type_name[exprs[1]->expression.vtype]);
1101                 return false;
1102             }
1103             out = (ast_expression*)ast_binary_new(ctx, type_eq_instr[exprs[0]->expression.vtype], exprs[0], exprs[1]);
1104             break;
1105
1106         case opid1('='):
1107             if (ast_istype(exprs[0], ast_entfield)) {
1108                 ast_expression *field = ((ast_entfield*)exprs[0])->field;
1109                 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
1110                     exprs[0]->expression.vtype == TYPE_FIELD &&
1111                     exprs[0]->expression.next->expression.vtype == TYPE_VECTOR)
1112                 {
1113                     assignop = type_storep_instr[TYPE_VECTOR];
1114                 }
1115                 else
1116                     assignop = type_storep_instr[exprs[0]->expression.vtype];
1117                 if (assignop == VINSTR_END || !ast_compare_type(field->expression.next, exprs[1]))
1118                 {
1119                     ast_type_to_string(field->expression.next, ty1, sizeof(ty1));
1120                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1121                     if (OPTS_FLAG(ASSIGN_FUNCTION_TYPES) &&
1122                         field->expression.next->expression.vtype == TYPE_FUNCTION &&
1123                         exprs[1]->expression.vtype == TYPE_FUNCTION)
1124                     {
1125                         (void)!compile_warning(ctx, WARN_ASSIGN_FUNCTION_TYPES,
1126                                                "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1127                     }
1128                     else
1129                         compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1130                 }
1131             }
1132             else
1133             {
1134                 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
1135                     exprs[0]->expression.vtype == TYPE_FIELD &&
1136                     exprs[0]->expression.next->expression.vtype == TYPE_VECTOR)
1137                 {
1138                     assignop = type_store_instr[TYPE_VECTOR];
1139                 }
1140                 else {
1141                     assignop = type_store_instr[exprs[0]->expression.vtype];
1142                 }
1143
1144                 if (assignop == VINSTR_END) {
1145                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1146                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1147                     compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1148                 }
1149                 else if (!ast_compare_type(exprs[0], exprs[1]))
1150                 {
1151                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1152                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1153                     if (OPTS_FLAG(ASSIGN_FUNCTION_TYPES) &&
1154                         exprs[0]->expression.vtype == TYPE_FUNCTION &&
1155                         exprs[1]->expression.vtype == TYPE_FUNCTION)
1156                     {
1157                         (void)!compile_warning(ctx, WARN_ASSIGN_FUNCTION_TYPES,
1158                                                "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1159                     }
1160                     else
1161                         compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1162                 }
1163             }
1164             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1165                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1166             }
1167             out = (ast_expression*)ast_store_new(ctx, assignop, exprs[0], exprs[1]);
1168             break;
1169         case opid3('+','+','P'):
1170         case opid3('-','-','P'):
1171             /* prefix ++ */
1172             if (exprs[0]->expression.vtype != TYPE_FLOAT) {
1173                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1174                 compile_error(ast_ctx(exprs[0]), "invalid type for prefix increment: %s", ty1);
1175                 return false;
1176             }
1177             if (op->id == opid3('+','+','P'))
1178                 addop = INSTR_ADD_F;
1179             else
1180                 addop = INSTR_SUB_F;
1181             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1182                 compile_error(ast_ctx(exprs[0]), "assignment to constant `%s`", asvalue[0]->name);
1183             }
1184             if (ast_istype(exprs[0], ast_entfield)) {
1185                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STOREP_F, addop,
1186                                                         exprs[0],
1187                                                         (ast_expression*)parser_const_float_1(parser));
1188             } else {
1189                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STORE_F, addop,
1190                                                         exprs[0],
1191                                                         (ast_expression*)parser_const_float_1(parser));
1192             }
1193             break;
1194         case opid3('S','+','+'):
1195         case opid3('S','-','-'):
1196             /* prefix ++ */
1197             if (exprs[0]->expression.vtype != TYPE_FLOAT) {
1198                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1199                 compile_error(ast_ctx(exprs[0]), "invalid type for suffix increment: %s", ty1);
1200                 return false;
1201             }
1202             if (op->id == opid3('S','+','+')) {
1203                 addop = INSTR_ADD_F;
1204                 subop = INSTR_SUB_F;
1205             } else {
1206                 addop = INSTR_SUB_F;
1207                 subop = INSTR_ADD_F;
1208             }
1209             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1210                 compile_error(ast_ctx(exprs[0]), "assignment to constant `%s`", asvalue[0]->name);
1211             }
1212             if (ast_istype(exprs[0], ast_entfield)) {
1213                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STOREP_F, addop,
1214                                                         exprs[0],
1215                                                         (ast_expression*)parser_const_float_1(parser));
1216             } else {
1217                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STORE_F, addop,
1218                                                         exprs[0],
1219                                                         (ast_expression*)parser_const_float_1(parser));
1220             }
1221             if (!out)
1222                 return false;
1223             out = (ast_expression*)ast_binary_new(ctx, subop,
1224                                                   out,
1225                                                   (ast_expression*)parser_const_float_1(parser));
1226             break;
1227         case opid2('+','='):
1228         case opid2('-','='):
1229             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype ||
1230                 (exprs[0]->expression.vtype != TYPE_VECTOR && exprs[0]->expression.vtype != TYPE_FLOAT) )
1231             {
1232                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1233                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1234                 compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1235                               ty1, ty2);
1236                 return false;
1237             }
1238             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1239                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1240             }
1241             if (ast_istype(exprs[0], ast_entfield))
1242                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1243             else
1244                 assignop = type_store_instr[exprs[0]->expression.vtype];
1245             switch (exprs[0]->expression.vtype) {
1246                 case TYPE_FLOAT:
1247                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1248                                                             (op->id == opid2('+','=') ? INSTR_ADD_F : INSTR_SUB_F),
1249                                                             exprs[0], exprs[1]);
1250                     break;
1251                 case TYPE_VECTOR:
1252                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1253                                                             (op->id == opid2('+','=') ? INSTR_ADD_V : INSTR_SUB_V),
1254                                                             exprs[0], exprs[1]);
1255                     break;
1256                 default:
1257                     compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1258                                   type_name[exprs[0]->expression.vtype],
1259                                   type_name[exprs[1]->expression.vtype]);
1260                     return false;
1261             };
1262             break;
1263         case opid2('*','='):
1264         case opid2('/','='):
1265             if (exprs[1]->expression.vtype != TYPE_FLOAT ||
1266                 !(exprs[0]->expression.vtype == TYPE_FLOAT ||
1267                   exprs[0]->expression.vtype == TYPE_VECTOR))
1268             {
1269                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1270                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1271                 compile_error(ctx, "invalid types used in expression: %s and %s",
1272                               ty1, ty2);
1273                 return false;
1274             }
1275             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1276                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1277             }
1278             if (ast_istype(exprs[0], ast_entfield))
1279                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1280             else
1281                 assignop = type_store_instr[exprs[0]->expression.vtype];
1282             switch (exprs[0]->expression.vtype) {
1283                 case TYPE_FLOAT:
1284                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1285                                                             (op->id == opid2('*','=') ? INSTR_MUL_F : INSTR_DIV_F),
1286                                                             exprs[0], exprs[1]);
1287                     break;
1288                 case TYPE_VECTOR:
1289                     if (op->id == opid2('*','=')) {
1290                         out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_MUL_VF,
1291                                                                 exprs[0], exprs[1]);
1292                     } else {
1293                         /* there's no DIV_VF */
1294                         if (CanConstFold1(exprs[1])) {
1295                             out = (ast_expression*)parser_const_float(parser, 1.0 / ConstF(1));
1296                         } else {
1297                             out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F,
1298                                                                   (ast_expression*)parser_const_float_1(parser),
1299                                                                   exprs[1]);
1300                         }
1301                         if (!out) {
1302                             compile_error(ctx, "internal error: failed to generate division");
1303                             return false;
1304                         }
1305                         out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_MUL_VF,
1306                                                                 exprs[0], out);
1307                     }
1308                     break;
1309                 default:
1310                     compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1311                                   type_name[exprs[0]->expression.vtype],
1312                                   type_name[exprs[1]->expression.vtype]);
1313                     return false;
1314             };
1315             break;
1316         case opid2('&','='):
1317         case opid2('|','='):
1318             if (NotSameType(TYPE_FLOAT)) {
1319                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1320                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1321                 compile_error(ctx, "invalid types used in expression: %s and %s",
1322                               ty1, ty2);
1323                 return false;
1324             }
1325             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1326                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1327             }
1328             if (ast_istype(exprs[0], ast_entfield))
1329                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1330             else
1331                 assignop = type_store_instr[exprs[0]->expression.vtype];
1332             out = (ast_expression*)ast_binstore_new(ctx, assignop,
1333                                                     (op->id == opid2('&','=') ? INSTR_BITAND : INSTR_BITOR),
1334                                                     exprs[0], exprs[1]);
1335             break;
1336         case opid3('&','~','='):
1337             /* This is like: a &= ~(b);
1338              * But QC has no bitwise-not, so we implement it as
1339              * a -= a & (b);
1340              */
1341             if (NotSameType(TYPE_FLOAT)) {
1342                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1343                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1344                 compile_error(ctx, "invalid types used in expression: %s and %s",
1345                               ty1, ty2);
1346                 return false;
1347             }
1348             if (ast_istype(exprs[0], ast_entfield))
1349                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1350             else
1351                 assignop = type_store_instr[exprs[0]->expression.vtype];
1352             out = (ast_expression*)ast_binary_new(ctx, INSTR_BITAND, exprs[0], exprs[1]);
1353             if (!out)
1354                 return false;
1355             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1356                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1357             }
1358             asbinstore = ast_binstore_new(ctx, assignop, INSTR_SUB_F, exprs[0], out);
1359             asbinstore->keep_dest = true;
1360             out = (ast_expression*)asbinstore;
1361             break;
1362
1363         case opid2('~', 'P'):
1364             if (exprs[0]->expression.vtype != TYPE_FLOAT) {
1365                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1366                 compile_error(ast_ctx(exprs[0]), "invalid type for bit not: %s", ty1);
1367                 return false;
1368             }
1369
1370             if(CanConstFold1(exprs[0]))
1371                 out = (ast_expression*)parser_const_float(parser, ~(qcint)ConstF(0));
1372             else
1373                 out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_F, (ast_expression*)parser_const_float_neg1(parser), exprs[0]);
1374             break;
1375             
1376     }
1377 #undef NotSameType
1378
1379     if (!out) {
1380         compile_error(ctx, "failed to apply operator %s", op->op);
1381         return false;
1382     }
1383
1384     vec_push(sy->out, syexp(ctx, out));
1385     return true;
1386 }
1387
1388 static bool parser_close_call(parser_t *parser, shunt *sy)
1389 {
1390     /* was a function call */
1391     ast_expression *fun;
1392     ast_value      *funval = NULL;
1393     ast_call       *call;
1394
1395     size_t          fid;
1396     size_t          paramcount, i;
1397
1398     fid = vec_last(sy->ops).off;
1399     vec_shrinkby(sy->ops, 1);
1400
1401     /* out[fid] is the function
1402      * everything above is parameters...
1403      */
1404     if (!vec_size(sy->argc)) {
1405         parseerror(parser, "internal error: no argument counter available");
1406         return false;
1407     }
1408
1409     paramcount = vec_last(sy->argc);
1410     vec_pop(sy->argc);
1411
1412     if (vec_size(sy->out) < fid) {
1413         parseerror(parser, "internal error: broken function call%lu < %lu+%lu\n",
1414                    (unsigned long)vec_size(sy->out),
1415                    (unsigned long)fid,
1416                    (unsigned long)paramcount);
1417         return false;
1418     }
1419
1420     fun = sy->out[fid].out;
1421
1422     if (fun == intrinsic_debug_typestring) {
1423         char ty[1024];
1424         if (fid+2 != vec_size(sy->out) ||
1425             vec_last(sy->out).block)
1426         {
1427             parseerror(parser, "intrinsic __builtin_debug_typestring requires exactly 1 parameter");
1428             return false;
1429         }
1430         ast_type_to_string(vec_last(sy->out).out, ty, sizeof(ty));
1431         ast_unref(vec_last(sy->out).out);
1432         sy->out[fid] = syexp(ast_ctx(vec_last(sy->out).out),
1433                              (ast_expression*)parser_const_string(parser, ty, false));
1434         vec_shrinkby(sy->out, 1);
1435         return true;
1436     }
1437
1438     call = ast_call_new(sy->ops[vec_size(sy->ops)].ctx, fun);
1439     if (!call)
1440         return false;
1441
1442     if (fid+1 < vec_size(sy->out))
1443         ++paramcount;
1444
1445     if (fid+1 + paramcount != vec_size(sy->out)) {
1446         parseerror(parser, "internal error: parameter count mismatch: (%lu+1+%lu), %lu",
1447                    (unsigned long)fid, (unsigned long)paramcount, (unsigned long)vec_size(sy->out));
1448         return false;
1449     }
1450
1451     for (i = 0; i < paramcount; ++i)
1452         vec_push(call->params, sy->out[fid+1 + i].out);
1453     vec_shrinkby(sy->out, paramcount);
1454     (void)!ast_call_check_types(call);
1455     if (parser->max_param_count < paramcount)
1456         parser->max_param_count = paramcount;
1457
1458     if (ast_istype(fun, ast_value)) {
1459         funval = (ast_value*)fun;
1460         if ((fun->expression.flags & AST_FLAG_VARIADIC) &&
1461             !(/*funval->cvq == CV_CONST && */ funval->hasvalue && funval->constval.vfunc->builtin))
1462         {
1463             call->va_count = (ast_expression*)parser_const_float(parser, (double)paramcount);
1464         }
1465     }
1466
1467     /* overwrite fid, the function, with a call */
1468     sy->out[fid] = syexp(call->expression.node.context, (ast_expression*)call);
1469
1470     if (fun->expression.vtype != TYPE_FUNCTION) {
1471         parseerror(parser, "not a function (%s)", type_name[fun->expression.vtype]);
1472         return false;
1473     }
1474
1475     if (!fun->expression.next) {
1476         parseerror(parser, "could not determine function return type");
1477         return false;
1478     } else {
1479         ast_value *fval = (ast_istype(fun, ast_value) ? ((ast_value*)fun) : NULL);
1480
1481         if (fun->expression.flags & AST_FLAG_DEPRECATED) {
1482             if (!fval) {
1483                 return !parsewarning(parser, WARN_DEPRECATED,
1484                         "call to function (which is marked deprecated)\n",
1485                         "-> it has been declared here: %s:%i",
1486                         ast_ctx(fun).file, ast_ctx(fun).line);
1487             }
1488             if (!fval->desc) {
1489                 return !parsewarning(parser, WARN_DEPRECATED,
1490                         "call to `%s` (which is marked deprecated)\n"
1491                         "-> `%s` declared here: %s:%i",
1492                         fval->name, fval->name, ast_ctx(fun).file, ast_ctx(fun).line);
1493             }
1494             return !parsewarning(parser, WARN_DEPRECATED,
1495                     "call to `%s` (deprecated: %s)\n"
1496                     "-> `%s` declared here: %s:%i",
1497                     fval->name, fval->desc, fval->name, ast_ctx(fun).file,
1498                     ast_ctx(fun).line);
1499         }
1500
1501         if (vec_size(fun->expression.params) != paramcount &&
1502             !((fun->expression.flags & AST_FLAG_VARIADIC) &&
1503               vec_size(fun->expression.params) < paramcount))
1504         {
1505             const char *fewmany = (vec_size(fun->expression.params) > paramcount) ? "few" : "many";
1506             if (fval)
1507                 return !parsewarning(parser, WARN_INVALID_PARAMETER_COUNT,
1508                                      "too %s parameters for call to %s: expected %i, got %i\n"
1509                                      " -> `%s` has been declared here: %s:%i",
1510                                      fewmany, fval->name, (int)vec_size(fun->expression.params), (int)paramcount,
1511                                      fval->name, ast_ctx(fun).file, (int)ast_ctx(fun).line);
1512             else
1513                 return !parsewarning(parser, WARN_INVALID_PARAMETER_COUNT,
1514                                      "too %s parameters for function call: expected %i, got %i\n"
1515                                      " -> it has been declared here: %s:%i",
1516                                      fewmany, (int)vec_size(fun->expression.params), (int)paramcount,
1517                                      ast_ctx(fun).file, (int)ast_ctx(fun).line);
1518         }
1519     }
1520
1521     return true;
1522 }
1523
1524 static bool parser_close_paren(parser_t *parser, shunt *sy)
1525 {
1526     if (!vec_size(sy->ops)) {
1527         parseerror(parser, "unmatched closing paren");
1528         return false;
1529     }
1530
1531     while (vec_size(sy->ops)) {
1532         if (vec_last(sy->ops).isparen) {
1533             if (vec_last(sy->paren) == PAREN_FUNC) {
1534                 vec_pop(sy->paren);
1535                 if (!parser_close_call(parser, sy))
1536                     return false;
1537                 break;
1538             }
1539             if (vec_last(sy->paren) == PAREN_EXPR) {
1540                 vec_pop(sy->paren);
1541                 if (!vec_size(sy->out)) {
1542                     compile_error(vec_last(sy->ops).ctx, "empty paren expression");
1543                     vec_shrinkby(sy->ops, 1);
1544                     return false;
1545                 }
1546                 vec_shrinkby(sy->ops, 1);
1547                 break;
1548             }
1549             if (vec_last(sy->paren) == PAREN_INDEX) {
1550                 vec_pop(sy->paren);
1551                 /* pop off the parenthesis */
1552                 vec_shrinkby(sy->ops, 1);
1553                 /* then apply the index operator */
1554                 if (!parser_sy_apply_operator(parser, sy))
1555                     return false;
1556                 break;
1557             }
1558             if (vec_last(sy->paren) == PAREN_TERNARY1) {
1559                 vec_last(sy->paren) = PAREN_TERNARY2;
1560                 /* pop off the parenthesis */
1561                 vec_shrinkby(sy->ops, 1);
1562                 break;
1563             }
1564             compile_error(vec_last(sy->ops).ctx, "invalid parenthesis");
1565             return false;
1566         }
1567         if (!parser_sy_apply_operator(parser, sy))
1568             return false;
1569     }
1570     return true;
1571 }
1572
1573 static void parser_reclassify_token(parser_t *parser)
1574 {
1575     size_t i;
1576     for (i = 0; i < operator_count; ++i) {
1577         if (!strcmp(parser_tokval(parser), operators[i].op)) {
1578             parser->tok = TOKEN_OPERATOR;
1579             return;
1580         }
1581     }
1582 }
1583
1584 static ast_expression* parse_vararg_do(parser_t *parser)
1585 {
1586     ast_expression *idx, *out;
1587     ast_value      *typevar;
1588     ast_value      *funtype = parser->function->vtype;
1589
1590     lex_ctx ctx = parser_ctx(parser);
1591
1592     if (!parser_next(parser) || parser->tok != '(') {
1593         parseerror(parser, "expected parameter index and type in parenthesis");
1594         return NULL;
1595     }
1596     if (!parser_next(parser)) {
1597         parseerror(parser, "error parsing parameter index");
1598         return NULL;
1599     }
1600
1601     idx = parse_expression_leave(parser, true, false, false);
1602     if (!idx)
1603         return NULL;
1604
1605     if (parser->tok != ',') {
1606         ast_unref(idx);
1607         parseerror(parser, "expected comma after parameter index");
1608         return NULL;
1609     }
1610
1611     if (!parser_next(parser) || (parser->tok != TOKEN_IDENT && parser->tok != TOKEN_TYPENAME)) {
1612         ast_unref(idx);
1613         parseerror(parser, "expected typename for vararg");
1614         return NULL;
1615     }
1616
1617     typevar = parse_typename(parser, NULL, NULL);
1618     if (!typevar) {
1619         ast_unref(idx);
1620         return NULL;
1621     }
1622
1623     if (parser->tok != ')') {
1624         ast_unref(idx);
1625         ast_delete(typevar);
1626         parseerror(parser, "expected closing paren");
1627         return NULL;
1628     }
1629
1630 #if 0
1631     if (!parser_next(parser)) {
1632         ast_unref(idx);
1633         ast_delete(typevar);
1634         parseerror(parser, "parse error after vararg");
1635         return NULL;
1636     }
1637 #endif
1638
1639     if (!parser->function->varargs) {
1640         ast_unref(idx);
1641         ast_delete(typevar);
1642         parseerror(parser, "function has no variable argument list");
1643         return NULL;
1644     }
1645
1646     if (funtype->expression.varparam &&
1647         !ast_compare_type((ast_expression*)typevar, (ast_expression*)funtype->expression.varparam))
1648     {
1649         char ty1[1024];
1650         char ty2[1024];
1651         ast_type_to_string((ast_expression*)typevar, ty1, sizeof(ty1));
1652         ast_type_to_string((ast_expression*)funtype->expression.varparam, ty2, sizeof(ty2));
1653         compile_error(ast_ctx(typevar),
1654                       "function was declared to take varargs of type `%s`, requested type is: %s",
1655                       ty2, ty1);
1656     }
1657
1658     out = (ast_expression*)ast_array_index_new(ctx, (ast_expression*)(parser->function->varargs), idx);
1659     ast_type_adopt(out, typevar);
1660     ast_delete(typevar);
1661     return out;
1662 }
1663
1664 static ast_expression* parse_vararg(parser_t *parser)
1665 {
1666     bool           old_noops = parser->lex->flags.noops;
1667
1668     ast_expression *out;
1669
1670     parser->lex->flags.noops = true;
1671     out = parse_vararg_do(parser);
1672
1673     parser->lex->flags.noops = old_noops;
1674     return out;
1675 }
1676
1677 static bool parse_sya_operand(parser_t *parser, shunt *sy, bool with_labels)
1678 {
1679     if (OPTS_FLAG(TRANSLATABLE_STRINGS) &&
1680         parser->tok == TOKEN_IDENT &&
1681         !strcmp(parser_tokval(parser), "_"))
1682     {
1683         /* a translatable string */
1684         ast_value *val;
1685
1686         parser->lex->flags.noops = true;
1687         if (!parser_next(parser) || parser->tok != '(') {
1688             parseerror(parser, "use _(\"string\") to create a translatable string constant");
1689             return false;
1690         }
1691         parser->lex->flags.noops = false;
1692         if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
1693             parseerror(parser, "expected a constant string in translatable-string extension");
1694             return false;
1695         }
1696         val = parser_const_string(parser, parser_tokval(parser), true);
1697         if (!val)
1698             return false;
1699         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1700
1701         if (!parser_next(parser) || parser->tok != ')') {
1702             parseerror(parser, "expected closing paren after translatable string");
1703             return false;
1704         }
1705         return true;
1706     }
1707     else if (parser->tok == TOKEN_DOTS)
1708     {
1709         ast_expression *va;
1710         if (!OPTS_FLAG(VARIADIC_ARGS)) {
1711             parseerror(parser, "cannot access varargs (try -fvariadic-args)");
1712             return false;
1713         }
1714         va = parse_vararg(parser);
1715         if (!va)
1716             return false;
1717         vec_push(sy->out, syexp(parser_ctx(parser), va));
1718         return true;
1719     }
1720     else if (parser->tok == TOKEN_FLOATCONST) {
1721         ast_value *val;
1722         val = parser_const_float(parser, (parser_token(parser)->constval.f));
1723         if (!val)
1724             return false;
1725         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1726         return true;
1727     }
1728     else if (parser->tok == TOKEN_INTCONST || parser->tok == TOKEN_CHARCONST) {
1729         ast_value *val;
1730         val = parser_const_float(parser, (double)(parser_token(parser)->constval.i));
1731         if (!val)
1732             return false;
1733         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1734         return true;
1735     }
1736     else if (parser->tok == TOKEN_STRINGCONST) {
1737         ast_value *val;
1738         val = parser_const_string(parser, parser_tokval(parser), false);
1739         if (!val)
1740             return false;
1741         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1742         return true;
1743     }
1744     else if (parser->tok == TOKEN_VECTORCONST) {
1745         ast_value *val;
1746         val = parser_const_vector(parser, parser_token(parser)->constval.v);
1747         if (!val)
1748             return false;
1749         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1750         return true;
1751     }
1752     else if (parser->tok == TOKEN_IDENT)
1753     {
1754         const char     *ctoken = parser_tokval(parser);
1755         ast_expression *prev = vec_size(sy->out) ? vec_last(sy->out).out : NULL;
1756         ast_expression *var;
1757         /* a_vector.{x,y,z} */
1758         if (!vec_size(sy->ops) ||
1759             !vec_last(sy->ops).etype ||
1760             operators[vec_last(sy->ops).etype-1].id != opid1('.') ||
1761             (prev >= intrinsic_debug_typestring &&
1762              prev <= intrinsic_debug_typestring))
1763         {
1764             /* When adding more intrinsics, fix the above condition */
1765             prev = NULL;
1766         }
1767         if (prev && prev->expression.vtype == TYPE_VECTOR && ctoken[0] >= 'x' && ctoken[0] <= 'z' && !ctoken[1])
1768         {
1769             var = (ast_expression*)parser->const_vec[ctoken[0]-'x'];
1770         } else {
1771             var = parser_find_var(parser, parser_tokval(parser));
1772             if (!var)
1773                 var = parser_find_field(parser, parser_tokval(parser));
1774         }
1775         if (!var && with_labels) {
1776             var = (ast_expression*)parser_find_label(parser, parser_tokval(parser));
1777             if (!with_labels) {
1778                 ast_label *lbl = ast_label_new(parser_ctx(parser), parser_tokval(parser), true);
1779                 var = (ast_expression*)lbl;
1780                 vec_push(parser->labels, lbl);
1781             }
1782         }
1783         if (!var) {
1784             /* intrinsics */
1785             if (!strcmp(parser_tokval(parser), "__builtin_debug_typestring")) {
1786                 var = (ast_expression*)intrinsic_debug_typestring;
1787             }
1788             else
1789             {
1790                 char *correct = NULL;
1791                 size_t i;
1792
1793                 /*
1794                  * sometimes people use preprocessing predefs without enabling them
1795                  * i've done this thousands of times already myself.  Lets check for
1796                  * it in the predef table.  And diagnose it better :)
1797                  */
1798                 if (!OPTS_FLAG(FTEPP_PREDEFS)) {
1799                     for (i = 0; i < sizeof(ftepp_predefs)/sizeof(*ftepp_predefs); i++) {
1800                         if (!strcmp(ftepp_predefs[i].name, parser_tokval(parser))) {
1801                             parseerror(parser, "unexpected ident: %s (use -fftepp-predef to enable pre-defined macros)", parser_tokval(parser));
1802                             return false;
1803                         }
1804                     }
1805                 }
1806
1807                 /*
1808                  * TODO: determine the best score for the identifier: be it
1809                  * a variable, a field.
1810                  *
1811                  * We should also consider adding correction tables for
1812                  * other things as well.
1813                  */
1814                 if (OPTS_OPTION_BOOL(OPTION_CORRECTION)) {
1815                     correction_t corr;
1816                     correct_init(&corr);
1817
1818                     for (i = 0; i < vec_size(parser->correct_variables); i++) {
1819                         correct = correct_str(&corr, parser->correct_variables[i], parser_tokval(parser));
1820                         if (strcmp(correct, parser_tokval(parser))) {
1821                             break;
1822                         } else if (correct) {
1823                             mem_d(correct);
1824                             correct = NULL;
1825                         }
1826                     }
1827                     correct_free(&corr);
1828
1829                     if (correct) {
1830                         parseerror(parser, "unexpected ident: %s (did you mean %s?)", parser_tokval(parser), correct);
1831                         mem_d(correct);
1832                         return false;
1833                     }
1834                 }
1835                 parseerror(parser, "unexpected ident: %s", parser_tokval(parser));
1836                 return false;
1837             }
1838         }
1839         else
1840         {
1841             if (ast_istype(var, ast_value)) {
1842                 ((ast_value*)var)->uses++;
1843             }
1844             else if (ast_istype(var, ast_member)) {
1845                 ast_member *mem = (ast_member*)var;
1846                 if (ast_istype(mem->owner, ast_value))
1847                     ((ast_value*)(mem->owner))->uses++;
1848             }
1849         }
1850         vec_push(sy->out, syexp(parser_ctx(parser), var));
1851         return true;
1852     }
1853     parseerror(parser, "unexpected token `%s`", parser_tokval(parser));
1854     return false;
1855 }
1856
1857 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma, bool truthvalue, bool with_labels)
1858 {
1859     ast_expression *expr = NULL;
1860     shunt sy;
1861     size_t i;
1862     bool wantop = false;
1863     /* only warn once about an assignment in a truth value because the current code
1864      * would trigger twice on: if(a = b && ...), once for the if-truth-value, once for the && part
1865      */
1866     bool warn_truthvalue = true;
1867
1868     /* count the parens because an if starts with one, so the
1869      * end of a condition is an unmatched closing paren
1870      */
1871     int ternaries = 0;
1872
1873     memset(&sy, 0, sizeof(sy));
1874
1875     parser->lex->flags.noops = false;
1876
1877     parser_reclassify_token(parser);
1878
1879     while (true)
1880     {
1881         if (parser->tok == TOKEN_TYPENAME) {
1882             parseerror(parser, "unexpected typename");
1883             goto onerr;
1884         }
1885
1886         if (parser->tok == TOKEN_OPERATOR)
1887         {
1888             /* classify the operator */
1889             const oper_info *op;
1890             const oper_info *olast = NULL;
1891             size_t o;
1892             for (o = 0; o < operator_count; ++o) {
1893                 if (((!(operators[o].flags & OP_PREFIX) == !!wantop)) &&
1894                     /* !(operators[o].flags & OP_SUFFIX) && / * remove this */
1895                     !strcmp(parser_tokval(parser), operators[o].op))
1896                 {
1897                     break;
1898                 }
1899             }
1900             if (o == operator_count) {
1901                 /* no operator found... must be the end of the statement */
1902                 break;
1903             }
1904             /* found an operator */
1905             op = &operators[o];
1906
1907             /* when declaring variables, a comma starts a new variable */
1908             if (op->id == opid1(',') && !vec_size(sy.paren) && stopatcomma) {
1909                 /* fixup the token */
1910                 parser->tok = ',';
1911                 break;
1912             }
1913
1914             /* a colon without a pervious question mark cannot be a ternary */
1915             if (!ternaries && op->id == opid2(':','?')) {
1916                 parser->tok = ':';
1917                 break;
1918             }
1919
1920             if (op->id == opid1(',')) {
1921                 if (vec_size(sy.paren) && vec_last(sy.paren) == PAREN_TERNARY2) {
1922                     (void)!parsewarning(parser, WARN_TERNARY_PRECEDENCE, "suggesting parenthesis around ternary expression");
1923                 }
1924             }
1925
1926             if (vec_size(sy.ops) && !vec_last(sy.ops).isparen)
1927                 olast = &operators[vec_last(sy.ops).etype-1];
1928
1929 #define IsAssignOp(x) (\
1930                 (x) == opid1('=') || \
1931                 (x) == opid2('+','=') || \
1932                 (x) == opid2('-','=') || \
1933                 (x) == opid2('*','=') || \
1934                 (x) == opid2('/','=') || \
1935                 (x) == opid2('%','=') || \
1936                 (x) == opid2('&','=') || \
1937                 (x) == opid2('|','=') || \
1938                 (x) == opid3('&','~','=') \
1939                 )
1940             if (warn_truthvalue) {
1941                 if ( (olast && IsAssignOp(olast->id) && (op->id == opid2('&','&') || op->id == opid2('|','|'))) ||
1942                      (olast && IsAssignOp(op->id) && (olast->id == opid2('&','&') || olast->id == opid2('|','|'))) ||
1943                      (truthvalue && !vec_size(sy.paren) && IsAssignOp(op->id))
1944                    )
1945                 {
1946                     (void)!parsewarning(parser, WARN_PARENTHESIS, "suggesting parenthesis around assignment used as truth value");
1947                     warn_truthvalue = false;
1948                 }
1949             }
1950
1951             while (olast && (
1952                     (op->prec < olast->prec) ||
1953                     (op->assoc == ASSOC_LEFT && op->prec <= olast->prec) ) )
1954             {
1955                 if (!parser_sy_apply_operator(parser, &sy))
1956                     goto onerr;
1957                 if (vec_size(sy.ops) && !vec_last(sy.ops).isparen)
1958                     olast = &operators[vec_last(sy.ops).etype-1];
1959                 else
1960                     olast = NULL;
1961             }
1962
1963             if (op->id == opid1('(')) {
1964                 if (wantop) {
1965                     size_t sycount = vec_size(sy.out);
1966                     /* we expected an operator, this is the function-call operator */
1967                     vec_push(sy.paren, PAREN_FUNC);
1968                     vec_push(sy.ops, syparen(parser_ctx(parser), sycount-1));
1969                     vec_push(sy.argc, 0);
1970                 } else {
1971                     vec_push(sy.paren, PAREN_EXPR);
1972                     vec_push(sy.ops, syparen(parser_ctx(parser), 0));
1973                 }
1974                 wantop = false;
1975             } else if (op->id == opid1('[')) {
1976                 if (!wantop) {
1977                     parseerror(parser, "unexpected array subscript");
1978                     goto onerr;
1979                 }
1980                 vec_push(sy.paren, PAREN_INDEX);
1981                 /* push both the operator and the paren, this makes life easier */
1982                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1983                 vec_push(sy.ops, syparen(parser_ctx(parser), 0));
1984                 wantop = false;
1985             } else if (op->id == opid2('?',':')) {
1986                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1987                 vec_push(sy.ops, syparen(parser_ctx(parser), 0));
1988                 wantop = false;
1989                 ++ternaries;
1990                 vec_push(sy.paren, PAREN_TERNARY1);
1991             } else if (op->id == opid2(':','?')) {
1992                 if (!vec_size(sy.paren)) {
1993                     parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
1994                     goto onerr;
1995                 }
1996                 if (vec_last(sy.paren) != PAREN_TERNARY1) {
1997                     parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
1998                     goto onerr;
1999                 }
2000                 if (!parser_close_paren(parser, &sy))
2001                     goto onerr;
2002                 vec_push(sy.ops, syop(parser_ctx(parser), op));
2003                 wantop = false;
2004                 --ternaries;
2005             } else {
2006                 vec_push(sy.ops, syop(parser_ctx(parser), op));
2007                 wantop = !!(op->flags & OP_SUFFIX);
2008             }
2009         }
2010         else if (parser->tok == ')') {
2011             while (vec_size(sy.paren) && vec_last(sy.paren) == PAREN_TERNARY2) {
2012                 if (!parser_sy_apply_operator(parser, &sy))
2013                     goto onerr;
2014             }
2015             if (!vec_size(sy.paren))
2016                 break;
2017             if (wantop) {
2018                 if (vec_last(sy.paren) == PAREN_TERNARY1) {
2019                     parseerror(parser, "mismatched parentheses (closing paren in ternary expression?)");
2020                     goto onerr;
2021                 }
2022                 if (!parser_close_paren(parser, &sy))
2023                     goto onerr;
2024             } else {
2025                 /* must be a function call without parameters */
2026                 if (vec_last(sy.paren) != PAREN_FUNC) {
2027                     parseerror(parser, "closing paren in invalid position");
2028                     goto onerr;
2029                 }
2030                 if (!parser_close_paren(parser, &sy))
2031                     goto onerr;
2032             }
2033             wantop = true;
2034         }
2035         else if (parser->tok == '(') {
2036             parseerror(parser, "internal error: '(' should be classified as operator");
2037             goto onerr;
2038         }
2039         else if (parser->tok == '[') {
2040             parseerror(parser, "internal error: '[' should be classified as operator");
2041             goto onerr;
2042         }
2043         else if (parser->tok == ']') {
2044             while (vec_size(sy.paren) && vec_last(sy.paren) == PAREN_TERNARY2) {
2045                 if (!parser_sy_apply_operator(parser, &sy))
2046                     goto onerr;
2047             }
2048             if (!vec_size(sy.paren))
2049                 break;
2050             if (vec_last(sy.paren) != PAREN_INDEX) {
2051                 parseerror(parser, "mismatched parentheses, unexpected ']'");
2052                 goto onerr;
2053             }
2054             if (!parser_close_paren(parser, &sy))
2055                 goto onerr;
2056             wantop = true;
2057         }
2058         else if (!wantop) {
2059             if (!parse_sya_operand(parser, &sy, with_labels))
2060                 goto onerr;
2061 #if 0
2062             if (vec_size(sy.paren) && vec_last(sy.ops).isparen && vec_last(sy.paren) == PAREN_FUNC)
2063                 vec_last(sy.argc)++;
2064 #endif
2065             wantop = true;
2066         }
2067         else {
2068             parseerror(parser, "expected operator or end of statement");
2069             goto onerr;
2070         }
2071
2072         if (!parser_next(parser)) {
2073             goto onerr;
2074         }
2075         if (parser->tok == ';' ||
2076             ((!vec_size(sy.paren) || (vec_size(sy.paren) == 1 && vec_last(sy.paren) == PAREN_TERNARY2)) &&
2077             (parser->tok == ']' || parser->tok == ')' || parser->tok == '}')))
2078         {
2079             break;
2080         }
2081     }
2082
2083     while (vec_size(sy.ops)) {
2084         if (!parser_sy_apply_operator(parser, &sy))
2085             goto onerr;
2086     }
2087
2088     parser->lex->flags.noops = true;
2089     if (!vec_size(sy.out)) {
2090         parseerror(parser, "empty expression");
2091         expr = NULL;
2092     } else
2093         expr = sy.out[0].out;
2094     vec_free(sy.out);
2095     vec_free(sy.ops);
2096     if (vec_size(sy.paren)) {
2097         parseerror(parser, "internal error: vec_size(sy.paren) = %lu", (unsigned long)vec_size(sy.paren));
2098         return NULL;
2099     }
2100     vec_free(sy.paren);
2101     vec_free(sy.argc);
2102     return expr;
2103
2104 onerr:
2105     parser->lex->flags.noops = true;
2106     for (i = 0; i < vec_size(sy.out); ++i) {
2107         if (sy.out[i].out)
2108             ast_unref(sy.out[i].out);
2109     }
2110     vec_free(sy.out);
2111     vec_free(sy.ops);
2112     vec_free(sy.paren);
2113     vec_free(sy.argc);
2114     return NULL;
2115 }
2116
2117 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma, bool with_labels)
2118 {
2119     ast_expression *e = parse_expression_leave(parser, stopatcomma, false, with_labels);
2120     if (!e)
2121         return NULL;
2122     if (parser->tok != ';') {
2123         parseerror(parser, "semicolon expected after expression");
2124         ast_unref(e);
2125         return NULL;
2126     }
2127     if (!parser_next(parser)) {
2128         ast_unref(e);
2129         return NULL;
2130     }
2131     return e;
2132 }
2133
2134 static void parser_enterblock(parser_t *parser)
2135 {
2136     vec_push(parser->variables, util_htnew(PARSER_HT_SIZE));
2137     vec_push(parser->_blocklocals, vec_size(parser->_locals));
2138     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
2139     vec_push(parser->_blocktypedefs, vec_size(parser->_typedefs));
2140     vec_push(parser->_block_ctx, parser_ctx(parser));
2141
2142     /* corrector */
2143     vec_push(parser->correct_variables, correct_trie_new());
2144     vec_push(parser->correct_variables_score, NULL);
2145 }
2146
2147 static bool parser_leaveblock(parser_t *parser)
2148 {
2149     bool   rv = true;
2150     size_t locals, typedefs;
2151
2152     if (vec_size(parser->variables) <= PARSER_HT_LOCALS) {
2153         parseerror(parser, "internal error: parser_leaveblock with no block");
2154         return false;
2155     }
2156
2157     util_htdel(vec_last(parser->variables));
2158     correct_del(vec_last(parser->correct_variables), vec_last(parser->correct_variables_score));
2159
2160     vec_pop(parser->variables);
2161     vec_pop(parser->correct_variables);
2162     vec_pop(parser->correct_variables_score);
2163     if (!vec_size(parser->_blocklocals)) {
2164         parseerror(parser, "internal error: parser_leaveblock with no block (2)");
2165         return false;
2166     }
2167
2168     locals = vec_last(parser->_blocklocals);
2169     vec_pop(parser->_blocklocals);
2170     while (vec_size(parser->_locals) != locals) {
2171         ast_expression *e = vec_last(parser->_locals);
2172         ast_value      *v = (ast_value*)e;
2173         vec_pop(parser->_locals);
2174         if (ast_istype(e, ast_value) && !v->uses) {
2175             if (compile_warning(ast_ctx(v), WARN_UNUSED_VARIABLE, "unused variable: `%s`", v->name))
2176                 rv = false;
2177         }
2178     }
2179
2180     typedefs = vec_last(parser->_blocktypedefs);
2181     while (vec_size(parser->_typedefs) != typedefs) {
2182         ast_delete(vec_last(parser->_typedefs));
2183         vec_pop(parser->_typedefs);
2184     }
2185     util_htdel(vec_last(parser->typedefs));
2186     vec_pop(parser->typedefs);
2187
2188     vec_pop(parser->_block_ctx);
2189
2190     return rv;
2191 }
2192
2193 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e)
2194 {
2195     vec_push(parser->_locals, e);
2196     util_htset(vec_last(parser->variables), name, (void*)e);
2197
2198     /* corrector */
2199     correct_add (
2200          vec_last(parser->correct_variables),
2201         &vec_last(parser->correct_variables_score),
2202         name
2203     );
2204 }
2205
2206 static void parser_addglobal(parser_t *parser, const char *name, ast_expression *e)
2207 {
2208     vec_push(parser->globals, e);
2209     util_htset(parser->htglobals, name, e);
2210
2211     /* corrector */
2212     correct_add (
2213          parser->correct_variables[0],
2214         &parser->correct_variables_score[0],
2215         name
2216     );
2217 }
2218
2219 static ast_expression* process_condition(parser_t *parser, ast_expression *cond, bool *_ifnot)
2220 {
2221     bool       ifnot = false;
2222     ast_unary *unary;
2223     ast_expression *prev;
2224
2225     if (cond->expression.vtype == TYPE_VOID || cond->expression.vtype >= TYPE_VARIANT) {
2226         char ty[1024];
2227         ast_type_to_string(cond, ty, sizeof(ty));
2228         compile_error(ast_ctx(cond), "invalid type for if() condition: %s", ty);
2229     }
2230
2231     if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && cond->expression.vtype == TYPE_STRING)
2232     {
2233         prev = cond;
2234         cond = (ast_expression*)ast_unary_new(ast_ctx(cond), INSTR_NOT_S, cond);
2235         if (!cond) {
2236             ast_unref(prev);
2237             parseerror(parser, "internal error: failed to process condition");
2238             return NULL;
2239         }
2240         ifnot = !ifnot;
2241     }
2242     else if (OPTS_FLAG(CORRECT_LOGIC) && cond->expression.vtype == TYPE_VECTOR)
2243     {
2244         /* vector types need to be cast to true booleans */
2245         ast_binary *bin = (ast_binary*)cond;
2246         if (!OPTS_FLAG(PERL_LOGIC) || !ast_istype(cond, ast_binary) || !(bin->op == INSTR_AND || bin->op == INSTR_OR))
2247         {
2248             /* in perl-logic, AND and OR take care of the -fcorrect-logic */
2249             prev = cond;
2250             cond = (ast_expression*)ast_unary_new(ast_ctx(cond), INSTR_NOT_V, cond);
2251             if (!cond) {
2252                 ast_unref(prev);
2253                 parseerror(parser, "internal error: failed to process condition");
2254                 return NULL;
2255             }
2256             ifnot = !ifnot;
2257         }
2258     }
2259
2260     unary = (ast_unary*)cond;
2261     while (ast_istype(cond, ast_unary) && unary->op == INSTR_NOT_F)
2262     {
2263         cond = unary->operand;
2264         unary->operand = NULL;
2265         ast_delete(unary);
2266         ifnot = !ifnot;
2267         unary = (ast_unary*)cond;
2268     }
2269
2270     if (!cond)
2271         parseerror(parser, "internal error: failed to process condition");
2272
2273     if (ifnot) *_ifnot = !*_ifnot;
2274     return cond;
2275 }
2276
2277 static bool parse_if(parser_t *parser, ast_block *block, ast_expression **out)
2278 {
2279     ast_ifthen *ifthen;
2280     ast_expression *cond, *ontrue = NULL, *onfalse = NULL;
2281     bool ifnot = false;
2282
2283     lex_ctx ctx = parser_ctx(parser);
2284
2285     (void)block; /* not touching */
2286
2287     /* skip the 'if', parse an optional 'not' and check for an opening paren */
2288     if (!parser_next(parser)) {
2289         parseerror(parser, "expected condition or 'not'");
2290         return false;
2291     }
2292     if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "not")) {
2293         ifnot = true;
2294         if (!parser_next(parser)) {
2295             parseerror(parser, "expected condition in parenthesis");
2296             return false;
2297         }
2298     }
2299     if (parser->tok != '(') {
2300         parseerror(parser, "expected 'if' condition in parenthesis");
2301         return false;
2302     }
2303     /* parse into the expression */
2304     if (!parser_next(parser)) {
2305         parseerror(parser, "expected 'if' condition after opening paren");
2306         return false;
2307     }
2308     /* parse the condition */
2309     cond = parse_expression_leave(parser, false, true, false);
2310     if (!cond)
2311         return false;
2312     /* closing paren */
2313     if (parser->tok != ')') {
2314         parseerror(parser, "expected closing paren after 'if' condition");
2315         ast_delete(cond);
2316         return false;
2317     }
2318     /* parse into the 'then' branch */
2319     if (!parser_next(parser)) {
2320         parseerror(parser, "expected statement for on-true branch of 'if'");
2321         ast_delete(cond);
2322         return false;
2323     }
2324     if (!parse_statement_or_block(parser, &ontrue)) {
2325         ast_delete(cond);
2326         return false;
2327     }
2328     if (!ontrue)
2329         ontrue = (ast_expression*)ast_block_new(parser_ctx(parser));
2330     /* check for an else */
2331     if (!strcmp(parser_tokval(parser), "else")) {
2332         /* parse into the 'else' branch */
2333         if (!parser_next(parser)) {
2334             parseerror(parser, "expected on-false branch after 'else'");
2335             ast_delete(ontrue);
2336             ast_delete(cond);
2337             return false;
2338         }
2339         if (!parse_statement_or_block(parser, &onfalse)) {
2340             ast_delete(ontrue);
2341             ast_delete(cond);
2342             return false;
2343         }
2344     }
2345
2346     cond = process_condition(parser, cond, &ifnot);
2347     if (!cond) {
2348         if (ontrue)  ast_delete(ontrue);
2349         if (onfalse) ast_delete(onfalse);
2350         return false;
2351     }
2352
2353     if (ifnot)
2354         ifthen = ast_ifthen_new(ctx, cond, onfalse, ontrue);
2355     else
2356         ifthen = ast_ifthen_new(ctx, cond, ontrue, onfalse);
2357     *out = (ast_expression*)ifthen;
2358     return true;
2359 }
2360
2361 static bool parse_while_go(parser_t *parser, ast_block *block, ast_expression **out);
2362 static bool parse_while(parser_t *parser, ast_block *block, ast_expression **out)
2363 {
2364     bool rv;
2365     char *label = NULL;
2366
2367     /* skip the 'while' and get the body */
2368     if (!parser_next(parser)) {
2369         if (OPTS_FLAG(LOOP_LABELS))
2370             parseerror(parser, "expected loop label or 'while' condition in parenthesis");
2371         else
2372             parseerror(parser, "expected 'while' condition in parenthesis");
2373         return false;
2374     }
2375
2376     if (parser->tok == ':') {
2377         if (!OPTS_FLAG(LOOP_LABELS))
2378             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2379         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2380             parseerror(parser, "expected loop label");
2381             return false;
2382         }
2383         label = util_strdup(parser_tokval(parser));
2384         if (!parser_next(parser)) {
2385             mem_d(label);
2386             parseerror(parser, "expected 'while' condition in parenthesis");
2387             return false;
2388         }
2389     }
2390
2391     if (parser->tok != '(') {
2392         parseerror(parser, "expected 'while' condition in parenthesis");
2393         return false;
2394     }
2395
2396     vec_push(parser->breaks, label);
2397     vec_push(parser->continues, label);
2398
2399     rv = parse_while_go(parser, block, out);
2400     if (label)
2401         mem_d(label);
2402     if (vec_last(parser->breaks) != label || vec_last(parser->continues) != label) {
2403         parseerror(parser, "internal error: label stack corrupted");
2404         rv = false;
2405         ast_delete(*out);
2406         *out = NULL;
2407     }
2408     else {
2409         vec_pop(parser->breaks);
2410         vec_pop(parser->continues);
2411     }
2412     return rv;
2413 }
2414
2415 static bool parse_while_go(parser_t *parser, ast_block *block, ast_expression **out)
2416 {
2417     ast_loop *aloop;
2418     ast_expression *cond, *ontrue;
2419
2420     bool ifnot = false;
2421
2422     lex_ctx ctx = parser_ctx(parser);
2423
2424     (void)block; /* not touching */
2425
2426     /* parse into the expression */
2427     if (!parser_next(parser)) {
2428         parseerror(parser, "expected 'while' condition after opening paren");
2429         return false;
2430     }
2431     /* parse the condition */
2432     cond = parse_expression_leave(parser, false, true, false);
2433     if (!cond)
2434         return false;
2435     /* closing paren */
2436     if (parser->tok != ')') {
2437         parseerror(parser, "expected closing paren after 'while' condition");
2438         ast_delete(cond);
2439         return false;
2440     }
2441     /* parse into the 'then' branch */
2442     if (!parser_next(parser)) {
2443         parseerror(parser, "expected while-loop body");
2444         ast_delete(cond);
2445         return false;
2446     }
2447     if (!parse_statement_or_block(parser, &ontrue)) {
2448         ast_delete(cond);
2449         return false;
2450     }
2451
2452     cond = process_condition(parser, cond, &ifnot);
2453     if (!cond) {
2454         ast_delete(ontrue);
2455         return false;
2456     }
2457     aloop = ast_loop_new(ctx, NULL, cond, ifnot, NULL, false, NULL, ontrue);
2458     *out = (ast_expression*)aloop;
2459     return true;
2460 }
2461
2462 static bool parse_dowhile_go(parser_t *parser, ast_block *block, ast_expression **out);
2463 static bool parse_dowhile(parser_t *parser, ast_block *block, ast_expression **out)
2464 {
2465     bool rv;
2466     char *label = NULL;
2467
2468     /* skip the 'do' and get the body */
2469     if (!parser_next(parser)) {
2470         if (OPTS_FLAG(LOOP_LABELS))
2471             parseerror(parser, "expected loop label or body");
2472         else
2473             parseerror(parser, "expected loop body");
2474         return false;
2475     }
2476
2477     if (parser->tok == ':') {
2478         if (!OPTS_FLAG(LOOP_LABELS))
2479             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2480         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2481             parseerror(parser, "expected loop label");
2482             return false;
2483         }
2484         label = util_strdup(parser_tokval(parser));
2485         if (!parser_next(parser)) {
2486             mem_d(label);
2487             parseerror(parser, "expected loop body");
2488             return false;
2489         }
2490     }
2491
2492     vec_push(parser->breaks, label);
2493     vec_push(parser->continues, label);
2494
2495     rv = parse_dowhile_go(parser, block, out);
2496     if (label)
2497         mem_d(label);
2498     if (vec_last(parser->breaks) != label || vec_last(parser->continues) != label) {
2499         parseerror(parser, "internal error: label stack corrupted");
2500         rv = false;
2501         ast_delete(*out);
2502         *out = NULL;
2503     }
2504     else {
2505         vec_pop(parser->breaks);
2506         vec_pop(parser->continues);
2507     }
2508     return rv;
2509 }
2510
2511 static bool parse_dowhile_go(parser_t *parser, ast_block *block, ast_expression **out)
2512 {
2513     ast_loop *aloop;
2514     ast_expression *cond, *ontrue;
2515
2516     bool ifnot = false;
2517
2518     lex_ctx ctx = parser_ctx(parser);
2519
2520     (void)block; /* not touching */
2521
2522     if (!parse_statement_or_block(parser, &ontrue))
2523         return false;
2524
2525     /* expect the "while" */
2526     if (parser->tok != TOKEN_KEYWORD ||
2527         strcmp(parser_tokval(parser), "while"))
2528     {
2529         parseerror(parser, "expected 'while' and condition");
2530         ast_delete(ontrue);
2531         return false;
2532     }
2533
2534     /* skip the 'while' and check for opening paren */
2535     if (!parser_next(parser) || parser->tok != '(') {
2536         parseerror(parser, "expected 'while' condition in parenthesis");
2537         ast_delete(ontrue);
2538         return false;
2539     }
2540     /* parse into the expression */
2541     if (!parser_next(parser)) {
2542         parseerror(parser, "expected 'while' condition after opening paren");
2543         ast_delete(ontrue);
2544         return false;
2545     }
2546     /* parse the condition */
2547     cond = parse_expression_leave(parser, false, true, false);
2548     if (!cond)
2549         return false;
2550     /* closing paren */
2551     if (parser->tok != ')') {
2552         parseerror(parser, "expected closing paren after 'while' condition");
2553         ast_delete(ontrue);
2554         ast_delete(cond);
2555         return false;
2556     }
2557     /* parse on */
2558     if (!parser_next(parser) || parser->tok != ';') {
2559         parseerror(parser, "expected semicolon after condition");
2560         ast_delete(ontrue);
2561         ast_delete(cond);
2562         return false;
2563     }
2564
2565     if (!parser_next(parser)) {
2566         parseerror(parser, "parse error");
2567         ast_delete(ontrue);
2568         ast_delete(cond);
2569         return false;
2570     }
2571
2572     cond = process_condition(parser, cond, &ifnot);
2573     if (!cond) {
2574         ast_delete(ontrue);
2575         return false;
2576     }
2577     aloop = ast_loop_new(ctx, NULL, NULL, false, cond, ifnot, NULL, ontrue);
2578     *out = (ast_expression*)aloop;
2579     return true;
2580 }
2581
2582 static bool parse_for_go(parser_t *parser, ast_block *block, ast_expression **out);
2583 static bool parse_for(parser_t *parser, ast_block *block, ast_expression **out)
2584 {
2585     bool rv;
2586     char *label = NULL;
2587
2588     /* skip the 'for' and check for opening paren */
2589     if (!parser_next(parser)) {
2590         if (OPTS_FLAG(LOOP_LABELS))
2591             parseerror(parser, "expected loop label or 'for' expressions in parenthesis");
2592         else
2593             parseerror(parser, "expected 'for' expressions in parenthesis");
2594         return false;
2595     }
2596
2597     if (parser->tok == ':') {
2598         if (!OPTS_FLAG(LOOP_LABELS))
2599             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2600         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2601             parseerror(parser, "expected loop label");
2602             return false;
2603         }
2604         label = util_strdup(parser_tokval(parser));
2605         if (!parser_next(parser)) {
2606             mem_d(label);
2607             parseerror(parser, "expected 'for' expressions in parenthesis");
2608             return false;
2609         }
2610     }
2611
2612     if (parser->tok != '(') {
2613         parseerror(parser, "expected 'for' expressions in parenthesis");
2614         return false;
2615     }
2616
2617     vec_push(parser->breaks, label);
2618     vec_push(parser->continues, label);
2619
2620     rv = parse_for_go(parser, block, out);
2621     if (label)
2622         mem_d(label);
2623     if (vec_last(parser->breaks) != label || vec_last(parser->continues) != label) {
2624         parseerror(parser, "internal error: label stack corrupted");
2625         rv = false;
2626         ast_delete(*out);
2627         *out = NULL;
2628     }
2629     else {
2630         vec_pop(parser->breaks);
2631         vec_pop(parser->continues);
2632     }
2633     return rv;
2634 }
2635 static bool parse_for_go(parser_t *parser, ast_block *block, ast_expression **out)
2636 {
2637     ast_loop       *aloop;
2638     ast_expression *initexpr, *cond, *increment, *ontrue;
2639     ast_value      *typevar;
2640
2641     bool retval = true;
2642     bool ifnot  = false;
2643
2644     lex_ctx ctx = parser_ctx(parser);
2645
2646     parser_enterblock(parser);
2647
2648     initexpr  = NULL;
2649     cond      = NULL;
2650     increment = NULL;
2651     ontrue    = NULL;
2652
2653     /* parse into the expression */
2654     if (!parser_next(parser)) {
2655         parseerror(parser, "expected 'for' initializer after opening paren");
2656         goto onerr;
2657     }
2658
2659     typevar = NULL;
2660     if (parser->tok == TOKEN_IDENT)
2661         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2662
2663     if (typevar || parser->tok == TOKEN_TYPENAME) {
2664 #if 0
2665         if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_GMQCC) {
2666             if (parsewarning(parser, WARN_EXTENSIONS,
2667                              "current standard does not allow variable declarations in for-loop initializers"))
2668                 goto onerr;
2669         }
2670 #endif
2671         if (!parse_variable(parser, block, true, CV_VAR, typevar, false, false, 0, NULL))
2672             goto onerr;
2673     }
2674     else if (parser->tok != ';')
2675     {
2676         initexpr = parse_expression_leave(parser, false, false, false);
2677         if (!initexpr)
2678             goto onerr;
2679     }
2680
2681     /* move on to condition */
2682     if (parser->tok != ';') {
2683         parseerror(parser, "expected semicolon after for-loop initializer");
2684         goto onerr;
2685     }
2686     if (!parser_next(parser)) {
2687         parseerror(parser, "expected for-loop condition");
2688         goto onerr;
2689     }
2690
2691     /* parse the condition */
2692     if (parser->tok != ';') {
2693         cond = parse_expression_leave(parser, false, true, false);
2694         if (!cond)
2695             goto onerr;
2696     }
2697
2698     /* move on to incrementor */
2699     if (parser->tok != ';') {
2700         parseerror(parser, "expected semicolon after for-loop initializer");
2701         goto onerr;
2702     }
2703     if (!parser_next(parser)) {
2704         parseerror(parser, "expected for-loop condition");
2705         goto onerr;
2706     }
2707
2708     /* parse the incrementor */
2709     if (parser->tok != ')') {
2710         lex_ctx condctx = parser_ctx(parser);
2711         increment = parse_expression_leave(parser, false, false, false);
2712         if (!increment)
2713             goto onerr;
2714         if (!ast_side_effects(increment)) {
2715             if (compile_warning(condctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2716                 goto onerr;
2717         }
2718     }
2719
2720     /* closing paren */
2721     if (parser->tok != ')') {
2722         parseerror(parser, "expected closing paren after 'for-loop' incrementor");
2723         goto onerr;
2724     }
2725     /* parse into the 'then' branch */
2726     if (!parser_next(parser)) {
2727         parseerror(parser, "expected for-loop body");
2728         goto onerr;
2729     }
2730     if (!parse_statement_or_block(parser, &ontrue))
2731         goto onerr;
2732
2733     if (cond) {
2734         cond = process_condition(parser, cond, &ifnot);
2735         if (!cond)
2736             goto onerr;
2737     }
2738     aloop = ast_loop_new(ctx, initexpr, cond, ifnot, NULL, false, increment, ontrue);
2739     *out = (ast_expression*)aloop;
2740
2741     if (!parser_leaveblock(parser))
2742         retval = false;
2743     return retval;
2744 onerr:
2745     if (initexpr)  ast_delete(initexpr);
2746     if (cond)      ast_delete(cond);
2747     if (increment) ast_delete(increment);
2748     (void)!parser_leaveblock(parser);
2749     return false;
2750 }
2751
2752 static bool parse_return(parser_t *parser, ast_block *block, ast_expression **out)
2753 {
2754     ast_expression *exp = NULL;
2755     ast_return     *ret = NULL;
2756     ast_value      *expected = parser->function->vtype;
2757
2758     lex_ctx ctx = parser_ctx(parser);
2759
2760     (void)block; /* not touching */
2761
2762     if (!parser_next(parser)) {
2763         parseerror(parser, "expected return expression");
2764         return false;
2765     }
2766
2767     if (parser->tok != ';') {
2768         exp = parse_expression(parser, false, false);
2769         if (!exp)
2770             return false;
2771
2772         if (exp->expression.vtype != TYPE_NIL &&
2773             exp->expression.vtype != expected->expression.next->expression.vtype)
2774         {
2775             parseerror(parser, "return with invalid expression");
2776         }
2777
2778         ret = ast_return_new(ctx, exp);
2779         if (!ret) {
2780             ast_delete(exp);
2781             return false;
2782         }
2783     } else {
2784         if (!parser_next(parser))
2785             parseerror(parser, "parse error");
2786         if (expected->expression.next->expression.vtype != TYPE_VOID) {
2787             (void)!parsewarning(parser, WARN_MISSING_RETURN_VALUES, "return without value");
2788         }
2789         ret = ast_return_new(ctx, NULL);
2790     }
2791     *out = (ast_expression*)ret;
2792     return true;
2793 }
2794
2795 static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
2796 {
2797     size_t       i;
2798     unsigned int levels = 0;
2799     lex_ctx      ctx = parser_ctx(parser);
2800     const char **loops = (is_continue ? parser->continues : parser->breaks);
2801
2802     (void)block; /* not touching */
2803     if (!parser_next(parser)) {
2804         parseerror(parser, "expected semicolon or loop label");
2805         return false;
2806     }
2807
2808     if (!vec_size(loops)) {
2809         if (is_continue)
2810             parseerror(parser, "`continue` can only be used inside loops");
2811         else
2812             parseerror(parser, "`break` can only be used inside loops or switches");
2813     }
2814
2815     if (parser->tok == TOKEN_IDENT) {
2816         if (!OPTS_FLAG(LOOP_LABELS))
2817             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2818         i = vec_size(loops);
2819         while (i--) {
2820             if (loops[i] && !strcmp(loops[i], parser_tokval(parser)))
2821                 break;
2822             if (!i) {
2823                 parseerror(parser, "no such loop to %s: `%s`",
2824                            (is_continue ? "continue" : "break out of"),
2825                            parser_tokval(parser));
2826                 return false;
2827             }
2828             ++levels;
2829         }
2830         if (!parser_next(parser)) {
2831             parseerror(parser, "expected semicolon");
2832             return false;
2833         }
2834     }
2835
2836     if (parser->tok != ';') {
2837         parseerror(parser, "expected semicolon");
2838         return false;
2839     }
2840
2841     if (!parser_next(parser))
2842         parseerror(parser, "parse error");
2843
2844     *out = (ast_expression*)ast_breakcont_new(ctx, is_continue, levels);
2845     return true;
2846 }
2847
2848 /* returns true when it was a variable qualifier, false otherwise!
2849  * on error, cvq is set to CV_WRONG
2850  */
2851 static bool parse_qualifiers(parser_t *parser, bool with_local, int *cvq, bool *noref, bool *is_static, uint32_t *_flags, char **message)
2852 {
2853     bool had_const    = false;
2854     bool had_var      = false;
2855     bool had_noref    = false;
2856     bool had_attrib   = false;
2857     bool had_static   = false;
2858     uint32_t flags    = 0;
2859
2860     *cvq = CV_NONE;
2861     for (;;) {
2862         if (parser->tok == TOKEN_ATTRIBUTE_OPEN) {
2863             had_attrib = true;
2864             /* parse an attribute */
2865             if (!parser_next(parser)) {
2866                 parseerror(parser, "expected attribute after `[[`");
2867                 *cvq = CV_WRONG;
2868                 return false;
2869             }
2870             if (!strcmp(parser_tokval(parser), "noreturn")) {
2871                 flags |= AST_FLAG_NORETURN;
2872                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2873                     parseerror(parser, "`noreturn` attribute has no parameters, expected `]]`");
2874                     *cvq = CV_WRONG;
2875                     return false;
2876                 }
2877             }
2878             else if (!strcmp(parser_tokval(parser), "noref")) {
2879                 had_noref = true;
2880                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2881                     parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
2882                     *cvq = CV_WRONG;
2883                     return false;
2884                 }
2885             }
2886             else if (!strcmp(parser_tokval(parser), "inline")) {
2887                 flags |= AST_FLAG_INLINE;
2888                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2889                     parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
2890                     *cvq = CV_WRONG;
2891                     return false;
2892                 }
2893             }
2894
2895
2896             else if (!strcmp(parser_tokval(parser), "deprecated") && !(flags & AST_FLAG_DEPRECATED)) {
2897                 flags   |= AST_FLAG_DEPRECATED;
2898                 *message = NULL;
2899
2900                 if (!parser_next(parser)) {
2901                     parseerror(parser, "parse error in attribute");
2902                     goto argerr;
2903                 }
2904
2905                 if (parser->tok == '(') {
2906                     if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
2907                         parseerror(parser, "`deprecated` attribute missing parameter");
2908                         goto argerr;
2909                     }
2910
2911                     *message = util_strdup(parser_tokval(parser));
2912
2913                     if (!parser_next(parser)) {
2914                         parseerror(parser, "parse error in attribute");
2915                         goto argerr;
2916                     }
2917
2918                     if(parser->tok != ')') {
2919                         parseerror(parser, "`deprecated` attribute expected `)` after parameter");
2920                         goto argerr;
2921                     }
2922
2923                     if (!parser_next(parser)) {
2924                         parseerror(parser, "parse error in attribute");
2925                         goto argerr;
2926                     }
2927                 }
2928                 /* no message */
2929                 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2930                     parseerror(parser, "`deprecated` attribute expected `]]`");
2931
2932                     argerr: /* ugly */
2933                     if (*message) mem_d(*message);
2934                     *message = NULL;
2935                     *cvq     = CV_WRONG;
2936                     return false;
2937                 }
2938             }
2939             else
2940             {
2941                 /* Skip tokens until we hit a ]] */
2942                 (void)!parsewarning(parser, WARN_UNKNOWN_ATTRIBUTE, "unknown attribute starting with `%s`", parser_tokval(parser));
2943                 while (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2944                     if (!parser_next(parser)) {
2945                         parseerror(parser, "error inside attribute");
2946                         *cvq = CV_WRONG;
2947                         return false;
2948                     }
2949                 }
2950             }
2951         }
2952         else if (with_local && !strcmp(parser_tokval(parser), "static"))
2953             had_static = true;
2954         else if (!strcmp(parser_tokval(parser), "const"))
2955             had_const = true;
2956         else if (!strcmp(parser_tokval(parser), "var"))
2957             had_var = true;
2958         else if (with_local && !strcmp(parser_tokval(parser), "local"))
2959             had_var = true;
2960         else if (!strcmp(parser_tokval(parser), "noref"))
2961             had_noref = true;
2962         else if (!had_const && !had_var && !had_noref && !had_attrib && !had_static && !flags) {
2963             return false;
2964         }
2965         else
2966             break;
2967         if (!parser_next(parser))
2968             goto onerr;
2969     }
2970     if (had_const)
2971         *cvq = CV_CONST;
2972     else if (had_var)
2973         *cvq = CV_VAR;
2974     else
2975         *cvq = CV_NONE;
2976     *noref     = had_noref;
2977     *is_static = had_static;
2978     *_flags    = flags;
2979     return true;
2980 onerr:
2981     parseerror(parser, "parse error after variable qualifier");
2982     *cvq = CV_WRONG;
2983     return true;
2984 }
2985
2986 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out);
2987 static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **out)
2988 {
2989     bool rv;
2990     char *label = NULL;
2991
2992     /* skip the 'while' and get the body */
2993     if (!parser_next(parser)) {
2994         if (OPTS_FLAG(LOOP_LABELS))
2995             parseerror(parser, "expected loop label or 'switch' operand in parenthesis");
2996         else
2997             parseerror(parser, "expected 'switch' operand in parenthesis");
2998         return false;
2999     }
3000
3001     if (parser->tok == ':') {
3002         if (!OPTS_FLAG(LOOP_LABELS))
3003             parseerror(parser, "labeled loops not activated, try using -floop-labels");
3004         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
3005             parseerror(parser, "expected loop label");
3006             return false;
3007         }
3008         label = util_strdup(parser_tokval(parser));
3009         if (!parser_next(parser)) {
3010             mem_d(label);
3011             parseerror(parser, "expected 'switch' operand in parenthesis");
3012             return false;
3013         }
3014     }
3015
3016     if (parser->tok != '(') {
3017         parseerror(parser, "expected 'switch' operand in parenthesis");
3018         return false;
3019     }
3020
3021     vec_push(parser->breaks, label);
3022
3023     rv = parse_switch_go(parser, block, out);
3024     if (label)
3025         mem_d(label);
3026     if (vec_last(parser->breaks) != label) {
3027         parseerror(parser, "internal error: label stack corrupted");
3028         rv = false;
3029         ast_delete(*out);
3030         *out = NULL;
3031     }
3032     else {
3033         vec_pop(parser->breaks);
3034     }
3035     return rv;
3036 }
3037
3038 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out)
3039 {
3040     ast_expression *operand;
3041     ast_value      *opval;
3042     ast_value      *typevar;
3043     ast_switch     *switchnode;
3044     ast_switch_case swcase;
3045
3046     int  cvq;
3047     bool noref, is_static;
3048     uint32_t qflags = 0;
3049
3050     lex_ctx ctx = parser_ctx(parser);
3051
3052     (void)block; /* not touching */
3053     (void)opval;
3054
3055     /* parse into the expression */
3056     if (!parser_next(parser)) {
3057         parseerror(parser, "expected switch operand");
3058         return false;
3059     }
3060     /* parse the operand */
3061     operand = parse_expression_leave(parser, false, false, false);
3062     if (!operand)
3063         return false;
3064
3065     switchnode = ast_switch_new(ctx, operand);
3066
3067     /* closing paren */
3068     if (parser->tok != ')') {
3069         ast_delete(switchnode);
3070         parseerror(parser, "expected closing paren after 'switch' operand");
3071         return false;
3072     }
3073
3074     /* parse over the opening paren */
3075     if (!parser_next(parser) || parser->tok != '{') {
3076         ast_delete(switchnode);
3077         parseerror(parser, "expected list of cases");
3078         return false;
3079     }
3080
3081     if (!parser_next(parser)) {
3082         ast_delete(switchnode);
3083         parseerror(parser, "expected 'case' or 'default'");
3084         return false;
3085     }
3086
3087     /* new block; allow some variables to be declared here */
3088     parser_enterblock(parser);
3089     while (true) {
3090         typevar = NULL;
3091         if (parser->tok == TOKEN_IDENT)
3092             typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3093         if (typevar || parser->tok == TOKEN_TYPENAME) {
3094             if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false, 0, NULL)) {
3095                 ast_delete(switchnode);
3096                 return false;
3097             }
3098             continue;
3099         }
3100         if (parse_qualifiers(parser, true, &cvq, &noref, &is_static, &qflags, NULL))
3101         {
3102             if (cvq == CV_WRONG) {
3103                 ast_delete(switchnode);
3104                 return false;
3105             }
3106             if (!parse_variable(parser, block, false, cvq, NULL, noref, is_static, qflags, NULL)) {
3107                 ast_delete(switchnode);
3108                 return false;
3109             }
3110             continue;
3111         }
3112         break;
3113     }
3114
3115     /* case list! */
3116     while (parser->tok != '}') {
3117         ast_block *caseblock;
3118
3119         if (!strcmp(parser_tokval(parser), "case")) {
3120             if (!parser_next(parser)) {
3121                 ast_delete(switchnode);
3122                 parseerror(parser, "expected expression for case");
3123                 return false;
3124             }
3125             swcase.value = parse_expression_leave(parser, false, false, false);
3126             if (!swcase.value) {
3127                 ast_delete(switchnode);
3128                 parseerror(parser, "expected expression for case");
3129                 return false;
3130             }
3131             if (!OPTS_FLAG(RELAXED_SWITCH)) {
3132                 if (!ast_istype(swcase.value, ast_value)) { /* || ((ast_value*)swcase.value)->cvq != CV_CONST) { */
3133                     parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
3134                     ast_unref(operand);
3135                     return false;
3136                 }
3137             }
3138         }
3139         else if (!strcmp(parser_tokval(parser), "default")) {
3140             swcase.value = NULL;
3141             if (!parser_next(parser)) {
3142                 ast_delete(switchnode);
3143                 parseerror(parser, "expected colon");
3144                 return false;
3145             }
3146         }
3147         else {
3148             ast_delete(switchnode);
3149             parseerror(parser, "expected 'case' or 'default'");
3150             return false;
3151         }
3152
3153         /* Now the colon and body */
3154         if (parser->tok != ':') {
3155             if (swcase.value) ast_unref(swcase.value);
3156             ast_delete(switchnode);
3157             parseerror(parser, "expected colon");
3158             return false;
3159         }
3160
3161         if (!parser_next(parser)) {
3162             if (swcase.value) ast_unref(swcase.value);
3163             ast_delete(switchnode);
3164             parseerror(parser, "expected statements or case");
3165             return false;
3166         }
3167         caseblock = ast_block_new(parser_ctx(parser));
3168         if (!caseblock) {
3169             if (swcase.value) ast_unref(swcase.value);
3170             ast_delete(switchnode);
3171             return false;
3172         }
3173         swcase.code = (ast_expression*)caseblock;
3174         vec_push(switchnode->cases, swcase);
3175         while (true) {
3176             ast_expression *expr;
3177             if (parser->tok == '}')
3178                 break;
3179             if (parser->tok == TOKEN_KEYWORD) {
3180                 if (!strcmp(parser_tokval(parser), "case") ||
3181                     !strcmp(parser_tokval(parser), "default"))
3182                 {
3183                     break;
3184                 }
3185             }
3186             if (!parse_statement(parser, caseblock, &expr, true)) {
3187                 ast_delete(switchnode);
3188                 return false;
3189             }
3190             if (!expr)
3191                 continue;
3192             if (!ast_block_add_expr(caseblock, expr)) {
3193                 ast_delete(switchnode);
3194                 return false;
3195             }
3196         }
3197     }
3198
3199     parser_leaveblock(parser);
3200
3201     /* closing paren */
3202     if (parser->tok != '}') {
3203         ast_delete(switchnode);
3204         parseerror(parser, "expected closing paren of case list");
3205         return false;
3206     }
3207     if (!parser_next(parser)) {
3208         ast_delete(switchnode);
3209         parseerror(parser, "parse error after switch");
3210         return false;
3211     }
3212     *out = (ast_expression*)switchnode;
3213     return true;
3214 }
3215
3216 /* parse computed goto sides */
3217 static ast_expression *parse_goto_computed(parser_t *parser, ast_expression **side) {
3218     ast_expression *on_true;
3219     ast_expression *on_false;
3220     ast_expression *cond;
3221
3222     if (!*side)
3223         return NULL;
3224
3225     if (ast_istype(*side, ast_ternary)) {
3226         ast_ternary *tern = (ast_ternary*)*side;
3227         on_true  = parse_goto_computed(parser, &tern->on_true);
3228         on_false = parse_goto_computed(parser, &tern->on_false);
3229
3230         if (!on_true || !on_false) {
3231             parseerror(parser, "expected label or expression in ternary");
3232             if (on_true) ast_unref(on_true);
3233             if (on_false) ast_unref(on_false);
3234             return NULL;
3235         }
3236
3237         cond = tern->cond;
3238         tern->cond = NULL;
3239         ast_delete(tern);
3240         *side = NULL;
3241         return (ast_expression*)ast_ifthen_new(parser_ctx(parser), cond, on_true, on_false);
3242     } else if (ast_istype(*side, ast_label)) {
3243         ast_goto *gt = ast_goto_new(parser_ctx(parser), ((ast_label*)*side)->name);
3244         ast_goto_set_label(gt, ((ast_label*)*side));
3245         *side = NULL;
3246         return (ast_expression*)gt;
3247     }
3248     return NULL;
3249 }
3250
3251 static bool parse_goto(parser_t *parser, ast_expression **out)
3252 {
3253     ast_goto       *gt = NULL;
3254     ast_expression *lbl;
3255
3256     if (!parser_next(parser))
3257         return false;
3258
3259     if (parser->tok != TOKEN_IDENT) {
3260         ast_expression *expression;
3261
3262         /* could be an expression i.e computed goto :-) */
3263         if (parser->tok != '(') {
3264             parseerror(parser, "expected label name after `goto`");
3265             return false;
3266         }
3267
3268         /* failed to parse expression for goto */
3269         if (!(expression = parse_expression(parser, false, true)) ||
3270             !(*out = parse_goto_computed(parser, &expression))) {
3271             parseerror(parser, "invalid goto expression");
3272             ast_unref(expression);
3273             return false;
3274         }
3275
3276         return true;
3277     }
3278
3279     /* not computed goto */
3280     gt = ast_goto_new(parser_ctx(parser), parser_tokval(parser));
3281     lbl = parser_find_label(parser, gt->name);
3282     if (lbl) {
3283         if (!ast_istype(lbl, ast_label)) {
3284             parseerror(parser, "internal error: label is not an ast_label");
3285             ast_delete(gt);
3286             return false;
3287         }
3288         ast_goto_set_label(gt, (ast_label*)lbl);
3289     }
3290     else
3291         vec_push(parser->gotos, gt);
3292
3293     if (!parser_next(parser) || parser->tok != ';') {
3294         parseerror(parser, "semicolon expected after goto label");
3295         return false;
3296     }
3297     if (!parser_next(parser)) {
3298         parseerror(parser, "parse error after goto");
3299         return false;
3300     }
3301
3302     *out = (ast_expression*)gt;
3303     return true;
3304 }
3305
3306 static bool parse_skipwhite(parser_t *parser)
3307 {
3308     do {
3309         if (!parser_next(parser))
3310             return false;
3311     } while (parser->tok == TOKEN_WHITE && parser->tok < TOKEN_ERROR);
3312     return parser->tok < TOKEN_ERROR;
3313 }
3314
3315 static bool parse_eol(parser_t *parser)
3316 {
3317     if (!parse_skipwhite(parser))
3318         return false;
3319     return parser->tok == TOKEN_EOL;
3320 }
3321
3322 static bool parse_pragma_do(parser_t *parser)
3323 {
3324     if (!parser_next(parser) ||
3325         parser->tok != TOKEN_IDENT ||
3326         strcmp(parser_tokval(parser), "pragma"))
3327     {
3328         parseerror(parser, "expected `pragma` keyword after `#`, got `%s`", parser_tokval(parser));
3329         return false;
3330     }
3331     if (!parse_skipwhite(parser) || parser->tok != TOKEN_IDENT) {
3332         parseerror(parser, "expected pragma, got `%s`", parser_tokval(parser));
3333         return false;
3334     }
3335
3336     if (!strcmp(parser_tokval(parser), "noref")) {
3337         if (!parse_skipwhite(parser) || parser->tok != TOKEN_INTCONST) {
3338             parseerror(parser, "`noref` pragma requires an argument: 0 or 1");
3339             return false;
3340         }
3341         parser->noref = !!parser_token(parser)->constval.i;
3342         if (!parse_eol(parser)) {
3343             parseerror(parser, "parse error after `noref` pragma");
3344             return false;
3345         }
3346     }
3347     else
3348     {
3349         (void)!parsewarning(parser, WARN_UNKNOWN_PRAGMAS, "ignoring #pragma %s", parser_tokval(parser));
3350         return false;
3351     }
3352
3353     return true;
3354 }
3355
3356 static bool parse_pragma(parser_t *parser)
3357 {
3358     bool rv;
3359     parser->lex->flags.preprocessing = true;
3360     parser->lex->flags.mergelines = true;
3361     rv = parse_pragma_do(parser);
3362     if (parser->tok != TOKEN_EOL) {
3363         parseerror(parser, "junk after pragma");
3364         rv = false;
3365     }
3366     parser->lex->flags.preprocessing = false;
3367     parser->lex->flags.mergelines = false;
3368     if (!parser_next(parser)) {
3369         parseerror(parser, "parse error after pragma");
3370         rv = false;
3371     }
3372     return rv;
3373 }
3374
3375 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
3376 {
3377     bool       noref, is_static;
3378     int        cvq     = CV_NONE;
3379     uint32_t   qflags  = 0;
3380     ast_value *typevar = NULL;
3381     char      *vstring = NULL;
3382
3383     *out = NULL;
3384
3385     if (parser->tok == TOKEN_IDENT)
3386         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3387
3388     if (typevar || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
3389     {
3390         /* local variable */
3391         if (!block) {
3392             parseerror(parser, "cannot declare a variable from here");
3393             return false;
3394         }
3395         if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3396             if (parsewarning(parser, WARN_EXTENSIONS, "missing 'local' keyword when declaring a local variable"))
3397                 return false;
3398         }
3399         if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false, 0, NULL))
3400             return false;
3401         return true;
3402     }
3403     else if (parse_qualifiers(parser, !!block, &cvq, &noref, &is_static, &qflags, &vstring))
3404     {
3405         if (cvq == CV_WRONG)
3406             return false;
3407         return parse_variable(parser, block, true, cvq, NULL, noref, is_static, qflags, vstring);
3408     }
3409     else if (parser->tok == TOKEN_KEYWORD)
3410     {
3411         if (!strcmp(parser_tokval(parser), "__builtin_debug_printtype"))
3412         {
3413             char ty[1024];
3414             ast_value *tdef;
3415
3416             if (!parser_next(parser)) {
3417                 parseerror(parser, "parse error after __builtin_debug_printtype");
3418                 return false;
3419             }
3420
3421             if (parser->tok == TOKEN_IDENT && (tdef = parser_find_typedef(parser, parser_tokval(parser), 0)))
3422             {
3423                 ast_type_to_string((ast_expression*)tdef, ty, sizeof(ty));
3424                 con_out("__builtin_debug_printtype: `%s`=`%s`\n", tdef->name, ty);
3425                 if (!parser_next(parser)) {
3426                     parseerror(parser, "parse error after __builtin_debug_printtype typename argument");
3427                     return false;
3428                 }
3429             }
3430             else
3431             {
3432                 if (!parse_statement(parser, block, out, allow_cases))
3433                     return false;
3434                 if (!*out)
3435                     con_out("__builtin_debug_printtype: got no output node\n");
3436                 else
3437                 {
3438                     ast_type_to_string(*out, ty, sizeof(ty));
3439                     con_out("__builtin_debug_printtype: `%s`\n", ty);
3440                 }
3441             }
3442             return true;
3443         }
3444         else if (!strcmp(parser_tokval(parser), "return"))
3445         {
3446             return parse_return(parser, block, out);
3447         }
3448         else if (!strcmp(parser_tokval(parser), "if"))
3449         {
3450             return parse_if(parser, block, out);
3451         }
3452         else if (!strcmp(parser_tokval(parser), "while"))
3453         {
3454             return parse_while(parser, block, out);
3455         }
3456         else if (!strcmp(parser_tokval(parser), "do"))
3457         {
3458             return parse_dowhile(parser, block, out);
3459         }
3460         else if (!strcmp(parser_tokval(parser), "for"))
3461         {
3462             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3463                 if (parsewarning(parser, WARN_EXTENSIONS, "for loops are not recognized in the original Quake C standard, to enable try an alternate standard --std=?"))
3464                     return false;
3465             }
3466             return parse_for(parser, block, out);
3467         }
3468         else if (!strcmp(parser_tokval(parser), "break"))
3469         {
3470             return parse_break_continue(parser, block, out, false);
3471         }
3472         else if (!strcmp(parser_tokval(parser), "continue"))
3473         {
3474             return parse_break_continue(parser, block, out, true);
3475         }
3476         else if (!strcmp(parser_tokval(parser), "switch"))
3477         {
3478             return parse_switch(parser, block, out);
3479         }
3480         else if (!strcmp(parser_tokval(parser), "case") ||
3481                  !strcmp(parser_tokval(parser), "default"))
3482         {
3483             if (!allow_cases) {
3484                 parseerror(parser, "unexpected 'case' label");
3485                 return false;
3486             }
3487             return true;
3488         }
3489         else if (!strcmp(parser_tokval(parser), "goto"))
3490         {
3491             return parse_goto(parser, out);
3492         }