]> git.xonotic.org Git - xonotic/gmqcc.git/blob - parser.c
Merge branch 'master' into cooking
[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 #include <math.h>
27
28 #include "gmqcc.h"
29 #include "lexer.h"
30 #include "ast.h"
31
32 /* beginning of locals */
33 #define PARSER_HT_LOCALS  2
34
35 #define PARSER_HT_SIZE    128
36 #define TYPEDEF_HT_SIZE   16
37
38 typedef struct parser_s {
39     lex_file *lex;
40     int      tok;
41
42     ast_expression **globals;
43     ast_expression **fields;
44     ast_function **functions;
45     ast_value    **imm_float;
46     ast_value    **imm_string;
47     ast_value    **imm_vector;
48     size_t         translated;
49
50     ht ht_imm_string;
51
52     /* must be deleted first, they reference immediates and values */
53     ast_value    **accessors;
54
55     ast_value *imm_float_zero;
56     ast_value *imm_float_one;
57     ast_value *imm_float_neg_one;
58
59     ast_value *imm_vector_zero;
60
61     ast_value *nil;
62     ast_value *reserved_version;
63
64     size_t crc_globals;
65     size_t crc_fields;
66
67     ast_function *function;
68     ht            aliases;
69
70     /* All the labels the function defined...
71      * Should they be in ast_function instead?
72      */
73     ast_label  **labels;
74     ast_goto   **gotos;
75     const char **breaks;
76     const char **continues;
77
78     /* A list of hashtables for each scope */
79     ht *variables;
80     ht htfields;
81     ht htglobals;
82     ht *typedefs;
83
84     /* same as above but for the spelling corrector */
85     correct_trie_t  **correct_variables;
86     size_t         ***correct_variables_score;  /* vector of vector of size_t* */
87
88     /* not to be used directly, we use the hash table */
89     ast_expression **_locals;
90     size_t          *_blocklocals;
91     ast_value      **_typedefs;
92     size_t          *_blocktypedefs;
93     lex_ctx         *_block_ctx;
94
95     /* we store the '=' operator info */
96     const oper_info *assign_op;
97
98     /* magic values */
99     ast_value *const_vec[3];
100
101     /* pragma flags */
102     bool noref;
103
104     /* collected information */
105     size_t     max_param_count;
106
107     /* code generator */
108     code_t     *code;
109 } parser_t;
110
111 static ast_expression * const intrinsic_debug_typestring = (ast_expression*)0x1;
112
113 static void parser_enterblock(parser_t *parser);
114 static bool parser_leaveblock(parser_t *parser);
115 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e);
116 static void parser_addglobal(parser_t *parser, const char *name, ast_expression *e);
117 static bool parse_typedef(parser_t *parser);
118 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);
119 static ast_block* parse_block(parser_t *parser);
120 static bool parse_block_into(parser_t *parser, ast_block *block);
121 static bool parse_statement_or_block(parser_t *parser, ast_expression **out);
122 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases);
123 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma, bool truthvalue, bool with_labels);
124 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma, bool with_labels);
125 static ast_value* parser_create_array_setter_proto(parser_t *parser, ast_value *array, const char *funcname);
126 static ast_value* parser_create_array_getter_proto(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname);
127 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef);
128
129 static void parseerror(parser_t *parser, const char *fmt, ...)
130 {
131     va_list ap;
132     va_start(ap, fmt);
133     vcompile_error(parser->lex->tok.ctx, fmt, ap);
134     va_end(ap);
135 }
136
137 /* returns true if it counts as an error */
138 static bool GMQCC_WARN parsewarning(parser_t *parser, int warntype, const char *fmt, ...)
139 {
140     bool    r;
141     va_list ap;
142     va_start(ap, fmt);
143     r = vcompile_warning(parser->lex->tok.ctx, warntype, fmt, ap);
144     va_end(ap);
145     return r;
146 }
147
148 /**********************************************************************
149  * some maths used for constant folding
150  */
151
152 vector vec3_add(vector a, vector b)
153 {
154     vector out;
155     out.x = a.x + b.x;
156     out.y = a.y + b.y;
157     out.z = a.z + b.z;
158     return out;
159 }
160
161 vector vec3_sub(vector a, vector b)
162 {
163     vector out;
164     out.x = a.x - b.x;
165     out.y = a.y - b.y;
166     out.z = a.z - b.z;
167     return out;
168 }
169
170 qcfloat vec3_mulvv(vector a, vector b)
171 {
172     return (a.x * b.x + a.y * b.y + a.z * b.z);
173 }
174
175 vector vec3_mulvf(vector a, float b)
176 {
177     vector out;
178     out.x = a.x * b;
179     out.y = a.y * b;
180     out.z = a.z * b;
181     return out;
182 }
183
184 /**********************************************************************
185  * parsing
186  */
187
188 static bool parser_next(parser_t *parser)
189 {
190     /* lex_do kills the previous token */
191     parser->tok = lex_do(parser->lex);
192     if (parser->tok == TOKEN_EOF)
193         return true;
194     if (parser->tok >= TOKEN_ERROR) {
195         parseerror(parser, "lex error");
196         return false;
197     }
198     return true;
199 }
200
201 #define parser_tokval(p) ((p)->lex->tok.value)
202 #define parser_token(p)  (&((p)->lex->tok))
203 #define parser_ctx(p)    ((p)->lex->tok.ctx)
204
205 static ast_value* parser_const_float(parser_t *parser, double d)
206 {
207     size_t i;
208     ast_value *out;
209     lex_ctx ctx;
210     for (i = 0; i < vec_size(parser->imm_float); ++i) {
211         const double compare = parser->imm_float[i]->constval.vfloat;
212         if (memcmp((const void*)&compare, (const void *)&d, sizeof(double)) == 0)
213             return parser->imm_float[i];
214     }
215     if (parser->lex)
216         ctx = parser_ctx(parser);
217     else {
218         memset(&ctx, 0, sizeof(ctx));
219     }
220     out = ast_value_new(ctx, "#IMMEDIATE", TYPE_FLOAT);
221     out->cvq      = CV_CONST;
222     out->hasvalue = true;
223     out->isimm    = true;
224     out->constval.vfloat = d;
225     vec_push(parser->imm_float, out);
226     return out;
227 }
228
229 static ast_value* parser_const_float_0(parser_t *parser)
230 {
231     if (!parser->imm_float_zero)
232         parser->imm_float_zero = parser_const_float(parser, 0);
233     return parser->imm_float_zero;
234 }
235
236 static ast_value* parser_const_float_neg1(parser_t *parser) {
237     if (!parser->imm_float_neg_one)
238         parser->imm_float_neg_one = parser_const_float(parser, -1);
239     return parser->imm_float_neg_one;
240 }
241
242 static ast_value* parser_const_float_1(parser_t *parser)
243 {
244     if (!parser->imm_float_one)
245         parser->imm_float_one = parser_const_float(parser, 1);
246     return parser->imm_float_one;
247 }
248
249 static char *parser_strdup(const char *str)
250 {
251     if (str && !*str) {
252         /* actually dup empty strings */
253         char *out = (char*)mem_a(1);
254         *out = 0;
255         return out;
256     }
257     return util_strdup(str);
258 }
259
260 static ast_value* parser_const_string(parser_t *parser, const char *str, bool dotranslate)
261 {
262     size_t hash = util_hthash(parser->ht_imm_string, str);
263     ast_value *out;
264     if ( (out = (ast_value*)util_htgeth(parser->ht_imm_string, str, hash)) ) {
265         if (dotranslate && out->name[0] == '#') {
266             char name[32];
267             util_snprintf(name, sizeof(name), "dotranslate_%lu", (unsigned long)(parser->translated++));
268             ast_value_set_name(out, name);
269             out->expression.flags |= AST_FLAG_INCLUDE_DEF;
270         }
271         return out;
272     }
273     /*
274     for (i = 0; i < vec_size(parser->imm_string); ++i) {
275         if (!strcmp(parser->imm_string[i]->constval.vstring, str))
276             return parser->imm_string[i];
277     }
278     */
279     if (dotranslate) {
280         char name[32];
281         util_snprintf(name, sizeof(name), "dotranslate_%lu", (unsigned long)(parser->translated++));
282         out = ast_value_new(parser_ctx(parser), name, TYPE_STRING);
283     } else
284         out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_STRING);
285     out->cvq      = CV_CONST;
286     out->hasvalue = true;
287     out->isimm    = true;
288     out->expression.flags |= AST_FLAG_INCLUDE_DEF;
289     out->constval.vstring = parser_strdup(str);
290     vec_push(parser->imm_string, out);
291     util_htseth(parser->ht_imm_string, str, hash, out);
292     return out;
293 }
294
295 static ast_value* parser_const_vector(parser_t *parser, vector v)
296 {
297     size_t i;
298     ast_value *out;
299     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
300         if (!memcmp(&parser->imm_vector[i]->constval.vvec, &v, sizeof(v)))
301             return parser->imm_vector[i];
302     }
303     out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_VECTOR);
304     out->cvq      = CV_CONST;
305     out->hasvalue = true;
306     out->isimm    = true;
307     out->constval.vvec = v;
308     vec_push(parser->imm_vector, out);
309     return out;
310 }
311
312 static ast_value* parser_const_vector_f(parser_t *parser, float x, float y, float z)
313 {
314     vector v;
315     v.x = x;
316     v.y = y;
317     v.z = z;
318     return parser_const_vector(parser, v);
319 }
320
321 static ast_value* parser_const_vector_0(parser_t *parser)
322 {
323     if (!parser->imm_vector_zero)
324         parser->imm_vector_zero = parser_const_vector_f(parser, 0, 0, 0);
325     return parser->imm_vector_zero;
326 }
327
328 static ast_expression* parser_find_field(parser_t *parser, const char *name)
329 {
330     return ( ast_expression*)util_htget(parser->htfields, name);
331 }
332
333 static ast_expression* parser_find_label(parser_t *parser, const char *name)
334 {
335     size_t i;
336     for(i = 0; i < vec_size(parser->labels); i++)
337         if (!strcmp(parser->labels[i]->name, name))
338             return (ast_expression*)parser->labels[i];
339     return NULL;
340 }
341
342 static ast_expression* parser_find_global(parser_t *parser, const char *name)
343 {
344     ast_expression *var = (ast_expression*)util_htget(parser->aliases, parser_tokval(parser));
345     if (var)
346         return var;
347     return (ast_expression*)util_htget(parser->htglobals, name);
348 }
349
350 static ast_expression* parser_find_param(parser_t *parser, const char *name)
351 {
352     size_t i;
353     ast_value *fun;
354     if (!parser->function)
355         return NULL;
356     fun = parser->function->vtype;
357     for (i = 0; i < vec_size(fun->expression.params); ++i) {
358         if (!strcmp(fun->expression.params[i]->name, name))
359             return (ast_expression*)(fun->expression.params[i]);
360     }
361     return NULL;
362 }
363
364 static ast_expression* parser_find_local(parser_t *parser, const char *name, size_t upto, bool *isparam)
365 {
366     size_t          i, hash;
367     ast_expression *e;
368
369     hash = util_hthash(parser->htglobals, name);
370
371     *isparam = false;
372     for (i = vec_size(parser->variables); i > upto;) {
373         --i;
374         if ( (e = (ast_expression*)util_htgeth(parser->variables[i], name, hash)) )
375             return e;
376     }
377     *isparam = true;
378     return parser_find_param(parser, name);
379 }
380
381 static ast_expression* parser_find_var(parser_t *parser, const char *name)
382 {
383     bool dummy;
384     ast_expression *v;
385     v         = parser_find_local(parser, name, 0, &dummy);
386     if (!v) v = parser_find_global(parser, name);
387     return v;
388 }
389
390 static ast_value* parser_find_typedef(parser_t *parser, const char *name, size_t upto)
391 {
392     size_t     i, hash;
393     ast_value *e;
394     hash = util_hthash(parser->typedefs[0], name);
395
396     for (i = vec_size(parser->typedefs); i > upto;) {
397         --i;
398         if ( (e = (ast_value*)util_htgeth(parser->typedefs[i], name, hash)) )
399             return e;
400     }
401     return NULL;
402 }
403
404 /* include intrinsics */
405 #include "intrin.h"
406
407 typedef struct
408 {
409     size_t etype; /* 0 = expression, others are operators */
410     bool            isparen;
411     size_t          off;
412     ast_expression *out;
413     ast_block      *block; /* for commas and function calls */
414     lex_ctx ctx;
415 } sy_elem;
416
417 enum {
418     PAREN_EXPR,
419     PAREN_FUNC,
420     PAREN_INDEX,
421     PAREN_TERNARY1,
422     PAREN_TERNARY2
423 };
424 typedef struct
425 {
426     sy_elem        *out;
427     sy_elem        *ops;
428     size_t         *argc;
429     unsigned int   *paren;
430 } shunt;
431
432 static sy_elem syexp(lex_ctx ctx, ast_expression *v) {
433     sy_elem e;
434     e.etype = 0;
435     e.off   = 0;
436     e.out   = v;
437     e.block = NULL;
438     e.ctx   = ctx;
439     e.isparen = false;
440     return e;
441 }
442
443 static sy_elem syblock(lex_ctx ctx, ast_block *v) {
444     sy_elem e;
445     e.etype = 0;
446     e.off   = 0;
447     e.out   = (ast_expression*)v;
448     e.block = v;
449     e.ctx   = ctx;
450     e.isparen = false;
451     return e;
452 }
453
454 static sy_elem syop(lex_ctx ctx, const oper_info *op) {
455     sy_elem e;
456     e.etype = 1 + (op - operators);
457     e.off   = 0;
458     e.out   = NULL;
459     e.block = NULL;
460     e.ctx   = ctx;
461     e.isparen = false;
462     return e;
463 }
464
465 static sy_elem syparen(lex_ctx ctx, size_t off) {
466     sy_elem e;
467     e.etype = 0;
468     e.off   = off;
469     e.out   = NULL;
470     e.block = NULL;
471     e.ctx   = ctx;
472     e.isparen = true;
473     return e;
474 }
475
476 /* With regular precedence rules, ent.foo[n] is the same as (ent.foo)[n],
477  * so we need to rotate it to become ent.(foo[n]).
478  */
479 static bool rotate_entfield_array_index_nodes(ast_expression **out)
480 {
481     ast_array_index *index, *oldindex;
482     ast_entfield    *entfield;
483
484     ast_value       *field;
485     ast_expression  *sub;
486     ast_expression  *entity;
487
488     lex_ctx ctx = ast_ctx(*out);
489
490     if (!ast_istype(*out, ast_array_index))
491         return false;
492     index = (ast_array_index*)*out;
493
494     if (!ast_istype(index->array, ast_entfield))
495         return false;
496     entfield = (ast_entfield*)index->array;
497
498     if (!ast_istype(entfield->field, ast_value))
499         return false;
500     field = (ast_value*)entfield->field;
501
502     sub    = index->index;
503     entity = entfield->entity;
504
505     oldindex = index;
506
507     index = ast_array_index_new(ctx, (ast_expression*)field, sub);
508     entfield = ast_entfield_new(ctx, entity, (ast_expression*)index);
509     *out = (ast_expression*)entfield;
510
511     oldindex->array = NULL;
512     oldindex->index = NULL;
513     ast_delete(oldindex);
514
515     return true;
516 }
517
518 static bool immediate_is_true(lex_ctx ctx, ast_value *v)
519 {
520     switch (v->expression.vtype) {
521         case TYPE_FLOAT:
522             return !!v->constval.vfloat;
523         case TYPE_INTEGER:
524             return !!v->constval.vint;
525         case TYPE_VECTOR:
526             if (OPTS_FLAG(CORRECT_LOGIC))
527                 return v->constval.vvec.x &&
528                        v->constval.vvec.y &&
529                        v->constval.vvec.z;
530             else
531                 return !!(v->constval.vvec.x);
532         case TYPE_STRING:
533             if (!v->constval.vstring)
534                 return false;
535             if (v->constval.vstring && OPTS_FLAG(TRUE_EMPTY_STRINGS))
536                 return true;
537             return !!v->constval.vstring[0];
538         default:
539             compile_error(ctx, "internal error: immediate_is_true on invalid type");
540             return !!v->constval.vfunc;
541     }
542 }
543
544 static bool parser_sy_apply_operator(parser_t *parser, shunt *sy)
545 {
546     const oper_info *op;
547     lex_ctx ctx;
548     ast_expression *out = NULL;
549     ast_expression *exprs[3];
550     ast_block      *blocks[3];
551     ast_value      *asvalue[3];
552     ast_binstore   *asbinstore;
553     size_t i, assignop, addop, subop;
554     qcint  generated_op = 0;
555
556     char ty1[1024];
557     char ty2[1024];
558
559     if (!vec_size(sy->ops)) {
560         parseerror(parser, "internal error: missing operator");
561         return false;
562     }
563
564     if (vec_last(sy->ops).isparen) {
565         parseerror(parser, "unmatched parenthesis");
566         return false;
567     }
568
569     op = &operators[vec_last(sy->ops).etype - 1];
570     ctx = vec_last(sy->ops).ctx;
571
572     if (vec_size(sy->out) < op->operands) {
573         compile_error(ctx, "internal error: not enough operands: %i (operator %s (%i))", vec_size(sy->out),
574                       op->op, (int)op->id);
575         return false;
576     }
577
578     vec_shrinkby(sy->ops, 1);
579
580     /* op(:?) has no input and no output */
581     if (!op->operands)
582         return true;
583
584     vec_shrinkby(sy->out, op->operands);
585     for (i = 0; i < op->operands; ++i) {
586         exprs[i]  = sy->out[vec_size(sy->out)+i].out;
587         blocks[i] = sy->out[vec_size(sy->out)+i].block;
588         asvalue[i] = (ast_value*)exprs[i];
589
590         if (exprs[i]->vtype == TYPE_NOEXPR &&
591             !(i != 0 && op->id == opid2('?',':')) &&
592             !(i == 1 && op->id == opid1('.')))
593         {
594             if (ast_istype(exprs[i], ast_label))
595                 compile_error(ast_ctx(exprs[i]), "expected expression, got an unknown identifier");
596             else
597                 compile_error(ast_ctx(exprs[i]), "not an expression");
598             (void)!compile_warning(ast_ctx(exprs[i]), WARN_DEBUG, "expression %u\n", (unsigned int)i);
599         }
600     }
601
602     if (blocks[0] && !vec_size(blocks[0]->exprs) && op->id != opid1(',')) {
603         compile_error(ctx, "internal error: operator cannot be applied on empty blocks");
604         return false;
605     }
606
607 #define NotSameType(T) \
608              (exprs[0]->vtype != exprs[1]->vtype || \
609               exprs[0]->vtype != T)
610 #define CanConstFold1(A) \
611              (ast_istype((A), ast_value) && ((ast_value*)(A))->hasvalue && (((ast_value*)(A))->cvq == CV_CONST) &&\
612               (A)->vtype != TYPE_FUNCTION)
613 #define CanConstFold(A, B) \
614              (CanConstFold1(A) && CanConstFold1(B))
615 #define ConstV(i) (asvalue[(i)]->constval.vvec)
616 #define ConstF(i) (asvalue[(i)]->constval.vfloat)
617 #define ConstS(i) (asvalue[(i)]->constval.vstring)
618     switch (op->id)
619     {
620         default:
621             compile_error(ctx, "internal error: unhandled operator: %s (%i)", op->op, (int)op->id);
622             return false;
623
624         case opid1('.'):
625             if (exprs[0]->vtype == TYPE_VECTOR &&
626                 exprs[1]->vtype == TYPE_NOEXPR)
627             {
628                 if      (exprs[1] == (ast_expression*)parser->const_vec[0])
629                     out = (ast_expression*)ast_member_new(ctx, exprs[0], 0, NULL);
630                 else if (exprs[1] == (ast_expression*)parser->const_vec[1])
631                     out = (ast_expression*)ast_member_new(ctx, exprs[0], 1, NULL);
632                 else if (exprs[1] == (ast_expression*)parser->const_vec[2])
633                     out = (ast_expression*)ast_member_new(ctx, exprs[0], 2, NULL);
634                 else {
635                     compile_error(ctx, "access to invalid vector component");
636                     return false;
637                 }
638             }
639             else if (exprs[0]->vtype == TYPE_ENTITY) {
640                 if (exprs[1]->vtype != TYPE_FIELD) {
641                     compile_error(ast_ctx(exprs[1]), "type error: right hand of member-operand should be an entity-field");
642                     return false;
643                 }
644                 out = (ast_expression*)ast_entfield_new(ctx, exprs[0], exprs[1]);
645             }
646             else if (exprs[0]->vtype == TYPE_VECTOR) {
647                 compile_error(ast_ctx(exprs[1]), "vectors cannot be accessed this way");
648                 return false;
649             }
650             else {
651                 compile_error(ast_ctx(exprs[1]), "type error: member-of operator on something that is not an entity or vector");
652                 return false;
653             }
654             break;
655
656         case opid1('['):
657             if (exprs[0]->vtype != TYPE_ARRAY &&
658                 !(exprs[0]->vtype == TYPE_FIELD &&
659                   exprs[0]->next->vtype == TYPE_ARRAY))
660             {
661                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
662                 compile_error(ast_ctx(exprs[0]), "cannot index value of type %s", ty1);
663                 return false;
664             }
665             if (exprs[1]->vtype != TYPE_FLOAT) {
666                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
667                 compile_error(ast_ctx(exprs[1]), "index must be of type float, not %s", ty1);
668                 return false;
669             }
670             out = (ast_expression*)ast_array_index_new(ctx, exprs[0], exprs[1]);
671             if (rotate_entfield_array_index_nodes(&out))
672             {
673 #if 0
674                 /* This is not broken in fteqcc anymore */
675                 if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_GMQCC) {
676                     /* this error doesn't need to make us bail out */
677                     (void)!parsewarning(parser, WARN_EXTENSIONS,
678                                         "accessing array-field members of an entity without parenthesis\n"
679                                         " -> this is an extension from -std=gmqcc");
680                 }
681 #endif
682             }
683             break;
684
685         case opid1(','):
686             if (vec_size(sy->paren) && vec_last(sy->paren) == PAREN_FUNC) {
687                 vec_push(sy->out, syexp(ctx, exprs[0]));
688                 vec_push(sy->out, syexp(ctx, exprs[1]));
689                 vec_last(sy->argc)++;
690                 return true;
691             }
692             if (blocks[0]) {
693                 if (!ast_block_add_expr(blocks[0], exprs[1]))
694                     return false;
695             } else {
696                 blocks[0] = ast_block_new(ctx);
697                 if (!ast_block_add_expr(blocks[0], exprs[0]) ||
698                     !ast_block_add_expr(blocks[0], exprs[1]))
699                 {
700                     return false;
701                 }
702             }
703             ast_block_set_type(blocks[0], exprs[1]);
704
705             vec_push(sy->out, syblock(ctx, blocks[0]));
706             return true;
707
708         case opid2('+','P'):
709             out = exprs[0];
710             break;
711         case opid2('-','P'):
712             switch (exprs[0]->vtype) {
713                 case TYPE_FLOAT:
714                     if (CanConstFold1(exprs[0]))
715                         out = (ast_expression*)parser_const_float(parser, -ConstF(0));
716                     else
717                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_F,
718                                                               (ast_expression*)parser_const_float_0(parser),
719                                                               exprs[0]);
720                     break;
721                 case TYPE_VECTOR:
722                     if (CanConstFold1(exprs[0]))
723                         out = (ast_expression*)parser_const_vector_f(parser,
724                             -ConstV(0).x, -ConstV(0).y, -ConstV(0).z);
725                     else
726                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_V,
727                                                               (ast_expression*)parser_const_vector_0(parser),
728                                                               exprs[0]);
729                     break;
730                 default:
731                 compile_error(ctx, "invalid types used in expression: cannot negate type %s",
732                               type_name[exprs[0]->vtype]);
733                 return false;
734             }
735             break;
736
737         case opid2('!','P'):
738             switch (exprs[0]->vtype) {
739                 case TYPE_FLOAT:
740                     if (CanConstFold1(exprs[0]))
741                         out = (ast_expression*)parser_const_float(parser, !ConstF(0));
742                     else
743                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, exprs[0]);
744                     break;
745                 case TYPE_VECTOR:
746                     if (CanConstFold1(exprs[0]))
747                         out = (ast_expression*)parser_const_float(parser,
748                             (!ConstV(0).x && !ConstV(0).y && !ConstV(0).z));
749                     else
750                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_V, exprs[0]);
751                     break;
752                 case TYPE_STRING:
753                     if (CanConstFold1(exprs[0])) {
754                         if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
755                             out = (ast_expression*)parser_const_float(parser, !ConstS(0));
756                         else
757                             out = (ast_expression*)parser_const_float(parser, !ConstS(0) || !*ConstS(0));
758                     } else {
759                         if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
760                             out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, exprs[0]);
761                         else
762                             out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_S, exprs[0]);
763                     }
764                     break;
765                 /* we don't constant-fold NOT for these types */
766                 case TYPE_ENTITY:
767                     out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_ENT, exprs[0]);
768                     break;
769                 case TYPE_FUNCTION:
770                     out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_FNC, exprs[0]);
771                     break;
772                 default:
773                 compile_error(ctx, "invalid types used in expression: cannot logically negate type %s",
774                               type_name[exprs[0]->vtype]);
775                 return false;
776             }
777             break;
778
779         case opid1('+'):
780             if (exprs[0]->vtype != exprs[1]->vtype ||
781                 (exprs[0]->vtype != TYPE_VECTOR && exprs[0]->vtype != TYPE_FLOAT) )
782             {
783                 compile_error(ctx, "invalid types used in expression: cannot add type %s and %s",
784                               type_name[exprs[0]->vtype],
785                               type_name[exprs[1]->vtype]);
786                 return false;
787             }
788             switch (exprs[0]->vtype) {
789                 case TYPE_FLOAT:
790                     if (CanConstFold(exprs[0], exprs[1]))
791                     {
792                         out = (ast_expression*)parser_const_float(parser, ConstF(0) + ConstF(1));
793                     }
794                     else
795                         out = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_F, exprs[0], exprs[1]);
796                     break;
797                 case TYPE_VECTOR:
798                     if (CanConstFold(exprs[0], exprs[1]))
799                         out = (ast_expression*)parser_const_vector(parser, vec3_add(ConstV(0), ConstV(1)));
800                     else
801                         out = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_V, exprs[0], exprs[1]);
802                     break;
803                 default:
804                     compile_error(ctx, "invalid types used in expression: cannot add type %s and %s",
805                                   type_name[exprs[0]->vtype],
806                                   type_name[exprs[1]->vtype]);
807                     return false;
808             };
809             break;
810         case opid1('-'):
811             if (exprs[0]->vtype != exprs[1]->vtype ||
812                 (exprs[0]->vtype != TYPE_VECTOR && exprs[0]->vtype != TYPE_FLOAT) )
813             {
814                 compile_error(ctx, "invalid types used in expression: cannot subtract type %s from %s",
815                               type_name[exprs[1]->vtype],
816                               type_name[exprs[0]->vtype]);
817                 return false;
818             }
819             switch (exprs[0]->vtype) {
820                 case TYPE_FLOAT:
821                     if (CanConstFold(exprs[0], exprs[1]))
822                         out = (ast_expression*)parser_const_float(parser, ConstF(0) - ConstF(1));
823                     else
824                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_F, exprs[0], exprs[1]);
825                     break;
826                 case TYPE_VECTOR:
827                     if (CanConstFold(exprs[0], exprs[1]))
828                         out = (ast_expression*)parser_const_vector(parser, vec3_sub(ConstV(0), ConstV(1)));
829                     else
830                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_V, exprs[0], exprs[1]);
831                     break;
832                 default:
833                     compile_error(ctx, "invalid types used in expression: cannot subtract type %s from %s",
834                                   type_name[exprs[1]->vtype],
835                                   type_name[exprs[0]->vtype]);
836                     return false;
837             };
838             break;
839         case opid1('*'):
840             if (exprs[0]->vtype != exprs[1]->vtype &&
841                 !(exprs[0]->vtype == TYPE_VECTOR &&
842                   exprs[1]->vtype == TYPE_FLOAT) &&
843                 !(exprs[1]->vtype == TYPE_VECTOR &&
844                   exprs[0]->vtype == TYPE_FLOAT)
845                 )
846             {
847                 compile_error(ctx, "invalid types used in expression: cannot multiply types %s and %s",
848                               type_name[exprs[1]->vtype],
849                               type_name[exprs[0]->vtype]);
850                 return false;
851             }
852             switch (exprs[0]->vtype) {
853                 case TYPE_FLOAT:
854                     if (exprs[1]->vtype == TYPE_VECTOR)
855                     {
856                         if (CanConstFold(exprs[0], exprs[1]))
857                             out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(1), ConstF(0)));
858                         else
859                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_FV, exprs[0], exprs[1]);
860                     }
861                     else
862                     {
863                         if (CanConstFold(exprs[0], exprs[1]))
864                             out = (ast_expression*)parser_const_float(parser, ConstF(0) * ConstF(1));
865                         else
866                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, exprs[0], exprs[1]);
867                     }
868                     break;
869                 case TYPE_VECTOR:
870                     if (exprs[1]->vtype == TYPE_FLOAT)
871                     {
872                         if (CanConstFold(exprs[0], exprs[1]))
873                             out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(0), ConstF(1)));
874                         else
875                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_VF, exprs[0], exprs[1]);
876                     }
877                     else
878                     {
879                         if (CanConstFold(exprs[0], exprs[1]))
880                             out = (ast_expression*)parser_const_float(parser, vec3_mulvv(ConstV(0), ConstV(1)));
881                         else if (OPTS_OPTIMIZATION(OPTIM_VECTOR_COMPONENTS) && CanConstFold1(exprs[0])) {
882                             vector vec = ConstV(0);
883                             if (!vec.y && !vec.z) { /* 'n 0 0' * v */
884                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
885                                 out = (ast_expression*)ast_member_new(ctx, exprs[1], 0, NULL);
886                                 out->node.keep = false;
887                                 ((ast_member*)out)->rvalue = true;
888                                 if (vec.x != 1)
889                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, (ast_expression*)parser_const_float(parser, vec.x), out);
890                             }
891                             else if (!vec.x && !vec.z) { /* '0 n 0' * v */
892                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
893                                 out = (ast_expression*)ast_member_new(ctx, exprs[1], 1, NULL);
894                                 out->node.keep = false;
895                                 ((ast_member*)out)->rvalue = true;
896                                 if (vec.y != 1)
897                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, (ast_expression*)parser_const_float(parser, vec.y), out);
898                             }
899                             else if (!vec.x && !vec.y) { /* '0 n 0' * v */
900                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
901                                 out = (ast_expression*)ast_member_new(ctx, exprs[1], 2, NULL);
902                                 out->node.keep = false;
903                                 ((ast_member*)out)->rvalue = true;
904                                 if (vec.z != 1)
905                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, (ast_expression*)parser_const_float(parser, vec.z), out);
906                             }
907                             else
908                                 out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
909                         }
910                         else if (OPTS_OPTIMIZATION(OPTIM_VECTOR_COMPONENTS) && CanConstFold1(exprs[1])) {
911                             vector vec = ConstV(1);
912                             if (!vec.y && !vec.z) { /* v * 'n 0 0' */
913                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
914                                 out = (ast_expression*)ast_member_new(ctx, exprs[0], 0, NULL);
915                                 out->node.keep = false;
916                                 ((ast_member*)out)->rvalue = true;
917                                 if (vec.x != 1)
918                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, out, (ast_expression*)parser_const_float(parser, vec.x));
919                             }
920                             else if (!vec.x && !vec.z) { /* v * '0 n 0' */
921                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
922                                 out = (ast_expression*)ast_member_new(ctx, exprs[0], 1, NULL);
923                                 out->node.keep = false;
924                                 ((ast_member*)out)->rvalue = true;
925                                 if (vec.y != 1)
926                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, out, (ast_expression*)parser_const_float(parser, vec.y));
927                             }
928                             else if (!vec.x && !vec.y) { /* v * '0 n 0' */
929                                 ++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
930                                 out = (ast_expression*)ast_member_new(ctx, exprs[0], 2, NULL);
931                                 out->node.keep = false;
932                                 ((ast_member*)out)->rvalue = true;
933                                 if (vec.z != 1)
934                                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, out, (ast_expression*)parser_const_float(parser, vec.z));
935                             }
936                             else
937                                 out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
938                         }
939                         else
940                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
941                     }
942                     break;
943                 default:
944                     compile_error(ctx, "invalid types used in expression: cannot multiply types %s and %s",
945                                   type_name[exprs[1]->vtype],
946                                   type_name[exprs[0]->vtype]);
947                     return false;
948             };
949             break;
950         case opid1('/'):
951             if (exprs[1]->vtype != TYPE_FLOAT) {
952                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
953                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
954                 compile_error(ctx, "invalid types used in expression: cannot divide tyeps %s and %s", ty1, ty2);
955                 return false;
956             }
957             if (exprs[0]->vtype == TYPE_FLOAT) {
958                 if (CanConstFold(exprs[0], exprs[1]))
959                     out = (ast_expression*)parser_const_float(parser, ConstF(0) / ConstF(1));
960                 else
961                     out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F, exprs[0], exprs[1]);
962             }
963             else if (exprs[0]->vtype == TYPE_VECTOR) {
964                 if (CanConstFold(exprs[0], exprs[1]))
965                     out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(0), 1.0/ConstF(1)));
966                 else {
967                     if (CanConstFold1(exprs[1])) {
968                         out = (ast_expression*)parser_const_float(parser, 1.0 / ConstF(1));
969                     } else {
970                         out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F,
971                                                               (ast_expression*)parser_const_float_1(parser),
972                                                               exprs[1]);
973                     }
974                     if (!out) {
975                         compile_error(ctx, "internal error: failed to generate division");
976                         return false;
977                     }
978                     out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_VF, exprs[0], out);
979                 }
980             }
981             else
982             {
983                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
984                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
985                 compile_error(ctx, "invalid types used in expression: cannot divide tyeps %s and %s", ty1, ty2);
986                 return false;
987             }
988             break;
989
990         case opid1('%'):
991             if (NotSameType(TYPE_FLOAT)) {
992                 compile_error(ctx, "invalid types used in expression: cannot perform modulo operation between types %s and %s",
993                     type_name[exprs[0]->vtype],
994                     type_name[exprs[1]->vtype]);
995                 return false;
996             }
997             if (CanConstFold(exprs[0], exprs[1])) {
998                 out = (ast_expression*)parser_const_float(parser,
999                             (float)(((qcint)ConstF(0)) % ((qcint)ConstF(1))));
1000             } else {
1001                 /* generate a call to __builtin_mod */
1002                 ast_expression *mod  = intrin_func(parser, "mod");
1003                 ast_call       *call = NULL;
1004                 if (!mod) return false; /* can return null for missing floor */
1005
1006                 call = ast_call_new(parser_ctx(parser), mod);
1007                 vec_push(call->params, exprs[0]);
1008                 vec_push(call->params, exprs[1]);
1009
1010                 out = (ast_expression*)call;
1011             }
1012             break;
1013
1014         case opid2('%','='):
1015             compile_error(ctx, "%= is unimplemented");
1016             return false;
1017
1018         case opid1('|'):
1019         case opid1('&'):
1020             if (NotSameType(TYPE_FLOAT)) {
1021                 compile_error(ctx, "invalid types used in expression: cannot perform bit operations between types %s and %s",
1022                               type_name[exprs[0]->vtype],
1023                               type_name[exprs[1]->vtype]);
1024                 return false;
1025             }
1026             if (CanConstFold(exprs[0], exprs[1]))
1027                 out = (ast_expression*)parser_const_float(parser,
1028                     (op->id == opid1('|') ? (float)( ((qcint)ConstF(0)) | ((qcint)ConstF(1)) ) :
1029                                             (float)( ((qcint)ConstF(0)) & ((qcint)ConstF(1)) ) ));
1030             else
1031                 out = (ast_expression*)ast_binary_new(ctx,
1032                     (op->id == opid1('|') ? INSTR_BITOR : INSTR_BITAND),
1033                     exprs[0], exprs[1]);
1034             break;
1035         case opid1('^'):
1036             compile_error(ast_ctx(exprs[0]), "Not Yet Implemented: bit-xor via ^");
1037             return false;
1038
1039         case opid2('<','<'):
1040         case opid2('>','>'):
1041             if (CanConstFold(exprs[0], exprs[1]) && ! NotSameType(TYPE_FLOAT)) {
1042                 if (op->id == opid2('<','<'))
1043                     out = (ast_expression*)parser_const_float(parser, (double)((unsigned int)(ConstF(0)) << (unsigned int)(ConstF(1))));
1044                 else
1045                     out = (ast_expression*)parser_const_float(parser, (double)((unsigned int)(ConstF(0)) >> (unsigned int)(ConstF(1))));
1046                 break;
1047             }
1048         case opid3('<','<','='):
1049         case opid3('>','>','='):
1050             compile_error(ast_ctx(exprs[0]), "Not Yet Implemented: bit-shifts");
1051             return false;
1052
1053         case opid2('|','|'):
1054             generated_op += 1; /* INSTR_OR */
1055         case opid2('&','&'):
1056             generated_op += INSTR_AND;
1057             if (CanConstFold(exprs[0], exprs[1]))
1058             {
1059                 if (OPTS_FLAG(PERL_LOGIC)) {
1060                     if (immediate_is_true(ctx, asvalue[0]))
1061                         out = exprs[1];
1062                 }
1063                 else
1064                     out = (ast_expression*)parser_const_float(parser,
1065                           ( (generated_op == INSTR_OR)
1066                             ? (immediate_is_true(ctx, asvalue[0]) || immediate_is_true(ctx, asvalue[1]))
1067                             : (immediate_is_true(ctx, asvalue[0]) && immediate_is_true(ctx, asvalue[1])) )
1068                           ? 1 : 0);
1069             }
1070             else
1071             {
1072                 if (OPTS_FLAG(PERL_LOGIC) && !ast_compare_type(exprs[0], exprs[1])) {
1073                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1074                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1075                     compile_error(ctx, "invalid types for logical operation with -fperl-logic: %s and %s", ty1, ty2);
1076                     return false;
1077                 }
1078                 for (i = 0; i < 2; ++i) {
1079                     if (OPTS_FLAG(CORRECT_LOGIC) && exprs[i]->vtype == TYPE_VECTOR) {
1080                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_V, exprs[i]);
1081                         if (!out) break;
1082                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, out);
1083                         if (!out) break;
1084                         exprs[i] = out; out = NULL;
1085                         if (OPTS_FLAG(PERL_LOGIC)) {
1086                             /* here we want to keep the right expressions' type */
1087                             break;
1088                         }
1089                     }
1090                     else if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && exprs[i]->vtype == TYPE_STRING) {
1091                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_S, exprs[i]);
1092                         if (!out) break;
1093                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, out);
1094                         if (!out) break;
1095                         exprs[i] = out; out = NULL;
1096                         if (OPTS_FLAG(PERL_LOGIC)) {
1097                             /* here we want to keep the right expressions' type */
1098                             break;
1099                         }
1100                     }
1101                 }
1102                 out = (ast_expression*)ast_binary_new(ctx, generated_op, exprs[0], exprs[1]);
1103             }
1104             break;
1105
1106         case opid2('?',':'):
1107             if (vec_last(sy->paren) != PAREN_TERNARY2) {
1108                 compile_error(ctx, "mismatched parenthesis/ternary");
1109                 return false;
1110             }
1111             vec_pop(sy->paren);
1112             if (!ast_compare_type(exprs[1], exprs[2])) {
1113                 ast_type_to_string(exprs[1], ty1, sizeof(ty1));
1114                 ast_type_to_string(exprs[2], ty2, sizeof(ty2));
1115                 compile_error(ctx, "operands of ternary expression must have the same type, got %s and %s", ty1, ty2);
1116                 return false;
1117             }
1118             if (CanConstFold1(exprs[0]))
1119                 out = (immediate_is_true(ctx, asvalue[0]) ? exprs[1] : exprs[2]);
1120             else
1121                 out = (ast_expression*)ast_ternary_new(ctx, exprs[0], exprs[1], exprs[2]);
1122             break;
1123
1124         case opid2('*', '*'):
1125             if (NotSameType(TYPE_FLOAT)) {
1126                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1127                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1128                 compile_error(ctx, "invalid types used in exponentiation: %s and %s",
1129                     ty1, ty2);
1130
1131                 return false;
1132             }
1133
1134             if (CanConstFold(exprs[0], exprs[1])) {
1135                 out = (ast_expression*)parser_const_float(parser, powf(ConstF(0), ConstF(1)));
1136             } else {
1137                 ast_call *gencall = ast_call_new(parser_ctx(parser), intrin_func(parser, "pow"));
1138                 vec_push(gencall->params, exprs[0]);
1139                 vec_push(gencall->params, exprs[1]);
1140                 out = (ast_expression*)gencall;
1141             }
1142             break;
1143
1144         case opid3('<','=','>'): /* -1, 0, or 1 */
1145             if (NotSameType(TYPE_FLOAT)) {
1146                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1147                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1148                 compile_error(ctx, "invalid types used in comparision: %s and %s",
1149                     ty1, ty2);
1150
1151                 return false;
1152             }
1153
1154             if (CanConstFold(exprs[0], exprs[1])) {
1155                 if (ConstF(0) < ConstF(1))
1156                     out = (ast_expression*)parser_const_float_neg1(parser);
1157                 else if (ConstF(0) == ConstF(1))
1158                     out = (ast_expression*)parser_const_float_0(parser);
1159                 else if (ConstF(0) > ConstF(1))
1160                     out = (ast_expression*)parser_const_float_1(parser);
1161             } else {
1162                 ast_binary *eq = ast_binary_new(ctx, INSTR_EQ_F, exprs[0], exprs[1]);
1163
1164                 eq->refs = (ast_binary_ref)false; /* references nothing */
1165
1166                     /* if (lt) { */
1167                 out = (ast_expression*)ast_ternary_new(ctx,
1168                         (ast_expression*)ast_binary_new(ctx, INSTR_LT, exprs[0], exprs[1]),
1169                         /* out = -1 */
1170                         (ast_expression*)parser_const_float_neg1(parser),
1171                     /* } else { */
1172                         /* if (eq) { */
1173                         (ast_expression*)ast_ternary_new(ctx, (ast_expression*)eq,
1174                             /* out = 0 */
1175                             (ast_expression*)parser_const_float_0(parser),
1176                         /* } else { */
1177                             /* out = 1 */
1178                             (ast_expression*)parser_const_float_1(parser)
1179                         /* } */
1180                         )
1181                     /* } */
1182                     );
1183
1184             }
1185             break;
1186
1187         case opid1('>'):
1188             generated_op += 1; /* INSTR_GT */
1189         case opid1('<'):
1190             generated_op += 1; /* INSTR_LT */
1191         case opid2('>', '='):
1192             generated_op += 1; /* INSTR_GE */
1193         case opid2('<', '='):
1194             generated_op += INSTR_LE;
1195             if (NotSameType(TYPE_FLOAT)) {
1196                 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
1197                               type_name[exprs[0]->vtype],
1198                               type_name[exprs[1]->vtype]);
1199                 return false;
1200             }
1201             out = (ast_expression*)ast_binary_new(ctx, generated_op, exprs[0], exprs[1]);
1202             break;
1203         case opid2('!', '='):
1204             if (exprs[0]->vtype != exprs[1]->vtype) {
1205                 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
1206                               type_name[exprs[0]->vtype],
1207                               type_name[exprs[1]->vtype]);
1208                 return false;
1209             }
1210             out = (ast_expression*)ast_binary_new(ctx, type_ne_instr[exprs[0]->vtype], exprs[0], exprs[1]);
1211             break;
1212         case opid2('=', '='):
1213             if (exprs[0]->vtype != exprs[1]->vtype) {
1214                 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
1215                               type_name[exprs[0]->vtype],
1216                               type_name[exprs[1]->vtype]);
1217                 return false;
1218             }
1219             out = (ast_expression*)ast_binary_new(ctx, type_eq_instr[exprs[0]->vtype], exprs[0], exprs[1]);
1220             break;
1221
1222         case opid1('='):
1223             if (ast_istype(exprs[0], ast_entfield)) {
1224                 ast_expression *field = ((ast_entfield*)exprs[0])->field;
1225                 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
1226                     exprs[0]->vtype == TYPE_FIELD &&
1227                     exprs[0]->next->vtype == TYPE_VECTOR)
1228                 {
1229                     assignop = type_storep_instr[TYPE_VECTOR];
1230                 }
1231                 else
1232                     assignop = type_storep_instr[exprs[0]->vtype];
1233                 if (assignop == VINSTR_END || !ast_compare_type(field->next, exprs[1]))
1234                 {
1235                     ast_type_to_string(field->next, ty1, sizeof(ty1));
1236                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1237                     if (OPTS_FLAG(ASSIGN_FUNCTION_TYPES) &&
1238                         field->next->vtype == TYPE_FUNCTION &&
1239                         exprs[1]->vtype == TYPE_FUNCTION)
1240                     {
1241                         (void)!compile_warning(ctx, WARN_ASSIGN_FUNCTION_TYPES,
1242                                                "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1243                     }
1244                     else
1245                         compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1246                 }
1247             }
1248             else
1249             {
1250                 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
1251                     exprs[0]->vtype == TYPE_FIELD &&
1252                     exprs[0]->next->vtype == TYPE_VECTOR)
1253                 {
1254                     assignop = type_store_instr[TYPE_VECTOR];
1255                 }
1256                 else {
1257                     assignop = type_store_instr[exprs[0]->vtype];
1258                 }
1259
1260                 if (assignop == VINSTR_END) {
1261                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1262                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1263                     compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1264                 }
1265                 else if (!ast_compare_type(exprs[0], exprs[1]))
1266                 {
1267                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1268                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1269                     if (OPTS_FLAG(ASSIGN_FUNCTION_TYPES) &&
1270                         exprs[0]->vtype == TYPE_FUNCTION &&
1271                         exprs[1]->vtype == TYPE_FUNCTION)
1272                     {
1273                         (void)!compile_warning(ctx, WARN_ASSIGN_FUNCTION_TYPES,
1274                                                "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1275                     }
1276                     else
1277                         compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1278                 }
1279             }
1280             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1281                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1282             }
1283             out = (ast_expression*)ast_store_new(ctx, assignop, exprs[0], exprs[1]);
1284             break;
1285         case opid3('+','+','P'):
1286         case opid3('-','-','P'):
1287             /* prefix ++ */
1288             if (exprs[0]->vtype != TYPE_FLOAT) {
1289                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1290                 compile_error(ast_ctx(exprs[0]), "invalid type for prefix increment: %s", ty1);
1291                 return false;
1292             }
1293             if (op->id == opid3('+','+','P'))
1294                 addop = INSTR_ADD_F;
1295             else
1296                 addop = INSTR_SUB_F;
1297             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1298                 compile_error(ast_ctx(exprs[0]), "assignment to constant `%s`", asvalue[0]->name);
1299             }
1300             if (ast_istype(exprs[0], ast_entfield)) {
1301                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STOREP_F, addop,
1302                                                         exprs[0],
1303                                                         (ast_expression*)parser_const_float_1(parser));
1304             } else {
1305                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STORE_F, addop,
1306                                                         exprs[0],
1307                                                         (ast_expression*)parser_const_float_1(parser));
1308             }
1309             break;
1310         case opid3('S','+','+'):
1311         case opid3('S','-','-'):
1312             /* prefix ++ */
1313             if (exprs[0]->vtype != TYPE_FLOAT) {
1314                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1315                 compile_error(ast_ctx(exprs[0]), "invalid type for suffix increment: %s", ty1);
1316                 return false;
1317             }
1318             if (op->id == opid3('S','+','+')) {
1319                 addop = INSTR_ADD_F;
1320                 subop = INSTR_SUB_F;
1321             } else {
1322                 addop = INSTR_SUB_F;
1323                 subop = INSTR_ADD_F;
1324             }
1325             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1326                 compile_error(ast_ctx(exprs[0]), "assignment to constant `%s`", asvalue[0]->name);
1327             }
1328             if (ast_istype(exprs[0], ast_entfield)) {
1329                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STOREP_F, addop,
1330                                                         exprs[0],
1331                                                         (ast_expression*)parser_const_float_1(parser));
1332             } else {
1333                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STORE_F, addop,
1334                                                         exprs[0],
1335                                                         (ast_expression*)parser_const_float_1(parser));
1336             }
1337             if (!out)
1338                 return false;
1339             out = (ast_expression*)ast_binary_new(ctx, subop,
1340                                                   out,
1341                                                   (ast_expression*)parser_const_float_1(parser));
1342             break;
1343         case opid2('+','='):
1344         case opid2('-','='):
1345             if (exprs[0]->vtype != exprs[1]->vtype ||
1346                 (exprs[0]->vtype != TYPE_VECTOR && exprs[0]->vtype != TYPE_FLOAT) )
1347             {
1348                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1349                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1350                 compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1351                               ty1, ty2);
1352                 return false;
1353             }
1354             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1355                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1356             }
1357             if (ast_istype(exprs[0], ast_entfield))
1358                 assignop = type_storep_instr[exprs[0]->vtype];
1359             else
1360                 assignop = type_store_instr[exprs[0]->vtype];
1361             switch (exprs[0]->vtype) {
1362                 case TYPE_FLOAT:
1363                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1364                                                             (op->id == opid2('+','=') ? INSTR_ADD_F : INSTR_SUB_F),
1365                                                             exprs[0], exprs[1]);
1366                     break;
1367                 case TYPE_VECTOR:
1368                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1369                                                             (op->id == opid2('+','=') ? INSTR_ADD_V : INSTR_SUB_V),
1370                                                             exprs[0], exprs[1]);
1371                     break;
1372                 default:
1373                     compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1374                                   type_name[exprs[0]->vtype],
1375                                   type_name[exprs[1]->vtype]);
1376                     return false;
1377             };
1378             break;
1379         case opid2('*','='):
1380         case opid2('/','='):
1381             if (exprs[1]->vtype != TYPE_FLOAT ||
1382                 !(exprs[0]->vtype == TYPE_FLOAT ||
1383                   exprs[0]->vtype == TYPE_VECTOR))
1384             {
1385                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1386                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1387                 compile_error(ctx, "invalid types used in expression: %s and %s",
1388                               ty1, ty2);
1389                 return false;
1390             }
1391             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1392                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1393             }
1394             if (ast_istype(exprs[0], ast_entfield))
1395                 assignop = type_storep_instr[exprs[0]->vtype];
1396             else
1397                 assignop = type_store_instr[exprs[0]->vtype];
1398             switch (exprs[0]->vtype) {
1399                 case TYPE_FLOAT:
1400                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1401                                                             (op->id == opid2('*','=') ? INSTR_MUL_F : INSTR_DIV_F),
1402                                                             exprs[0], exprs[1]);
1403                     break;
1404                 case TYPE_VECTOR:
1405                     if (op->id == opid2('*','=')) {
1406                         out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_MUL_VF,
1407                                                                 exprs[0], exprs[1]);
1408                     } else {
1409                         /* there's no DIV_VF */
1410                         if (CanConstFold1(exprs[1])) {
1411                             out = (ast_expression*)parser_const_float(parser, 1.0 / ConstF(1));
1412                         } else {
1413                             out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F,
1414                                                                   (ast_expression*)parser_const_float_1(parser),
1415                                                                   exprs[1]);
1416                         }
1417                         if (!out) {
1418                             compile_error(ctx, "internal error: failed to generate division");
1419                             return false;
1420                         }
1421                         out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_MUL_VF,
1422                                                                 exprs[0], out);
1423                     }
1424                     break;
1425                 default:
1426                     compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1427                                   type_name[exprs[0]->vtype],
1428                                   type_name[exprs[1]->vtype]);
1429                     return false;
1430             };
1431             break;
1432         case opid2('&','='):
1433         case opid2('|','='):
1434             if (NotSameType(TYPE_FLOAT)) {
1435                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1436                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1437                 compile_error(ctx, "invalid types used in expression: %s and %s",
1438                               ty1, ty2);
1439                 return false;
1440             }
1441             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1442                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1443             }
1444             if (ast_istype(exprs[0], ast_entfield))
1445                 assignop = type_storep_instr[exprs[0]->vtype];
1446             else
1447                 assignop = type_store_instr[exprs[0]->vtype];
1448             out = (ast_expression*)ast_binstore_new(ctx, assignop,
1449                                                     (op->id == opid2('&','=') ? INSTR_BITAND : INSTR_BITOR),
1450                                                     exprs[0], exprs[1]);
1451             break;
1452         case opid3('&','~','='):
1453             /* This is like: a &= ~(b);
1454              * But QC has no bitwise-not, so we implement it as
1455              * a -= a & (b);
1456              */
1457             if (NotSameType(TYPE_FLOAT)) {
1458                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1459                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1460                 compile_error(ctx, "invalid types used in expression: %s and %s",
1461                               ty1, ty2);
1462                 return false;
1463             }
1464             if (ast_istype(exprs[0], ast_entfield))
1465                 assignop = type_storep_instr[exprs[0]->vtype];
1466             else
1467                 assignop = type_store_instr[exprs[0]->vtype];
1468             out = (ast_expression*)ast_binary_new(ctx, INSTR_BITAND, exprs[0], exprs[1]);
1469             if (!out)
1470                 return false;
1471             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1472                 compile_error(ctx, "assignment to constant `%s`", asvalue[0]->name);
1473             }
1474             asbinstore = ast_binstore_new(ctx, assignop, INSTR_SUB_F, exprs[0], out);
1475             asbinstore->keep_dest = true;
1476             out = (ast_expression*)asbinstore;
1477             break;
1478
1479         case opid2('~', 'P'):
1480             if (exprs[0]->vtype != TYPE_FLOAT) {
1481                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1482                 compile_error(ast_ctx(exprs[0]), "invalid type for bit not: %s", ty1);
1483                 return false;
1484             }
1485
1486             if(CanConstFold1(exprs[0]))
1487                 out = (ast_expression*)parser_const_float(parser, ~(qcint)ConstF(0));
1488             else
1489                 out = (ast_expression*)
1490                     ast_binary_new(ctx, INSTR_SUB_F, (ast_expression*)parser_const_float_neg1(parser), exprs[0]);
1491             break;
1492     }
1493 #undef NotSameType
1494
1495     if (!out) {
1496         compile_error(ctx, "failed to apply operator %s", op->op);
1497         return false;
1498     }
1499
1500     vec_push(sy->out, syexp(ctx, out));
1501     return true;
1502 }
1503
1504 static bool parser_close_call(parser_t *parser, shunt *sy)
1505 {
1506     /* was a function call */
1507     ast_expression *fun;
1508     ast_value      *funval = NULL;
1509     ast_call       *call;
1510
1511     size_t          fid;
1512     size_t          paramcount, i;
1513
1514     fid = vec_last(sy->ops).off;
1515     vec_shrinkby(sy->ops, 1);
1516
1517     /* out[fid] is the function
1518      * everything above is parameters...
1519      */
1520     if (!vec_size(sy->argc)) {
1521         parseerror(parser, "internal error: no argument counter available");
1522         return false;
1523     }
1524
1525     paramcount = vec_last(sy->argc);
1526     vec_pop(sy->argc);
1527
1528     if (vec_size(sy->out) < fid) {
1529         parseerror(parser, "internal error: broken function call%lu < %lu+%lu\n",
1530                    (unsigned long)vec_size(sy->out),
1531                    (unsigned long)fid,
1532                    (unsigned long)paramcount);
1533         return false;
1534     }
1535
1536     fun = sy->out[fid].out;
1537
1538     if (fun == intrinsic_debug_typestring) {
1539         char ty[1024];
1540         if (fid+2 != vec_size(sy->out) ||
1541             vec_last(sy->out).block)
1542         {
1543             parseerror(parser, "intrinsic __builtin_debug_typestring requires exactly 1 parameter");
1544             return false;
1545         }
1546         ast_type_to_string(vec_last(sy->out).out, ty, sizeof(ty));
1547         ast_unref(vec_last(sy->out).out);
1548         sy->out[fid] = syexp(ast_ctx(vec_last(sy->out).out),
1549                              (ast_expression*)parser_const_string(parser, ty, false));
1550         vec_shrinkby(sy->out, 1);
1551         return true;
1552     }
1553
1554     call = ast_call_new(sy->ops[vec_size(sy->ops)].ctx, fun);
1555     if (!call)
1556         return false;
1557
1558     if (fid+1 < vec_size(sy->out))
1559         ++paramcount;
1560
1561     if (fid+1 + paramcount != vec_size(sy->out)) {
1562         parseerror(parser, "internal error: parameter count mismatch: (%lu+1+%lu), %lu",
1563                    (unsigned long)fid, (unsigned long)paramcount, (unsigned long)vec_size(sy->out));
1564         return false;
1565     }
1566
1567     for (i = 0; i < paramcount; ++i)
1568         vec_push(call->params, sy->out[fid+1 + i].out);
1569     vec_shrinkby(sy->out, paramcount);
1570     (void)!ast_call_check_types(call);
1571     if (parser->max_param_count < paramcount)
1572         parser->max_param_count = paramcount;
1573
1574     if (ast_istype(fun, ast_value)) {
1575         funval = (ast_value*)fun;
1576         if ((fun->flags & AST_FLAG_VARIADIC) &&
1577             !(/*funval->cvq == CV_CONST && */ funval->hasvalue && funval->constval.vfunc->builtin))
1578         {
1579             call->va_count = (ast_expression*)parser_const_float(parser, (double)paramcount);
1580         }
1581     }
1582
1583     /* overwrite fid, the function, with a call */
1584     sy->out[fid] = syexp(call->expression.node.context, (ast_expression*)call);
1585
1586     if (fun->vtype != TYPE_FUNCTION) {
1587         parseerror(parser, "not a function (%s)", type_name[fun->vtype]);
1588         return false;
1589     }
1590
1591     if (!fun->next) {
1592         parseerror(parser, "could not determine function return type");
1593         return false;
1594     } else {
1595         ast_value *fval = (ast_istype(fun, ast_value) ? ((ast_value*)fun) : NULL);
1596
1597         if (fun->flags & AST_FLAG_DEPRECATED) {
1598             if (!fval) {
1599                 return !parsewarning(parser, WARN_DEPRECATED,
1600                         "call to function (which is marked deprecated)\n",
1601                         "-> it has been declared here: %s:%i",
1602                         ast_ctx(fun).file, ast_ctx(fun).line);
1603             }
1604             if (!fval->desc) {
1605                 return !parsewarning(parser, WARN_DEPRECATED,
1606                         "call to `%s` (which is marked deprecated)\n"
1607                         "-> `%s` declared here: %s:%i",
1608                         fval->name, fval->name, ast_ctx(fun).file, ast_ctx(fun).line);
1609             }
1610             return !parsewarning(parser, WARN_DEPRECATED,
1611                     "call to `%s` (deprecated: %s)\n"
1612                     "-> `%s` declared here: %s:%i",
1613                     fval->name, fval->desc, fval->name, ast_ctx(fun).file,
1614                     ast_ctx(fun).line);
1615         }
1616
1617         if (vec_size(fun->params) != paramcount &&
1618             !((fun->flags & AST_FLAG_VARIADIC) &&
1619               vec_size(fun->params) < paramcount))
1620         {
1621             const char *fewmany = (vec_size(fun->params) > paramcount) ? "few" : "many";
1622             if (fval)
1623                 return !parsewarning(parser, WARN_INVALID_PARAMETER_COUNT,
1624                                      "too %s parameters for call to %s: expected %i, got %i\n"
1625                                      " -> `%s` has been declared here: %s:%i",
1626                                      fewmany, fval->name, (int)vec_size(fun->params), (int)paramcount,
1627                                      fval->name, ast_ctx(fun).file, (int)ast_ctx(fun).line);
1628             else
1629                 return !parsewarning(parser, WARN_INVALID_PARAMETER_COUNT,
1630                                      "too %s parameters for function call: expected %i, got %i\n"
1631                                      " -> it has been declared here: %s:%i",
1632                                      fewmany, (int)vec_size(fun->params), (int)paramcount,
1633                                      ast_ctx(fun).file, (int)ast_ctx(fun).line);
1634         }
1635     }
1636
1637     return true;
1638 }
1639
1640 static bool parser_close_paren(parser_t *parser, shunt *sy)
1641 {
1642     if (!vec_size(sy->ops)) {
1643         parseerror(parser, "unmatched closing paren");
1644         return false;
1645     }
1646
1647     while (vec_size(sy->ops)) {
1648         if (vec_last(sy->ops).isparen) {
1649             if (vec_last(sy->paren) == PAREN_FUNC) {
1650                 vec_pop(sy->paren);
1651                 if (!parser_close_call(parser, sy))
1652                     return false;
1653                 break;
1654             }
1655             if (vec_last(sy->paren) == PAREN_EXPR) {
1656                 vec_pop(sy->paren);
1657                 if (!vec_size(sy->out)) {
1658                     compile_error(vec_last(sy->ops).ctx, "empty paren expression");
1659                     vec_shrinkby(sy->ops, 1);
1660                     return false;
1661                 }
1662                 vec_shrinkby(sy->ops, 1);
1663                 break;
1664             }
1665             if (vec_last(sy->paren) == PAREN_INDEX) {
1666                 vec_pop(sy->paren);
1667                 /* pop off the parenthesis */
1668                 vec_shrinkby(sy->ops, 1);
1669                 /* then apply the index operator */
1670                 if (!parser_sy_apply_operator(parser, sy))
1671                     return false;
1672                 break;
1673             }
1674             if (vec_last(sy->paren) == PAREN_TERNARY1) {
1675                 vec_last(sy->paren) = PAREN_TERNARY2;
1676                 /* pop off the parenthesis */
1677                 vec_shrinkby(sy->ops, 1);
1678                 break;
1679             }
1680             compile_error(vec_last(sy->ops).ctx, "invalid parenthesis");
1681             return false;
1682         }
1683         if (!parser_sy_apply_operator(parser, sy))
1684             return false;
1685     }
1686     return true;
1687 }
1688
1689 static void parser_reclassify_token(parser_t *parser)
1690 {
1691     size_t i;
1692     for (i = 0; i < operator_count; ++i) {
1693         if (!strcmp(parser_tokval(parser), operators[i].op)) {
1694             parser->tok = TOKEN_OPERATOR;
1695             return;
1696         }
1697     }
1698 }
1699
1700 static ast_expression* parse_vararg_do(parser_t *parser)
1701 {
1702     ast_expression *idx, *out;
1703     ast_value      *typevar;
1704     ast_value      *funtype = parser->function->vtype;
1705
1706     lex_ctx ctx = parser_ctx(parser);
1707
1708     if (!parser_next(parser) || parser->tok != '(') {
1709         parseerror(parser, "expected parameter index and type in parenthesis");
1710         return NULL;
1711     }
1712     if (!parser_next(parser)) {
1713         parseerror(parser, "error parsing parameter index");
1714         return NULL;
1715     }
1716
1717     idx = parse_expression_leave(parser, true, false, false);
1718     if (!idx)
1719         return NULL;
1720
1721     if (parser->tok != ',') {
1722         ast_unref(idx);
1723         parseerror(parser, "expected comma after parameter index");
1724         return NULL;
1725     }
1726
1727     if (!parser_next(parser) || (parser->tok != TOKEN_IDENT && parser->tok != TOKEN_TYPENAME)) {
1728         ast_unref(idx);
1729         parseerror(parser, "expected typename for vararg");
1730         return NULL;
1731     }
1732
1733     typevar = parse_typename(parser, NULL, NULL);
1734     if (!typevar) {
1735         ast_unref(idx);
1736         return NULL;
1737     }
1738
1739     if (parser->tok != ')') {
1740         ast_unref(idx);
1741         ast_delete(typevar);
1742         parseerror(parser, "expected closing paren");
1743         return NULL;
1744     }
1745
1746 #if 0
1747     if (!parser_next(parser)) {
1748         ast_unref(idx);
1749         ast_delete(typevar);
1750         parseerror(parser, "parse error after vararg");
1751         return NULL;
1752     }
1753 #endif
1754
1755     if (!parser->function->varargs) {
1756         ast_unref(idx);
1757         ast_delete(typevar);
1758         parseerror(parser, "function has no variable argument list");
1759         return NULL;
1760     }
1761
1762     if (funtype->expression.varparam &&
1763         !ast_compare_type((ast_expression*)typevar, (ast_expression*)funtype->expression.varparam))
1764     {
1765         char ty1[1024];
1766         char ty2[1024];
1767         ast_type_to_string((ast_expression*)typevar, ty1, sizeof(ty1));
1768         ast_type_to_string((ast_expression*)funtype->expression.varparam, ty2, sizeof(ty2));
1769         compile_error(ast_ctx(typevar),
1770                       "function was declared to take varargs of type `%s`, requested type is: %s",
1771                       ty2, ty1);
1772     }
1773
1774     out = (ast_expression*)ast_array_index_new(ctx, (ast_expression*)(parser->function->varargs), idx);
1775     ast_type_adopt(out, typevar);
1776     ast_delete(typevar);
1777     return out;
1778 }
1779
1780 static ast_expression* parse_vararg(parser_t *parser)
1781 {
1782     bool           old_noops = parser->lex->flags.noops;
1783
1784     ast_expression *out;
1785
1786     parser->lex->flags.noops = true;
1787     out = parse_vararg_do(parser);
1788
1789     parser->lex->flags.noops = old_noops;
1790     return out;
1791 }
1792
1793 /* not to be exposed */
1794 extern bool ftepp_predef_exists(const char *name);
1795
1796 static bool parse_sya_operand(parser_t *parser, shunt *sy, bool with_labels)
1797 {
1798     if (OPTS_FLAG(TRANSLATABLE_STRINGS) &&
1799         parser->tok == TOKEN_IDENT &&
1800         !strcmp(parser_tokval(parser), "_"))
1801     {
1802         /* a translatable string */
1803         ast_value *val;
1804
1805         parser->lex->flags.noops = true;
1806         if (!parser_next(parser) || parser->tok != '(') {
1807             parseerror(parser, "use _(\"string\") to create a translatable string constant");
1808             return false;
1809         }
1810         parser->lex->flags.noops = false;
1811         if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
1812             parseerror(parser, "expected a constant string in translatable-string extension");
1813             return false;
1814         }
1815         val = parser_const_string(parser, parser_tokval(parser), true);
1816         if (!val)
1817             return false;
1818         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1819
1820         if (!parser_next(parser) || parser->tok != ')') {
1821             parseerror(parser, "expected closing paren after translatable string");
1822             return false;
1823         }
1824         return true;
1825     }
1826     else if (parser->tok == TOKEN_DOTS)
1827     {
1828         ast_expression *va;
1829         if (!OPTS_FLAG(VARIADIC_ARGS)) {
1830             parseerror(parser, "cannot access varargs (try -fvariadic-args)");
1831             return false;
1832         }
1833         va = parse_vararg(parser);
1834         if (!va)
1835             return false;
1836         vec_push(sy->out, syexp(parser_ctx(parser), va));
1837         return true;
1838     }
1839     else if (parser->tok == TOKEN_FLOATCONST) {
1840         ast_value *val;
1841         val = parser_const_float(parser, (parser_token(parser)->constval.f));
1842         if (!val)
1843             return false;
1844         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1845         return true;
1846     }
1847     else if (parser->tok == TOKEN_INTCONST || parser->tok == TOKEN_CHARCONST) {
1848         ast_value *val;
1849         val = parser_const_float(parser, (double)(parser_token(parser)->constval.i));
1850         if (!val)
1851             return false;
1852         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1853         return true;
1854     }
1855     else if (parser->tok == TOKEN_STRINGCONST) {
1856         ast_value *val;
1857         val = parser_const_string(parser, parser_tokval(parser), false);
1858         if (!val)
1859             return false;
1860         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1861         return true;
1862     }
1863     else if (parser->tok == TOKEN_VECTORCONST) {
1864         ast_value *val;
1865         val = parser_const_vector(parser, parser_token(parser)->constval.v);
1866         if (!val)
1867             return false;
1868         vec_push(sy->out, syexp(parser_ctx(parser), (ast_expression*)val));
1869         return true;
1870     }
1871     else if (parser->tok == TOKEN_IDENT)
1872     {
1873         const char     *ctoken = parser_tokval(parser);
1874         ast_expression *prev = vec_size(sy->out) ? vec_last(sy->out).out : NULL;
1875         ast_expression *var;
1876         /* a_vector.{x,y,z} */
1877         if (!vec_size(sy->ops) ||
1878             !vec_last(sy->ops).etype ||
1879             operators[vec_last(sy->ops).etype-1].id != opid1('.') ||
1880             (prev >= intrinsic_debug_typestring &&
1881              prev <= intrinsic_debug_typestring))
1882         {
1883             /* When adding more intrinsics, fix the above condition */
1884             prev = NULL;
1885         }
1886         if (prev && prev->vtype == TYPE_VECTOR && ctoken[0] >= 'x' && ctoken[0] <= 'z' && !ctoken[1])
1887         {
1888             var = (ast_expression*)parser->const_vec[ctoken[0]-'x'];
1889         } else {
1890             var = parser_find_var(parser, parser_tokval(parser));
1891             if (!var)
1892                 var = parser_find_field(parser, parser_tokval(parser));
1893         }
1894         if (!var && with_labels) {
1895             var = (ast_expression*)parser_find_label(parser, parser_tokval(parser));
1896             if (!with_labels) {
1897                 ast_label *lbl = ast_label_new(parser_ctx(parser), parser_tokval(parser), true);
1898                 var = (ast_expression*)lbl;
1899                 vec_push(parser->labels, lbl);
1900             }
1901         }
1902         if (!var && !strcmp(parser_tokval(parser), "__FUNC__"))
1903             var = (ast_expression*)parser_const_string(parser, parser->function->name, false);
1904         if (!var) {
1905             /* intrinsics */
1906             if (!strcmp(parser_tokval(parser), "__builtin_debug_typestring")) {
1907                 var = (ast_expression*)intrinsic_debug_typestring;
1908             }
1909             /* now we try for the real intrinsic hashtable. If the string
1910              * begins with __builtin, we simply skip past it, otherwise we
1911              * use the identifier as is.
1912              */
1913             else if (!strncmp(parser_tokval(parser), "__builtin_", 10)) {
1914                 var = intrin_func(parser, parser_tokval(parser) + 10 /* skip __builtin */);
1915             }
1916
1917             if (!var) {
1918                 char *correct = NULL;
1919                 size_t i;
1920
1921                 /*
1922                  * sometimes people use preprocessing predefs without enabling them
1923                  * i've done this thousands of times already myself.  Lets check for
1924                  * it in the predef table.  And diagnose it better :)
1925                  */
1926                 if (!OPTS_FLAG(FTEPP_PREDEFS) && ftepp_predef_exists(parser_tokval(parser))) {
1927                     parseerror(parser, "unexpected ident: %s (use -fftepp-predef to enable pre-defined macros)", parser_tokval(parser));
1928                     return false;
1929                 }
1930
1931                 /*
1932                  * TODO: determine the best score for the identifier: be it
1933                  * a variable, a field.
1934                  *
1935                  * We should also consider adding correction tables for
1936                  * other things as well.
1937                  */
1938                 if (OPTS_OPTION_BOOL(OPTION_CORRECTION)) {
1939                     correction_t corr;
1940                     correct_init(&corr);
1941
1942                     for (i = 0; i < vec_size(parser->correct_variables); i++) {
1943                         correct = correct_str(&corr, parser->correct_variables[i], parser_tokval(parser));
1944                         if (strcmp(correct, parser_tokval(parser))) {
1945                             break;
1946                         } else if (correct) {
1947                             mem_d(correct);
1948                             correct = NULL;
1949                         }
1950                     }
1951                     correct_free(&corr);
1952
1953                     if (correct) {
1954                         parseerror(parser, "unexpected ident: %s (did you mean %s?)", parser_tokval(parser), correct);
1955                         mem_d(correct);
1956                         return false;
1957                     }
1958                 }
1959                 parseerror(parser, "unexpected ident: %s", parser_tokval(parser));
1960                 return false;
1961             }
1962         }
1963         else
1964         {
1965             if (ast_istype(var, ast_value)) {
1966                 ((ast_value*)var)->uses++;
1967             }
1968             else if (ast_istype(var, ast_member)) {
1969                 ast_member *mem = (ast_member*)var;
1970                 if (ast_istype(mem->owner, ast_value))
1971                     ((ast_value*)(mem->owner))->uses++;
1972             }
1973         }
1974         vec_push(sy->out, syexp(parser_ctx(parser), var));
1975         return true;
1976     }
1977     parseerror(parser, "unexpected token `%s`", parser_tokval(parser));
1978     return false;
1979 }
1980
1981 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma, bool truthvalue, bool with_labels)
1982 {
1983     ast_expression *expr = NULL;
1984     shunt sy;
1985     size_t i;
1986     bool wantop = false;
1987     /* only warn once about an assignment in a truth value because the current code
1988      * would trigger twice on: if(a = b && ...), once for the if-truth-value, once for the && part
1989      */
1990     bool warn_truthvalue = true;
1991
1992     /* count the parens because an if starts with one, so the
1993      * end of a condition is an unmatched closing paren
1994      */
1995     int ternaries = 0;
1996
1997     memset(&sy, 0, sizeof(sy));
1998
1999     parser->lex->flags.noops = false;
2000
2001     parser_reclassify_token(parser);
2002
2003     while (true)
2004     {
2005         if (parser->tok == TOKEN_TYPENAME) {
2006             parseerror(parser, "unexpected typename");
2007             goto onerr;
2008         }
2009
2010         if (parser->tok == TOKEN_OPERATOR)
2011         {
2012             /* classify the operator */
2013             const oper_info *op;
2014             const oper_info *olast = NULL;
2015             size_t o;
2016             for (o = 0; o < operator_count; ++o) {
2017                 if (((!(operators[o].flags & OP_PREFIX) == !!wantop)) &&
2018                     /* !(operators[o].flags & OP_SUFFIX) && / * remove this */
2019                     !strcmp(parser_tokval(parser), operators[o].op))
2020                 {
2021                     break;
2022                 }
2023             }
2024             if (o == operator_count) {
2025                 compile_error(parser_ctx(parser), "unknown operator: %s", parser_tokval(parser));
2026                 goto onerr;
2027             }
2028             /* found an operator */
2029             op = &operators[o];
2030
2031             /* when declaring variables, a comma starts a new variable */
2032             if (op->id == opid1(',') && !vec_size(sy.paren) && stopatcomma) {
2033                 /* fixup the token */
2034                 parser->tok = ',';
2035                 break;
2036             }
2037
2038             /* a colon without a pervious question mark cannot be a ternary */
2039             if (!ternaries && op->id == opid2(':','?')) {
2040                 parser->tok = ':';
2041                 break;
2042             }
2043
2044             if (op->id == opid1(',')) {
2045                 if (vec_size(sy.paren) && vec_last(sy.paren) == PAREN_TERNARY2) {
2046                     (void)!parsewarning(parser, WARN_TERNARY_PRECEDENCE, "suggesting parenthesis around ternary expression");
2047                 }
2048             }
2049
2050             if (vec_size(sy.ops) && !vec_last(sy.ops).isparen)
2051                 olast = &operators[vec_last(sy.ops).etype-1];
2052
2053 #define IsAssignOp(x) (\
2054                 (x) == opid1('=') || \
2055                 (x) == opid2('+','=') || \
2056                 (x) == opid2('-','=') || \
2057                 (x) == opid2('*','=') || \
2058                 (x) == opid2('/','=') || \
2059                 (x) == opid2('%','=') || \
2060                 (x) == opid2('&','=') || \
2061                 (x) == opid2('|','=') || \
2062                 (x) == opid3('&','~','=') \
2063                 )
2064             if (warn_truthvalue) {
2065                 if ( (olast && IsAssignOp(olast->id) && (op->id == opid2('&','&') || op->id == opid2('|','|'))) ||
2066                      (olast && IsAssignOp(op->id) && (olast->id == opid2('&','&') || olast->id == opid2('|','|'))) ||
2067                      (truthvalue && !vec_size(sy.paren) && IsAssignOp(op->id))
2068                    )
2069                 {
2070                     (void)!parsewarning(parser, WARN_PARENTHESIS, "suggesting parenthesis around assignment used as truth value");
2071                     warn_truthvalue = false;
2072                 }
2073             }
2074
2075             while (olast && (
2076                     (op->prec < olast->prec) ||
2077                     (op->assoc == ASSOC_LEFT && op->prec <= olast->prec) ) )
2078             {
2079                 if (!parser_sy_apply_operator(parser, &sy))
2080                     goto onerr;
2081                 if (vec_size(sy.ops) && !vec_last(sy.ops).isparen)
2082                     olast = &operators[vec_last(sy.ops).etype-1];
2083                 else
2084                     olast = NULL;
2085             }
2086
2087             if (op->id == opid1('(')) {
2088                 if (wantop) {
2089                     size_t sycount = vec_size(sy.out);
2090                     /* we expected an operator, this is the function-call operator */
2091                     vec_push(sy.paren, PAREN_FUNC);
2092                     vec_push(sy.ops, syparen(parser_ctx(parser), sycount-1));
2093                     vec_push(sy.argc, 0);
2094                 } else {
2095                     vec_push(sy.paren, PAREN_EXPR);
2096                     vec_push(sy.ops, syparen(parser_ctx(parser), 0));
2097                 }
2098                 wantop = false;
2099             } else if (op->id == opid1('[')) {
2100                 if (!wantop) {
2101                     parseerror(parser, "unexpected array subscript");
2102                     goto onerr;
2103                 }
2104                 vec_push(sy.paren, PAREN_INDEX);
2105                 /* push both the operator and the paren, this makes life easier */
2106                 vec_push(sy.ops, syop(parser_ctx(parser), op));
2107                 vec_push(sy.ops, syparen(parser_ctx(parser), 0));
2108                 wantop = false;
2109             } else if (op->id == opid2('?',':')) {
2110                 vec_push(sy.ops, syop(parser_ctx(parser), op));
2111                 vec_push(sy.ops, syparen(parser_ctx(parser), 0));
2112                 wantop = false;
2113                 ++ternaries;
2114                 vec_push(sy.paren, PAREN_TERNARY1);
2115             } else if (op->id == opid2(':','?')) {
2116                 if (!vec_size(sy.paren)) {
2117                     parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
2118                     goto onerr;
2119                 }
2120                 if (vec_last(sy.paren) != PAREN_TERNARY1) {
2121                     parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
2122                     goto onerr;
2123                 }
2124                 if (!parser_close_paren(parser, &sy))
2125                     goto onerr;
2126                 vec_push(sy.ops, syop(parser_ctx(parser), op));
2127                 wantop = false;
2128                 --ternaries;
2129             } else {
2130                 vec_push(sy.ops, syop(parser_ctx(parser), op));
2131                 wantop = !!(op->flags & OP_SUFFIX);
2132             }
2133         }
2134         else if (parser->tok == ')') {
2135             while (vec_size(sy.paren) && vec_last(sy.paren) == PAREN_TERNARY2) {
2136                 if (!parser_sy_apply_operator(parser, &sy))
2137                     goto onerr;
2138             }
2139             if (!vec_size(sy.paren))
2140                 break;
2141             if (wantop) {
2142                 if (vec_last(sy.paren) == PAREN_TERNARY1) {
2143                     parseerror(parser, "mismatched parentheses (closing paren in ternary expression?)");
2144                     goto onerr;
2145                 }
2146                 if (!parser_close_paren(parser, &sy))
2147                     goto onerr;
2148             } else {
2149                 /* must be a function call without parameters */
2150                 if (vec_last(sy.paren) != PAREN_FUNC) {
2151                     parseerror(parser, "closing paren in invalid position");
2152                     goto onerr;
2153                 }
2154                 if (!parser_close_paren(parser, &sy))
2155                     goto onerr;
2156             }
2157             wantop = true;
2158         }
2159         else if (parser->tok == '(') {
2160             parseerror(parser, "internal error: '(' should be classified as operator");
2161             goto onerr;
2162         }
2163         else if (parser->tok == '[') {
2164             parseerror(parser, "internal error: '[' should be classified as operator");
2165             goto onerr;
2166         }
2167         else if (parser->tok == ']') {
2168             while (vec_size(sy.paren) && vec_last(sy.paren) == PAREN_TERNARY2) {
2169                 if (!parser_sy_apply_operator(parser, &sy))
2170                     goto onerr;
2171             }
2172             if (!vec_size(sy.paren))
2173                 break;
2174             if (vec_last(sy.paren) != PAREN_INDEX) {
2175                 parseerror(parser, "mismatched parentheses, unexpected ']'");
2176                 goto onerr;
2177             }
2178             if (!parser_close_paren(parser, &sy))
2179                 goto onerr;
2180             wantop = true;
2181         }
2182         else if (!wantop) {
2183             if (!parse_sya_operand(parser, &sy, with_labels))
2184                 goto onerr;
2185 #if 0
2186             if (vec_size(sy.paren) && vec_last(sy.ops).isparen && vec_last(sy.paren) == PAREN_FUNC)
2187                 vec_last(sy.argc)++;
2188 #endif
2189             wantop = true;
2190         }
2191         else {
2192             /* in this case we might want to allow constant string concatenation */
2193             bool concatenated = false;
2194             if (parser->tok == TOKEN_STRINGCONST && vec_size(sy.out)) {
2195                 ast_expression *lexpr = vec_last(sy.out).out;
2196                 if (ast_istype(lexpr, ast_value)) {
2197                     ast_value *last = (ast_value*)lexpr;
2198                     if (last->isimm == true && last->cvq == CV_CONST &&
2199                         last->hasvalue && last->expression.vtype == TYPE_STRING)
2200                     {
2201                         char *newstr = NULL;
2202                         util_asprintf(&newstr, "%s%s", last->constval.vstring, parser_tokval(parser));
2203                         vec_last(sy.out).out = (ast_expression*)parser_const_string(parser, newstr, false);
2204                         mem_d(newstr);
2205                         concatenated = true;
2206                     }
2207                 }
2208             }
2209             if (!concatenated) {
2210                 parseerror(parser, "expected operator or end of statement");
2211                 goto onerr;
2212             }
2213         }
2214
2215         if (!parser_next(parser)) {
2216             goto onerr;
2217         }
2218         if (parser->tok == ';' ||
2219             ((!vec_size(sy.paren) || (vec_size(sy.paren) == 1 && vec_last(sy.paren) == PAREN_TERNARY2)) &&
2220             (parser->tok == ']' || parser->tok == ')' || parser->tok == '}')))
2221         {
2222             break;
2223         }
2224     }
2225
2226     while (vec_size(sy.ops)) {
2227         if (!parser_sy_apply_operator(parser, &sy))
2228             goto onerr;
2229     }
2230
2231     parser->lex->flags.noops = true;
2232     if (vec_size(sy.out) != 1) {
2233         parseerror(parser, "expression with not 1 but %lu output values...", (unsigned long) vec_size(sy.out));
2234         expr = NULL;
2235     } else
2236         expr = sy.out[0].out;
2237     vec_free(sy.out);
2238     vec_free(sy.ops);
2239     if (vec_size(sy.paren)) {
2240         parseerror(parser, "internal error: vec_size(sy.paren) = %lu", (unsigned long)vec_size(sy.paren));
2241         return NULL;
2242     }
2243     vec_free(sy.paren);
2244     vec_free(sy.argc);
2245     return expr;
2246
2247 onerr:
2248     parser->lex->flags.noops = true;
2249     for (i = 0; i < vec_size(sy.out); ++i) {
2250         if (sy.out[i].out)
2251             ast_unref(sy.out[i].out);
2252     }
2253     vec_free(sy.out);
2254     vec_free(sy.ops);
2255     vec_free(sy.paren);
2256     vec_free(sy.argc);
2257     return NULL;
2258 }
2259
2260 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma, bool with_labels)
2261 {
2262     ast_expression *e = parse_expression_leave(parser, stopatcomma, false, with_labels);
2263     if (!e)
2264         return NULL;
2265     if (parser->tok != ';') {
2266         parseerror(parser, "semicolon expected after expression");
2267         ast_unref(e);
2268         return NULL;
2269     }
2270     if (!parser_next(parser)) {
2271         ast_unref(e);
2272         return NULL;
2273     }
2274     return e;
2275 }
2276
2277 static void parser_enterblock(parser_t *parser)
2278 {
2279     vec_push(parser->variables, util_htnew(PARSER_HT_SIZE));
2280     vec_push(parser->_blocklocals, vec_size(parser->_locals));
2281     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
2282     vec_push(parser->_blocktypedefs, vec_size(parser->_typedefs));
2283     vec_push(parser->_block_ctx, parser_ctx(parser));
2284
2285     /* corrector */
2286     vec_push(parser->correct_variables, correct_trie_new());
2287     vec_push(parser->correct_variables_score, NULL);
2288 }
2289
2290 static bool parser_leaveblock(parser_t *parser)
2291 {
2292     bool   rv = true;
2293     size_t locals, typedefs;
2294
2295     if (vec_size(parser->variables) <= PARSER_HT_LOCALS) {
2296         parseerror(parser, "internal error: parser_leaveblock with no block");
2297         return false;
2298     }
2299
2300     util_htdel(vec_last(parser->variables));
2301     correct_del(vec_last(parser->correct_variables), vec_last(parser->correct_variables_score));
2302
2303     vec_pop(parser->variables);
2304     vec_pop(parser->correct_variables);
2305     vec_pop(parser->correct_variables_score);
2306     if (!vec_size(parser->_blocklocals)) {
2307         parseerror(parser, "internal error: parser_leaveblock with no block (2)");
2308         return false;
2309     }
2310
2311     locals = vec_last(parser->_blocklocals);
2312     vec_pop(parser->_blocklocals);
2313     while (vec_size(parser->_locals) != locals) {
2314         ast_expression *e = vec_last(parser->_locals);
2315         ast_value      *v = (ast_value*)e;
2316         vec_pop(parser->_locals);
2317         if (ast_istype(e, ast_value) && !v->uses) {
2318             if (compile_warning(ast_ctx(v), WARN_UNUSED_VARIABLE, "unused variable: `%s`", v->name))
2319                 rv = false;
2320         }
2321     }
2322
2323     typedefs = vec_last(parser->_blocktypedefs);
2324     while (vec_size(parser->_typedefs) != typedefs) {
2325         ast_delete(vec_last(parser->_typedefs));
2326         vec_pop(parser->_typedefs);
2327     }
2328     util_htdel(vec_last(parser->typedefs));
2329     vec_pop(parser->typedefs);
2330
2331     vec_pop(parser->_block_ctx);
2332
2333     return rv;
2334 }
2335
2336 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e)
2337 {
2338     vec_push(parser->_locals, e);
2339     util_htset(vec_last(parser->variables), name, (void*)e);
2340
2341     /* corrector */
2342     correct_add (
2343          vec_last(parser->correct_variables),
2344         &vec_last(parser->correct_variables_score),
2345         name
2346     );
2347 }
2348
2349 static void parser_addglobal(parser_t *parser, const char *name, ast_expression *e)
2350 {
2351     vec_push(parser->globals, e);
2352     util_htset(parser->htglobals, name, e);
2353
2354     /* corrector */
2355     correct_add (
2356          parser->correct_variables[0],
2357         &parser->correct_variables_score[0],
2358         name
2359     );
2360 }
2361
2362 static ast_expression* process_condition(parser_t *parser, ast_expression *cond, bool *_ifnot)
2363 {
2364     bool       ifnot = false;
2365     ast_unary *unary;
2366     ast_expression *prev;
2367
2368     if (cond->vtype == TYPE_VOID || cond->vtype >= TYPE_VARIANT) {
2369         char ty[1024];
2370         ast_type_to_string(cond, ty, sizeof(ty));
2371         compile_error(ast_ctx(cond), "invalid type for if() condition: %s", ty);
2372     }
2373
2374     if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && cond->vtype == TYPE_STRING)
2375     {
2376         prev = cond;
2377         cond = (ast_expression*)ast_unary_new(ast_ctx(cond), INSTR_NOT_S, cond);
2378         if (!cond) {
2379             ast_unref(prev);
2380             parseerror(parser, "internal error: failed to process condition");
2381             return NULL;
2382         }
2383         ifnot = !ifnot;
2384     }
2385     else if (OPTS_FLAG(CORRECT_LOGIC) && cond->vtype == TYPE_VECTOR)
2386     {
2387         /* vector types need to be cast to true booleans */
2388         ast_binary *bin = (ast_binary*)cond;
2389         if (!OPTS_FLAG(PERL_LOGIC) || !ast_istype(cond, ast_binary) || !(bin->op == INSTR_AND || bin->op == INSTR_OR))
2390         {
2391             /* in perl-logic, AND and OR take care of the -fcorrect-logic */
2392             prev = cond;
2393             cond = (ast_expression*)ast_unary_new(ast_ctx(cond), INSTR_NOT_V, cond);
2394             if (!cond) {
2395                 ast_unref(prev);
2396                 parseerror(parser, "internal error: failed to process condition");
2397                 return NULL;
2398             }
2399             ifnot = !ifnot;
2400         }
2401     }
2402
2403     unary = (ast_unary*)cond;
2404     while (ast_istype(cond, ast_unary) && unary->op == INSTR_NOT_F)
2405     {
2406         cond = unary->operand;
2407         unary->operand = NULL;
2408         ast_delete(unary);
2409         ifnot = !ifnot;
2410         unary = (ast_unary*)cond;
2411     }
2412
2413     if (!cond)
2414         parseerror(parser, "internal error: failed to process condition");
2415
2416     if (ifnot) *_ifnot = !*_ifnot;
2417     return cond;
2418 }
2419
2420 static bool parse_if(parser_t *parser, ast_block *block, ast_expression **out)
2421 {
2422     ast_ifthen *ifthen;
2423     ast_expression *cond, *ontrue = NULL, *onfalse = NULL;
2424     bool ifnot = false;
2425
2426     lex_ctx ctx = parser_ctx(parser);
2427
2428     (void)block; /* not touching */
2429
2430     /* skip the 'if', parse an optional 'not' and check for an opening paren */
2431     if (!parser_next(parser)) {
2432         parseerror(parser, "expected condition or 'not'");
2433         return false;
2434     }
2435     if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "not")) {
2436         ifnot = true;
2437         if (!parser_next(parser)) {
2438             parseerror(parser, "expected condition in parenthesis");
2439             return false;
2440         }
2441     }
2442     if (parser->tok != '(') {
2443         parseerror(parser, "expected 'if' condition in parenthesis");
2444         return false;
2445     }
2446     /* parse into the expression */
2447     if (!parser_next(parser)) {
2448         parseerror(parser, "expected 'if' condition after opening paren");
2449         return false;
2450     }
2451     /* parse the condition */
2452     cond = parse_expression_leave(parser, false, true, false);
2453     if (!cond)
2454         return false;
2455     /* closing paren */
2456     if (parser->tok != ')') {
2457         parseerror(parser, "expected closing paren after 'if' condition");
2458         ast_unref(cond);
2459         return false;
2460     }
2461     /* parse into the 'then' branch */
2462     if (!parser_next(parser)) {
2463         parseerror(parser, "expected statement for on-true branch of 'if'");
2464         ast_unref(cond);
2465         return false;
2466     }
2467     if (!parse_statement_or_block(parser, &ontrue)) {
2468         ast_unref(cond);
2469         return false;
2470     }
2471     if (!ontrue)
2472         ontrue = (ast_expression*)ast_block_new(parser_ctx(parser));
2473     /* check for an else */
2474     if (!strcmp(parser_tokval(parser), "else")) {
2475         /* parse into the 'else' branch */
2476         if (!parser_next(parser)) {
2477             parseerror(parser, "expected on-false branch after 'else'");
2478             ast_delete(ontrue);
2479             ast_unref(cond);
2480             return false;
2481         }
2482         if (!parse_statement_or_block(parser, &onfalse)) {
2483             ast_delete(ontrue);
2484             ast_unref(cond);
2485             return false;
2486         }
2487     }
2488
2489     cond = process_condition(parser, cond, &ifnot);
2490     if (!cond) {
2491         if (ontrue)  ast_delete(ontrue);
2492         if (onfalse) ast_delete(onfalse);
2493         return false;
2494     }
2495
2496     if (ifnot)
2497         ifthen = ast_ifthen_new(ctx, cond, onfalse, ontrue);
2498     else
2499         ifthen = ast_ifthen_new(ctx, cond, ontrue, onfalse);
2500     *out = (ast_expression*)ifthen;
2501     return true;
2502 }
2503
2504 static bool parse_while_go(parser_t *parser, ast_block *block, ast_expression **out);
2505 static bool parse_while(parser_t *parser, ast_block *block, ast_expression **out)
2506 {
2507     bool rv;
2508     char *label = NULL;
2509
2510     /* skip the 'while' and get the body */
2511     if (!parser_next(parser)) {
2512         if (OPTS_FLAG(LOOP_LABELS))
2513             parseerror(parser, "expected loop label or 'while' condition in parenthesis");
2514         else
2515             parseerror(parser, "expected 'while' condition in parenthesis");
2516         return false;
2517     }
2518
2519     if (parser->tok == ':') {
2520         if (!OPTS_FLAG(LOOP_LABELS))
2521             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2522         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2523             parseerror(parser, "expected loop label");
2524             return false;
2525         }
2526         label = util_strdup(parser_tokval(parser));
2527         if (!parser_next(parser)) {
2528             mem_d(label);
2529             parseerror(parser, "expected 'while' condition in parenthesis");
2530             return false;
2531         }
2532     }
2533
2534     if (parser->tok != '(') {
2535         parseerror(parser, "expected 'while' condition in parenthesis");
2536         return false;
2537     }
2538
2539     vec_push(parser->breaks, label);
2540     vec_push(parser->continues, label);
2541
2542     rv = parse_while_go(parser, block, out);
2543     if (label)
2544         mem_d(label);
2545     if (vec_last(parser->breaks) != label || vec_last(parser->continues) != label) {
2546         parseerror(parser, "internal error: label stack corrupted");
2547         rv = false;
2548         ast_delete(*out);
2549         *out = NULL;
2550     }
2551     else {
2552         vec_pop(parser->breaks);
2553         vec_pop(parser->continues);
2554     }
2555     return rv;
2556 }
2557
2558 static bool parse_while_go(parser_t *parser, ast_block *block, ast_expression **out)
2559 {
2560     ast_loop *aloop;
2561     ast_expression *cond, *ontrue;
2562
2563     bool ifnot = false;
2564
2565     lex_ctx ctx = parser_ctx(parser);
2566
2567     (void)block; /* not touching */
2568
2569     /* parse into the expression */
2570     if (!parser_next(parser)) {
2571         parseerror(parser, "expected 'while' condition after opening paren");
2572         return false;
2573     }
2574     /* parse the condition */
2575     cond = parse_expression_leave(parser, false, true, false);
2576     if (!cond)
2577         return false;
2578     /* closing paren */
2579     if (parser->tok != ')') {
2580         parseerror(parser, "expected closing paren after 'while' condition");
2581         ast_unref(cond);
2582         return false;
2583     }
2584     /* parse into the 'then' branch */
2585     if (!parser_next(parser)) {
2586         parseerror(parser, "expected while-loop body");
2587         ast_unref(cond);
2588         return false;
2589     }
2590     if (!parse_statement_or_block(parser, &ontrue)) {
2591         ast_unref(cond);
2592         return false;
2593     }
2594
2595     cond = process_condition(parser, cond, &ifnot);
2596     if (!cond) {
2597         ast_unref(ontrue);
2598         return false;
2599     }
2600     aloop = ast_loop_new(ctx, NULL, cond, ifnot, NULL, false, NULL, ontrue);
2601     *out = (ast_expression*)aloop;
2602     return true;
2603 }
2604
2605 static bool parse_dowhile_go(parser_t *parser, ast_block *block, ast_expression **out);
2606 static bool parse_dowhile(parser_t *parser, ast_block *block, ast_expression **out)
2607 {
2608     bool rv;
2609     char *label = NULL;
2610
2611     /* skip the 'do' and get the body */
2612     if (!parser_next(parser)) {
2613         if (OPTS_FLAG(LOOP_LABELS))
2614             parseerror(parser, "expected loop label or body");
2615         else
2616             parseerror(parser, "expected loop body");
2617         return false;
2618     }
2619
2620     if (parser->tok == ':') {
2621         if (!OPTS_FLAG(LOOP_LABELS))
2622             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2623         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2624             parseerror(parser, "expected loop label");
2625             return false;
2626         }
2627         label = util_strdup(parser_tokval(parser));
2628         if (!parser_next(parser)) {
2629             mem_d(label);
2630             parseerror(parser, "expected loop body");
2631             return false;
2632         }
2633     }
2634
2635     vec_push(parser->breaks, label);
2636     vec_push(parser->continues, label);
2637
2638     rv = parse_dowhile_go(parser, block, out);
2639     if (label)
2640         mem_d(label);
2641     if (vec_last(parser->breaks) != label || vec_last(parser->continues) != label) {
2642         parseerror(parser, "internal error: label stack corrupted");
2643         rv = false;
2644         ast_delete(*out);
2645         *out = NULL;
2646     }
2647     else {
2648         vec_pop(parser->breaks);
2649         vec_pop(parser->continues);
2650     }
2651     return rv;
2652 }
2653
2654 static bool parse_dowhile_go(parser_t *parser, ast_block *block, ast_expression **out)
2655 {
2656     ast_loop *aloop;
2657     ast_expression *cond, *ontrue;
2658
2659     bool ifnot = false;
2660
2661     lex_ctx ctx = parser_ctx(parser);
2662
2663     (void)block; /* not touching */
2664
2665     if (!parse_statement_or_block(parser, &ontrue))
2666         return false;
2667
2668     /* expect the "while" */
2669     if (parser->tok != TOKEN_KEYWORD ||
2670         strcmp(parser_tokval(parser), "while"))
2671     {
2672         parseerror(parser, "expected 'while' and condition");
2673         ast_delete(ontrue);
2674         return false;
2675     }
2676
2677     /* skip the 'while' and check for opening paren */
2678     if (!parser_next(parser) || parser->tok != '(') {
2679         parseerror(parser, "expected 'while' condition in parenthesis");
2680         ast_delete(ontrue);
2681         return false;
2682     }
2683     /* parse into the expression */
2684     if (!parser_next(parser)) {
2685         parseerror(parser, "expected 'while' condition after opening paren");
2686         ast_delete(ontrue);
2687         return false;
2688     }
2689     /* parse the condition */
2690     cond = parse_expression_leave(parser, false, true, false);
2691     if (!cond)
2692         return false;
2693     /* closing paren */
2694     if (parser->tok != ')') {
2695         parseerror(parser, "expected closing paren after 'while' condition");
2696         ast_delete(ontrue);
2697         ast_unref(cond);
2698         return false;
2699     }
2700     /* parse on */
2701     if (!parser_next(parser) || parser->tok != ';') {
2702         parseerror(parser, "expected semicolon after condition");
2703         ast_delete(ontrue);
2704         ast_unref(cond);
2705         return false;
2706     }
2707
2708     if (!parser_next(parser)) {
2709         parseerror(parser, "parse error");
2710         ast_delete(ontrue);
2711         ast_unref(cond);
2712         return false;
2713     }
2714
2715     cond = process_condition(parser, cond, &ifnot);
2716     if (!cond) {
2717         ast_delete(ontrue);
2718         return false;
2719     }
2720     aloop = ast_loop_new(ctx, NULL, NULL, false, cond, ifnot, NULL, ontrue);
2721     *out = (ast_expression*)aloop;
2722     return true;
2723 }
2724
2725 static bool parse_for_go(parser_t *parser, ast_block *block, ast_expression **out);
2726 static bool parse_for(parser_t *parser, ast_block *block, ast_expression **out)
2727 {
2728     bool rv;
2729     char *label = NULL;
2730
2731     /* skip the 'for' and check for opening paren */
2732     if (!parser_next(parser)) {
2733         if (OPTS_FLAG(LOOP_LABELS))
2734             parseerror(parser, "expected loop label or 'for' expressions in parenthesis");
2735         else
2736             parseerror(parser, "expected 'for' expressions in parenthesis");
2737         return false;
2738     }
2739
2740     if (parser->tok == ':') {
2741         if (!OPTS_FLAG(LOOP_LABELS))
2742             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2743         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2744             parseerror(parser, "expected loop label");
2745             return false;
2746         }
2747         label = util_strdup(parser_tokval(parser));
2748         if (!parser_next(parser)) {
2749             mem_d(label);
2750             parseerror(parser, "expected 'for' expressions in parenthesis");
2751             return false;
2752         }
2753     }
2754
2755     if (parser->tok != '(') {
2756         parseerror(parser, "expected 'for' expressions in parenthesis");
2757         return false;
2758     }
2759
2760     vec_push(parser->breaks, label);
2761     vec_push(parser->continues, label);
2762
2763     rv = parse_for_go(parser, block, out);
2764     if (label)
2765         mem_d(label);
2766     if (vec_last(parser->breaks) != label || vec_last(parser->continues) != label) {
2767         parseerror(parser, "internal error: label stack corrupted");
2768         rv = false;
2769         ast_delete(*out);
2770         *out = NULL;
2771     }
2772     else {
2773         vec_pop(parser->breaks);
2774         vec_pop(parser->continues);
2775     }
2776     return rv;
2777 }
2778 static bool parse_for_go(parser_t *parser, ast_block *block, ast_expression **out)
2779 {
2780     ast_loop       *aloop;
2781     ast_expression *initexpr, *cond, *increment, *ontrue;
2782     ast_value      *typevar;
2783
2784     bool ifnot  = false;
2785
2786     lex_ctx ctx = parser_ctx(parser);
2787
2788     parser_enterblock(parser);
2789
2790     initexpr  = NULL;
2791     cond      = NULL;
2792     increment = NULL;
2793     ontrue    = NULL;
2794
2795     /* parse into the expression */
2796     if (!parser_next(parser)) {
2797         parseerror(parser, "expected 'for' initializer after opening paren");
2798         goto onerr;
2799     }
2800
2801     typevar = NULL;
2802     if (parser->tok == TOKEN_IDENT)
2803         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2804
2805     if (typevar || parser->tok == TOKEN_TYPENAME) {
2806 #if 0
2807         if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_GMQCC) {
2808             if (parsewarning(parser, WARN_EXTENSIONS,
2809                              "current standard does not allow variable declarations in for-loop initializers"))
2810                 goto onerr;
2811         }
2812 #endif
2813         if (!parse_variable(parser, block, true, CV_VAR, typevar, false, false, 0, NULL))
2814             goto onerr;
2815     }
2816     else if (parser->tok != ';')
2817     {
2818         initexpr = parse_expression_leave(parser, false, false, false);
2819         if (!initexpr)
2820             goto onerr;
2821     }
2822
2823     /* move on to condition */
2824     if (parser->tok != ';') {
2825         parseerror(parser, "expected semicolon after for-loop initializer");
2826         goto onerr;
2827     }
2828     if (!parser_next(parser)) {
2829         parseerror(parser, "expected for-loop condition");
2830         goto onerr;
2831     }
2832
2833     /* parse the condition */
2834     if (parser->tok != ';') {
2835         cond = parse_expression_leave(parser, false, true, false);
2836         if (!cond)
2837             goto onerr;
2838     }
2839
2840     /* move on to incrementor */
2841     if (parser->tok != ';') {
2842         parseerror(parser, "expected semicolon after for-loop initializer");
2843         goto onerr;
2844     }
2845     if (!parser_next(parser)) {
2846         parseerror(parser, "expected for-loop condition");
2847         goto onerr;
2848     }
2849
2850     /* parse the incrementor */
2851     if (parser->tok != ')') {
2852         lex_ctx condctx = parser_ctx(parser);
2853         increment = parse_expression_leave(parser, false, false, false);
2854         if (!increment)
2855             goto onerr;
2856         if (!ast_side_effects(increment)) {
2857             if (compile_warning(condctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2858                 goto onerr;
2859         }
2860     }
2861
2862     /* closing paren */
2863     if (parser->tok != ')') {
2864         parseerror(parser, "expected closing paren after 'for-loop' incrementor");
2865         goto onerr;
2866     }
2867     /* parse into the 'then' branch */
2868     if (!parser_next(parser)) {
2869         parseerror(parser, "expected for-loop body");
2870         goto onerr;
2871     }
2872     if (!parse_statement_or_block(parser, &ontrue))
2873         goto onerr;
2874
2875     if (cond) {
2876         cond = process_condition(parser, cond, &ifnot);
2877         if (!cond)
2878             goto onerr;
2879     }
2880     aloop = ast_loop_new(ctx, initexpr, cond, ifnot, NULL, false, increment, ontrue);
2881     *out = (ast_expression*)aloop;
2882
2883     if (!parser_leaveblock(parser)) {
2884         ast_delete(aloop);
2885         return false;
2886     }
2887     return true;
2888 onerr:
2889     if (initexpr)  ast_unref(initexpr);
2890     if (cond)      ast_unref(cond);
2891     if (increment) ast_unref(increment);
2892     (void)!parser_leaveblock(parser);
2893     return false;
2894 }
2895
2896 static bool parse_return(parser_t *parser, ast_block *block, ast_expression **out)
2897 {
2898     ast_expression *exp      = NULL;
2899     ast_expression *var      = NULL;
2900     ast_return     *ret      = NULL;
2901     ast_value      *retval   = parser->function->return_value;
2902     ast_value      *expected = parser->function->vtype;
2903
2904     lex_ctx ctx = parser_ctx(parser);
2905
2906     (void)block; /* not touching */
2907
2908     if (!parser_next(parser)) {
2909         parseerror(parser, "expected return expression");
2910         return false;
2911     }
2912
2913     /* return assignments */
2914     if (parser->tok == '=') {
2915         if (!OPTS_FLAG(RETURN_ASSIGNMENTS)) {
2916             parseerror(parser, "return assignments not activated, try using -freturn-assigments");
2917             return false;
2918         }
2919
2920         if (type_store_instr[expected->expression.next->vtype] == VINSTR_END) {
2921             char ty1[1024];
2922             ast_type_to_string(expected->expression.next, ty1, sizeof(ty1));
2923             parseerror(parser, "invalid return type: `%s'", ty1);
2924             return false;
2925         }
2926
2927         if (!parser_next(parser)) {
2928             parseerror(parser, "expected return assignment expression");
2929             return false;
2930         }
2931
2932         if (!(exp = parse_expression_leave(parser, false, false, false)))
2933             return false;
2934
2935         /* prepare the return value */
2936         if (!retval) {
2937             retval = ast_value_new(ctx, "#LOCAL_RETURN", TYPE_VOID);
2938             ast_type_adopt(retval, expected->expression.next);
2939             parser->function->return_value = retval;
2940         }
2941
2942         if (!ast_compare_type(exp, (ast_expression*)retval)) {
2943             char ty1[1024], ty2[1024];
2944             ast_type_to_string(exp, ty1, sizeof(ty1));
2945             ast_type_to_string(&retval->expression, ty2, sizeof(ty2));
2946             parseerror(parser, "invalid type for return value: `%s', expected `%s'", ty1, ty2);
2947         }
2948
2949         /* store to 'return' local variable */
2950         var = (ast_expression*)ast_store_new(
2951             ctx,
2952             type_store_instr[expected->expression.next->vtype],
2953             (ast_expression*)retval, exp);
2954
2955         if (!var) {
2956             ast_unref(exp);
2957             return false;
2958         }
2959
2960         if (parser->tok != ';')
2961             parseerror(parser, "missing semicolon after return assignment");
2962         else if (!parser_next(parser))
2963             parseerror(parser, "parse error after return assignment");
2964
2965         *out = var;
2966         return true;
2967     }
2968
2969     if (parser->tok != ';') {
2970         exp = parse_expression(parser, false, false);
2971         if (!exp)
2972             return false;
2973
2974         if (exp->vtype != TYPE_NIL &&
2975             exp->vtype != ((ast_expression*)expected)->next->vtype)
2976         {
2977             parseerror(parser, "return with invalid expression");
2978         }
2979
2980         ret = ast_return_new(ctx, exp);
2981         if (!ret) {
2982             ast_unref(exp);
2983             return false;
2984         }
2985     } else {
2986         if (!parser_next(parser))
2987             parseerror(parser, "parse error");
2988
2989         if (!retval && expected->expression.next->vtype != TYPE_VOID)
2990         {
2991             (void)!parsewarning(parser, WARN_MISSING_RETURN_VALUES, "return without value");
2992         }
2993         ret = ast_return_new(ctx, (ast_expression*)retval);
2994     }
2995     *out = (ast_expression*)ret;
2996     return true;
2997 }
2998
2999 static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
3000 {
3001     size_t       i;
3002     unsigned int levels = 0;
3003     lex_ctx      ctx = parser_ctx(parser);
3004     const char **loops = (is_continue ? parser->continues : parser->breaks);
3005
3006     (void)block; /* not touching */
3007     if (!parser_next(parser)) {
3008         parseerror(parser, "expected semicolon or loop label");
3009         return false;
3010     }
3011
3012     if (!vec_size(loops)) {
3013         if (is_continue)
3014             parseerror(parser, "`continue` can only be used inside loops");
3015         else
3016             parseerror(parser, "`break` can only be used inside loops or switches");
3017     }
3018
3019     if (parser->tok == TOKEN_IDENT) {
3020         if (!OPTS_FLAG(LOOP_LABELS))
3021             parseerror(parser, "labeled loops not activated, try using -floop-labels");
3022         i = vec_size(loops);
3023         while (i--) {
3024             if (loops[i] && !strcmp(loops[i], parser_tokval(parser)))
3025                 break;
3026             if (!i) {
3027                 parseerror(parser, "no such loop to %s: `%s`",
3028                            (is_continue ? "continue" : "break out of"),
3029                            parser_tokval(parser));
3030                 return false;
3031             }
3032             ++levels;
3033         }
3034         if (!parser_next(parser)) {
3035             parseerror(parser, "expected semicolon");
3036             return false;
3037         }
3038     }
3039
3040     if (parser->tok != ';') {
3041         parseerror(parser, "expected semicolon");
3042         return false;
3043     }
3044
3045     if (!parser_next(parser))
3046         parseerror(parser, "parse error");
3047
3048     *out = (ast_expression*)ast_breakcont_new(ctx, is_continue, levels);
3049     return true;
3050 }
3051
3052 /* returns true when it was a variable qualifier, false otherwise!
3053  * on error, cvq is set to CV_WRONG
3054  */
3055 static bool parse_qualifiers(parser_t *parser, bool with_local, int *cvq, bool *noref, bool *is_static, uint32_t *_flags, char **message)
3056 {
3057     bool had_const    = false;
3058     bool had_var      = false;
3059     bool had_noref    = false;
3060     bool had_attrib   = false;
3061     bool had_static   = false;
3062     uint32_t flags    = 0;
3063
3064     *cvq = CV_NONE;
3065     for (;;) {
3066         if (parser->tok == TOKEN_ATTRIBUTE_OPEN) {
3067             had_attrib = true;
3068             /* parse an attribute */
3069             if (!parser_next(parser)) {
3070                 parseerror(parser, "expected attribute after `[[`");
3071                 *cvq = CV_WRONG;
3072                 return false;
3073             }
3074             if (!strcmp(parser_tokval(parser), "noreturn")) {
3075                 flags |= AST_FLAG_NORETURN;
3076                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3077                     parseerror(parser, "`noreturn` attribute has no parameters, expected `]]`");
3078                     *cvq = CV_WRONG;
3079                     return false;
3080                 }
3081             }
3082             else if (!strcmp(parser_tokval(parser), "noref")) {
3083                 had_noref = true;
3084                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3085                     parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
3086                     *cvq = CV_WRONG;
3087                     return false;
3088                 }
3089             }
3090             else if (!strcmp(parser_tokval(parser), "inline")) {
3091                 flags |= AST_FLAG_INLINE;
3092                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3093                     parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
3094                     *cvq = CV_WRONG;
3095                     return false;
3096                 }
3097             }
3098             else if (!strcmp(parser_tokval(parser), "alias") && !(flags & AST_FLAG_ALIAS)) {
3099                 flags   |= AST_FLAG_ALIAS;
3100                 *message = NULL;
3101
3102                 if (!parser_next(parser)) {
3103                     parseerror(parser, "parse error in attribute");
3104                     goto argerr;
3105                 }
3106
3107                 if (parser->tok == '(') {
3108                     if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
3109                         parseerror(parser, "`alias` attribute missing parameter");
3110                         goto argerr;
3111                     }
3112
3113                     *message = util_strdup(parser_tokval(parser));
3114
3115                     if (!parser_next(parser)) {
3116                         parseerror(parser, "parse error in attribute");
3117                         goto argerr;
3118                     }
3119
3120                     if (parser->tok != ')') {
3121                         parseerror(parser, "`alias` attribute expected `)` after parameter");
3122                         goto argerr;
3123                     }
3124
3125                     if (!parser_next(parser)) {
3126                         parseerror(parser, "parse error in attribute");
3127                         goto argerr;
3128                     }
3129                 }
3130
3131                 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3132                     parseerror(parser, "`alias` attribute expected `]]`");
3133                     goto argerr;
3134                 }
3135             }
3136             else if (!strcmp(parser_tokval(parser), "deprecated") && !(flags & AST_FLAG_DEPRECATED)) {
3137                 flags   |= AST_FLAG_DEPRECATED;
3138                 *message = NULL;
3139
3140                 if (!parser_next(parser)) {
3141                     parseerror(parser, "parse error in attribute");
3142                     goto argerr;
3143                 }
3144
3145                 if (parser->tok == '(') {
3146                     if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
3147                         parseerror(parser, "`deprecated` attribute missing parameter");
3148                         goto argerr;
3149                     }
3150
3151                     *message = util_strdup(parser_tokval(parser));
3152
3153                     if (!parser_next(parser)) {
3154                         parseerror(parser, "parse error in attribute");
3155                         goto argerr;
3156                     }
3157
3158                     if(parser->tok != ')') {
3159                         parseerror(parser, "`deprecated` attribute expected `)` after parameter");
3160                         goto argerr;
3161                     }
3162
3163                     if (!parser_next(parser)) {
3164                         parseerror(parser, "parse error in attribute");
3165                         goto argerr;
3166                     }
3167                 }
3168                 /* no message */
3169                 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3170                     parseerror(parser, "`deprecated` attribute expected `]]`");
3171
3172                     argerr: /* ugly */
3173                     if (*message) mem_d(*message);
3174                     *message = NULL;
3175                     *cvq     = CV_WRONG;
3176                     return false;
3177                 }
3178             }
3179             else
3180             {
3181                 /* Skip tokens until we hit a ]] */
3182                 (void)!parsewarning(parser, WARN_UNKNOWN_ATTRIBUTE, "unknown attribute starting with `%s`", parser_tokval(parser));
3183                 while (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3184                     if (!parser_next(parser)) {
3185                         parseerror(parser, "error inside attribute");
3186                         *cvq = CV_WRONG;
3187                         return false;
3188                     }
3189                 }
3190             }
3191         }
3192         else if (with_local && !strcmp(parser_tokval(parser), "static"))
3193             had_static = true;
3194         else if (!strcmp(parser_tokval(parser), "const"))
3195             had_const = true;
3196         else if (!strcmp(parser_tokval(parser), "var"))
3197             had_var = true;
3198         else if (with_local && !strcmp(parser_tokval(parser), "local"))
3199             had_var = true;
3200         else if (!strcmp(parser_tokval(parser), "noref"))
3201             had_noref = true;
3202         else if (!had_const && !had_var && !had_noref && !had_attrib && !had_static && !flags) {
3203             return false;
3204         }
3205         else
3206             break;
3207         if (!parser_next(parser))
3208             goto onerr;
3209     }
3210     if (had_const)
3211         *cvq = CV_CONST;
3212     else if (had_var)
3213         *cvq = CV_VAR;
3214     else
3215         *cvq = CV_NONE;
3216     *noref     = had_noref;
3217     *is_static = had_static;
3218     *_flags    = flags;
3219     return true;
3220 onerr:
3221     parseerror(parser, "parse error after variable qualifier");
3222     *cvq = CV_WRONG;
3223     return true;
3224 }
3225
3226 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out);
3227 static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **out)
3228 {
3229     bool rv;
3230     char *label = NULL;
3231
3232     /* skip the 'while' and get the body */
3233     if (!parser_next(parser)) {
3234         if (OPTS_FLAG(LOOP_LABELS))
3235             parseerror(parser, "expected loop label or 'switch' operand in parenthesis");
3236         else
3237             parseerror(parser, "expected 'switch' operand in parenthesis");
3238         return false;
3239     }
3240
3241     if (parser->tok == ':') {
3242         if (!OPTS_FLAG(LOOP_LABELS))
3243             parseerror(parser, "labeled loops not activated, try using -floop-labels");
3244         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
3245             parseerror(parser, "expected loop label");
3246             return false;
3247         }
3248         label = util_strdup(parser_tokval(parser));
3249         if (!parser_next(parser)) {
3250             mem_d(label);
3251             parseerror(parser, "expected 'switch' operand in parenthesis");
3252             return false;
3253         }
3254     }
3255
3256     if (parser->tok != '(') {
3257         parseerror(parser, "expected 'switch' operand in parenthesis");
3258         return false;
3259     }
3260
3261     vec_push(parser->breaks, label);
3262
3263     rv = parse_switch_go(parser, block, out);
3264     if (label)
3265         mem_d(label);
3266     if (vec_last(parser->breaks) != label) {
3267         parseerror(parser, "internal error: label stack corrupted");
3268         rv = false;
3269         ast_delete(*out);
3270         *out = NULL;
3271     }
3272     else {
3273         vec_pop(parser->breaks);
3274     }
3275     return rv;
3276 }
3277
3278 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out)
3279 {
3280     ast_expression *operand;
3281     ast_value      *opval;
3282     ast_value      *typevar;
3283     ast_switch     *switchnode;
3284     ast_switch_case swcase;
3285
3286     int  cvq;
3287     bool noref, is_static;
3288     uint32_t qflags = 0;
3289
3290     lex_ctx ctx = parser_ctx(parser);
3291
3292     (void)block; /* not touching */
3293     (void)opval;
3294
3295     /* parse into the expression */
3296     if (!parser_next(parser)) {
3297         parseerror(parser, "expected switch operand");
3298         return false;
3299     }
3300     /* parse the operand */
3301     operand = parse_expression_leave(parser, false, false, false);
3302     if (!operand)
3303         return false;
3304
3305     switchnode = ast_switch_new(ctx, operand);
3306
3307     /* closing paren */
3308     if (parser->tok != ')') {
3309         ast_delete(switchnode);
3310         parseerror(parser, "expected closing paren after 'switch' operand");
3311         return false;
3312     }
3313
3314     /* parse over the opening paren */
3315     if (!parser_next(parser) || parser->tok != '{') {
3316         ast_delete(switchnode);
3317         parseerror(parser, "expected list of cases");
3318         return false;
3319     }
3320
3321     if (!parser_next(parser)) {
3322         ast_delete(switchnode);
3323         parseerror(parser, "expected 'case' or 'default'");
3324         return false;
3325     }
3326
3327     /* new block; allow some variables to be declared here */
3328     parser_enterblock(parser);
3329     while (true) {
3330         typevar = NULL;
3331         if (parser->tok == TOKEN_IDENT)
3332             typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3333         if (typevar || parser->tok == TOKEN_TYPENAME) {
3334             if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false, 0, NULL)) {
3335                 ast_delete(switchnode);
3336                 return false;
3337             }
3338             continue;
3339         }
3340         if (parse_qualifiers(parser, true, &cvq, &noref, &is_static, &qflags, NULL))
3341         {
3342             if (cvq == CV_WRONG) {
3343                 ast_delete(switchnode);
3344                 return false;
3345             }
3346             if (!parse_variable(parser, block, false, cvq, NULL, noref, is_static, qflags, NULL)) {
3347                 ast_delete(switchnode);
3348                 return false;
3349             }
3350             continue;
3351         }
3352         break;
3353     }
3354
3355     /* case list! */
3356     while (parser->tok != '}') {
3357         ast_block *caseblock;
3358
3359         if (!strcmp(parser_tokval(parser), "case")) {
3360             if (!parser_next(parser)) {
3361                 ast_delete(switchnode);
3362                 parseerror(parser, "expected expression for case");
3363                 return false;
3364             }
3365             swcase.value = parse_expression_leave(parser, false, false, false);
3366             if (!swcase.value) {
3367                 ast_delete(switchnode);
3368                 parseerror(parser, "expected expression for case");
3369                 return false;
3370             }
3371             if (!OPTS_FLAG(RELAXED_SWITCH)) {
3372                 if (!ast_istype(swcase.value, ast_value)) { /* || ((ast_value*)swcase.value)->cvq != CV_CONST) { */
3373                     parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
3374                     ast_unref(operand);
3375                     return false;
3376                 }
3377             }
3378         }
3379         else if (!strcmp(parser_tokval(parser), "default")) {
3380             swcase.value = NULL;
3381             if (!parser_next(parser)) {
3382                 ast_delete(switchnode);
3383                 parseerror(parser, "expected colon");
3384                 return false;
3385             }
3386         }
3387         else {
3388             ast_delete(switchnode);
3389             parseerror(parser, "expected 'case' or 'default'");
3390             return false;
3391         }
3392
3393         /* Now the colon and body */
3394         if (parser->tok != ':') {
3395             if (swcase.value) ast_unref(swcase.value);
3396             ast_delete(switchnode);
3397             parseerror(parser, "expected colon");
3398             return false;
3399         }
3400
3401         if (!parser_next(parser)) {
3402             if (swcase.value) ast_unref(swcase.value);
3403             ast_delete(switchnode);
3404             parseerror(parser, "expected statements or case");
3405             return false;
3406         }
3407         caseblock = ast_block_new(parser_ctx(parser));
3408         if (!caseblock) {
3409             if (swcase.value) ast_unref(swcase.value);
3410             ast_delete(switchnode);
3411             return false;
3412         }
3413         swcase.code = (ast_expression*)caseblock;
3414         vec_push(switchnode->cases, swcase);
3415         while (true) {
3416             ast_expression *expr;
3417             if (parser->tok == '}')
3418                 break;
3419             if (parser->tok == TOKEN_KEYWORD) {
3420                 if (!strcmp(parser_tokval(parser), "case") ||
3421                     !strcmp(parser_tokval(parser), "default"))
3422                 {
3423                     break;
3424                 }
3425             }
3426             if (!parse_statement(parser, caseblock, &expr, true)) {
3427                 ast_delete(switchnode);
3428                 return false;
3429             }
3430             if (!expr)
3431                 continue;
3432             if (!ast_block_add_expr(caseblock, expr)) {
3433                 ast_delete(switchnode);
3434                 return false;
3435             }
3436         }
3437     }
3438
3439     parser_leaveblock(parser);
3440
3441     /* closing paren */
3442     if (parser->tok != '}') {
3443         ast_delete(switchnode);
3444         parseerror(parser, "expected closing paren of case list");
3445         return false;
3446     }
3447     if (!parser_next(parser)) {
3448         ast_delete(switchnode);
3449         parseerror(parser, "parse error after switch");
3450         return false;
3451     }
3452     *out = (ast_expression*)switchnode;
3453     return true;
3454 }
3455
3456 /* parse computed goto sides */
3457 static ast_expression *parse_goto_computed(parser_t *parser, ast_expression **side) {
3458     ast_expression *on_true;
3459     ast_expression *on_false;
3460     ast_expression *cond;
3461
3462     if (!*side)
3463         return NULL;
3464
3465     if (ast_istype(*side, ast_ternary)) {
3466         ast_ternary *tern = (ast_ternary*)*side;
3467         on_true  = parse_goto_computed(parser, &tern->on_true);
3468         on_false = parse_goto_computed(parser, &tern->on_false);
3469
3470         if (!on_true || !on_false) {
3471             parseerror(parser, "expected label or expression in ternary");
3472             if (on_true) ast_unref(on_true);
3473             if (on_false) ast_unref(on_false);
3474             return NULL;
3475         }
3476
3477         cond = tern->cond;
3478         tern->cond = NULL;
3479         ast_delete(tern);
3480         *side = NULL;
3481         return (ast_expression*)ast_ifthen_new(parser_ctx(parser), cond, on_true, on_false);
3482     } else if (ast_istype(*side, ast_label)) {
3483         ast_goto *gt = ast_goto_new(parser_ctx(parser), ((ast_label*)*side)->name);
3484         ast_goto_set_label(gt, ((ast_label*)*side));
3485         *side = NULL;
3486         return (ast_expression*)gt;
3487     }
3488     return NULL;
3489 }
3490
3491 static bool parse_goto(parser_t *parser, ast_expression **out)
3492 {
3493     ast_goto       *gt = NULL;
3494     ast_expression *lbl;
3495
3496     if (!parser_next(parser))
3497         return false;
3498
3499     if (parser->tok != TOKEN_IDENT) {
3500         ast_expression *expression;
3501
3502         /* could be an expression i.e computed goto :-) */
3503         if (parser->tok != '(') {
3504             parseerror(parser, "expected label name after `goto`");
3505             return false;
3506         }
3507
3508         /* failed to parse expression for goto */
3509         if (!(expression = parse_expression(parser, false, true)) ||
3510             !(*out = parse_goto_computed(parser, &expression))) {
3511             parseerror(parser, "invalid goto expression");
3512             ast_unref(expression);
3513             return false;
3514         }
3515
3516         return true;
3517     }
3518
3519     /* not computed goto */
3520     gt = ast_goto_new(parser_ctx(parser), parser_tokval(parser));
3521     lbl = parser_find_label(parser, gt->name);
3522     if (lbl) {
3523         if (!ast_istype(lbl, ast_label)) {
3524             parseerror(parser, "internal error: label is not an ast_label");
3525             ast_delete(gt);
3526             return false;
3527         }
3528         ast_goto_set_label(gt, (ast_label*)lbl);
3529     }
3530     else
3531         vec_push(parser->gotos, gt);
3532
3533     if (!parser_next(parser) || parser->tok != ';') {
3534         parseerror(parser, "semicolon expected after goto label");
3535         return false;
3536     }
3537     if (!parser_next(parser)) {
3538         parseerror(parser, "parse error after goto");
3539         return false;
3540     }
3541
3542     *out = (ast_expression*)gt;
3543     return true;
3544 }
3545
3546 static bool parse_skipwhite(parser_t *parser)
3547 {
3548     do {
3549         if (!parser_next(parser))
3550             return false;
3551     } while (parser->tok == TOKEN_WHITE && parser->tok < TOKEN_ERROR);
3552     return parser->tok < TOKEN_ERROR;
3553 }
3554
3555 static bool parse_eol(parser_t *parser)
3556 {
3557     if (!parse_skipwhite(parser))
3558         return false;
3559     return parser->tok == TOKEN_EOL;
3560 }
3561
3562 static bool parse_pragma_do(parser_t *parser)
3563 {
3564     if (!parser_next(parser) ||
3565         parser->tok != TOKEN_IDENT ||
3566         strcmp(parser_tokval(parser), "pragma"))
3567     {
3568         parseerror(parser, "expected `pragma` keyword after `#`, got `%s`", parser_tokval(parser));
3569         return false;
3570     }
3571     if (!parse_skipwhite(parser) || parser->tok != TOKEN_IDENT) {
3572         parseerror(parser, "expected pragma, got `%s`", parser_tokval(parser));
3573         return false;
3574     }
3575
3576     if (!strcmp(parser_tokval(parser), "noref")) {
3577         if (!parse_skipwhite(parser) || parser->tok != TOKEN_INTCONST) {
3578             parseerror(parser, "`noref` pragma requires an argument: 0 or 1");
3579             return false;
3580         }
3581         parser->noref = !!parser_token(parser)->constval.i;
3582         if (!parse_eol(parser)) {
3583             parseerror(parser, "parse error after `noref` pragma");
3584             return false;
3585         }
3586     }
3587     else
3588     {
3589         (void)!parsewarning(parser, WARN_UNKNOWN_PRAGMAS, "ignoring #pragma %s", parser_tokval(parser));
3590         return false;
3591     }
3592
3593     return true;
3594 }
3595
3596 static bool parse_pragma(parser_t *parser)
3597 {
3598     bool rv;
3599     parser->lex->flags.preprocessing = true;
3600     parser->lex->flags.mergelines = true;
3601     rv = parse_pragma_do(parser);
3602     if (parser->tok != TOKEN_EOL) {
3603         parseerror(parser, "junk after pragma");
3604         rv = false;
3605     }
3606     parser->lex->flags.preprocessing = false;
3607     parser->lex->flags.mergelines = false;
3608     if (!parser_next(parser)) {
3609         parseerror(parser, "parse error after pragma");
3610         rv = false;
3611     }
3612     return rv;
3613 }
3614
3615 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
3616 {
3617     bool       noref, is_static;
3618     int        cvq     = CV_NONE;
3619     uint32_t   qflags  = 0;
3620     ast_value *typevar = NULL;
3621     char      *vstring = NULL;
3622
3623     *out = NULL;
3624
3625     if (parser->tok == TOKEN_IDENT)
3626         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3627
3628     if (typevar || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
3629     {
3630         /* local variable */
3631         if (!block) {
3632             parseerror(parser, "cannot declare a variable from here");
3633             return false;
3634         }
3635         if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3636             if (parsewarning(parser, WARN_EXTENSIONS, "missing 'local' keyword when declaring a local variable"))
3637                 return false;
3638         }
3639         if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false, 0, NULL))
3640             return false;
3641         return true;
3642     }
3643     else if (parse_qualifiers(parser, !!block, &cvq, &noref, &is_static, &qflags, &vstring))
3644     {
3645         if (cvq == CV_WRONG)
3646             return false;
3647         return parse_variable(parser, block, true, cvq, NULL, noref, is_static, qflags, vstring);
3648     }
3649     else if (parser->tok == TOKEN_KEYWORD)
3650     {
3651         if (!strcmp(parser_tokval(parser), "__builtin_debug_printtype"))
3652         {
3653             char ty[1024];
3654             ast_value *tdef;
3655
3656             if (!parser_next(parser)) {
3657                 parseerror(parser, "parse error after __builtin_debug_printtype");
3658                 return false;
3659             }
3660
3661             if (parser->tok == TOKEN_IDENT && (tdef = parser_find_typedef(parser, parser_tokval(parser), 0)))
3662             {
3663                 ast_type_to_string((ast_expression*)tdef, ty, sizeof(ty));
3664                 con_out("__builtin_debug_printtype: `%s`=`%s`\n", tdef->name, ty);
3665                 if (!parser_next(parser)) {
3666                     parseerror(parser, "parse error after __builtin_debug_printtype typename argument");
3667                     return false;
3668                 }
3669             }
3670             else
3671             {
3672                 if (!parse_statement(parser, block, out, allow_cases))
3673                     return false;
3674                 if (!*out)
3675                     con_out("__builtin_debug_printtype: got no output node\n");
3676                 else
3677                 {
3678                     ast_type_to_string(*out, ty, sizeof(ty));
3679                     con_out("__builtin_debug_printtype: `%s`\n", ty);
3680                 }
3681             }
3682             return true;
3683         }
3684         else if (!strcmp(parser_tokval(parser), "return"))
3685         {
3686             return parse_return(parser, block, out);
3687         }
3688         else if (!strcmp(parser_tokval(parser), "if"))
3689         {
3690             return parse_if(parser, block, out);
3691         }
3692         else if (!strcmp(parser_tokval(parser), "while"))
3693         {
3694             return parse_while(parser, block, out);
3695         }
3696         else if (!strcmp(parser_tokval(parser), "do"))
3697         {
3698             return parse_dowhile(parser, block, out);
3699         }
3700         else if (!strcmp(parser_tokval(parser), "for"))
3701         {
3702             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3703                 if (parsewarning(parser, WARN_EXTENSIONS, "for loops are not recognized in the original Quake C standard, to enable try an alternate standard --std=?"))
3704                     return false;
3705             }
3706             return parse_for(parser, block, out);
3707         }
3708         else if (!strcmp(parser_tokval(parser), "break"))
3709         {
3710             return parse_break_continue(parser, block, out, false);
3711         }
3712         else if (!strcmp(parser_tokval(parser), "continue"))
3713         {
3714             return parse_break_continue(parser, block, out, true);
3715         }
3716         else if (!strcmp(parser_tokval(parser), "switch"))
3717         {
3718             return parse_switch(parser, block, out);
3719         }
3720         else if (!strcmp(parser_tokval(parser), "case") ||
3721                  !strcmp(parser_tokval(parser), "default"))
3722         {
3723             if (!allow_cases) {
3724                 parseerror(parser, "unexpected 'case' label");
3725                 return false;
3726             }
3727             return true;
3728         }
3729         else if (!strcmp(parser_tokval(parser), "goto"))
3730         {
3731             return parse_goto(parser, out);
3732         }
3733         else if (!strcmp(parser_tokval(parser), "typedef"))
3734         {
3735             if (!parser_next(parser)) {
3736                 parseerror(parser, "expected type definition after 'typedef'");
3737                 return false;
3738             }
3739             return parse_typedef(parser);
3740         }
3741         parseerror(parser, "Unexpected keyword: `%s'", parser_tokval(parser));
3742         return false;
3743     }
3744     else if (parser->tok == '{')
3745     {
3746         ast_block *inner;
3747         inner = parse_block(parser);
3748         if (!inner)
3749             return false;
3750         *out = (ast_expression*)inner;
3751         return true;
3752     }
3753     else if (parser->tok == ':')
3754     {
3755         size_t i;
3756         ast_label *label;
3757         if (!parser_next(parser)) {
3758             parseerror(parser, "expected label name");
3759             return false;
3760         }
3761         if (parser->tok != TOKEN_IDENT) {
3762             parseerror(parser, "label must be an identifier");
3763             return false;
3764         }
3765         label = (ast_label*)parser_find_label(parser, parser_tokval(parser));
3766         if (label) {
3767             if (!label->undefined) {
3768                 parseerror(parser, "label `%s` already defined", label->name);
3769                 return false;
3770             }
3771             label->undefined = false;
3772         }
3773         else {
3774             label = ast_label_new(parser_ctx(parser), parser_tokval(parser), false);
3775             vec_push(parser->labels, label);
3776         }
3777         *out = (ast_expression*)label;
3778         if (!parser_next(parser)) {
3779             parseerror(parser, "parse error after label");
3780             return false;
3781         }
3782         for (i = 0; i < vec_size(parser->gotos); ++i) {
3783             if (!strcmp(parser->gotos[i]->name, label->name)) {
3784                 ast_goto_set_label(parser->gotos[i], label);
3785                 vec_remove(parser->gotos, i, 1);
3786                 --i;
3787             }
3788         }
3789         return true;
3790     }
3791     else if (parser->tok == ';')
3792     {
3793         if (!parser_next(parser)) {
3794             parseerror(parser, "parse error after empty statement");
3795             return false;
3796         }
3797         return true;
3798     }
3799     else
3800     {
3801         lex_ctx ctx = parser_ctx(parser);
3802         ast_expression *exp = parse_expression(parser, false, false);
3803         if (!exp)
3804             return false;
3805         *out = exp;
3806         if (!ast_side_effects(exp)) {
3807             if (compile_warning(ctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
3808                 return false;
3809         }
3810         return true;
3811     }
3812 }
3813
3814 static bool parse_enum(parser_t *parser)
3815 {
3816     bool        flag = false;
3817     bool        reverse = false;
3818     qcfloat     num = 0;
3819     ast_value **values = NULL;
3820     ast_value  *var = NULL;
3821     ast_value  *asvalue;
3822
3823     ast_expression *old;
3824
3825     if (!parser_next(parser) || (parser->tok != '{' && parser->tok != ':')) {
3826         parseerror(parser, "expected `{` or `:` after `enum` keyword");
3827         return false;
3828     }
3829
3830     /* enumeration attributes (can add more later) */
3831     if (parser->tok == ':') {
3832         if (!parser_next(parser) || parser->tok != TOKEN_IDENT){
3833             parseerror(parser, "expected `flag` or `reverse` for enumeration attribute");
3834             return false;
3835         }
3836
3837         /* attributes? */
3838         if (!strcmp(parser_tokval(parser), "flag")) {
3839             num  = 1;
3840             flag = true;
3841         }
3842         else if (!strcmp(parser_tokval(parser), "reverse")) {
3843             reverse = true;
3844         }
3845         else {
3846             parseerror(parser, "invalid attribute `%s` for enumeration", parser_tokval(parser));
3847             return false;
3848         }
3849
3850         if (!parser_next(parser) || parser->tok != '{') {
3851             parseerror(parser, "expected `{` after enum attribute ");
3852             return false;
3853         }
3854     }
3855
3856     while (true) {
3857         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
3858             if (parser->tok == '}') {
3859                 /* allow an empty enum */
3860                 break;
3861             }
3862             parseerror(parser, "expected identifier or `}`");
3863             goto onerror;
3864         }
3865
3866         old = parser_find_field(parser, parser_tokval(parser));
3867         if (!old)
3868             old = parser_find_global(parser, parser_tokval(parser));
3869         if (old) {
3870             parseerror(parser, "value `%s` has already been declared here: %s:%i",
3871                        parser_tokval(parser), ast_ctx(old).file, ast_ctx(old).line);
3872             goto onerror;
3873         }
3874
3875         var = ast_value_new(parser_ctx(parser), parser_tokval(parser), TYPE_FLOAT);
3876         vec_push(values, var);
3877         var->cvq             = CV_CONST;
3878         var->hasvalue        = true;
3879
3880         /* for flagged enumerations increment in POTs of TWO */
3881         var->constval.vfloat = (flag) ? (num *= 2) : (num ++);
3882         parser_addglobal(parser, var->name, (ast_expression*)var);
3883
3884         if (!parser_next(parser)) {
3885             parseerror(parser, "expected `=`, `}` or comma after identifier");
3886             goto onerror;
3887         }
3888
3889         if (parser->tok == ',')
3890             continue;
3891         if (parser->tok == '}')
3892             break;
3893         if (parser->tok != '=') {
3894             parseerror(parser, "expected `=`, `}` or comma after identifier");
3895             goto onerror;
3896         }
3897
3898         if (!parser_next(parser)) {
3899             parseerror(parser, "expected expression after `=`");
3900             goto onerror;
3901         }
3902
3903         /* We got a value! */
3904         old = parse_expression_leave(parser, true, false, false);
3905         asvalue = (ast_value*)old;
3906         if (!ast_istype(old, ast_value) || asvalue->cvq != CV_CONST || !asvalue->hasvalue) {
3907             compile_error(ast_ctx(var), "constant value or expression expected");
3908             goto onerror;
3909         }
3910         num = (var->constval.vfloat = asvalue->constval.vfloat) + 1;
3911
3912         if (parser->tok == '}')
3913             break;
3914         if (parser->tok != ',') {
3915             parseerror(parser, "expected `}` or comma after expression");
3916             goto onerror;
3917         }
3918     }
3919
3920     /* patch them all (for reversed attribute) */
3921     if (reverse) {
3922         size_t i;
3923         for (i = 0; i < vec_size(values); i++)
3924             values[i]->constval.vfloat = vec_size(values) - i - 1;
3925     }
3926
3927     if (parser->tok != '}') {
3928         parseerror(parser, "internal error: breaking without `}`");
3929         goto onerror;
3930     }
3931
3932     if (!parser_next(parser) || parser->tok != ';') {
3933         parseerror(parser, "expected semicolon after enumeration");
3934         goto onerror;
3935     }
3936
3937     if (!parser_next(parser)) {
3938         parseerror(parser, "parse error after enumeration");
3939         goto onerror;
3940     }
3941
3942     vec_free(values);
3943     return true;
3944
3945 onerror:
3946     vec_free(values);
3947     return false;
3948 }
3949
3950 static bool parse_block_into(parser_t *parser, ast_block *block)
3951 {
3952     bool   retval = true;
3953
3954     parser_enterblock(parser);
3955
3956     if (!parser_next(parser)) { /* skip the '{' */
3957         parseerror(parser, "expected function body");
3958         goto cleanup;
3959     }
3960
3961     while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
3962     {
3963         ast_expression *expr = NULL;
3964         if (parser->tok == '}')
3965             break;
3966
3967         if (!parse_statement(parser, block, &expr, false)) {
3968             /* parseerror(parser, "parse error"); */
3969             block = NULL;
3970             goto cleanup;
3971         }
3972         if (!expr)
3973             continue;
3974         if (!ast_block_add_expr(block, expr)) {
3975             ast_delete(block);
3976             block = NULL;
3977             goto cleanup;
3978         }
3979     }
3980
3981     if (parser->tok != '}') {
3982         block = NULL;
3983     } else {
3984         (void)parser_next(parser);
3985     }
3986
3987 cleanup:
3988     if (!parser_leaveblock(parser))
3989         retval = false;
3990     return retval && !!block;
3991 }
3992
3993 static ast_block* parse_block(parser_t *parser)
3994 {
3995     ast_block *block;
3996     block = ast_block_new(parser_ctx(parser));
3997     if (!block)
3998         return NULL;
3999     if (!parse_block_into(parser, block)) {
4000         ast_block_delete(block);
4001         return NULL;
4002     }
4003     return block;
4004 }
4005
4006 static bool parse_statement_or_block(parser_t *parser, ast_expression **out)
4007 {
4008     if (parser->tok == '{') {
4009         *out = (ast_expression*)parse_block(parser);
4010         return !!*out;
4011     }
4012     return parse_statement(parser, NULL, out, false);
4013 }
4014
4015 static bool create_vector_members(ast_value *var, ast_member **me)
4016 {
4017     size_t i;
4018     size_t len = strlen(var->name);
4019
4020     for (i = 0; i < 3; ++i) {
4021         char *name = (char*)mem_a(len+3);
4022         memcpy(name, var->name, len);
4023         name[len+0] = '_';
4024         name[len+1] = 'x'+i;
4025         name[len+2] = 0;
4026         me[i] = ast_member_new(ast_ctx(var), (ast_expression*)var, i, name);
4027         mem_d(name);
4028         if (!me[i])
4029             break;
4030     }
4031     if (i == 3)
4032         return true;
4033
4034     /* unroll */
4035     do { ast_member_delete(me[--i]); } while(i);
4036     return false;
4037 }
4038
4039 static bool parse_function_body(parser_t *parser, ast_value *var)
4040 {
4041     ast_block      *block = NULL;
4042     ast_function   *func;
4043     ast_function   *old;
4044     size_t          parami;
4045
4046     ast_expression *framenum  = NULL;
4047     ast_expression *nextthink = NULL;
4048     /* None of the following have to be deleted */
4049     ast_expression *fld_think = NULL, *fld_nextthink = NULL, *fld_frame = NULL;
4050     ast_expression *gbl_time = NULL, *gbl_self = NULL;
4051     bool            has_frame_think;
4052
4053     bool retval = true;
4054
4055     has_frame_think = false;
4056     old = parser->function;
4057
4058     if (var->expression.flags & AST_FLAG_ALIAS) {
4059         parseerror(parser, "function aliases cannot have bodies");
4060         return false;
4061     }
4062
4063     if (vec_size(parser->gotos) || vec_size(parser->labels)) {
4064         parseerror(parser, "gotos/labels leaking");
4065         return false;
4066     }
4067
4068     if (!OPTS_FLAG(VARIADIC_ARGS) && var->expression.flags & AST_FLAG_VARIADIC) {
4069         if (parsewarning(parser, WARN_VARIADIC_FUNCTION,
4070                          "variadic function with implementation will not be able to access additional parameters (try -fvariadic-args)"))
4071         {
4072             return false;
4073         }
4074     }
4075
4076     if (parser->tok == '[') {
4077         /* got a frame definition: [ framenum, nextthink ]
4078          * this translates to:
4079          * self.frame = framenum;
4080          * self.nextthink = time + 0.1;
4081          * self.think = nextthink;
4082          */
4083         nextthink = NULL;
4084
4085         fld_think     = parser_find_field(parser, "think");
4086         fld_nextthink = parser_find_field(parser, "nextthink");
4087         fld_frame     = parser_find_field(parser, "frame");
4088         if (!fld_think || !fld_nextthink || !fld_frame) {
4089             parseerror(parser, "cannot use [frame,think] notation without the required fields");
4090             parseerror(parser, "please declare the following entityfields: `frame`, `think`, `nextthink`");
4091             return false;
4092         }
4093         gbl_time      = parser_find_global(parser, "time");
4094         gbl_self      = parser_find_global(parser, "self");
4095         if (!gbl_time || !gbl_self) {
4096             parseerror(parser, "cannot use [frame,think] notation without the required globals");
4097             parseerror(parser, "please declare the following globals: `time`, `self`");
4098             return false;
4099         }
4100
4101         if (!parser_next(parser))
4102             return false;
4103
4104         framenum = parse_expression_leave(parser, true, false, false);
4105         if (!framenum) {
4106             parseerror(parser, "expected a framenumber constant in[frame,think] notation");
4107             return false;
4108         }
4109         if (!ast_istype(framenum, ast_value) || !( (ast_value*)framenum )->hasvalue) {
4110             ast_unref(framenum);
4111             parseerror(parser, "framenumber in [frame,think] notation must be a constant");
4112             return false;
4113         }
4114
4115         if (parser->tok != ',') {
4116             ast_unref(framenum);
4117             parseerror(parser, "expected comma after frame number in [frame,think] notation");
4118             parseerror(parser, "Got a %i\n", parser->tok);
4119             return false;
4120         }
4121
4122         if (!parser_next(parser)) {
4123             ast_unref(framenum);
4124             return false;
4125         }
4126
4127         if (parser->tok == TOKEN_IDENT && !parser_find_var(parser, parser_tokval(parser)))
4128         {
4129             /* qc allows the use of not-yet-declared functions here
4130              * - this automatically creates a prototype */
4131             ast_value      *thinkfunc;
4132             ast_expression *functype = fld_think->next;
4133
4134             thinkfunc = ast_value_new(parser_ctx(parser), parser_tokval(parser), functype->vtype);
4135             if (!thinkfunc) { /* || !ast_type_adopt(thinkfunc, functype)*/
4136                 ast_unref(framenum);
4137                 parseerror(parser, "failed to create implicit prototype for `%s`", parser_tokval(parser));
4138                 return false;
4139             }
4140             ast_type_adopt(thinkfunc, functype);
4141
4142             if (!parser_next(parser)) {
4143                 ast_unref(framenum);
4144                 ast_delete(thinkfunc);
4145                 return false;
4146             }
4147
4148             parser_addglobal(parser, thinkfunc->name, (ast_expression*)thinkfunc);
4149
4150             nextthink = (ast_expression*)thinkfunc;
4151
4152         } else {
4153             nextthink = parse_expression_leave(parser, true, false, false);
4154             if (!nextthink) {
4155                 ast_unref(framenum);
4156                 parseerror(parser, "expected a think-function in [frame,think] notation");
4157                 return false;
4158             }
4159         }
4160
4161         if (!ast_istype(nextthink, ast_value)) {
4162             parseerror(parser, "think-function in [frame,think] notation must be a constant");
4163             retval = false;
4164         }
4165
4166         if (retval && parser->tok != ']') {
4167             parseerror(parser, "expected closing `]` for [frame,think] notation");
4168             retval = false;
4169         }
4170
4171         if (retval && !parser_next(parser)) {
4172             retval = false;
4173         }
4174
4175         if (retval && parser->tok != '{') {
4176             parseerror(parser, "a function body has to be declared after a [frame,think] declaration");
4177             retval = false;
4178         }
4179
4180         if (!retval) {
4181             ast_unref(nextthink);
4182             ast_unref(framenum);
4183             return false;
4184         }
4185
4186         has_frame_think = true;
4187     }
4188
4189     block = ast_block_new(parser_ctx(parser));
4190     if (!block) {
4191         parseerror(parser, "failed to allocate block");
4192         if (has_frame_think) {
4193             ast_unref(nextthink);
4194             ast_unref(framenum);
4195         }
4196         return false;
4197     }
4198
4199     if (has_frame_think) {
4200         lex_ctx ctx;
4201         ast_expression *self_frame;
4202         ast_expression *self_nextthink;
4203         ast_expression *self_think;
4204         ast_expression *time_plus_1;
4205         ast_store *store_frame;
4206         ast_store *store_nextthink;
4207         ast_store *store_think;
4208
4209         ctx = parser_ctx(parser);
4210         self_frame     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_frame);
4211         self_nextthink = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_nextthink);
4212         self_think     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_think);
4213
4214         time_plus_1    = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_F,
4215                          gbl_time, (ast_expression*)parser_const_float(parser, 0.1));
4216
4217         if (!self_frame || !self_nextthink || !self_think || !time_plus_1) {
4218             if (self_frame)     ast_delete(self_frame);
4219             if (self_nextthink) ast_delete(self_nextthink);
4220             if (self_think)     ast_delete(self_think);
4221             if (time_plus_1)    ast_delete(time_plus_1);
4222             retval = false;
4223         }
4224
4225         if (retval)
4226         {
4227             store_frame     = ast_store_new(ctx, INSTR_STOREP_F,   self_frame,     framenum);
4228             store_nextthink = ast_store_new(ctx, INSTR_STOREP_F,   self_nextthink, time_plus_1);
4229             store_think     = ast_store_new(ctx, INSTR_STOREP_FNC, self_think,     nextthink);
4230
4231             if (!store_frame) {
4232                 ast_delete(self_frame);
4233                 retval = false;
4234             }
4235             if (!store_nextthink) {
4236                 ast_delete(self_nextthink);
4237                 retval = false;
4238             }
4239             if (!store_think) {
4240                 ast_delete(self_think);
4241                 retval = false;
4242             }
4243             if (!retval) {
4244                 if (store_frame)     ast_delete(store_frame);
4245                 if (store_nextthink) ast_delete(store_nextthink);
4246                 if (store_think)     ast_delete(store_think);
4247                 retval = false;
4248             }
4249             if (!ast_block_add_expr(block, (ast_expression*)store_frame) ||
4250                 !ast_block_add_expr(block, (ast_expression*)store_nextthink) ||
4251                 !ast_block_add_expr(block, (ast_expression*)store_think))
4252             {
4253                 retval = false;
4254             }
4255         }
4256
4257         if (!retval) {
4258             parseerror(parser, "failed to generate code for [frame,think]");
4259             ast_unref(nextthink);
4260             ast_unref(framenum);
4261             ast_delete(block);
4262             return false;
4263         }
4264     }
4265
4266     if (var->hasvalue) {
4267         parseerror(parser, "function `%s` declared with multiple bodies", var->name);
4268         ast_block_delete(block);
4269         goto enderr;
4270     }
4271
4272     func = ast_function_new(ast_ctx(var), var->name, var);
4273     if (!func) {
4274         parseerror(parser, "failed to allocate function for `%s`", var->name);
4275         ast_block_delete(block);
4276         goto enderr;
4277     }
4278     vec_push(parser->functions, func);
4279
4280     parser_enterblock(parser);
4281
4282     for (parami = 0; parami < vec_size(var->expression.params); ++parami) {
4283         size_t     e;
4284         ast_value *param = var->expression.params[parami];
4285         ast_member *me[3];
4286
4287         if (param->expression.vtype != TYPE_VECTOR &&
4288             (param->expression.vtype != TYPE_FIELD ||
4289              param->expression.next->vtype != TYPE_VECTOR))
4290         {
4291             continue;
4292         }
4293
4294         if (!create_vector_members(param, me)) {
4295             ast_block_delete(block);
4296             goto enderrfn;
4297         }
4298
4299         for (e = 0; e < 3; ++e) {
4300             parser_addlocal(parser, me[e]->name, (ast_expression*)me[e]);
4301             ast_block_collect(block, (ast_expression*)me[e]);
4302         }
4303     }
4304
4305     if (var->argcounter) {
4306         ast_value *argc = ast_value_new(ast_ctx(var), var->argcounter, TYPE_FLOAT);
4307         parser_addlocal(parser, argc->name, (ast_expression*)argc);
4308         func->argc = argc;
4309     }
4310
4311     if (OPTS_FLAG(VARIADIC_ARGS) && var->expression.flags & AST_FLAG_VARIADIC) {
4312         char name[1024];
4313         ast_value *varargs = ast_value_new(ast_ctx(var), "reserved:va_args", TYPE_ARRAY);
4314         varargs->expression.flags |= AST_FLAG_IS_VARARG;
4315         varargs->expression.next = (ast_expression*)ast_value_new(ast_ctx(var), NULL, TYPE_VECTOR);
4316         varargs->expression.count = 0;
4317         util_snprintf(name, sizeof(name), "%s##va##SET", var->name);
4318         if (!parser_create_array_setter_proto(parser, varargs, name)) {
4319             ast_delete(varargs);
4320             ast_block_delete(block);
4321             goto enderrfn;
4322         }
4323         util_snprintf(name, sizeof(name), "%s##va##GET", var->name);
4324         if (!parser_create_array_getter_proto(parser, varargs, varargs->expression.next, name)) {
4325             ast_delete(varargs);
4326             ast_block_delete(block);
4327             goto enderrfn;
4328         }
4329         func->varargs = varargs;
4330
4331         func->fixedparams = parser_const_float(parser, vec_size(var->expression.params));
4332     }
4333
4334     parser->function = func;
4335     if (!parse_block_into(parser, block)) {
4336         ast_block_delete(block);
4337         goto enderrfn;
4338     }
4339
4340     vec_push(func->blocks, block);
4341     
4342
4343     parser->function = old;
4344     if (!parser_leaveblock(parser))
4345         retval = false;
4346     if (vec_size(parser->variables) != PARSER_HT_LOCALS) {
4347         parseerror(parser, "internal error: local scopes left");
4348         retval = false;
4349     }
4350
4351     if (parser->tok == ';')
4352         return parser_next(parser);
4353     else if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
4354         parseerror(parser, "missing semicolon after function body (mandatory with -std=qcc)");
4355     return retval;
4356
4357 enderrfn:
4358     (void)!parser_leaveblock(parser);
4359     vec_pop(parser->functions);
4360     ast_function_delete(func);
4361     var->constval.vfunc = NULL;
4362
4363 enderr:
4364     parser->function = old;
4365     return false;
4366 }
4367
4368 static ast_expression *array_accessor_split(
4369     parser_t  *parser,
4370     ast_value *array,
4371     ast_value *index,
4372     size_t     middle,
4373     ast_expression *left,
4374     ast_expression *right
4375     )
4376 {
4377     ast_ifthen *ifthen;
4378     ast_binary *cmp;
4379
4380     lex_ctx ctx = ast_ctx(array);
4381
4382     if (!left || !right) {
4383         if (left)  ast_delete(left);
4384         if (right) ast_delete(right);
4385         return NULL;
4386     }
4387
4388     cmp = ast_binary_new(ctx, INSTR_LT,
4389                          (ast_expression*)index,
4390                          (ast_expression*)parser_const_float(parser, middle));
4391     if (!cmp) {
4392         ast_delete(left);
4393         ast_delete(right);
4394         parseerror(parser, "internal error: failed to create comparison for array setter");
4395         return NULL;
4396     }
4397
4398     ifthen = ast_ifthen_new(ctx, (ast_expression*)cmp, left, right);
4399     if (!ifthen) {
4400         ast_delete(cmp); /* will delete left and right */
4401         parseerror(parser, "internal error: failed to create conditional jump for array setter");
4402         return NULL;
4403     }
4404
4405     return (ast_expression*)ifthen;
4406 }
4407
4408 static ast_expression *array_setter_node(parser_t *parser, ast_value *array, ast_value *index, ast_value *value, size_t from, size_t afterend)
4409 {
4410     lex_ctx ctx = ast_ctx(array);
4411
4412     if (from+1 == afterend) {
4413         /* set this value */
4414         ast_block       *block;
4415         ast_return      *ret;
4416         ast_array_index *subscript;
4417         ast_store       *st;
4418         int assignop = type_store_instr[value->expression.vtype];
4419
4420         if (value->expression.vtype == TYPE_FIELD && value->expression.next->vtype == TYPE_VECTOR)
4421             assignop = INSTR_STORE_V;
4422
4423         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
4424         if (!subscript)
4425             return NULL;
4426
4427         st = ast_store_new(ctx, assignop, (ast_expression*)subscript, (ast_expression*)value);
4428         if (!st) {
4429             ast_delete(subscript);
4430             return NULL;
4431         }
4432
4433         block = ast_block_new(ctx);
4434         if (!block) {
4435             ast_delete(st);
4436             return NULL;
4437         }
4438
4439         if (!ast_block_add_expr(block, (ast_expression*)st)) {
4440             ast_delete(block);
4441             return NULL;
4442         }
4443
4444         ret = ast_return_new(ctx, NULL);
4445         if (!ret) {
4446             ast_delete(block);
4447             return NULL;
4448         }
4449
4450         if (!ast_block_add_expr(block, (ast_expression*)ret)) {
4451             ast_delete(block);
4452             return NULL;
4453         }
4454
4455         return (ast_expression*)block;
4456     } else {
4457         ast_expression *left, *right;
4458         size_t diff = afterend - from;
4459         size_t middle = from + diff/2;
4460         left  = array_setter_node(parser, array, index, value, from, middle);
4461         right = array_setter_node(parser, array, index, value, middle, afterend);
4462         return array_accessor_split(parser, array, index, middle, left, right);
4463     }
4464 }
4465
4466 static ast_expression *array_field_setter_node(
4467     parser_t  *parser,
4468     ast_value *array,
4469     ast_value *entity,
4470     ast_value *index,
4471     ast_value *value,
4472     size_t     from,
4473     size_t     afterend)
4474 {
4475     lex_ctx ctx = ast_ctx(array);
4476
4477     if (from+1 == afterend) {
4478         /* set this value */
4479         ast_block       *block;
4480         ast_return      *ret;
4481         ast_entfield    *entfield;
4482         ast_array_index *subscript;
4483         ast_store       *st;
4484         int assignop = type_storep_instr[value->expression.vtype];
4485
4486         if (value->expression.vtype == TYPE_FIELD && value->expression.next->vtype == TYPE_VECTOR)
4487             assignop = INSTR_STOREP_V;
4488
4489         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
4490         if (!subscript)
4491             return NULL;
4492
4493         subscript->expression.next = ast_type_copy(ast_ctx(subscript), (ast_expression*)subscript);
4494         subscript->expression.vtype = TYPE_FIELD;
4495
4496         entfield = ast_entfield_new_force(ctx,
4497                                           (ast_expression*)entity,
4498                                           (ast_expression*)subscript,
4499                                           (ast_expression*)subscript);
4500         if (!entfield) {
4501             ast_delete(subscript);
4502             return NULL;
4503         }
4504
4505         st = ast_store_new(ctx, assignop, (ast_expression*)entfield, (ast_expression*)value);
4506         if (!st) {
4507             ast_delete(entfield);
4508             return NULL;
4509         }
4510
4511         block = ast_block_new(ctx);
4512         if (!block) {
4513             ast_delete(st);
4514             return NULL;
4515         }
4516
4517         if (!ast_block_add_expr(block, (ast_expression*)st)) {
4518             ast_delete(block);
4519             return NULL;
4520         }
4521
4522         ret = ast_return_new(ctx, NULL);
4523         if (!ret) {
4524             ast_delete(block);
4525             return NULL;
4526         }
4527
4528         if (!ast_block_add_expr(block, (ast_expression*)ret)) {
4529             ast_delete(block);
4530             return NULL;
4531         }
4532
4533         return (ast_expression*)block;
4534     } else {
4535         ast_expression *left, *right;
4536         size_t diff = afterend - from;
4537         size_t middle = from + diff/2;
4538         left  = array_field_setter_node(parser, array, entity, index, value, from, middle);
4539         right = array_field_setter_node(parser, array, entity, index, value, middle, afterend);
4540         return array_accessor_split(parser, array, index, middle, left, right);
4541     }
4542 }
4543
4544 static ast_expression *array_getter_node(parser_t *parser, ast_value *array, ast_value *index, size_t from, size_t afterend)
4545 {
4546     lex_ctx ctx = ast_ctx(array);
4547
4548     if (from+1 == afterend) {
4549         ast_return      *ret;
4550         ast_array_index *subscript;
4551
4552         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
4553         if (!subscript)
4554             return NULL;
4555
4556         ret = ast_return_new(ctx, (ast_expression*)subscript);
4557         if (!ret) {
4558             ast_delete(subscript);
4559             return NULL;
4560         }
4561
4562         return (ast_expression*)ret;
4563     } else {
4564         ast_expression *left, *right;
4565         size_t diff = afterend - from;
4566         size_t middle = from + diff/2;
4567         left  = array_getter_node(parser, array, index, from, middle);
4568         right = array_getter_node(parser, array, index, middle, afterend);
4569         return array_accessor_split(parser, array, index, middle, left, right);
4570     }
4571 }
4572
4573 static bool parser_create_array_accessor(parser_t *parser, ast_value *array, const char *funcname, ast_value **out)
4574 {
4575     ast_function   *func = NULL;
4576     ast_value      *fval = NULL;
4577     ast_block      *body = NULL;
4578
4579     fval = ast_value_new(ast_ctx(array), funcname, TYPE_FUNCTION);
4580     if (!fval) {
4581         parseerror(parser, "failed to create accessor function value");
4582         return false;
4583     }
4584
4585     func = ast_function_new(ast_ctx(array), funcname, fval);
4586     if (!func) {
4587         ast_delete(fval);
4588         parseerror(parser, "failed to create accessor function node");
4589         return false;
4590     }
4591
4592     body = ast_block_new(ast_ctx(array));
4593     if (!body) {
4594         parseerror(parser, "failed to create block for array accessor");
4595         ast_delete(fval);
4596         ast_delete(func);
4597         return false;
4598     }
4599
4600     vec_push(func->blocks, body);
4601     *out = fval;
4602
4603     vec_push(parser->accessors, fval);
4604
4605     return true;
4606 }
4607
4608 static ast_value* parser_create_array_setter_proto(parser_t *parser, ast_value *array, const char *funcname)
4609 {
4610     ast_value      *index = NULL;
4611     ast_value      *value = NULL;
4612     ast_function   *func;
4613     ast_value      *fval;
4614
4615     if (!ast_istype(array->expression.next, ast_value)) {
4616         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4617         return NULL;
4618     }
4619
4620     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4621         return NULL;
4622     func = fval->constval.vfunc;
4623     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
4624
4625     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
4626     value = ast_value_copy((ast_value*)array->expression.next);
4627
4628     if (!index || !value) {
4629         parseerror(parser, "failed to create locals for array accessor");
4630         goto cleanup;
4631     }
4632     (void)!ast_value_set_name(value, "value"); /* not important */
4633     vec_push(fval->expression.params, index);
4634     vec_push(fval->expression.params, value);
4635
4636     array->setter = fval;
4637     return fval;
4638 cleanup:
4639     if (index) ast_delete(index);
4640     if (value) ast_delete(value);
4641     ast_delete(func);
4642     ast_delete(fval);
4643     return NULL;
4644 }
4645
4646 static bool parser_create_array_setter_impl(parser_t *parser, ast_value *array)
4647 {
4648     ast_expression *root = NULL;
4649     root = array_setter_node(parser, array,
4650                              array->setter->expression.params[0],
4651                              array->setter->expression.params[1],
4652                              0, array->expression.count);
4653     if (!root) {
4654         parseerror(parser, "failed to build accessor search tree");
4655         return false;
4656     }
4657     if (!ast_block_add_expr(array->setter->constval.vfunc->blocks[0], root)) {
4658         ast_delete(root);
4659         return false;
4660     }
4661     return true;
4662 }
4663
4664 static bool parser_create_array_setter(parser_t *parser, ast_value *array, const char *funcname)
4665 {
4666     if (!parser_create_array_setter_proto(parser, array, funcname))
4667         return false;
4668     return parser_create_array_setter_impl(parser, array);
4669 }
4670
4671 static bool parser_create_array_field_setter(parser_t *parser, ast_value *array, const char *funcname)
4672 {
4673     ast_expression *root = NULL;
4674     ast_value      *entity = NULL;
4675     ast_value      *index = NULL;
4676     ast_value      *value = NULL;
4677     ast_function   *func;
4678     ast_value      *fval;
4679
4680     if (!ast_istype(array->expression.next, ast_value)) {
4681         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4682         return false;
4683     }
4684
4685     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4686         return false;
4687     func = fval->constval.vfunc;
4688     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
4689
4690     entity = ast_value_new(ast_ctx(array), "entity", TYPE_ENTITY);
4691     index  = ast_value_new(ast_ctx(array), "index",  TYPE_FLOAT);
4692     value  = ast_value_copy((ast_value*)array->expression.next);
4693     if (!entity || !index || !value) {
4694         parseerror(parser, "failed to create locals for array accessor");
4695         goto cleanup;
4696     }
4697     (void)!ast_value_set_name(value, "value"); /* not important */
4698     vec_push(fval->expression.params, entity);
4699     vec_push(fval->expression.params, index);
4700     vec_push(fval->expression.params, value);
4701
4702     root = array_field_setter_node(parser, array, entity, index, value, 0, array->expression.count);
4703     if (!root) {
4704         parseerror(parser, "failed to build accessor search tree");
4705         goto cleanup;
4706     }
4707
4708     array->setter = fval;
4709     return ast_block_add_expr(func->blocks[0], root);
4710 cleanup:
4711     if (entity) ast_delete(entity);
4712     if (index)  ast_delete(index);
4713     if (value)  ast_delete(value);
4714     if (root)   ast_delete(root);
4715     ast_delete(func);
4716     ast_delete(fval);
4717     return false;
4718 }
4719
4720 static ast_value* parser_create_array_getter_proto(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
4721 {
4722     ast_value      *index = NULL;
4723     ast_value      *fval;
4724     ast_function   *func;
4725
4726     /* NOTE: checking array->expression.next rather than elemtype since
4727      * for fields elemtype is a temporary fieldtype.
4728      */
4729     if (!ast_istype(array->expression.next, ast_value)) {
4730         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4731         return NULL;
4732     }
4733
4734     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4735         return NULL;
4736     func = fval->constval.vfunc;
4737     fval->expression.next = ast_type_copy(ast_ctx(array), elemtype);
4738
4739     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
4740
4741     if (!index) {
4742         parseerror(parser, "failed to create locals for array accessor");
4743         goto cleanup;
4744     }
4745     vec_push(fval->expression.params, index);
4746
4747     array->getter = fval;
4748     return fval;
4749 cleanup:
4750     if (index) ast_delete(index);
4751     ast_delete(func);
4752     ast_delete(fval);
4753     return NULL;
4754 }
4755
4756 static bool parser_create_array_getter_impl(parser_t *parser, ast_value *array)
4757 {
4758     ast_expression *root = NULL;
4759
4760     root = array_getter_node(parser, array, array->getter->expression.params[0], 0, array->expression.count);
4761     if (!root) {
4762         parseerror(parser, "failed to build accessor search tree");
4763         return false;
4764     }
4765     if (!ast_block_add_expr(array->getter->constval.vfunc->blocks[0], root)) {
4766         ast_delete(root);
4767         return false;
4768     }
4769     return true;
4770 }
4771
4772 static bool parser_create_array_getter(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
4773 {
4774     if (!parser_create_array_getter_proto(parser, array, elemtype, funcname))
4775         return false;
4776     return parser_create_array_getter_impl(parser, array);
4777 }
4778
4779 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef);
4780 static ast_value *parse_parameter_list(parser_t *parser, ast_value *var)
4781 {
4782     lex_ctx     ctx;
4783     size_t      i;
4784     ast_value **params;
4785     ast_value  *param;
4786     ast_value  *fval;
4787     bool        first = true;
4788     bool        variadic = false;
4789     ast_value  *varparam = NULL;
4790     char       *argcounter = NULL;
4791
4792     ctx = parser_ctx(parser);
4793
4794     /* for the sake of less code we parse-in in this function */
4795     if (!parser_next(parser)) {
4796         parseerror(parser, "expected parameter list");
4797         return NULL;
4798     }
4799
4800     params = NULL;
4801
4802     /* parse variables until we hit a closing paren */
4803     while (parser->tok != ')') {
4804         if (!first) {
4805             /* there must be commas between them */
4806             if (parser->tok != ',') {
4807                 parseerror(parser, "expected comma or end of parameter list");
4808                 goto on_error;
4809             }
4810             if (!parser_next(parser)) {
4811                 parseerror(parser, "expected parameter");
4812                 goto on_error;
4813             }
4814         }
4815         first = false;
4816
4817         if (parser->tok == TOKEN_DOTS) {
4818             /* '...' indicates a varargs function */
4819             variadic = true;
4820             if (!parser_next(parser) || (parser->tok != ')' && parser->tok != TOKEN_IDENT)) {
4821                 parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4822                 goto on_error;
4823             }
4824             if (parser->tok == TOKEN_IDENT) {
4825                 argcounter = util_strdup(parser_tokval(parser));
4826                 if (!parser_next(parser) || parser->tok != ')') {
4827                     parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4828                     goto on_error;
4829                 }
4830             }
4831         }
4832         else
4833         {
4834             /* for anything else just parse a typename */
4835             param = parse_typename(parser, NULL, NULL);
4836             if (!param)
4837                 goto on_error;
4838             vec_push(params, param);
4839             if (param->expression.vtype >= TYPE_VARIANT) {
4840                 char tname[1024]; /* typename is reserved in C++ */
4841                 ast_type_to_string((ast_expression*)param, tname, sizeof(tname));
4842                 parseerror(parser, "type not supported as part of a parameter list: %s", tname);
4843                 goto on_error;
4844             }
4845             /* type-restricted varargs */
4846             if (parser->tok == TOKEN_DOTS) {
4847                 variadic = true;
4848                 varparam = vec_last(params);
4849                 vec_pop(params);
4850                 if (!parser_next(parser) || (parser->tok != ')' && parser->tok != TOKEN_IDENT)) {
4851                     parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4852                     goto on_error;
4853                 }
4854                 if (parser->tok == TOKEN_IDENT) {
4855                     argcounter = util_strdup(parser_tokval(parser));
4856                     if (!parser_next(parser) || parser->tok != ')') {
4857                         parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4858                         goto on_error;
4859                     }
4860                 }
4861             }
4862         }
4863     }
4864
4865     if (vec_size(params) == 1 && params[0]->expression.vtype == TYPE_VOID)
4866         vec_free(params);
4867
4868     /* sanity check */
4869     if (vec_size(params) > 8 && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
4870         (void)!parsewarning(parser, WARN_EXTENSIONS, "more than 8 parameters are not supported by this standard");
4871
4872     /* parse-out */
4873     if (!parser_next(parser)) {
4874         parseerror(parser, "parse error after typename");
4875         goto on_error;
4876     }
4877
4878     /* now turn 'var' into a function type */
4879     fval = ast_value_new(ctx, "<type()>", TYPE_FUNCTION);
4880     fval->expression.next     = (ast_expression*)var;
4881     if (variadic)
4882         fval->expression.flags |= AST_FLAG_VARIADIC;
4883     var = fval;
4884
4885     var->expression.params   = params;
4886     var->expression.varparam = (ast_expression*)varparam;
4887     var->argcounter          = argcounter;
4888     params = NULL;
4889
4890     return var;
4891
4892 on_error:
4893     if (argcounter)
4894         mem_d(argcounter);
4895     if (varparam)
4896         ast_delete(varparam);
4897     ast_delete(var);
4898     for (i = 0; i < vec_size(params); ++i)
4899         ast_delete(params[i]);
4900     vec_free(params);
4901     return NULL;
4902 }
4903
4904 static ast_value *parse_arraysize(parser_t *parser, ast_value *var)
4905 {
4906     ast_expression *cexp;
4907     ast_value      *cval, *tmp;
4908     lex_ctx ctx;
4909
4910     ctx = parser_ctx(parser);
4911
4912     if (!parser_next(parser)) {
4913         ast_delete(var);
4914         parseerror(parser, "expected array-size");
4915         return NULL;
4916     }
4917
4918     cexp = parse_expression_leave(parser, true, false, false);
4919
4920     if (!cexp || !ast_istype(cexp, ast_value)) {
4921         if (cexp)
4922             ast_unref(cexp);
4923         ast_delete(var);
4924         parseerror(parser, "expected array-size as constant positive integer");
4925         return NULL;
4926     }
4927     cval = (ast_value*)cexp;
4928
4929     tmp = ast_value_new(ctx, "<type[]>", TYPE_ARRAY);
4930     tmp->expression.next = (ast_expression*)var;
4931     var = tmp;
4932
4933     if (cval->expression.vtype == TYPE_INTEGER)
4934         tmp->expression.count = cval->constval.vint;
4935     else if (cval->expression.vtype == TYPE_FLOAT)
4936         tmp->expression.count = cval->constval.vfloat;
4937     else {
4938         ast_unref(cexp);
4939         ast_delete(var);
4940         parseerror(parser, "array-size must be a positive integer constant");
4941         return NULL;
4942     }
4943     ast_unref(cexp);
4944
4945     if (parser->tok != ']') {
4946         ast_delete(var);
4947         parseerror(parser, "expected ']' after array-size");
4948         return NULL;
4949     }
4950     if (!parser_next(parser)) {
4951         ast_delete(var);
4952         parseerror(parser, "error after parsing array size");
4953         return NULL;
4954     }
4955     return var;
4956 }
4957
4958 /* Parse a complete typename.
4959  * for single-variables (ie. function parameters or typedefs) storebase should be NULL
4960  * but when parsing variables separated by comma
4961  * 'storebase' should point to where the base-type should be kept.
4962  * The base type makes up every bit of type information which comes *before* the
4963  * variable name.
4964  *
4965  * The following will be parsed in its entirety:
4966  *     void() foo()
4967  * The 'basetype' in this case is 'void()'
4968  * and if there's a comma after it, say:
4969  *     void() foo(), bar
4970  * then the type-information 'void()' can be stored in 'storebase'
4971  */
4972 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef)
4973 {
4974     ast_value *var, *tmp;
4975     lex_ctx    ctx;
4976
4977     const char *name = NULL;
4978     bool        isfield  = false;
4979     bool        wasarray = false;
4980     size_t      morefields = 0;
4981
4982     ctx = parser_ctx(parser);
4983
4984     /* types may start with a dot */
4985     if (parser->tok == '.') {
4986         isfield = true;
4987         /* if we parsed a dot we need a typename now */
4988         if (!parser_next(parser)) {
4989             parseerror(parser, "expected typename for field definition");
4990             return NULL;
4991         }
4992
4993         /* Further dots are handled seperately because they won't be part of the
4994          * basetype
4995          */
4996         while (parser->tok == '.') {
4997             ++morefields;
4998             if (!parser_next(parser)) {
4999                 parseerror(parser, "expected typename for field definition");
5000                 return NULL;
5001             }
5002         }
5003     }
5004     if (parser->tok == TOKEN_IDENT)
5005         cached_typedef = parser_find_typedef(parser, parser_tokval(parser), 0);
5006     if (!cached_typedef && parser->tok != TOKEN_TYPENAME) {
5007         parseerror(parser, "expected typename");
5008         return NULL;
5009     }
5010
5011     /* generate the basic type value */
5012     if (cached_typedef) {
5013         var = ast_value_copy(cached_typedef);
5014         ast_value_set_name(var, "<type(from_def)>");
5015     } else
5016         var = ast_value_new(ctx, "<type>", parser_token(parser)->constval.t);
5017
5018     for (; morefields; --morefields) {
5019         tmp = ast_value_new(ctx, "<.type>", TYPE_FIELD);
5020         tmp->expression.next = (ast_expression*)var;
5021         var = tmp;
5022     }
5023
5024     /* do not yet turn into a field - remember:
5025      * .void() foo; is a field too
5026      * .void()() foo; is a function
5027      */
5028
5029     /* parse on */
5030     if (!parser_next(parser)) {
5031         ast_delete(var);
5032         parseerror(parser, "parse error after typename");
5033         return NULL;
5034     }
5035
5036     /* an opening paren now starts the parameter-list of a function
5037      * this is where original-QC has parameter lists.
5038      * We allow a single parameter list here.
5039      * Much like fteqcc we don't allow `float()() x`
5040      */
5041     if (parser->tok == '(') {
5042         var = parse_parameter_list(parser, var);
5043         if (!var)
5044             return NULL;
5045     }
5046
5047     /* store the base if requested */
5048     if (storebase) {
5049         *storebase = ast_value_copy(var);
5050         if (isfield) {
5051             tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
5052             tmp->expression.next = (ast_expression*)*storebase;
5053             *storebase = tmp;
5054         }
5055     }
5056
5057     /* there may be a name now */
5058     if (parser->tok == TOKEN_IDENT) {
5059         name = util_strdup(parser_tokval(parser));
5060         /* parse on */
5061         if (!parser_next(parser)) {
5062             ast_delete(var);
5063             parseerror(parser, "error after variable or field declaration");
5064             return NULL;
5065         }
5066     }
5067
5068     /* now this may be an array */
5069     if (parser->tok == '[') {
5070         wasarray = true;
5071         var = parse_arraysize(parser, var);
5072         if (!var)
5073             return NULL;
5074     }
5075
5076     /* This is the point where we can turn it into a field */
5077     if (isfield) {
5078         /* turn it into a field if desired */
5079         tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
5080         tmp->expression.next = (ast_expression*)var;
5081         var = tmp;
5082     }
5083
5084     /* now there may be function parens again */
5085     if (parser->tok == '(' && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
5086         parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
5087     if (parser->tok == '(' && wasarray)
5088         parseerror(parser, "arrays as part of a return type is not supported");
5089     while (parser->tok == '(') {
5090         var = parse_parameter_list(parser, var);
5091         if (!var) {
5092             if (name)
5093                 mem_d((void*)name);
5094             return NULL;
5095         }
5096     }
5097
5098     /* finally name it */
5099     if (name) {
5100         if (!ast_value_set_name(var, name)) {
5101             ast_delete(var);
5102             parseerror(parser, "internal error: failed to set name");
5103             return NULL;
5104         }
5105         /* free the name, ast_value_set_name duplicates */
5106         mem_d((void*)name);
5107     }
5108
5109     return var;
5110 }
5111
5112 static bool parse_typedef(parser_t *parser)
5113 {
5114     ast_value      *typevar, *oldtype;
5115     ast_expression *old;
5116
5117     typevar = parse_typename(parser, NULL, NULL);
5118
5119     if (!typevar)
5120         return false;
5121
5122     if ( (old = parser_find_var(parser, typevar->name)) ) {
5123         parseerror(parser, "cannot define a type with the same name as a variable: %s\n"
5124                    " -> `%s` has been declared here: %s:%i",
5125                    typevar->name, ast_ctx(old).file, ast_ctx(old).line);
5126         ast_delete(typevar);
5127         return false;
5128     }
5129
5130     if ( (oldtype = parser_find_typedef(parser, typevar->name, vec_last(parser->_blocktypedefs))) ) {
5131         parseerror(parser, "type `%s` has already been declared here: %s:%i",
5132                    typevar->name, ast_ctx(oldtype).file, ast_ctx(oldtype).line);
5133         ast_delete(typevar);
5134         return false;
5135     }
5136
5137     vec_push(parser->_typedefs, typevar);
5138     util_htset(vec_last(parser->typedefs), typevar->name, typevar);
5139
5140     if (parser->tok != ';') {
5141         parseerror(parser, "expected semicolon after typedef");
5142         return false;
5143     }
5144     if (!parser_next(parser)) {
5145         parseerror(parser, "parse error after typedef");
5146         return false;
5147     }
5148
5149     return true;
5150 }
5151
5152 static const char *cvq_to_str(int cvq) {
5153     switch (cvq) {
5154         case CV_NONE:  return "none";
5155         case CV_VAR:   return "`var`";
5156         case CV_CONST: return "`const`";
5157         default:       return "<INVALID>";
5158     }
5159 }
5160
5161 static bool parser_check_qualifiers(parser_t *parser, const ast_value *var, const ast_value *proto)
5162 {
5163     bool av, ao;
5164     if (proto->cvq != var->cvq) {
5165         if (!(proto->cvq == CV_CONST && var->cvq == CV_NONE &&
5166               !OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
5167               parser->tok == '='))
5168         {
5169             return !parsewarning(parser, WARN_DIFFERENT_QUALIFIERS,
5170                                  "`%s` declared with different qualifiers: %s\n"
5171                                  " -> previous declaration here: %s:%i uses %s",
5172                                  var->name, cvq_to_str(var->cvq),
5173                                  ast_ctx(proto).file, ast_ctx(proto).line,
5174                                  cvq_to_str(proto->cvq));
5175         }
5176     }
5177     av = (var  ->expression.flags & AST_FLAG_NORETURN);
5178     ao = (proto->expression.flags & AST_FLAG_NORETURN);
5179     if (!av != !ao) {
5180         return !parsewarning(parser, WARN_DIFFERENT_ATTRIBUTES,
5181                              "`%s` declared with different attributes%s\n"
5182                              " -> previous declaration here: %s:%i",
5183                              var->name, (av ? ": noreturn" : ""),
5184                              ast_ctx(proto).file, ast_ctx(proto).line,
5185                              (ao ? ": noreturn" : ""));
5186     }
5187     return true;
5188 }
5189
5190 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)
5191 {
5192     ast_value *var;
5193     ast_value *proto;
5194     ast_expression *old;
5195     bool       was_end;
5196     size_t     i;
5197
5198     ast_value *basetype = NULL;
5199     bool      retval    = true;
5200     bool      isparam   = false;
5201     bool      isvector  = false;
5202     bool      cleanvar  = true;
5203     bool      wasarray  = false;
5204
5205     ast_member *me[3] = { NULL, NULL, NULL };
5206
5207     if (!localblock && is_static)
5208         parseerror(parser, "`static` qualifier is not supported in global scope");
5209
5210     /* get the first complete variable */
5211     var = parse_typename(parser, &basetype, cached_typedef);
5212     if (!var) {
5213         if (basetype)
5214             ast_delete(basetype);
5215         return false;
5216     }
5217
5218     while (true) {
5219         proto = NULL;
5220         wasarray = false;
5221
5222         /* Part 0: finish the type */
5223         if (parser->tok == '(') {
5224             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
5225                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
5226             var = parse_parameter_list(parser, var);
5227             if (!var) {
5228                 retval = false;
5229                 goto cleanup;
5230             }
5231         }
5232         /* we only allow 1-dimensional arrays */
5233         if (parser->tok == '[') {
5234             wasarray = true;
5235             var = parse_arraysize(parser, var);
5236             if (!var) {
5237                 retval = false;
5238                 goto cleanup;
5239             }
5240         }
5241         if (parser->tok == '(' && wasarray) {
5242             parseerror(parser, "arrays as part of a return type is not supported");
5243             /* we'll still parse the type completely for now */
5244         }
5245         /* for functions returning functions */
5246         while (parser->tok == '(') {
5247             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
5248                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
5249             var = parse_parameter_list(parser, var);
5250             if (!var) {
5251                 retval = false;
5252                 goto cleanup;
5253             }
5254         }
5255
5256         var->cvq = qualifier;
5257         var->expression.flags |= qflags;
5258
5259         /*
5260          * store the vstring back to var for alias and
5261          * deprecation messages.
5262          */
5263         if (var->expression.flags & AST_FLAG_DEPRECATED ||
5264             var->expression.flags & AST_FLAG_ALIAS)
5265             var->desc = vstring;
5266
5267         /* Part 1:
5268          * check for validity: (end_sys_..., multiple-definitions, prototypes, ...)
5269          * Also: if there was a prototype, `var` will be deleted and set to `proto` which
5270          * is then filled with the previous definition and the parameter-names replaced.
5271          */
5272         if (!strcmp(var->name, "nil")) {
5273             if (OPTS_FLAG(UNTYPED_NIL)) {
5274                 if (!localblock || !OPTS_FLAG(PERMISSIVE))
5275                     parseerror(parser, "name `nil` not allowed (try -fpermissive)");
5276             } else
5277                 (void)!parsewarning(parser, WARN_RESERVED_NAMES, "variable name `nil` is reserved");
5278         }
5279         if (!localblock) {
5280             /* Deal with end_sys_ vars */
5281             was_end = false;
5282             if (!strcmp(var->name, "end_sys_globals")) {
5283                 var->uses++;
5284                 parser->crc_globals = vec_size(parser->globals);
5285                 was_end = true;
5286             }
5287             else if (!strcmp(var->name, "end_sys_fields")) {
5288                 var->uses++;
5289                 parser->crc_fields = vec_size(parser->fields);
5290                 was_end = true;
5291             }
5292             if (was_end && var->expression.vtype == TYPE_FIELD) {
5293                 if (parsewarning(parser, WARN_END_SYS_FIELDS,
5294                                  "global '%s' hint should not be a field",
5295                                  parser_tokval(parser)))
5296                 {
5297                     retval = false;
5298                     goto cleanup;
5299                 }
5300             }
5301
5302             if (!nofields && var->expression.vtype == TYPE_FIELD)
5303             {
5304                 /* deal with field declarations */
5305                 old = parser_find_field(parser, var->name);
5306                 if (old) {
5307                     if (parsewarning(parser, WARN_FIELD_REDECLARED, "field `%s` already declared here: %s:%i",
5308                                      var->name, ast_ctx(old).file, (int)ast_ctx(old).line))
5309                     {
5310                         retval = false;
5311                         goto cleanup;
5312                     }
5313                     ast_delete(var);
5314                     var = NULL;
5315                     goto skipvar;
5316                     /*
5317                     parseerror(parser, "field `%s` already declared here: %s:%i",
5318                                var->name, ast_ctx(old).file, ast_ctx(old).line);
5319                     retval = false;
5320                     goto cleanup;
5321                     */
5322                 }
5323                 if ((OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC || OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_FTEQCC) &&
5324                     (old = parser_find_global(parser, var->name)))
5325                 {
5326                     parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
5327                     parseerror(parser, "field `%s` already declared here: %s:%i",
5328                                var->name, ast_ctx(old).file, ast_ctx(old).line);
5329                     retval = false;
5330                     goto cleanup;
5331                 }
5332             }
5333             else
5334             {
5335                 /* deal with other globals */
5336                 old = parser_find_global(parser, var->name);
5337                 if (old && var->expression.vtype == TYPE_FUNCTION && old->vtype == TYPE_FUNCTION)
5338                 {
5339                     /* This is a function which had a prototype */
5340                     if (!ast_istype(old, ast_value)) {
5341                         parseerror(parser, "internal error: prototype is not an ast_value");
5342                         retval = false;
5343                         goto cleanup;
5344                     }
5345                     proto = (ast_value*)old;
5346                     proto->desc = var->desc;
5347                     if (!ast_compare_type((ast_expression*)proto, (ast_expression*)var)) {
5348                         parseerror(parser, "conflicting types for `%s`, previous declaration was here: %s:%i",
5349                                    proto->name,
5350                                    ast_ctx(proto).file, ast_ctx(proto).line);
5351                         retval = false;
5352                         goto cleanup;
5353                     }
5354                     /* we need the new parameter-names */
5355                     for (i = 0; i < vec_size(proto->expression.params); ++i)
5356                         ast_value_set_name(proto->expression.params[i], var->expression.params[i]->name);
5357                     if (!parser_check_qualifiers(parser, var, proto)) {
5358                         retval = false;
5359                         if (proto->desc)
5360                             mem_d(proto->desc);
5361                         proto = NULL;
5362                         goto cleanup;
5363                     }
5364                     proto->expression.flags |= var->expression.flags;
5365                     ast_delete(var);
5366                     var = proto;
5367                 }
5368                 else
5369                 {
5370                     /* other globals */
5371                     if (old) {
5372                         if (parsewarning(parser, WARN_DOUBLE_DECLARATION,
5373                                          "global `%s` already declared here: %s:%i",
5374                                          var->name, ast_ctx(old).file, ast_ctx(old).line))
5375                         {
5376                             retval = false;
5377                             goto cleanup;
5378                         }
5379                         proto = (ast_value*)old;
5380                         if (!ast_istype(old, ast_value)) {
5381                             parseerror(parser, "internal error: not an ast_value");
5382                             retval = false;
5383                             proto = NULL;
5384                             goto cleanup;
5385                         }
5386                         if (!parser_check_qualifiers(parser, var, proto)) {
5387                             retval = false;
5388                             proto = NULL;
5389                             goto cleanup;
5390                         }
5391                         proto->expression.flags |= var->expression.flags;
5392                         ast_delete(var);
5393                         var = proto;
5394                     }
5395                     if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC &&
5396                         (old = parser_find_field(parser, var->name)))
5397                     {
5398                         parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
5399                         parseerror(parser, "global `%s` already declared here: %s:%i",
5400                                    var->name, ast_ctx(old).file, ast_ctx(old).line);
5401                         retval = false;
5402                         goto cleanup;
5403                     }
5404                 }
5405             }
5406         }
5407         else /* it's not a global */
5408         {
5409             old = parser_find_local(parser, var->name, vec_size(parser->variables)-1, &isparam);
5410             if (old && !isparam) {
5411                 parseerror(parser, "local `%s` already declared here: %s:%i",
5412                            var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
5413                 retval = false;
5414                 goto cleanup;
5415             }
5416             old = parser_find_local(parser, var->name, 0, &isparam);
5417             if (old && isparam) {
5418                 if (parsewarning(parser, WARN_LOCAL_SHADOWS,
5419                                  "local `%s` is shadowing a parameter", var->name))
5420                 {
5421                     parseerror(parser, "local `%s` already declared here: %s:%i",
5422                                var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
5423                     retval = false;
5424                     goto cleanup;
5425                 }
5426                 if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_GMQCC) {
5427                     ast_delete(var);
5428                     var = NULL;
5429                     goto skipvar;
5430                 }
5431             }
5432         }
5433
5434         /* in a noref section we simply bump the usecount */
5435         if (noref || parser->noref)
5436             var->uses++;
5437
5438         /* Part 2:
5439          * Create the global/local, and deal with vector types.
5440          */
5441         if (!proto) {
5442             if (var->expression.vtype == TYPE_VECTOR)
5443                 isvector = true;
5444             else if (var->expression.vtype == TYPE_FIELD &&
5445                      var->expression.next->vtype == TYPE_VECTOR)
5446                 isvector = true;
5447
5448             if (isvector) {
5449                 if (!create_vector_members(var, me)) {
5450                     retval = false;
5451                     goto cleanup;
5452                 }
5453             }
5454
5455             if (!localblock) {
5456                 /* deal with global variables, fields, functions */
5457                 if (!nofields && var->expression.vtype == TYPE_FIELD && parser->tok != '=') {
5458                     var->isfield = true;
5459                     vec_push(parser->fields, (ast_expression*)var);
5460                     util_htset(parser->htfields, var->name, var);
5461                     if (isvector) {
5462                         for (i = 0; i < 3; ++i) {
5463                             vec_push(parser->fields, (ast_expression*)me[i]);
5464                             util_htset(parser->htfields, me[i]->name, me[i]);
5465                         }
5466                     }
5467                 }
5468                 else {
5469                     if (!(var->expression.flags & AST_FLAG_ALIAS)) {
5470                         parser_addglobal(parser, var->name, (ast_expression*)var);
5471                         if (isvector) {
5472                             for (i = 0; i < 3; ++i) {
5473                                 parser_addglobal(parser, me[i]->name, (ast_expression*)me[i]);
5474                             }
5475                         }
5476                     } else {
5477                         ast_expression *find  = parser_find_global(parser, var->desc);
5478
5479                         if (!find) {
5480                             compile_error(parser_ctx(parser), "undeclared variable `%s` for alias `%s`", var->desc, var->name);
5481                             return false;
5482                         }
5483
5484                         if (var->expression.vtype != find->vtype) {
5485                             char ty1[1024];
5486                             char ty2[1024];
5487
5488                             ast_type_to_string(find,                  ty1, sizeof(ty1));
5489                             ast_type_to_string((ast_expression*)var,  ty2, sizeof(ty2));
5490
5491                             compile_error(parser_ctx(parser), "incompatible types `%s` and `%s` for alias `%s`",
5492                                 ty1, ty2, var->name
5493                             );
5494                             return false;
5495                         }
5496
5497                         /*
5498                          * add alias to aliases table and to corrector
5499                          * so corrections can apply for aliases as well.
5500                          */
5501                         util_htset(parser->aliases, var->name, find);
5502
5503                         /*
5504                          * add to corrector so corrections can work
5505                          * even for aliases too.
5506                          */
5507                         correct_add (
5508                              vec_last(parser->correct_variables),
5509                             &vec_last(parser->correct_variables_score),
5510                             var->name
5511                         );
5512
5513                         /* generate aliases for vector components */
5514                         if (isvector) {
5515                             char *buffer[3];
5516
5517                             util_asprintf(&buffer[0], "%s_x", var->desc);
5518                             util_asprintf(&buffer[1], "%s_y", var->desc);
5519                             util_asprintf(&buffer[2], "%s_z", var->desc);
5520
5521                             util_htset(parser->aliases, me[0]->name, parser_find_global(parser, buffer[0]));
5522                             util_htset(parser->aliases, me[1]->name, parser_find_global(parser, buffer[1]));
5523                             util_htset(parser->aliases, me[2]->name, parser_find_global(parser, buffer[2]));
5524
5525                             mem_d(buffer[0]);
5526                             mem_d(buffer[1]);
5527                             mem_d(buffer[2]);
5528
5529                             /*
5530                              * add to corrector so corrections can work
5531                              * even for aliases too.
5532                              */
5533                             correct_add (
5534                                  vec_last(parser->correct_variables),
5535                                 &vec_last(parser->correct_variables_score),
5536                                 me[0]->name
5537                             );
5538                             correct_add (
5539                                  vec_last(parser->correct_variables),
5540                                 &vec_last(parser->correct_variables_score),
5541                                 me[1]->name
5542                             );
5543                             correct_add (
5544                                  vec_last(parser->correct_variables),
5545                                 &vec_last(parser->correct_variables_score),
5546                                 me[2]->name
5547                             );
5548                         }
5549                     }
5550                 }
5551             } else {
5552                 if (is_static) {
5553                     /* a static adds itself to be generated like any other global
5554                      * but is added to the local namespace instead
5555                      */
5556                     char   *defname = NULL;
5557                     size_t  prefix_len, ln;
5558
5559                     ln = strlen(parser->function->name);
5560                     vec_append(defname, ln, parser->function->name);
5561
5562                     vec_append(defname, 2, "::");
5563                     /* remember the length up to here */
5564                     prefix_len = vec_size(defname);
5565
5566                     /* Add it to the local scope */
5567                     util_htset(vec_last(parser->variables), var->name, (void*)var);
5568
5569                     /* corrector */
5570                     correct_add (
5571                          vec_last(parser->correct_variables),
5572                         &vec_last(parser->correct_variables_score),
5573                         var->name
5574                     );
5575
5576                     /* now rename the global */
5577                     ln = strlen(var->name);
5578                     vec_append(defname, ln, var->name);
5579                     ast_value_set_name(var, defname);
5580
5581                     /* push it to the to-be-generated globals */
5582                     vec_push(parser->globals, (ast_expression*)var);
5583
5584                     /* same game for the vector members */
5585                     if (isvector) {
5586                         for (i = 0; i < 3; ++i) {
5587                             util_htset(vec_last(parser->variables), me[i]->name, (void*)(me[i]));
5588
5589                             /* corrector */
5590                             correct_add(
5591                                  vec_last(parser->correct_variables),
5592                                 &vec_last(parser->correct_variables_score),
5593                                 me[i]->name
5594                             );
5595
5596                             vec_shrinkto(defname, prefix_len);
5597                             ln = strlen(me[i]->name);
5598                             vec_append(defname, ln, me[i]->name);
5599                             ast_member_set_name(me[i], defname);
5600
5601                             vec_push(parser->globals, (ast_expression*)me[i]);
5602                         }
5603                     }
5604                     vec_free(defname);
5605                 } else {
5606                     vec_push(localblock->locals, var);
5607                     parser_addlocal(parser, var->name, (ast_expression*)var);
5608                     if (isvector) {
5609                         for (i = 0; i < 3; ++i) {
5610                             parser_addlocal(parser, me[i]->name, (ast_expression*)me[i]);
5611                             ast_block_collect(localblock, (ast_expression*)me[i]);
5612                         }
5613                     }
5614                 }
5615             }
5616         }
5617         me[0] = me[1] = me[2] = NULL;
5618         cleanvar = false;
5619         /* Part 2.2
5620          * deal with arrays
5621          */
5622         if (var->expression.vtype == TYPE_ARRAY) {
5623             char name[1024];
5624             util_snprintf(name, sizeof(name), "%s##SET", var->name);
5625             if (!parser_create_array_setter(parser, var, name))
5626                 goto cleanup;
5627             util_snprintf(name, sizeof(name), "%s##GET", var->name);
5628             if (!parser_create_array_getter(parser, var, var->expression.next, name))
5629                 goto cleanup;
5630         }
5631         else if (!localblock && !nofields &&
5632                  var->expression.vtype == TYPE_FIELD &&
5633                  var->expression.next->vtype == TYPE_ARRAY)
5634         {
5635             char name[1024];
5636             ast_expression *telem;
5637             ast_value      *tfield;
5638             ast_value      *array = (ast_value*)var->expression.next;
5639
5640             if (!ast_istype(var->expression.next, ast_value)) {
5641                 parseerror(parser, "internal error: field element type must be an ast_value");
5642                 goto cleanup;
5643             }
5644
5645             util_snprintf(name, sizeof(name), "%s##SETF", var->name);
5646             if (!parser_create_array_field_setter(parser, array, name))
5647                 goto cleanup;
5648
5649             telem = ast_type_copy(ast_ctx(var), array->expression.next);
5650             tfield = ast_value_new(ast_ctx(var), "<.type>", TYPE_FIELD);
5651             tfield->expression.next = telem;
5652             util_snprintf(name, sizeof(name), "%s##GETFP", var->name);
5653             if (!parser_create_array_getter(parser, array, (ast_expression*)tfield, name)) {
5654                 ast_delete(tfield);
5655                 goto cleanup;
5656             }
5657             ast_delete(tfield);
5658         }
5659
5660 skipvar:
5661         if (parser->tok == ';') {
5662             ast_delete(basetype);
5663             if (!parser_next(parser)) {
5664                 parseerror(parser, "error after variable declaration");
5665                 return false;
5666             }
5667             return true;
5668         }
5669
5670         if (parser->tok == ',')
5671             goto another;
5672
5673         /*
5674         if (!var || (!localblock && !nofields && basetype->expression.vtype == TYPE_FIELD)) {
5675         */
5676         if (!var) {
5677             parseerror(parser, "missing comma or semicolon while parsing variables");
5678             break;
5679         }
5680
5681         if (localblock && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
5682             if (parsewarning(parser, WARN_LOCAL_CONSTANTS,
5683                              "initializing expression turns variable `%s` into a constant in this standard",
5684                              var->name) )
5685             {
5686                 break;
5687             }
5688         }
5689
5690         if (parser->tok != '{' || var->expression.vtype != TYPE_FUNCTION) {
5691             if (parser->tok != '=') {
5692                 parseerror(parser, "missing semicolon or initializer, got: `%s`", parser_tokval(parser));
5693                 break;
5694             }
5695
5696             if (!parser_next(parser)) {
5697                 parseerror(parser, "error parsing initializer");
5698                 break;
5699             }
5700         }
5701         else if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
5702             parseerror(parser, "expected '=' before function body in this standard");
5703         }
5704
5705         if (parser->tok == '#') {
5706             ast_function *func   = NULL;
5707             ast_value    *number = NULL;
5708             float         fractional;
5709             float         integral;
5710             int           builtin_num;
5711
5712             if (localblock) {
5713                 parseerror(parser, "cannot declare builtins within functions");
5714                 break;
5715             }
5716             if (var->expression.vtype != TYPE_FUNCTION) {
5717                 parseerror(parser, "unexpected builtin number, '%s' is not a function", var->name);
5718                 break;
5719             }
5720             if (!parser_next(parser)) {
5721                 parseerror(parser, "expected builtin number");
5722                 break;
5723             }
5724
5725             if (OPTS_FLAG(EXPRESSIONS_FOR_BUILTINS)) {
5726                 number = (ast_value*)parse_expression_leave(parser, true, false, false);
5727                 if (!number) {
5728                     parseerror(parser, "builtin number expected");
5729                     break;
5730                 }
5731                 if (!ast_istype(number, ast_value) || !number->hasvalue || number->cvq != CV_CONST)
5732                 {
5733                     ast_unref(number);
5734                     parseerror(parser, "builtin number must be a compile time constant");
5735                     break;
5736                 }
5737                 if (number->expression.vtype == TYPE_INTEGER)
5738                     builtin_num = number->constval.vint;
5739                 else if (number->expression.vtype == TYPE_FLOAT)
5740                     builtin_num = number->constval.vfloat;
5741                 else {
5742                     ast_unref(number);
5743                     parseerror(parser, "builtin number must be an integer constant");
5744                     break;
5745                 }
5746                 ast_unref(number);
5747
5748                 fractional = modff(builtin_num, &integral);
5749                 if (builtin_num < 0 || fractional != 0) {
5750                     parseerror(parser, "builtin number must be an integer greater than zero");
5751                     break;
5752                 }
5753
5754                 /* we only want the integral part anyways */
5755                 builtin_num = integral;
5756             } else if (parser->tok == TOKEN_INTCONST) {
5757                 builtin_num = parser_token(parser)->constval.i;
5758             } else {
5759                 parseerror(parser, "builtin number must be a compile time constant");
5760                 break;
5761             }
5762
5763             if (var->hasvalue) {
5764                 (void)!parsewarning(parser, WARN_DOUBLE_DECLARATION,
5765                                     "builtin `%s` has already been defined\n"
5766                                     " -> previous declaration here: %s:%i",
5767                                     var->name, ast_ctx(var).file, (int)ast_ctx(var).line);
5768             }
5769             else
5770             {
5771                 func = ast_function_new(ast_ctx(var), var->name, var);
5772                 if (!func) {
5773                     parseerror(parser, "failed to allocate function for `%s`", var->name);
5774                     break;
5775                 }
5776                 vec_push(parser->functions, func);
5777
5778                 func->builtin = -builtin_num-1;
5779             }
5780
5781             if (OPTS_FLAG(EXPRESSIONS_FOR_BUILTINS)
5782                     ? (parser->tok != ',' && parser->tok != ';')
5783                     : (!parser_next(parser)))
5784             {
5785                 parseerror(parser, "expected comma or semicolon");
5786                 if (func)
5787                     ast_function_delete(func);
5788                 var->constval.vfunc = NULL;
5789                 break;
5790             }
5791         }
5792         else if (var->expression.vtype == TYPE_ARRAY && parser->tok == '{')
5793         {
5794             if (localblock) {
5795                 /* Note that fteqcc and most others don't even *have*
5796                  * local arrays, so this is not a high priority.
5797                  */
5798                 parseerror(parser, "TODO: initializers for local arrays");
5799                 break;
5800             }
5801             /*
5802 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma, bool truthvalue, bool with_labels);
5803 */
5804             parseerror(parser, "TODO: initializing global arrays is not supported yet!");
5805             break;
5806         }
5807         else if (var->expression.vtype == TYPE_FUNCTION && (parser->tok == '{' || parser->tok == '['))
5808         {
5809             if (localblock) {
5810                 parseerror(parser, "cannot declare functions within functions");
5811                 break;
5812             }
5813
5814             if (proto)
5815                 ast_ctx(proto) = parser_ctx(parser);
5816
5817             if (!parse_function_body(parser, var))
5818                 break;
5819             ast_delete(basetype);
5820             for (i = 0; i < vec_size(parser->gotos); ++i)
5821                 parseerror(parser, "undefined label: `%s`", parser->gotos[i]->name);
5822             vec_free(parser->gotos);
5823             vec_free(parser->labels);
5824             return true;
5825         } else {
5826             ast_expression *cexp;
5827             ast_value      *cval;
5828
5829             cexp = parse_expression_leave(parser, true, false, false);
5830             if (!cexp)
5831                 break;
5832
5833             if (!localblock) {
5834                 cval = (ast_value*)cexp;
5835                 if (cval != parser->nil &&
5836                     (!ast_istype(cval, ast_value) || ((!cval->hasvalue || cval->cvq != CV_CONST) && !cval->isfield))
5837                    )
5838                 {
5839                     parseerror(parser, "cannot initialize a global constant variable with a non-constant expression");
5840                 }
5841                 else
5842                 {
5843                     if (!OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
5844                         qualifier != CV_VAR)
5845                     {
5846                         var->cvq = CV_CONST;
5847                     }
5848                     if (cval == parser->nil)
5849                         var->expression.flags |= AST_FLAG_INITIALIZED;
5850                     else
5851                     {
5852                         var->hasvalue = true;
5853                         if (cval->expression.vtype == TYPE_STRING)
5854                             var->constval.vstring = parser_strdup(cval->constval.vstring);
5855                         else if (cval->expression.vtype == TYPE_FIELD)
5856                             var->constval.vfield = cval;
5857                         else
5858                             memcpy(&var->constval, &cval->constval, sizeof(var->constval));
5859                         ast_unref(cval);
5860                     }
5861                 }
5862             } else {
5863                 int cvq;
5864                 shunt sy = { NULL, NULL, NULL, NULL };
5865                 cvq = var->cvq;
5866                 var->cvq = CV_NONE;
5867                 vec_push(sy.out, syexp(ast_ctx(var), (ast_expression*)var));
5868                 vec_push(sy.out, syexp(ast_ctx(cexp), (ast_expression*)cexp));
5869                 vec_push(sy.ops, syop(ast_ctx(var), parser->assign_op));
5870                 if (!parser_sy_apply_operator(parser, &sy))
5871                     ast_unref(cexp);
5872                 else {
5873                     if (vec_size(sy.out) != 1 && vec_size(sy.ops) != 0)
5874                         parseerror(parser, "internal error: leaked operands");
5875                     if (!ast_block_add_expr(localblock, (ast_expression*)sy.out[0].out))
5876                         break;
5877                 }
5878                 vec_free(sy.out);
5879                 vec_free(sy.ops);
5880                 vec_free(sy.argc);
5881                 var->cvq = cvq;
5882             }
5883         }
5884
5885 another:
5886         if (parser->tok == ',') {
5887             if (!parser_next(parser)) {
5888                 parseerror(parser, "expected another variable");
5889                 break;
5890             }
5891
5892             if (parser->tok != TOKEN_IDENT) {
5893                 parseerror(parser, "expected another variable");
5894                 break;
5895             }
5896             var = ast_value_copy(basetype);
5897             cleanvar = true;
5898             ast_value_set_name(var, parser_tokval(parser));
5899             if (!parser_next(parser)) {
5900                 parseerror(parser, "error parsing variable declaration");
5901                 break;
5902             }
5903             continue;
5904         }
5905
5906         if (parser->tok != ';') {
5907             parseerror(parser, "missing semicolon after variables");
5908             break;
5909         }
5910
5911         if (!parser_next(parser)) {
5912             parseerror(parser, "parse error after variable declaration");
5913             break;
5914         }
5915
5916         ast_delete(basetype);
5917         return true;
5918     }
5919
5920     if (cleanvar && var)
5921         ast_delete(var);
5922     ast_delete(basetype);
5923     return false;
5924
5925 cleanup:
5926     ast_delete(basetype);
5927     if (cleanvar && var)
5928         ast_delete(var);
5929     if (me[0]) ast_member_delete(me[0]);
5930     if (me[1]) ast_member_delete(me[1]);
5931     if (me[2]) ast_member_delete(me[2]);
5932     return retval;
5933 }
5934
5935 static bool parser_global_statement(parser_t *parser)
5936 {
5937     int        cvq       = CV_WRONG;
5938     bool       noref     = false;
5939     bool       is_static = false;
5940     uint32_t   qflags    = 0;
5941     ast_value *istype    = NULL;
5942     char      *vstring   = NULL;
5943
5944     if (parser->tok == TOKEN_IDENT)
5945         istype = parser_find_typedef(parser, parser_tokval(parser), 0);
5946
5947     if (istype || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
5948     {
5949         return parse_variable(parser, NULL, false, CV_NONE, istype, false, false, 0, NULL);
5950     }
5951     else if (parse_qualifiers(parser, false, &cvq, &noref, &is_static, &qflags, &vstring))
5952     {
5953         if (cvq == CV_WRONG)
5954             return false;
5955         return parse_variable(parser, NULL, true, cvq, NULL, noref, is_static, qflags, vstring);
5956     }
5957     else if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "enum"))
5958     {
5959         return parse_enum(parser);
5960     }
5961     else if (parser->tok == TOKEN_KEYWORD)
5962     {
5963         if (!strcmp(parser_tokval(parser), "typedef")) {
5964             if (!parser_next(parser)) {
5965                 parseerror(parser, "expected type definition after 'typedef'");
5966                 return false;
5967             }
5968             return parse_typedef(parser);
5969         }
5970         parseerror(parser, "unrecognized keyword `%s`", parser_tokval(parser));
5971         return false;
5972     }
5973     else if (parser->tok == '#')
5974     {
5975         return parse_pragma(parser);
5976     }
5977     else if (parser->tok == '$')
5978     {
5979         if (!parser_next(parser)) {
5980             parseerror(parser, "parse error");
5981             return false;
5982         }
5983     }
5984     else
5985     {
5986         parseerror(parser, "unexpected token: `%s`", parser->lex->tok.value);
5987         return false;
5988     }
5989     return true;
5990 }
5991
5992 static uint16_t progdefs_crc_sum(uint16_t old, const char *str)
5993 {
5994     return util_crc16(old, str, strlen(str));
5995 }
5996
5997 static void progdefs_crc_file(const char *str)
5998 {
5999     /* write to progdefs.h here */
6000     (void)str;
6001 }
6002
6003 static uint16_t progdefs_crc_both(uint16_t old, const char *str)
6004 {
6005     old = progdefs_crc_sum(old, str);
6006     progdefs_crc_file(str);
6007     return old;
6008 }
6009
6010 static void generate_checksum(parser_t *parser)
6011 {
6012     uint16_t   crc = 0xFFFF;
6013     size_t     i;
6014     ast_value *value;
6015
6016     crc = progdefs_crc_both(crc, "\n/* file generated by qcc, do not modify */\n\ntypedef struct\n{");
6017     crc = progdefs_crc_sum(crc, "\tint\tpad[28];\n");
6018     /*
6019     progdefs_crc_file("\tint\tpad;\n");
6020     progdefs_crc_file("\tint\tofs_return[3];\n");
6021     progdefs_crc_file("\tint\tofs_parm0[3];\n");
6022     progdefs_crc_file("\tint\tofs_parm1[3];\n");
6023     progdefs_crc_file("\tint\tofs_parm2[3];\n");
6024     progdefs_crc_file("\tint\tofs_parm3[3];\n");
6025     progdefs_crc_file("\tint\tofs_parm4[3];\n");
6026     progdefs_crc_file("\tint\tofs_parm5[3];\n");
6027     progdefs_crc_file("\tint\tofs_parm6[3];\n");
6028     progdefs_crc_file("\tint\tofs_parm7[3];\n");
6029     */
6030     for (i = 0; i < parser->crc_globals; ++i) {
6031         if (!ast_istype(parser->globals[i], ast_value))
6032             continue;
6033         value = (ast_value*)(parser->globals[i]);
6034         switch (value->expression.vtype) {
6035             case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
6036             case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
6037             case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
6038             case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
6039             default:
6040                 crc = progdefs_crc_both(crc, "\tint\t");
6041                 break;
6042         }
6043         crc = progdefs_crc_both(crc, value->name);
6044         crc = progdefs_crc_both(crc, ";\n");
6045     }
6046     crc = progdefs_crc_both(crc, "} globalvars_t;\n\ntypedef struct\n{\n");
6047     for (i = 0; i < parser->crc_fields; ++i) {
6048         if (!ast_istype(parser->fields[i], ast_value))
6049             continue;
6050         value = (ast_value*)(parser->fields[i]);
6051         switch (value->expression.next->vtype) {
6052             case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
6053             case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
6054             case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
6055             case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
6056             default:
6057                 crc = progdefs_crc_both(crc, "\tint\t");
6058                 break;
6059         }
6060         crc = progdefs_crc_both(crc, value->name);
6061         crc = progdefs_crc_both(crc, ";\n");
6062     }
6063     crc = progdefs_crc_both(crc, "} entvars_t;\n\n");
6064
6065     parser->code->crc = crc;
6066 }
6067
6068 parser_t *parser_create()
6069 {
6070     parser_t *parser;
6071     lex_ctx empty_ctx;
6072     size_t i;
6073
6074     parser = (parser_t*)mem_a(sizeof(parser_t));
6075     if (!parser)
6076         return NULL;
6077
6078     memset(parser, 0, sizeof(*parser));
6079
6080     if (!(parser->code = code_init())) {
6081         mem_d(parser);
6082         return NULL;
6083     }
6084
6085     for (i = 0; i < operator_count; ++i) {
6086         if (operators[i].id == opid1('=')) {
6087             parser->assign_op = operators+i;
6088             break;
6089         }
6090     }
6091     if (!parser->assign_op) {
6092         printf("internal error: initializing parser: failed to find assign operator\n");
6093         mem_d(parser);
6094         return NULL;
6095     }
6096
6097     vec_push(parser->variables, parser->htfields  = util_htnew(PARSER_HT_SIZE));
6098     vec_push(parser->variables, parser->htglobals = util_htnew(PARSER_HT_SIZE));
6099     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
6100     vec_push(parser->_blocktypedefs, 0);
6101
6102     parser->aliases = util_htnew(PARSER_HT_SIZE);
6103
6104     parser->ht_imm_string = util_htnew(512);
6105
6106     /* corrector */
6107     vec_push(parser->correct_variables, correct_trie_new());
6108     vec_push(parser->correct_variables_score, NULL);
6109
6110     empty_ctx.file = "<internal>";
6111     empty_ctx.line = 0;
6112     parser->nil = ast_value_new(empty_ctx, "nil", TYPE_NIL);
6113     parser->nil->cvq = CV_CONST;
6114     if (OPTS_FLAG(UNTYPED_NIL))
6115         util_htset(parser->htglobals, "nil", (void*)parser->nil);
6116
6117     parser->max_param_count = 1;
6118
6119     parser->const_vec[0] = ast_value_new(empty_ctx, "<vector.x>", TYPE_NOEXPR);
6120     parser->const_vec[1] = ast_value_new(empty_ctx, "<vector.y>", TYPE_NOEXPR);
6121     parser->const_vec[2] = ast_value_new(empty_ctx, "<vector.z>", TYPE_NOEXPR);
6122
6123     if (OPTS_OPTION_BOOL(OPTION_ADD_INFO)) {
6124         parser->reserved_version = ast_value_new(empty_ctx, "reserved:version", TYPE_STRING);
6125         parser->reserved_version->cvq = CV_CONST;
6126         parser->reserved_version->hasvalue = true;
6127         parser->reserved_version->expression.flags |= AST_FLAG_INCLUDE_DEF;
6128         parser->reserved_version->constval.vstring = util_strdup(GMQCC_FULL_VERSION_STRING);
6129     } else {
6130         parser->reserved_version = NULL;
6131     }
6132
6133     return parser;
6134 }
6135
6136 static bool parser_compile(parser_t *parser)
6137 {
6138     /* initial lexer/parser state */
6139     parser->lex->flags.noops = true;
6140
6141     if (parser_next(parser))
6142     {
6143         while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
6144         {
6145             if (!parser_global_statement(parser)) {
6146                 if (parser->tok == TOKEN_EOF)
6147                     parseerror(parser, "unexpected eof");
6148                 else if (compile_errors)
6149                     parseerror(parser, "there have been errors, bailing out");
6150                 lex_close(parser->lex);
6151                 parser->lex = NULL;
6152                 return false;
6153             }
6154         }
6155     } else {
6156         parseerror(parser, "parse error");
6157         lex_close(parser->lex);
6158         parser->lex = NULL;
6159         return false;
6160     }
6161
6162     lex_close(parser->lex);
6163     parser->lex = NULL;
6164
6165     return !compile_errors;
6166 }
6167
6168 bool parser_compile_file(parser_t *parser, const char *filename)
6169 {
6170     parser->lex = lex_open(filename);
6171     if (!parser->lex) {
6172         con_err("failed to open file \"%s\"\n", filename);
6173         return false;
6174     }
6175     return parser_compile(parser);
6176 }
6177
6178 bool parser_compile_string(parser_t *parser, const char *name, const char *str, size_t len)
6179 {
6180     parser->lex = lex_open_string(str, len, name);
6181     if (!parser->lex) {
6182         con_err("failed to create lexer for string \"%s\"\n", name);
6183         return false;
6184     }
6185     return parser_compile(parser);
6186 }
6187
6188 void parser_cleanup(parser_t *parser)
6189 {
6190     size_t i;
6191     for (i = 0; i < vec_size(parser->accessors); ++i) {
6192         ast_delete(parser->accessors[i]->constval.vfunc);
6193         parser->accessors[i]->constval.vfunc = NULL;
6194         ast_delete(parser->accessors[i]);
6195     }
6196     for (i = 0; i < vec_size(parser->functions); ++i) {
6197         ast_delete(parser->functions[i]);
6198     }
6199     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
6200         ast_delete(parser->imm_vector[i]);
6201     }
6202     for (i = 0; i < vec_size(parser->imm_string); ++i) {
6203         ast_delete(parser->imm_string[i]);
6204     }
6205     for (i = 0; i < vec_size(parser->imm_float); ++i) {
6206         ast_delete(parser->imm_float[i]);
6207     }
6208     for (i = 0; i < vec_size(parser->fields); ++i) {
6209         ast_delete(parser->fields[i]);
6210     }
6211     for (i = 0; i < vec_size(parser->globals); ++i) {
6212         ast_delete(parser->globals[i]);
6213     }
6214     vec_free(parser->accessors);
6215     vec_free(parser->functions);
6216     vec_free(parser->imm_vector);
6217     vec_free(parser->imm_string);
6218     util_htdel(parser->ht_imm_string);
6219     vec_free(parser->imm_float);
6220     vec_free(parser->globals);
6221     vec_free(parser->fields);
6222
6223     for (i = 0; i < vec_size(parser->variables); ++i)
6224         util_htdel(parser->variables[i]);
6225     vec_free(parser->variables);
6226     vec_free(parser->_blocklocals);
6227     vec_free(parser->_locals);
6228
6229     /* corrector */
6230     for (i = 0; i < vec_size(parser->correct_variables); ++i) {
6231         correct_del(parser->correct_variables[i], parser->correct_variables_score[i]);
6232     }
6233     vec_free(parser->correct_variables);
6234     vec_free(parser->correct_variables_score);
6235
6236
6237     for (i = 0; i < vec_size(parser->_typedefs); ++i)
6238         ast_delete(parser->_typedefs[i]);
6239     vec_free(parser->_typedefs);
6240     for (i = 0; i < vec_size(parser->typedefs); ++i)
6241         util_htdel(parser->typedefs[i]);
6242     vec_free(parser->typedefs);
6243     vec_free(parser->_blocktypedefs);
6244
6245     vec_free(parser->_block_ctx);
6246
6247     vec_free(parser->labels);
6248     vec_free(parser->gotos);
6249     vec_free(parser->breaks);
6250     vec_free(parser->continues);
6251
6252     ast_value_delete(parser->nil);
6253
6254     ast_value_delete(parser->const_vec[0]);
6255     ast_value_delete(parser->const_vec[1]);
6256     ast_value_delete(parser->const_vec[2]);
6257
6258     util_htdel(parser->aliases);
6259
6260     intrin_intrinsics_destroy(parser);
6261
6262     code_cleanup(parser->code);
6263
6264     mem_d(parser);
6265 }
6266
6267 bool parser_finish(parser_t *parser, const char *output)
6268 {
6269     size_t i;
6270     ir_builder *ir;
6271     bool retval = true;
6272
6273     if (compile_errors) {
6274         con_out("*** there were compile errors\n");
6275         return false;
6276     }
6277
6278     ir = ir_builder_new("gmqcc_out");
6279     if (!ir) {
6280         con_out("failed to allocate builder\n");
6281         return false;
6282     }
6283
6284     for (i = 0; i < vec_size(parser->fields); ++i) {
6285         ast_value *field;
6286         bool hasvalue;
6287         if (!ast_istype(parser->fields[i], ast_value))
6288             continue;
6289         field = (ast_value*)parser->fields[i];
6290         hasvalue = field->hasvalue;
6291         field->hasvalue = false;
6292         if (!ast_global_codegen((ast_value*)field, ir, true)) {
6293             con_out("failed to generate field %s\n", field->name);
6294             ir_builder_delete(ir);
6295             return false;
6296         }
6297         if (hasvalue) {
6298             ir_value *ifld;
6299             ast_expression *subtype;
6300             field->hasvalue = true;
6301             subtype = field->expression.next;
6302             ifld = ir_builder_create_field(ir, field->name, subtype->vtype);
6303             if (subtype->vtype == TYPE_FIELD)
6304                 ifld->fieldtype = subtype->next->vtype;
6305             else if (subtype->vtype == TYPE_FUNCTION)
6306                 ifld->outtype = subtype->next->vtype;
6307             (void)!ir_value_set_field(field->ir_v, ifld);
6308         }
6309     }
6310     for (i = 0; i < vec_size(parser->globals); ++i) {
6311         ast_value *asvalue;
6312         if (!ast_istype(parser->globals[i], ast_value))
6313             continue;
6314         asvalue = (ast_value*)(parser->globals[i]);
6315         if (!asvalue->uses && !asvalue->hasvalue && asvalue->expression.vtype != TYPE_FUNCTION) {
6316             retval = retval && !compile_warning(ast_ctx(asvalue), WARN_UNUSED_VARIABLE,
6317                                                 "unused global: `%s`", asvalue->name);
6318         }
6319         if (!ast_global_codegen(asvalue, ir, false)) {
6320             con_out("failed to generate global %s\n", asvalue->name);
6321             ir_builder_delete(ir);
6322             return false;
6323         }
6324     }
6325     /* Build function vararg accessor ast tree now before generating
6326      * immediates, because the accessors may add new immediates
6327      */
6328     for (i = 0; i < vec_size(parser->functions); ++i) {
6329         ast_function *f = parser->functions[i];
6330         if (f->varargs) {
6331             if (parser->max_param_count > vec_size(f->vtype->expression.params)) {
6332                 f->varargs->expression.count = parser->max_param_count - vec_size(f->vtype->expression.params);
6333                 if (!parser_create_array_setter_impl(parser, f->varargs)) {
6334                     con_out("failed to generate vararg setter for %s\n", f->name);
6335                     ir_builder_delete(ir);
6336                     return false;
6337                 }
6338                 if (!parser_create_array_getter_impl(parser, f->varargs)) {
6339                     con_out("failed to generate vararg getter for %s\n", f->name);
6340                     ir_builder_delete(ir);
6341                     return false;
6342                 }
6343             } else {
6344                 ast_delete(f->varargs);
6345                 f->varargs = NULL;
6346             }
6347         }
6348     }
6349     /* Now we can generate immediates */
6350     for (i = 0; i < vec_size(parser->imm_float); ++i) {
6351         if (!ast_global_codegen(parser->imm_float[i], ir, false)) {
6352             con_out("failed to generate global %s\n", parser->imm_float[i]->name);
6353             ir_builder_delete(ir);
6354             return false;
6355         }
6356     }
6357     for (i = 0; i < vec_size(parser->imm_string); ++i) {
6358         if (!ast_global_codegen(parser->imm_string[i], ir, false)) {
6359             con_out("failed to generate global %s\n", parser->imm_string[i]->name);
6360             ir_builder_delete(ir);
6361             return false;
6362         }
6363     }
6364     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
6365         if (!ast_global_codegen(parser->imm_vector[i], ir, false)) {
6366             con_out("failed to generate global %s\n", parser->imm_vector[i]->name);
6367             ir_builder_delete(ir);
6368             return false;
6369         }
6370     }
6371     for (i = 0; i < vec_size(parser->globals); ++i) {
6372         ast_value *asvalue;
6373         if (!ast_istype(parser->globals[i], ast_value))
6374             continue;
6375         asvalue = (ast_value*)(parser->globals[i]);
6376         if (!(asvalue->expression.flags & AST_FLAG_INITIALIZED))
6377         {
6378             if (asvalue->cvq == CV_CONST && !asvalue->hasvalue)
6379                 (void)!compile_warning(ast_ctx(asvalue), WARN_UNINITIALIZED_CONSTANT,
6380                                        "uninitialized constant: `%s`",
6381                                        asvalue->name);
6382             else if ((asvalue->cvq == CV_NONE || asvalue->cvq == CV_CONST) && !asvalue->hasvalue)
6383                 (void)!compile_warning(ast_ctx(asvalue), WARN_UNINITIALIZED_GLOBAL,
6384                                        "uninitialized global: `%s`",
6385                                        asvalue->name);
6386         }
6387         if (!ast_generate_accessors(asvalue, ir)) {
6388             ir_builder_delete(ir);
6389             return false;
6390         }
6391     }
6392     for (i = 0; i < vec_size(parser->fields); ++i) {
6393         ast_value *asvalue;
6394         asvalue = (ast_value*)(parser->fields[i]->next);
6395
6396         if (!ast_istype((ast_expression*)asvalue, ast_value))
6397             continue;
6398         if (asvalue->expression.vtype != TYPE_ARRAY)
6399             continue;
6400         if (!ast_generate_accessors(asvalue, ir)) {
6401             ir_builder_delete(ir);
6402             return false;
6403         }
6404     }
6405     if (parser->reserved_version &&
6406         !ast_global_codegen(parser->reserved_version, ir, false))
6407     {
6408         con_out("failed to generate reserved::version");
6409         ir_builder_delete(ir);
6410         return false;
6411     }
6412     for (i = 0; i < vec_size(parser->functions); ++i) {
6413         ast_function *f = parser->functions[i];
6414         if (!ast_function_codegen(f, ir)) {
6415             con_out("failed to generate function %s\n", f->name);
6416             ir_builder_delete(ir);
6417             return false;
6418         }
6419     }
6420     if (OPTS_OPTION_BOOL(OPTION_DUMP))
6421         ir_builder_dump(ir, con_out);
6422     for (i = 0; i < vec_size(parser->functions); ++i) {
6423         if (!ir_function_finalize(parser->functions[i]->ir_func)) {
6424             con_out("failed to finalize function %s\n", parser->functions[i]->name);
6425             ir_builder_delete(ir);
6426             return false;
6427         }
6428     }
6429
6430     if (compile_Werrors) {
6431         con_out("*** there were warnings treated as errors\n");
6432         compile_show_werrors();
6433         retval = false;
6434     }
6435
6436     if (retval) {
6437         if (OPTS_OPTION_BOOL(OPTION_DUMPFIN))
6438             ir_builder_dump(ir, con_out);
6439
6440         generate_checksum(parser);
6441
6442         if (!ir_builder_generate(parser->code, ir, output)) {
6443             con_out("*** failed to generate output file\n");
6444             ir_builder_delete(ir);
6445             return false;
6446         }
6447     }
6448
6449     ir_builder_delete(ir);
6450     return retval;
6451 }