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