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