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