]> git.xonotic.org Git - xonotic/gmqcc.git/blob - parser.c
'noreturn' is now an attribute and parsed as [[noreturn]]
[xonotic/gmqcc.git] / parser.c
1 /*
2  * Copyright (C) 2012
3  *     Wolfgang Bumiller
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include <stdio.h>
24 #include <stdarg.h>
25
26 #include "gmqcc.h"
27 #include "lexer.h"
28
29 /* beginning of locals */
30 #define PARSER_HT_LOCALS  2
31
32 #define PARSER_HT_SIZE    1024
33 #define TYPEDEF_HT_SIZE   16
34
35 typedef struct {
36     lex_file *lex;
37     int      tok;
38
39     ast_expression **globals;
40     ast_expression **fields;
41     ast_function **functions;
42     ast_value    **imm_float;
43     ast_value    **imm_string;
44     ast_value    **imm_vector;
45     size_t         translated;
46
47     /* must be deleted first, they reference immediates and values */
48     ast_value    **accessors;
49
50     ast_value *imm_float_zero;
51     ast_value *imm_float_one;
52     ast_value *imm_vector_zero;
53
54     size_t crc_globals;
55     size_t crc_fields;
56
57     ast_function *function;
58
59     /* All the labels the function defined...
60      * Should they be in ast_function instead?
61      */
62     ast_label **labels;
63     ast_goto  **gotos;
64
65     /* A list of hashtables for each scope */
66     ht *variables;
67     ht htfields;
68     ht htglobals;
69     ht *typedefs;
70
71     /* not to be used directly, we use the hash table */
72     ast_expression **_locals;
73     size_t          *_blocklocals;
74     ast_value      **_typedefs;
75     size_t          *_blocktypedefs;
76     lex_ctx         *_block_ctx;
77
78     size_t errors;
79
80     /* we store the '=' operator info */
81     const oper_info *assign_op;
82
83     /* TYPE_FIELD -> parser_find_fields is used instead of find_var
84      * TODO: TYPE_VECTOR -> x, y and z are accepted in the gmqcc standard
85      * anything else: type error
86      */
87     qcint  memberof;
88
89     /* Keep track of our ternary vs parenthesis nesting state.
90      * If we reach a 'comma' operator in a ternary without a paren,
91      * we shall trigger -Wternary-precedence.
92      */
93     enum { POT_PAREN, POT_TERNARY1, POT_TERNARY2 } *pot;
94
95     /* pragma flags */
96     bool noref;
97 } parser_t;
98
99 static const ast_expression *intrinsic_debug_typestring = (ast_expression*)0x10;
100
101 static void parser_enterblock(parser_t *parser);
102 static bool parser_leaveblock(parser_t *parser);
103 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e);
104 static bool parse_typedef(parser_t *parser);
105 static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofields, int qualifier, ast_value *cached_typedef, bool noref, bool noreturn);
106 static ast_block* parse_block(parser_t *parser);
107 static bool parse_block_into(parser_t *parser, ast_block *block);
108 static bool parse_statement_or_block(parser_t *parser, ast_expression **out);
109 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases);
110 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma);
111 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma);
112
113 static void parseerror(parser_t *parser, const char *fmt, ...)
114 {
115         va_list ap;
116
117         parser->errors++;
118
119         va_start(ap, fmt);
120     con_vprintmsg(LVL_ERROR, parser->lex->tok.ctx.file, parser->lex->tok.ctx.line, "parse error", 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 = 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 util_htget(parser->htfields, name);
300 }
301
302 static ast_expression* parser_find_global(parser_t *parser, const char *name)
303 {
304     return 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 = 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[0]->expression.vtype != TYPE_FLOAT &&
766                 exprs[1]->expression.vtype != TYPE_VECTOR &&
767                 exprs[1]->expression.vtype != TYPE_FLOAT)
768             {
769                 parseerror(parser, "invalid types used in expression: cannot multiply types %s and %s",
770                            type_name[exprs[1]->expression.vtype],
771                            type_name[exprs[0]->expression.vtype]);
772                 return false;
773             }
774             switch (exprs[0]->expression.vtype) {
775                 case TYPE_FLOAT:
776                     if (exprs[1]->expression.vtype == TYPE_VECTOR)
777                     {
778                         if (CanConstFold(exprs[0], exprs[1]))
779                             out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(1), ConstF(0)));
780                         else
781                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_FV, exprs[0], exprs[1]);
782                     }
783                     else
784                     {
785                         if (CanConstFold(exprs[0], exprs[1]))
786                             out = (ast_expression*)parser_const_float(parser, ConstF(0) * ConstF(1));
787                         else
788                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, exprs[0], exprs[1]);
789                     }
790                     break;
791                 case TYPE_VECTOR:
792                     if (exprs[1]->expression.vtype == TYPE_FLOAT)
793                     {
794                         if (CanConstFold(exprs[0], exprs[1]))
795                             out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(0), ConstF(1)));
796                         else
797                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_VF, exprs[0], exprs[1]);
798                     }
799                     else
800                     {
801                         if (CanConstFold(exprs[0], exprs[1]))
802                             out = (ast_expression*)parser_const_float(parser, vec3_mulvv(ConstV(0), ConstV(1)));
803                         else
804                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
805                     }
806                     break;
807                 default:
808                     parseerror(parser, "invalid types used in expression: cannot multiply types %s and %s",
809                                type_name[exprs[1]->expression.vtype],
810                                type_name[exprs[0]->expression.vtype]);
811                     return false;
812             };
813             break;
814         case opid1('/'):
815             if (NotSameType(TYPE_FLOAT)) {
816                 parseerror(parser, "invalid types used in expression: cannot divide types %s and %s",
817                            type_name[exprs[0]->expression.vtype],
818                            type_name[exprs[1]->expression.vtype]);
819                 return false;
820             }
821             if (CanConstFold(exprs[0], exprs[1]))
822                 out = (ast_expression*)parser_const_float(parser, ConstF(0) / ConstF(1));
823             else
824                 out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F, exprs[0], exprs[1]);
825             break;
826         case opid1('%'):
827         case opid2('%','='):
828             parseerror(parser, "qc does not have a modulo operator");
829             return false;
830         case opid1('|'):
831         case opid1('&'):
832             if (NotSameType(TYPE_FLOAT)) {
833                 parseerror(parser, "invalid types used in expression: cannot perform bit operations between types %s and %s",
834                            type_name[exprs[0]->expression.vtype],
835                            type_name[exprs[1]->expression.vtype]);
836                 return false;
837             }
838             if (CanConstFold(exprs[0], exprs[1]))
839                 out = (ast_expression*)parser_const_float(parser,
840                     (op->id == opid1('|') ? (float)( ((qcint)ConstF(0)) | ((qcint)ConstF(1)) ) :
841                                             (float)( ((qcint)ConstF(0)) & ((qcint)ConstF(1)) ) ));
842             else
843                 out = (ast_expression*)ast_binary_new(ctx,
844                     (op->id == opid1('|') ? INSTR_BITOR : INSTR_BITAND),
845                     exprs[0], exprs[1]);
846             break;
847         case opid1('^'):
848             parseerror(parser, "TODO: bitxor");
849             return false;
850
851         case opid2('<','<'):
852         case opid2('>','>'):
853         case opid3('<','<','='):
854         case opid3('>','>','='):
855             parseerror(parser, "TODO: shifts");
856             return false;
857
858         case opid2('|','|'):
859             generated_op += 1; /* INSTR_OR */
860         case opid2('&','&'):
861             generated_op += INSTR_AND;
862 #if 0
863             if (NotSameType(TYPE_FLOAT)) {
864                 parseerror(parser, "invalid types used in expression: cannot perform logical operations between types %s and %s",
865                            type_name[exprs[0]->expression.vtype],
866                            type_name[exprs[1]->expression.vtype]);
867                 parseerror(parser, "TODO: logical ops for arbitrary types using INSTR_NOT");
868                 parseerror(parser, "TODO: optional early out");
869                 return false;
870             }
871 #endif
872             if (CanConstFold(exprs[0], exprs[1]))
873             {
874                 if (OPTS_FLAG(PERL_LOGIC)) {
875                     if (immediate_is_true(ctx, asvalue[0]))
876                         out = exprs[1];
877                 }
878                 else
879                     out = (ast_expression*)parser_const_float(parser,
880                           ( (generated_op == INSTR_OR)
881                             ? (immediate_is_true(ctx, asvalue[0]) || immediate_is_true(ctx, asvalue[1]))
882                             : (immediate_is_true(ctx, asvalue[0]) && immediate_is_true(ctx, asvalue[1])) )
883                           ? 0 : 1);
884             }
885             else
886             {
887                 if (OPTS_FLAG(PERL_LOGIC) && !ast_compare_type(exprs[0], exprs[1])) {
888                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
889                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
890                     parseerror(parser, "invalid types for logical operation with -fperl-logic: %s and %s", ty1, ty2);
891                     return false;
892                 }
893                 for (i = 0; i < 2; ++i) {
894                     if (OPTS_FLAG(CORRECT_LOGIC) && exprs[i]->expression.vtype == TYPE_VECTOR) {
895                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_V, exprs[i]);
896                         if (!out) break;
897                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, out);
898                         if (!out) break;
899                         exprs[i] = out; out = NULL;
900                         if (OPTS_FLAG(PERL_LOGIC)) {
901                             /* here we want to keep the right expressions' type */
902                             break;
903                         }
904                     }
905                     else if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && exprs[i]->expression.vtype == TYPE_STRING) {
906                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_S, exprs[i]);
907                         if (!out) break;
908                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, out);
909                         if (!out) break;
910                         exprs[i] = out; out = NULL;
911                         if (OPTS_FLAG(PERL_LOGIC)) {
912                             /* here we want to keep the right expressions' type */
913                             break;
914                         }
915                     }
916                 }
917                 out = (ast_expression*)ast_binary_new(ctx, generated_op, exprs[0], exprs[1]);
918             }
919             break;
920
921         case opid2('?',':'):
922             if (vec_last(parser->pot) != POT_TERNARY2) {
923                 parseerror(parser, "mismatched parenthesis/ternary");
924                 return false;
925             }
926             vec_pop(parser->pot);
927             if (exprs[1]->expression.vtype != exprs[2]->expression.vtype) {
928                 ast_type_to_string(exprs[1], ty1, sizeof(ty1));
929                 ast_type_to_string(exprs[2], ty2, sizeof(ty2));
930                 parseerror(parser, "operands of ternary expression must have the same type, got %s and %s", ty1, ty2);
931                 return false;
932             }
933             if (CanConstFold1(exprs[0]))
934                 out = (ConstF(0) ? exprs[1] : exprs[2]);
935             else
936                 out = (ast_expression*)ast_ternary_new(ctx, exprs[0], exprs[1], exprs[2]);
937             break;
938
939         case opid1('>'):
940             generated_op += 1; /* INSTR_GT */
941         case opid1('<'):
942             generated_op += 1; /* INSTR_LT */
943         case opid2('>', '='):
944             generated_op += 1; /* INSTR_GE */
945         case opid2('<', '='):
946             generated_op += INSTR_LE;
947             if (NotSameType(TYPE_FLOAT)) {
948                 parseerror(parser, "invalid types used in expression: cannot perform comparison between types %s and %s",
949                            type_name[exprs[0]->expression.vtype],
950                            type_name[exprs[1]->expression.vtype]);
951                 return false;
952             }
953             out = (ast_expression*)ast_binary_new(ctx, generated_op, exprs[0], exprs[1]);
954             break;
955         case opid2('!', '='):
956             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype) {
957                 parseerror(parser, "invalid types used in expression: cannot perform comparison between types %s and %s",
958                            type_name[exprs[0]->expression.vtype],
959                            type_name[exprs[1]->expression.vtype]);
960                 return false;
961             }
962             out = (ast_expression*)ast_binary_new(ctx, type_ne_instr[exprs[0]->expression.vtype], exprs[0], exprs[1]);
963             break;
964         case opid2('=', '='):
965             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype) {
966                 parseerror(parser, "invalid types used in expression: cannot perform comparison between types %s and %s",
967                            type_name[exprs[0]->expression.vtype],
968                            type_name[exprs[1]->expression.vtype]);
969                 return false;
970             }
971             out = (ast_expression*)ast_binary_new(ctx, type_eq_instr[exprs[0]->expression.vtype], exprs[0], exprs[1]);
972             break;
973
974         case opid1('='):
975             if (ast_istype(exprs[0], ast_entfield)) {
976                 ast_expression *field = ((ast_entfield*)exprs[0])->field;
977                 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
978                     exprs[0]->expression.vtype == TYPE_FIELD &&
979                     exprs[0]->expression.next->expression.vtype == TYPE_VECTOR)
980                 {
981                     assignop = type_storep_instr[TYPE_VECTOR];
982                 }
983                 else
984                     assignop = type_storep_instr[exprs[0]->expression.vtype];
985                 if (assignop == AINSTR_END ||
986                     !ast_compare_type(field->expression.next, exprs[1]))
987                 {
988                     ast_type_to_string(field->expression.next, ty1, sizeof(ty1));
989                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
990                     if (OPTS_FLAG(ASSIGN_FUNCTION_TYPES) &&
991                         field->expression.next->expression.vtype == TYPE_FUNCTION &&
992                         exprs[1]->expression.vtype == TYPE_FUNCTION)
993                     {
994                         if (parsewarning(parser, WARN_ASSIGN_FUNCTION_TYPES,
995                                          "invalid types in assignment: cannot assign %s to %s", ty2, ty1))
996                         {
997                             parser->errors++;
998                         }
999                     }
1000                     else
1001                         parseerror(parser, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1002                 }
1003             }
1004             else
1005             {
1006                 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
1007                     exprs[0]->expression.vtype == TYPE_FIELD &&
1008                     exprs[0]->expression.next->expression.vtype == TYPE_VECTOR)
1009                 {
1010                     assignop = type_store_instr[TYPE_VECTOR];
1011                 }
1012                 else {
1013                     assignop = type_store_instr[exprs[0]->expression.vtype];
1014                 }
1015
1016                 if (assignop == AINSTR_END) {
1017                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1018                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1019                     parseerror(parser, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1020                 }
1021                 else if (!ast_compare_type(exprs[0], exprs[1])) {
1022                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1023                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1024                     if (OPTS_FLAG(ASSIGN_FUNCTION_TYPES) &&
1025                         exprs[0]->expression.vtype == TYPE_FUNCTION &&
1026                         exprs[1]->expression.vtype == TYPE_FUNCTION)
1027                     {
1028                         if (parsewarning(parser, WARN_ASSIGN_FUNCTION_TYPES,
1029                                          "invalid types in assignment: cannot assign %s to %s", ty2, ty1))
1030                         {
1031                             parser->errors++;
1032                         }
1033                     }
1034                     else
1035                         parseerror(parser, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
1036                 }
1037             }
1038             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1039                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1040             }
1041             out = (ast_expression*)ast_store_new(ctx, assignop, exprs[0], exprs[1]);
1042             break;
1043         case opid3('+','+','P'):
1044         case opid3('-','-','P'):
1045             /* prefix ++ */
1046             if (exprs[0]->expression.vtype != TYPE_FLOAT) {
1047                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1048                 parseerror(parser, "invalid type for prefix increment: %s", ty1);
1049                 return false;
1050             }
1051             if (op->id == opid3('+','+','P'))
1052                 addop = INSTR_ADD_F;
1053             else
1054                 addop = INSTR_SUB_F;
1055             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1056                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1057             }
1058             if (ast_istype(exprs[0], ast_entfield)) {
1059                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STOREP_F, addop,
1060                                                         exprs[0],
1061                                                         (ast_expression*)parser_const_float_1(parser));
1062             } else {
1063                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STORE_F, addop,
1064                                                         exprs[0],
1065                                                         (ast_expression*)parser_const_float_1(parser));
1066             }
1067             break;
1068         case opid3('S','+','+'):
1069         case opid3('S','-','-'):
1070             /* prefix ++ */
1071             if (exprs[0]->expression.vtype != TYPE_FLOAT) {
1072                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1073                 parseerror(parser, "invalid type for suffix increment: %s", ty1);
1074                 return false;
1075             }
1076             if (op->id == opid3('S','+','+')) {
1077                 addop = INSTR_ADD_F;
1078                 subop = INSTR_SUB_F;
1079             } else {
1080                 addop = INSTR_SUB_F;
1081                 subop = INSTR_ADD_F;
1082             }
1083             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1084                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1085             }
1086             if (ast_istype(exprs[0], ast_entfield)) {
1087                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STOREP_F, addop,
1088                                                         exprs[0],
1089                                                         (ast_expression*)parser_const_float_1(parser));
1090             } else {
1091                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STORE_F, addop,
1092                                                         exprs[0],
1093                                                         (ast_expression*)parser_const_float_1(parser));
1094             }
1095             if (!out)
1096                 return false;
1097             out = (ast_expression*)ast_binary_new(ctx, subop,
1098                                                   out,
1099                                                   (ast_expression*)parser_const_float_1(parser));
1100             break;
1101         case opid2('+','='):
1102         case opid2('-','='):
1103             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype ||
1104                 (exprs[0]->expression.vtype != TYPE_VECTOR && exprs[0]->expression.vtype != TYPE_FLOAT) )
1105             {
1106                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1107                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1108                 parseerror(parser, "invalid types used in expression: cannot add or subtract type %s and %s",
1109                            ty1, ty2);
1110                 return false;
1111             }
1112             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1113                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1114             }
1115             if (ast_istype(exprs[0], ast_entfield))
1116                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1117             else
1118                 assignop = type_store_instr[exprs[0]->expression.vtype];
1119             switch (exprs[0]->expression.vtype) {
1120                 case TYPE_FLOAT:
1121                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1122                                                             (op->id == opid2('+','=') ? INSTR_ADD_F : INSTR_SUB_F),
1123                                                             exprs[0], exprs[1]);
1124                     break;
1125                 case TYPE_VECTOR:
1126                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1127                                                             (op->id == opid2('+','=') ? INSTR_ADD_V : INSTR_SUB_V),
1128                                                             exprs[0], exprs[1]);
1129                     break;
1130                 default:
1131                     parseerror(parser, "invalid types used in expression: cannot add or subtract type %s and %s",
1132                                type_name[exprs[0]->expression.vtype],
1133                                type_name[exprs[1]->expression.vtype]);
1134                     return false;
1135             };
1136             break;
1137         case opid2('*','='):
1138         case opid2('/','='):
1139             if (exprs[1]->expression.vtype != TYPE_FLOAT ||
1140                 !(exprs[0]->expression.vtype == TYPE_FLOAT ||
1141                   exprs[0]->expression.vtype == TYPE_VECTOR))
1142             {
1143                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1144                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1145                 parseerror(parser, "invalid types used in expression: %s and %s",
1146                            ty1, ty2);
1147                 return false;
1148             }
1149             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1150                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1151             }
1152             if (ast_istype(exprs[0], ast_entfield))
1153                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1154             else
1155                 assignop = type_store_instr[exprs[0]->expression.vtype];
1156             switch (exprs[0]->expression.vtype) {
1157                 case TYPE_FLOAT:
1158                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1159                                                             (op->id == opid2('*','=') ? INSTR_MUL_F : INSTR_DIV_F),
1160                                                             exprs[0], exprs[1]);
1161                     break;
1162                 case TYPE_VECTOR:
1163                     if (op->id == opid2('*','=')) {
1164                         out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_MUL_VF,
1165                                                                 exprs[0], exprs[1]);
1166                     } else {
1167                         /* there's no DIV_VF */
1168                         out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F,
1169                                                               (ast_expression*)parser_const_float_1(parser),
1170                                                               exprs[1]);
1171                         if (!out)
1172                             return false;
1173                         out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_MUL_VF,
1174                                                                 exprs[0], out);
1175                     }
1176                     break;
1177                 default:
1178                     parseerror(parser, "invalid types used in expression: cannot add or subtract type %s and %s",
1179                                type_name[exprs[0]->expression.vtype],
1180                                type_name[exprs[1]->expression.vtype]);
1181                     return false;
1182             };
1183             break;
1184         case opid2('&','='):
1185         case opid2('|','='):
1186             if (NotSameType(TYPE_FLOAT)) {
1187                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1188                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1189                 parseerror(parser, "invalid types used in expression: %s and %s",
1190                            ty1, ty2);
1191                 return false;
1192             }
1193             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1194                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1195             }
1196             if (ast_istype(exprs[0], ast_entfield))
1197                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1198             else
1199                 assignop = type_store_instr[exprs[0]->expression.vtype];
1200             out = (ast_expression*)ast_binstore_new(ctx, assignop,
1201                                                     (op->id == opid2('&','=') ? INSTR_BITAND : INSTR_BITOR),
1202                                                     exprs[0], exprs[1]);
1203             break;
1204         case opid3('&','~','='):
1205             /* This is like: a &= ~(b);
1206              * But QC has no bitwise-not, so we implement it as
1207              * a -= a & (b);
1208              */
1209             if (NotSameType(TYPE_FLOAT)) {
1210                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1211                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1212                 parseerror(parser, "invalid types used in expression: %s and %s",
1213                            ty1, ty2);
1214                 return false;
1215             }
1216             if (ast_istype(exprs[0], ast_entfield))
1217                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1218             else
1219                 assignop = type_store_instr[exprs[0]->expression.vtype];
1220             out = (ast_expression*)ast_binary_new(ctx, INSTR_BITAND, exprs[0], exprs[1]);
1221             if (!out)
1222                 return false;
1223             if (ast_istype(exprs[0], ast_value) && asvalue[0]->cvq == CV_CONST) {
1224                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1225             }
1226             asbinstore = ast_binstore_new(ctx, assignop, INSTR_SUB_F, exprs[0], out);
1227             asbinstore->keep_dest = true;
1228             out = (ast_expression*)asbinstore;
1229             break;
1230     }
1231 #undef NotSameType
1232
1233     if (!out) {
1234         parseerror(parser, "failed to apply operand %s", op->op);
1235         return false;
1236     }
1237
1238     DEBUGSHUNTDO(con_out("applied %s\n", op->op));
1239     vec_push(sy->out, syexp(ctx, out));
1240     return true;
1241 }
1242
1243 static bool parser_close_call(parser_t *parser, shunt *sy)
1244 {
1245     /* was a function call */
1246     ast_expression *fun;
1247     ast_call       *call;
1248
1249     size_t          fid;
1250     size_t          paramcount;
1251
1252     vec_shrinkby(sy->ops, 1);
1253     fid = sy->ops[vec_size(sy->ops)].off;
1254
1255     /* out[fid] is the function
1256      * everything above is parameters...
1257      * 0 params = nothing
1258      * 1 params = ast_expression
1259      * more = ast_block
1260      */
1261
1262     if (vec_size(sy->out) < 1 || vec_size(sy->out) <= fid) {
1263         parseerror(parser, "internal error: function call needs function and parameter list...");
1264         return false;
1265     }
1266
1267     fun = sy->out[fid].out;
1268
1269     if (fun == intrinsic_debug_typestring) {
1270         char ty[1024];
1271         if (fid+2 != vec_size(sy->out) ||
1272             vec_last(sy->out).block)
1273         {
1274             parseerror(parser, "intrinsic __builtin_debug_typestring requires exactly 1 parameter");
1275             return false;
1276         }
1277         ast_type_to_string(vec_last(sy->out).out, ty, sizeof(ty));
1278         ast_unref(vec_last(sy->out).out);
1279         sy->out[fid] = syexp(ast_ctx(vec_last(sy->out).out),
1280                              (ast_expression*)parser_const_string(parser, ty, false));
1281         vec_shrinkby(sy->out, 1);
1282         return true;
1283     }
1284
1285     call = ast_call_new(sy->ops[vec_size(sy->ops)].ctx, fun);
1286     if (!call) {
1287         parseerror(parser, "internal error: failed to create ast_call node");
1288         return false;
1289     }
1290
1291     if (fid+1 == vec_size(sy->out)) {
1292         /* no arguments */
1293         paramcount = 0;
1294     } else if (fid+2 == vec_size(sy->out)) {
1295         ast_block *params;
1296         vec_shrinkby(sy->out, 1);
1297         params = sy->out[vec_size(sy->out)].block;
1298         if (!params) {
1299             /* 1 param */
1300             paramcount = 1;
1301             vec_push(call->params, sy->out[vec_size(sy->out)].out);
1302         } else {
1303             paramcount = vec_size(params->exprs);
1304             call->params = params->exprs;
1305             params->exprs = NULL;
1306             ast_delete(params);
1307         }
1308         if (!ast_call_check_types(call))
1309             parser->errors++;
1310     } else {
1311         parseerror(parser, "invalid function call");
1312         return false;
1313     }
1314
1315     /* overwrite fid, the function, with a call */
1316     sy->out[fid] = syexp(call->expression.node.context, (ast_expression*)call);
1317
1318     if (fun->expression.vtype != TYPE_FUNCTION) {
1319         parseerror(parser, "not a function (%s)", type_name[fun->expression.vtype]);
1320         return false;
1321     }
1322
1323     if (!fun->expression.next) {
1324         parseerror(parser, "could not determine function return type");
1325         return false;
1326     } else {
1327         if (vec_size(fun->expression.params) != paramcount &&
1328             !((fun->expression.flags & AST_FLAG_VARIADIC) &&
1329               vec_size(fun->expression.params) < paramcount))
1330         {
1331             ast_value *fval;
1332             const char *fewmany = (vec_size(fun->expression.params) > paramcount) ? "few" : "many";
1333
1334             fval = (ast_istype(fun, ast_value) ? ((ast_value*)fun) : NULL);
1335             if (opts.standard == COMPILER_GMQCC)
1336             {
1337                 if (fval)
1338                     parseerror(parser, "too %s parameters for call to %s: expected %i, got %i\n"
1339                                " -> `%s` has been declared here: %s:%i",
1340                                fewmany, fval->name, (int)vec_size(fun->expression.params), (int)paramcount,
1341                                fval->name, ast_ctx(fun).file, (int)ast_ctx(fun).line);
1342                 else
1343                     parseerror(parser, "too %s parameters for function call: expected %i, got %i\n"
1344                                " -> it has been declared here: %s:%i",
1345                                fewmany, (int)vec_size(fun->expression.params), (int)paramcount,
1346                                ast_ctx(fun).file, (int)ast_ctx(fun).line);
1347                 return false;
1348             }
1349             else
1350             {
1351                 if (fval)
1352                     return !parsewarning(parser, WARN_TOO_FEW_PARAMETERS,
1353                                          "too %s parameters for call to %s: expected %i, got %i\n"
1354                                          " -> `%s` has been declared here: %s:%i",
1355                                          fewmany, fval->name, (int)vec_size(fun->expression.params), (int)paramcount,
1356                                          fval->name, ast_ctx(fun).file, (int)ast_ctx(fun).line);
1357                 else
1358                     return !parsewarning(parser, WARN_TOO_FEW_PARAMETERS,
1359                                          "too %s parameters for function call: expected %i, got %i\n"
1360                                          " -> it has been declared here: %s:%i",
1361                                          fewmany, (int)vec_size(fun->expression.params), (int)paramcount,
1362                                          ast_ctx(fun).file, (int)ast_ctx(fun).line);
1363             }
1364         }
1365     }
1366
1367     return true;
1368 }
1369
1370 static bool parser_close_paren(parser_t *parser, shunt *sy, bool functions_only)
1371 {
1372     if (!vec_size(sy->ops)) {
1373         parseerror(parser, "unmatched closing paren");
1374         return false;
1375     }
1376     /* this would for bit a + (x) because there are no operators inside (x)
1377     if (sy->ops[vec_size(sy->ops)-1].paren == 1) {
1378         parseerror(parser, "empty parenthesis expression");
1379         return false;
1380     }
1381     */
1382     while (vec_size(sy->ops)) {
1383         if (sy->ops[vec_size(sy->ops)-1].paren == SY_PAREN_FUNC) {
1384             if (!parser_close_call(parser, sy))
1385                 return false;
1386             break;
1387         }
1388         if (sy->ops[vec_size(sy->ops)-1].paren == SY_PAREN_EXPR) {
1389             vec_shrinkby(sy->ops, 1);
1390             return !functions_only;
1391         }
1392         if (sy->ops[vec_size(sy->ops)-1].paren == SY_PAREN_INDEX) {
1393             if (functions_only)
1394                 return false;
1395             /* pop off the parenthesis */
1396             vec_shrinkby(sy->ops, 1);
1397             /* then apply the index operator */
1398             if (!parser_sy_apply_operator(parser, sy))
1399                 return false;
1400             return true;
1401         }
1402         if (sy->ops[vec_size(sy->ops)-1].paren == SY_PAREN_TERNARY) {
1403             if (functions_only)
1404                 return false;
1405             if (vec_last(parser->pot) != POT_TERNARY1) {
1406                 parseerror(parser, "mismatched colon in ternary expression (missing closing paren?)");
1407                 return false;
1408             }
1409             vec_last(parser->pot) = POT_TERNARY2;
1410             /* pop off the parenthesis */
1411             vec_shrinkby(sy->ops, 1);
1412             return true;
1413         }
1414         if (!parser_sy_apply_operator(parser, sy))
1415             return false;
1416     }
1417     return true;
1418 }
1419
1420 static void parser_reclassify_token(parser_t *parser)
1421 {
1422     size_t i;
1423     for (i = 0; i < operator_count; ++i) {
1424         if (!strcmp(parser_tokval(parser), operators[i].op)) {
1425             parser->tok = TOKEN_OPERATOR;
1426             return;
1427         }
1428     }
1429 }
1430
1431 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma)
1432 {
1433     ast_expression *expr = NULL;
1434     shunt sy;
1435     bool wantop = false;
1436     bool gotmemberof = false;
1437
1438     /* count the parens because an if starts with one, so the
1439      * end of a condition is an unmatched closing paren
1440      */
1441     int parens = 0;
1442     int ternaries = 0;
1443
1444     sy.out = NULL;
1445     sy.ops = NULL;
1446
1447     parser->lex->flags.noops = false;
1448
1449     parser_reclassify_token(parser);
1450
1451     while (true)
1452     {
1453         if (gotmemberof)
1454             gotmemberof = false;
1455         else
1456             parser->memberof = 0;
1457
1458         if (OPTS_FLAG(TRANSLATABLE_STRINGS) &&
1459             parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "_"))
1460         {
1461             /* a translatable string */
1462             ast_value *val;
1463
1464             if (wantop) {
1465                 parseerror(parser, "expected operator or end of statement, got constant");
1466                 goto onerr;
1467             }
1468
1469             parser->lex->flags.noops = true;
1470             if (!parser_next(parser) || parser->tok != '(') {
1471                 parseerror(parser, "use _(\"string\") to create a translatable string constant");
1472                 goto onerr;
1473             }
1474             parser->lex->flags.noops = false;
1475             if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
1476                 parseerror(parser, "expected a constant string in translatable-string extension");
1477                 goto onerr;
1478             }
1479             val = parser_const_string(parser, parser_tokval(parser), true);
1480             wantop = true;
1481             if (!val)
1482                 return false;
1483             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1484             DEBUGSHUNTDO(con_out("push string\n"));
1485
1486             if (!parser_next(parser) || parser->tok != ')') {
1487                 parseerror(parser, "expected closing paren after translatable string");
1488                 goto onerr;
1489             }
1490         }
1491         else if (parser->tok == TOKEN_IDENT)
1492         {
1493             ast_expression *var;
1494             if (wantop) {
1495                 parseerror(parser, "expected operator or end of statement");
1496                 goto onerr;
1497             }
1498             wantop = true;
1499             /* variable */
1500             if (opts.standard == COMPILER_GMQCC)
1501             {
1502                 if (parser->memberof == TYPE_ENTITY) {
1503                     /* still get vars first since there could be a fieldpointer */
1504                     var = parser_find_var(parser, parser_tokval(parser));
1505                     if (!var)
1506                         var = parser_find_field(parser, parser_tokval(parser));
1507                 }
1508                 else if (parser->memberof == TYPE_VECTOR)
1509                 {
1510                     parseerror(parser, "TODO: implement effective vector member access");
1511                     goto onerr;
1512                 }
1513                 else if (parser->memberof) {
1514                     parseerror(parser, "namespace for member not found");
1515                     goto onerr;
1516                 }
1517                 else
1518                     var = parser_find_var(parser, parser_tokval(parser));
1519             } else {
1520                 var = parser_find_var(parser, parser_tokval(parser));
1521                 if (!var)
1522                     var = parser_find_field(parser, parser_tokval(parser));
1523             }
1524             if (!var) {
1525                 /* intrinsics */
1526                 if (!strcmp(parser_tokval(parser), "__builtin_debug_typestring")) {
1527                     var = (ast_expression*)intrinsic_debug_typestring;
1528
1529                 }
1530                 else
1531                 {
1532                     parseerror(parser, "unexpected ident: %s", parser_tokval(parser));
1533                     goto onerr;
1534                 }
1535             }
1536             else
1537             {
1538                 if (ast_istype(var, ast_value)) {
1539                     ((ast_value*)var)->uses++;
1540                 }
1541                 else if (ast_istype(var, ast_member)) {
1542                     ast_member *mem = (ast_member*)var;
1543                     if (ast_istype(mem->owner, ast_value))
1544                         ((ast_value*)(mem->owner))->uses++;
1545                 }
1546             }
1547             vec_push(sy.out, syexp(parser_ctx(parser), var));
1548             DEBUGSHUNTDO(con_out("push %s\n", parser_tokval(parser)));
1549         }
1550         else if (parser->tok == TOKEN_FLOATCONST) {
1551             ast_value *val;
1552             if (wantop) {
1553                 parseerror(parser, "expected operator or end of statement, got constant");
1554                 goto onerr;
1555             }
1556             wantop = true;
1557             val = parser_const_float(parser, (parser_token(parser)->constval.f));
1558             if (!val)
1559                 return false;
1560             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1561             DEBUGSHUNTDO(con_out("push %g\n", parser_token(parser)->constval.f));
1562         }
1563         else if (parser->tok == TOKEN_INTCONST || parser->tok == TOKEN_CHARCONST) {
1564             ast_value *val;
1565             if (wantop) {
1566                 parseerror(parser, "expected operator or end of statement, got constant");
1567                 goto onerr;
1568             }
1569             wantop = true;
1570             val = parser_const_float(parser, (double)(parser_token(parser)->constval.i));
1571             if (!val)
1572                 return false;
1573             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1574             DEBUGSHUNTDO(con_out("push %i\n", parser_token(parser)->constval.i));
1575         }
1576         else if (parser->tok == TOKEN_STRINGCONST) {
1577             ast_value *val;
1578             if (wantop) {
1579                 parseerror(parser, "expected operator or end of statement, got constant");
1580                 goto onerr;
1581             }
1582             wantop = true;
1583             val = parser_const_string(parser, parser_tokval(parser), false);
1584             if (!val)
1585                 return false;
1586             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1587             DEBUGSHUNTDO(con_out("push string\n"));
1588         }
1589         else if (parser->tok == TOKEN_VECTORCONST) {
1590             ast_value *val;
1591             if (wantop) {
1592                 parseerror(parser, "expected operator or end of statement, got constant");
1593                 goto onerr;
1594             }
1595             wantop = true;
1596             val = parser_const_vector(parser, parser_token(parser)->constval.v);
1597             if (!val)
1598                 return false;
1599             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1600             DEBUGSHUNTDO(con_out("push '%g %g %g'\n",
1601                                 parser_token(parser)->constval.v.x,
1602                                 parser_token(parser)->constval.v.y,
1603                                 parser_token(parser)->constval.v.z));
1604         }
1605         else if (parser->tok == '(') {
1606             parseerror(parser, "internal error: '(' should be classified as operator");
1607             goto onerr;
1608         }
1609         else if (parser->tok == '[') {
1610             parseerror(parser, "internal error: '[' should be classified as operator");
1611             goto onerr;
1612         }
1613         else if (parser->tok == ')') {
1614             if (wantop) {
1615                 DEBUGSHUNTDO(con_out("do[op] )\n"));
1616                 --parens;
1617                 if (parens < 0)
1618                     break;
1619                 /* we do expect an operator next */
1620                 /* closing an opening paren */
1621                 if (!parser_close_paren(parser, &sy, false))
1622                     goto onerr;
1623                 if (vec_last(parser->pot) != POT_PAREN) {
1624                     parseerror(parser, "mismatched parentheses (closing paren during ternary expression?)");
1625                     goto onerr;
1626                 }
1627                 vec_pop(parser->pot);
1628             } else {
1629                 DEBUGSHUNTDO(con_out("do[nop] )\n"));
1630                 --parens;
1631                 if (parens < 0)
1632                     break;
1633                 /* allowed for function calls */
1634                 if (!parser_close_paren(parser, &sy, true))
1635                     goto onerr;
1636                 if (vec_last(parser->pot) != POT_PAREN) {
1637                     parseerror(parser, "mismatched parentheses (closing paren during ternary expression?)");
1638                     goto onerr;
1639                 }
1640                 vec_pop(parser->pot);
1641             }
1642             wantop = true;
1643         }
1644         else if (parser->tok == ']') {
1645             if (!wantop)
1646                 parseerror(parser, "operand expected");
1647             --parens;
1648             if (parens < 0)
1649                 break;
1650             if (!parser_close_paren(parser, &sy, false))
1651                 goto onerr;
1652             if (vec_last(parser->pot) != POT_PAREN) {
1653                 parseerror(parser, "mismatched parentheses (closing paren during ternary expression?)");
1654                 goto onerr;
1655             }
1656             vec_pop(parser->pot);
1657             wantop = true;
1658         }
1659         else if (parser->tok == TOKEN_TYPENAME) {
1660             parseerror(parser, "unexpected typename");
1661             goto onerr;
1662         }
1663         else if (parser->tok != TOKEN_OPERATOR) {
1664             if (wantop) {
1665                 parseerror(parser, "expected operator or end of statement");
1666                 goto onerr;
1667             }
1668             break;
1669         }
1670         else
1671         {
1672             /* classify the operator */
1673             const oper_info *op;
1674             const oper_info *olast = NULL;
1675             size_t o;
1676             for (o = 0; o < operator_count; ++o) {
1677                 if ((!(operators[o].flags & OP_PREFIX) == wantop) &&
1678                     /* !(operators[o].flags & OP_SUFFIX) && / * remove this */
1679                     !strcmp(parser_tokval(parser), operators[o].op))
1680                 {
1681                     break;
1682                 }
1683             }
1684             if (o == operator_count) {
1685                 /* no operator found... must be the end of the statement */
1686                 break;
1687             }
1688             /* found an operator */
1689             op = &operators[o];
1690
1691             /* when declaring variables, a comma starts a new variable */
1692             if (op->id == opid1(',') && !parens && stopatcomma) {
1693                 /* fixup the token */
1694                 parser->tok = ',';
1695                 break;
1696             }
1697
1698             /* a colon without a pervious question mark cannot be a ternary */
1699             if (!ternaries && op->id == opid2(':','?')) {
1700                 parser->tok = ':';
1701                 break;
1702             }
1703
1704             if (op->id == opid1(',')) {
1705                 if (vec_size(parser->pot) && vec_last(parser->pot) == POT_TERNARY2) {
1706                     (void)!parsewarning(parser, WARN_TERNARY_PRECEDENCE, "suggesting parenthesis around ternary expression");
1707                 }
1708             }
1709
1710             if (vec_size(sy.ops) && !vec_last(sy.ops).paren)
1711                 olast = &operators[vec_last(sy.ops).etype-1];
1712
1713             while (olast && (
1714                     (op->prec < olast->prec) ||
1715                     (op->assoc == ASSOC_LEFT && op->prec <= olast->prec) ) )
1716             {
1717                 if (!parser_sy_apply_operator(parser, &sy))
1718                     goto onerr;
1719                 if (vec_size(sy.ops) && !vec_last(sy.ops).paren)
1720                     olast = &operators[vec_last(sy.ops).etype-1];
1721                 else
1722                     olast = NULL;
1723             }
1724
1725             if (op->id == opid1('.') && opts.standard == COMPILER_GMQCC) {
1726                 /* for gmqcc standard: open up the namespace of the previous type */
1727                 ast_expression *prevex = vec_last(sy.out).out;
1728                 if (!prevex) {
1729                     parseerror(parser, "unexpected member operator");
1730                     goto onerr;
1731                 }
1732                 if (prevex->expression.vtype == TYPE_ENTITY)
1733                     parser->memberof = TYPE_ENTITY;
1734                 else if (prevex->expression.vtype == TYPE_VECTOR)
1735                     parser->memberof = TYPE_VECTOR;
1736                 else {
1737                     parseerror(parser, "type error: type has no members");
1738                     goto onerr;
1739                 }
1740                 gotmemberof = true;
1741             }
1742
1743             if (op->id == opid1('(')) {
1744                 if (wantop) {
1745                     size_t sycount = vec_size(sy.out);
1746                     DEBUGSHUNTDO(con_out("push [op] (\n"));
1747                     ++parens; vec_push(parser->pot, POT_PAREN);
1748                     /* we expected an operator, this is the function-call operator */
1749                     vec_push(sy.ops, syparen(parser_ctx(parser), SY_PAREN_FUNC, sycount-1));
1750                 } else {
1751                     ++parens; vec_push(parser->pot, POT_PAREN);
1752                     vec_push(sy.ops, syparen(parser_ctx(parser), SY_PAREN_EXPR, 0));
1753                     DEBUGSHUNTDO(con_out("push [nop] (\n"));
1754                 }
1755                 wantop = false;
1756             } else if (op->id == opid1('[')) {
1757                 if (!wantop) {
1758                     parseerror(parser, "unexpected array subscript");
1759                     goto onerr;
1760                 }
1761                 ++parens; vec_push(parser->pot, POT_PAREN);
1762                 /* push both the operator and the paren, this makes life easier */
1763                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1764                 vec_push(sy.ops, syparen(parser_ctx(parser), SY_PAREN_INDEX, 0));
1765                 wantop = false;
1766             } else if (op->id == opid2('?',':')) {
1767                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1768                 vec_push(sy.ops, syparen(parser_ctx(parser), SY_PAREN_TERNARY, 0));
1769                 wantop = false;
1770                 ++ternaries;
1771                 vec_push(parser->pot, POT_TERNARY1);
1772             } else if (op->id == opid2(':','?')) {
1773                 if (!vec_size(parser->pot)) {
1774                     parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
1775                     goto onerr;
1776                 }
1777                 if (vec_last(parser->pot) != POT_TERNARY1) {
1778                     parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
1779                     goto onerr;
1780                 }
1781                 if (!parser_close_paren(parser, &sy, false))
1782                     goto onerr;
1783                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1784                 wantop = false;
1785                 --ternaries;
1786             } else {
1787                 DEBUGSHUNTDO(con_out("push operator %s\n", op->op));
1788                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1789                 wantop = !!(op->flags & OP_SUFFIX);
1790             }
1791         }
1792         if (!parser_next(parser)) {
1793             goto onerr;
1794         }
1795         if (parser->tok == ';' ||
1796             (!parens && parser->tok == ']'))
1797         {
1798             break;
1799         }
1800     }
1801
1802     while (vec_size(sy.ops)) {
1803         if (!parser_sy_apply_operator(parser, &sy))
1804             goto onerr;
1805     }
1806
1807     parser->lex->flags.noops = true;
1808     if (!vec_size(sy.out)) {
1809         parseerror(parser, "empty expression");
1810         expr = NULL;
1811     } else
1812         expr = sy.out[0].out;
1813     vec_free(sy.out);
1814     vec_free(sy.ops);
1815     DEBUGSHUNTDO(con_out("shunt done\n"));
1816     if (vec_size(parser->pot)) {
1817         parseerror(parser, "internal error: vec_size(parser->pot) = %lu", (unsigned long)vec_size(parser->pot));
1818         return NULL;
1819     }
1820     vec_free(parser->pot);
1821     return expr;
1822
1823 onerr:
1824     parser->lex->flags.noops = true;
1825     vec_free(sy.out);
1826     vec_free(sy.ops);
1827     return NULL;
1828 }
1829
1830 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma)
1831 {
1832     ast_expression *e = parse_expression_leave(parser, stopatcomma);
1833     if (!e)
1834         return NULL;
1835     if (!parser_next(parser)) {
1836         ast_delete(e);
1837         return NULL;
1838     }
1839     return e;
1840 }
1841
1842 static void parser_enterblock(parser_t *parser)
1843 {
1844     vec_push(parser->variables, util_htnew(PARSER_HT_SIZE));
1845     vec_push(parser->_blocklocals, vec_size(parser->_locals));
1846     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
1847     vec_push(parser->_blocktypedefs, vec_size(parser->_typedefs));
1848     vec_push(parser->_block_ctx, parser_ctx(parser));
1849 }
1850
1851 static bool parser_leaveblock(parser_t *parser)
1852 {
1853     bool   rv = true;
1854     size_t locals, typedefs;
1855
1856     if (vec_size(parser->variables) <= PARSER_HT_LOCALS) {
1857         parseerror(parser, "internal error: parser_leaveblock with no block");
1858         return false;
1859     }
1860
1861     util_htdel(vec_last(parser->variables));
1862     vec_pop(parser->variables);
1863     if (!vec_size(parser->_blocklocals)) {
1864         parseerror(parser, "internal error: parser_leaveblock with no block (2)");
1865         return false;
1866     }
1867
1868     locals = vec_last(parser->_blocklocals);
1869     vec_pop(parser->_blocklocals);
1870     while (vec_size(parser->_locals) != locals) {
1871         ast_expression *e = vec_last(parser->_locals);
1872         ast_value      *v = (ast_value*)e;
1873         vec_pop(parser->_locals);
1874         if (ast_istype(e, ast_value) && !v->uses) {
1875             if (compile_warning(ast_ctx(v), WARN_UNUSED_VARIABLE, "unused variable: `%s`", v->name)) {
1876                 parser->errors++;
1877                 rv = false;
1878             }
1879         }
1880     }
1881
1882     typedefs = vec_last(parser->_blocktypedefs);
1883     while (vec_size(parser->_typedefs) != typedefs) {
1884         ast_delete(vec_last(parser->_typedefs));
1885         vec_pop(parser->_typedefs);
1886     }
1887     util_htdel(vec_last(parser->typedefs));
1888     vec_pop(parser->typedefs);
1889
1890     vec_pop(parser->_block_ctx);
1891     return rv;
1892 }
1893
1894 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e)
1895 {
1896     vec_push(parser->_locals, e);
1897     util_htset(vec_last(parser->variables), name, (void*)e);
1898 }
1899
1900 static ast_expression* process_condition(parser_t *parser, ast_expression *cond, bool *_ifnot)
1901 {
1902     bool       ifnot = false;
1903     ast_unary *unary;
1904     ast_expression *prev;
1905
1906     if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && cond->expression.vtype == TYPE_STRING)
1907     {
1908         prev = cond;
1909         cond = (ast_expression*)ast_unary_new(ast_ctx(cond), INSTR_NOT_S, cond);
1910         if (!cond) {
1911             ast_unref(prev);
1912             parseerror(parser, "internal error: failed to process condition");
1913             return NULL;
1914         }
1915         ifnot = !ifnot;
1916     }
1917     else if (OPTS_FLAG(CORRECT_LOGIC) && cond->expression.vtype == TYPE_VECTOR)
1918     {
1919         /* vector types need to be cast to true booleans */
1920         ast_binary *bin = (ast_binary*)cond;
1921         if (!OPTS_FLAG(PERL_LOGIC) || !ast_istype(cond, ast_binary) || !(bin->op == INSTR_AND || bin->op == INSTR_OR))
1922         {
1923             /* in perl-logic, AND and OR take care of the -fcorrect-logic */
1924             prev = cond;
1925             cond = (ast_expression*)ast_unary_new(ast_ctx(cond), INSTR_NOT_V, cond);
1926             if (!cond) {
1927                 ast_unref(prev);
1928                 parseerror(parser, "internal error: failed to process condition");
1929                 return NULL;
1930             }
1931             ifnot = !ifnot;
1932         }
1933     }
1934
1935     unary = (ast_unary*)cond;
1936     while (ast_istype(cond, ast_unary) && unary->op == INSTR_NOT_F)
1937     {
1938         cond = unary->operand;
1939         unary->operand = NULL;
1940         ast_delete(unary);
1941         ifnot = !ifnot;
1942         unary = (ast_unary*)cond;
1943     }
1944
1945     if (!cond)
1946         parseerror(parser, "internal error: failed to process condition");
1947
1948     if (ifnot) *_ifnot = !*_ifnot;
1949     return cond;
1950 }
1951
1952 static bool parse_if(parser_t *parser, ast_block *block, ast_expression **out)
1953 {
1954     ast_ifthen *ifthen;
1955     ast_expression *cond, *ontrue = NULL, *onfalse = NULL;
1956     bool ifnot = false;
1957
1958     lex_ctx ctx = parser_ctx(parser);
1959
1960     (void)block; /* not touching */
1961
1962     /* skip the 'if', parse an optional 'not' and check for an opening paren */
1963     if (!parser_next(parser)) {
1964         parseerror(parser, "expected condition or 'not'");
1965         return false;
1966     }
1967     if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "not")) {
1968         ifnot = true;
1969         if (!parser_next(parser)) {
1970             parseerror(parser, "expected condition in parenthesis");
1971             return false;
1972         }
1973     }
1974     if (parser->tok != '(') {
1975         parseerror(parser, "expected 'if' condition in parenthesis");
1976         return false;
1977     }
1978     /* parse into the expression */
1979     if (!parser_next(parser)) {
1980         parseerror(parser, "expected 'if' condition after opening paren");
1981         return false;
1982     }
1983     /* parse the condition */
1984     cond = parse_expression_leave(parser, false);
1985     if (!cond)
1986         return false;
1987     /* closing paren */
1988     if (parser->tok != ')') {
1989         parseerror(parser, "expected closing paren after 'if' condition");
1990         ast_delete(cond);
1991         return false;
1992     }
1993     /* parse into the 'then' branch */
1994     if (!parser_next(parser)) {
1995         parseerror(parser, "expected statement for on-true branch of 'if'");
1996         ast_delete(cond);
1997         return false;
1998     }
1999     if (!parse_statement_or_block(parser, &ontrue)) {
2000         ast_delete(cond);
2001         return false;
2002     }
2003     /* check for an else */
2004     if (!strcmp(parser_tokval(parser), "else")) {
2005         /* parse into the 'else' branch */
2006         if (!parser_next(parser)) {
2007             parseerror(parser, "expected on-false branch after 'else'");
2008             ast_delete(ontrue);
2009             ast_delete(cond);
2010             return false;
2011         }
2012         if (!parse_statement_or_block(parser, &onfalse)) {
2013             ast_delete(ontrue);
2014             ast_delete(cond);
2015             return false;
2016         }
2017     }
2018
2019     cond = process_condition(parser, cond, &ifnot);
2020     if (!cond) {
2021         if (ontrue)  ast_delete(ontrue);
2022         if (onfalse) ast_delete(onfalse);
2023         return false;
2024     }
2025
2026     if (ifnot)
2027         ifthen = ast_ifthen_new(ctx, cond, onfalse, ontrue);
2028     else
2029         ifthen = ast_ifthen_new(ctx, cond, ontrue, onfalse);
2030     *out = (ast_expression*)ifthen;
2031     return true;
2032 }
2033
2034 static bool parse_while(parser_t *parser, ast_block *block, ast_expression **out)
2035 {
2036     ast_loop *aloop;
2037     ast_expression *cond, *ontrue;
2038
2039     bool ifnot = false;
2040
2041     lex_ctx ctx = parser_ctx(parser);
2042
2043     (void)block; /* not touching */
2044
2045     /* skip the 'while' and check for opening paren */
2046     if (!parser_next(parser) || parser->tok != '(') {
2047         parseerror(parser, "expected 'while' condition in parenthesis");
2048         return false;
2049     }
2050     /* parse into the expression */
2051     if (!parser_next(parser)) {
2052         parseerror(parser, "expected 'while' condition after opening paren");
2053         return false;
2054     }
2055     /* parse the condition */
2056     cond = parse_expression_leave(parser, false);
2057     if (!cond)
2058         return false;
2059     /* closing paren */
2060     if (parser->tok != ')') {
2061         parseerror(parser, "expected closing paren after 'while' condition");
2062         ast_delete(cond);
2063         return false;
2064     }
2065     /* parse into the 'then' branch */
2066     if (!parser_next(parser)) {
2067         parseerror(parser, "expected while-loop body");
2068         ast_delete(cond);
2069         return false;
2070     }
2071     if (!parse_statement_or_block(parser, &ontrue)) {
2072         ast_delete(cond);
2073         return false;
2074     }
2075
2076     cond = process_condition(parser, cond, &ifnot);
2077     if (!cond) {
2078         ast_delete(ontrue);
2079         return false;
2080     }
2081     aloop = ast_loop_new(ctx, NULL, cond, ifnot, NULL, false, NULL, ontrue);
2082     *out = (ast_expression*)aloop;
2083     return true;
2084 }
2085
2086 static bool parse_dowhile(parser_t *parser, ast_block *block, ast_expression **out)
2087 {
2088     ast_loop *aloop;
2089     ast_expression *cond, *ontrue;
2090
2091     bool ifnot = false;
2092
2093     lex_ctx ctx = parser_ctx(parser);
2094
2095     (void)block; /* not touching */
2096
2097     /* skip the 'do' and get the body */
2098     if (!parser_next(parser)) {
2099         parseerror(parser, "expected loop body");
2100         return false;
2101     }
2102     if (!parse_statement_or_block(parser, &ontrue))
2103         return false;
2104
2105     /* expect the "while" */
2106     if (parser->tok != TOKEN_KEYWORD ||
2107         strcmp(parser_tokval(parser), "while"))
2108     {
2109         parseerror(parser, "expected 'while' and condition");
2110         ast_delete(ontrue);
2111         return false;
2112     }
2113
2114     /* skip the 'while' and check for opening paren */
2115     if (!parser_next(parser) || parser->tok != '(') {
2116         parseerror(parser, "expected 'while' condition in parenthesis");
2117         ast_delete(ontrue);
2118         return false;
2119     }
2120     /* parse into the expression */
2121     if (!parser_next(parser)) {
2122         parseerror(parser, "expected 'while' condition after opening paren");
2123         ast_delete(ontrue);
2124         return false;
2125     }
2126     /* parse the condition */
2127     cond = parse_expression_leave(parser, false);
2128     if (!cond)
2129         return false;
2130     /* closing paren */
2131     if (parser->tok != ')') {
2132         parseerror(parser, "expected closing paren after 'while' condition");
2133         ast_delete(ontrue);
2134         ast_delete(cond);
2135         return false;
2136     }
2137     /* parse on */
2138     if (!parser_next(parser) || parser->tok != ';') {
2139         parseerror(parser, "expected semicolon after condition");
2140         ast_delete(ontrue);
2141         ast_delete(cond);
2142         return false;
2143     }
2144
2145     if (!parser_next(parser)) {
2146         parseerror(parser, "parse error");
2147         ast_delete(ontrue);
2148         ast_delete(cond);
2149         return false;
2150     }
2151
2152     cond = process_condition(parser, cond, &ifnot);
2153     if (!cond) {
2154         ast_delete(ontrue);
2155         return false;
2156     }
2157     aloop = ast_loop_new(ctx, NULL, NULL, false, cond, ifnot, NULL, ontrue);
2158     *out = (ast_expression*)aloop;
2159     return true;
2160 }
2161
2162 static bool parse_for(parser_t *parser, ast_block *block, ast_expression **out)
2163 {
2164     ast_loop       *aloop;
2165     ast_expression *initexpr, *cond, *increment, *ontrue;
2166     ast_value      *typevar;
2167
2168     bool retval = true;
2169     bool ifnot  = false;
2170
2171     lex_ctx ctx = parser_ctx(parser);
2172
2173     parser_enterblock(parser);
2174
2175     initexpr  = NULL;
2176     cond      = NULL;
2177     increment = NULL;
2178     ontrue    = NULL;
2179
2180     /* skip the 'while' and check for opening paren */
2181     if (!parser_next(parser) || parser->tok != '(') {
2182         parseerror(parser, "expected 'for' expressions in parenthesis");
2183         goto onerr;
2184     }
2185     /* parse into the expression */
2186     if (!parser_next(parser)) {
2187         parseerror(parser, "expected 'for' initializer after opening paren");
2188         goto onerr;
2189     }
2190
2191     typevar = NULL;
2192     if (parser->tok == TOKEN_IDENT)
2193         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2194
2195     if (typevar || parser->tok == TOKEN_TYPENAME) {
2196         if (opts.standard != COMPILER_GMQCC) {
2197             if (parsewarning(parser, WARN_EXTENSIONS,
2198                              "current standard does not allow variable declarations in for-loop initializers"))
2199                 goto onerr;
2200         }
2201         if (!parse_variable(parser, block, true, CV_VAR, typevar, false, false))
2202             goto onerr;
2203     }
2204     else if (parser->tok != ';')
2205     {
2206         initexpr = parse_expression_leave(parser, false);
2207         if (!initexpr)
2208             goto onerr;
2209     }
2210
2211     /* move on to condition */
2212     if (parser->tok != ';') {
2213         parseerror(parser, "expected semicolon after for-loop initializer");
2214         goto onerr;
2215     }
2216     if (!parser_next(parser)) {
2217         parseerror(parser, "expected for-loop condition");
2218         goto onerr;
2219     }
2220
2221     /* parse the condition */
2222     if (parser->tok != ';') {
2223         cond = parse_expression_leave(parser, false);
2224         if (!cond)
2225             goto onerr;
2226     }
2227
2228     /* move on to incrementor */
2229     if (parser->tok != ';') {
2230         parseerror(parser, "expected semicolon after for-loop initializer");
2231         goto onerr;
2232     }
2233     if (!parser_next(parser)) {
2234         parseerror(parser, "expected for-loop condition");
2235         goto onerr;
2236     }
2237
2238     /* parse the incrementor */
2239     if (parser->tok != ')') {
2240         increment = parse_expression_leave(parser, false);
2241         if (!increment)
2242             goto onerr;
2243         if (!ast_side_effects(increment)) {
2244             if (genwarning(ast_ctx(increment), WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2245                 goto onerr;
2246         }
2247     }
2248
2249     /* closing paren */
2250     if (parser->tok != ')') {
2251         parseerror(parser, "expected closing paren after 'for-loop' incrementor");
2252         goto onerr;
2253     }
2254     /* parse into the 'then' branch */
2255     if (!parser_next(parser)) {
2256         parseerror(parser, "expected for-loop body");
2257         goto onerr;
2258     }
2259     if (!parse_statement_or_block(parser, &ontrue))
2260         goto onerr;
2261
2262     if (cond) {
2263         cond = process_condition(parser, cond, &ifnot);
2264         if (!cond)
2265             goto onerr;
2266     }
2267     aloop = ast_loop_new(ctx, initexpr, cond, ifnot, NULL, false, increment, ontrue);
2268     *out = (ast_expression*)aloop;
2269
2270     if (!parser_leaveblock(parser))
2271         retval = false;
2272     return retval;
2273 onerr:
2274     if (initexpr)  ast_delete(initexpr);
2275     if (cond)      ast_delete(cond);
2276     if (increment) ast_delete(increment);
2277     (void)!parser_leaveblock(parser);
2278     return false;
2279 }
2280
2281 static bool parse_return(parser_t *parser, ast_block *block, ast_expression **out)
2282 {
2283     ast_expression *exp = NULL;
2284     ast_return     *ret = NULL;
2285     ast_value      *expected = parser->function->vtype;
2286
2287     lex_ctx ctx = parser_ctx(parser);
2288
2289     (void)block; /* not touching */
2290
2291     if (!parser_next(parser)) {
2292         parseerror(parser, "expected return expression");
2293         return false;
2294     }
2295
2296     if (parser->tok != ';') {
2297         exp = parse_expression(parser, false);
2298         if (!exp)
2299             return false;
2300
2301         if (exp->expression.vtype != expected->expression.next->expression.vtype) {
2302             parseerror(parser, "return with invalid expression");
2303         }
2304
2305         ret = ast_return_new(ctx, exp);
2306         if (!ret) {
2307             ast_delete(exp);
2308             return false;
2309         }
2310     } else {
2311         if (!parser_next(parser))
2312             parseerror(parser, "parse error");
2313         if (expected->expression.next->expression.vtype != TYPE_VOID) {
2314             if (opts.standard != COMPILER_GMQCC)
2315                 (void)!parsewarning(parser, WARN_MISSING_RETURN_VALUES, "return without value");
2316             else
2317                 parseerror(parser, "return without value");
2318         }
2319         ret = ast_return_new(ctx, NULL);
2320     }
2321     *out = (ast_expression*)ret;
2322     return true;
2323 }
2324
2325 static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
2326 {
2327     lex_ctx ctx = parser_ctx(parser);
2328
2329     (void)block; /* not touching */
2330
2331     if (!parser_next(parser) || parser->tok != ';') {
2332         parseerror(parser, "expected semicolon");
2333         return false;
2334     }
2335
2336     if (!parser_next(parser))
2337         parseerror(parser, "parse error");
2338
2339     *out = (ast_expression*)ast_breakcont_new(ctx, is_continue);
2340     return true;
2341 }
2342
2343 /* returns true when it was a variable qualifier, false otherwise!
2344  * on error, cvq is set to CV_WRONG
2345  */
2346 static bool parse_var_qualifiers(parser_t *parser, bool with_local, int *cvq, bool *noref, bool *noreturn)
2347 {
2348     bool had_const = false;
2349     bool had_var   = false;
2350     bool had_noref = false;
2351     bool had_noreturn = false;
2352
2353     *cvq = CV_WRONG;
2354     for (;;) {
2355         if (parser->tok == TOKEN_ATTRIBUTE_OPEN) {
2356             /* parse an attribute */
2357             if (!parser_next(parser)) {
2358                 parseerror(parser, "expected attribute after `[[`");
2359                 return false;
2360             }
2361             if (!strcmp(parser_tokval(parser), "noreturn")) {
2362                 had_noreturn = true;
2363                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2364                     parseerror(parser, "`noreturn` attribute has no parameters, expected `]]`");
2365                     return false;
2366                 }
2367             }
2368             else if (!strcmp(parser_tokval(parser), "noref")) {
2369                 had_noref = true;
2370                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2371                     parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
2372                     return false;
2373                 }
2374             }
2375             else
2376             {
2377                 /* Skip tokens until we hit a ]] */
2378                 while (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2379                     if (!parser_next(parser)) {
2380                         parseerror(parser, "error inside attribute");
2381                         return false;
2382                     }
2383                 }
2384             }
2385         }
2386         else if (!strcmp(parser_tokval(parser), "const"))
2387             had_const = true;
2388         else if (!strcmp(parser_tokval(parser), "var"))
2389             had_var = true;
2390         else if (with_local && !strcmp(parser_tokval(parser), "local"))
2391             had_var = true;
2392         else if (!strcmp(parser_tokval(parser), "noref"))
2393             had_noref = true;
2394         else if (!had_const && !had_var && !had_noref && !had_noreturn) {
2395             return false;
2396         }
2397         else
2398             break;
2399         if (!parser_next(parser))
2400             goto onerr;
2401     }
2402     if (had_const)
2403         *cvq = CV_CONST;
2404     else if (had_var)
2405         *cvq = CV_VAR;
2406     else
2407         *cvq = CV_NONE;
2408     *noref    = had_noref;
2409     *noreturn = had_noreturn;
2410     return true;
2411 onerr:
2412     parseerror(parser, "parse error after variable qualifier");
2413     *cvq = CV_WRONG;
2414     return true;
2415 }
2416
2417 static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **out)
2418 {
2419     ast_expression *operand;
2420     ast_value      *opval;
2421     ast_value      *typevar;
2422     ast_switch     *switchnode;
2423     ast_switch_case swcase;
2424
2425     int  cvq;
2426     bool noref, noreturn;
2427
2428     lex_ctx ctx = parser_ctx(parser);
2429
2430     (void)block; /* not touching */
2431     (void)opval;
2432
2433     /* parse over the opening paren */
2434     if (!parser_next(parser) || parser->tok != '(') {
2435         parseerror(parser, "expected switch operand in parenthesis");
2436         return false;
2437     }
2438
2439     /* parse into the expression */
2440     if (!parser_next(parser)) {
2441         parseerror(parser, "expected switch operand");
2442         return false;
2443     }
2444     /* parse the operand */
2445     operand = parse_expression_leave(parser, false);
2446     if (!operand)
2447         return false;
2448
2449     switchnode = ast_switch_new(ctx, operand);
2450
2451     /* closing paren */
2452     if (parser->tok != ')') {
2453         ast_delete(switchnode);
2454         parseerror(parser, "expected closing paren after 'switch' operand");
2455         return false;
2456     }
2457
2458     /* parse over the opening paren */
2459     if (!parser_next(parser) || parser->tok != '{') {
2460         ast_delete(switchnode);
2461         parseerror(parser, "expected list of cases");
2462         return false;
2463     }
2464
2465     if (!parser_next(parser)) {
2466         ast_delete(switchnode);
2467         parseerror(parser, "expected 'case' or 'default'");
2468         return false;
2469     }
2470
2471     /* new block; allow some variables to be declared here */
2472     parser_enterblock(parser);
2473     while (true) {
2474         typevar = NULL;
2475         if (parser->tok == TOKEN_IDENT)
2476             typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2477         if (typevar || parser->tok == TOKEN_TYPENAME) {
2478             if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false)) {
2479                 ast_delete(switchnode);
2480                 return false;
2481             }
2482             continue;
2483         }
2484         if (parse_var_qualifiers(parser, true, &cvq, &noref, &noreturn))
2485         {
2486             if (cvq == CV_WRONG) {
2487                 ast_delete(switchnode);
2488                 return false;
2489             }
2490             if (!parse_variable(parser, block, false, cvq, NULL, noref, noreturn)) {
2491                 ast_delete(switchnode);
2492                 return false;
2493             }
2494             continue;
2495         }
2496         break;
2497     }
2498
2499     /* case list! */
2500     while (parser->tok != '}') {
2501         ast_block *caseblock;
2502
2503         if (parser->tok != TOKEN_KEYWORD) {
2504             ast_delete(switchnode);
2505             parseerror(parser, "expected 'case' or 'default'");
2506             return false;
2507         }
2508         if (!strcmp(parser_tokval(parser), "case")) {
2509             if (!parser_next(parser)) {
2510                 ast_delete(switchnode);
2511                 parseerror(parser, "expected expression for case");
2512                 return false;
2513             }
2514             swcase.value = parse_expression_leave(parser, false);
2515             if (!swcase.value) {
2516                 ast_delete(switchnode);
2517                 parseerror(parser, "expected expression for case");
2518                 return false;
2519             }
2520             if (!OPTS_FLAG(RELAXED_SWITCH)) {
2521                 if (!ast_istype(swcase.value, ast_value)) { /* || ((ast_value*)swcase.value)->cvq != CV_CONST) { */
2522                     parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
2523                     ast_unref(operand);
2524                     return false;
2525                 }
2526             }
2527         }
2528         else if (!strcmp(parser_tokval(parser), "default")) {
2529             swcase.value = NULL;
2530             if (!parser_next(parser)) {
2531                 ast_delete(switchnode);
2532                 parseerror(parser, "expected colon");
2533                 return false;
2534             }
2535         }
2536
2537         /* Now the colon and body */
2538         if (parser->tok != ':') {
2539             if (swcase.value) ast_unref(swcase.value);
2540             ast_delete(switchnode);
2541             parseerror(parser, "expected colon");
2542             return false;
2543         }
2544
2545         if (!parser_next(parser)) {
2546             if (swcase.value) ast_unref(swcase.value);
2547             ast_delete(switchnode);
2548             parseerror(parser, "expected statements or case");
2549             return false;
2550         }
2551         caseblock = ast_block_new(parser_ctx(parser));
2552         if (!caseblock) {
2553             if (swcase.value) ast_unref(swcase.value);
2554             ast_delete(switchnode);
2555             return false;
2556         }
2557         swcase.code = (ast_expression*)caseblock;
2558         vec_push(switchnode->cases, swcase);
2559         while (true) {
2560             ast_expression *expr;
2561             if (parser->tok == '}')
2562                 break;
2563             if (parser->tok == TOKEN_KEYWORD) {
2564                 if (!strcmp(parser_tokval(parser), "case") ||
2565                     !strcmp(parser_tokval(parser), "default"))
2566                 {
2567                     break;
2568                 }
2569             }
2570             if (!parse_statement(parser, caseblock, &expr, true)) {
2571                 ast_delete(switchnode);
2572                 return false;
2573             }
2574             if (!expr)
2575                 continue;
2576             if (!ast_block_add_expr(caseblock, expr)) {
2577                 ast_delete(switchnode);
2578                 return false;
2579             }
2580         }
2581     }
2582
2583     parser_leaveblock(parser);
2584
2585     /* closing paren */
2586     if (parser->tok != '}') {
2587         ast_delete(switchnode);
2588         parseerror(parser, "expected closing paren of case list");
2589         return false;
2590     }
2591     if (!parser_next(parser)) {
2592         ast_delete(switchnode);
2593         parseerror(parser, "parse error after switch");
2594         return false;
2595     }
2596     *out = (ast_expression*)switchnode;
2597     return true;
2598 }
2599
2600 static bool parse_goto(parser_t *parser, ast_expression **out)
2601 {
2602     size_t    i;
2603     ast_goto *gt;
2604
2605     if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2606         parseerror(parser, "expected label name after `goto`");
2607         return false;
2608     }
2609
2610     gt = ast_goto_new(parser_ctx(parser), parser_tokval(parser));
2611
2612     for (i = 0; i < vec_size(parser->labels); ++i) {
2613         if (!strcmp(parser->labels[i]->name, parser_tokval(parser))) {
2614             ast_goto_set_label(gt, parser->labels[i]);
2615             break;
2616         }
2617     }
2618     if (i == vec_size(parser->labels))
2619         vec_push(parser->gotos, gt);
2620
2621     if (!parser_next(parser) || parser->tok != ';') {
2622         parseerror(parser, "semicolon expected after goto label");
2623         return false;
2624     }
2625     if (!parser_next(parser)) {
2626         parseerror(parser, "parse error after goto");
2627         return false;
2628     }
2629
2630     *out = (ast_expression*)gt;
2631     return true;
2632 }
2633
2634 static bool parse_skipwhite(parser_t *parser)
2635 {
2636     do {
2637         if (!parser_next(parser))
2638             return false;
2639     } while (parser->tok == TOKEN_WHITE && parser->tok < TOKEN_ERROR);
2640     return parser->tok < TOKEN_ERROR;
2641 }
2642
2643 static bool parse_eol(parser_t *parser)
2644 {
2645     if (!parse_skipwhite(parser))
2646         return false;
2647     return parser->tok == TOKEN_EOL;
2648 }
2649
2650 static bool parse_pragma_do(parser_t *parser)
2651 {
2652     if (!parser_next(parser) ||
2653         parser->tok != TOKEN_IDENT ||
2654         strcmp(parser_tokval(parser), "pragma"))
2655     {
2656         parseerror(parser, "expected `pragma` keyword after `#`, got `%s`", parser_tokval(parser));
2657         return false;
2658     }
2659     if (!parse_skipwhite(parser) || parser->tok != TOKEN_IDENT) {
2660         parseerror(parser, "expected pragma, got `%s`", parser_tokval(parser));
2661         return false;
2662     }
2663
2664     if (!strcmp(parser_tokval(parser), "noref")) {
2665         if (!parse_skipwhite(parser) || parser->tok != TOKEN_INTCONST) {
2666             parseerror(parser, "`noref` pragma requires an argument: 0 or 1");
2667             return false;
2668         }
2669         parser->noref = !!parser_token(parser)->constval.i;
2670         if (!parse_eol(parser)) {
2671             parseerror(parser, "parse error after `noref` pragma");
2672             return false;
2673         }
2674     }
2675     else
2676     {
2677         (void)!parsewarning(parser, WARN_UNKNOWN_PRAGMAS, "ignoring #pragma %s", parser_tokval(parser));
2678         return false;
2679     }
2680
2681     return true;
2682 }
2683
2684 static bool parse_pragma(parser_t *parser)
2685 {
2686     bool rv;
2687     parser->lex->flags.preprocessing = true;
2688     parser->lex->flags.mergelines = true;
2689     rv = parse_pragma_do(parser);
2690     if (parser->tok != TOKEN_EOL) {
2691         parseerror(parser, "junk after pragma");
2692         rv = false;
2693     }
2694     parser->lex->flags.preprocessing = false;
2695     parser->lex->flags.mergelines = false;
2696     if (!parser_next(parser)) {
2697         parseerror(parser, "parse error after pragma");
2698         rv = false;
2699     }
2700     return rv;
2701 }
2702
2703 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
2704 {
2705     bool       noref, noreturn;
2706     int        cvq = CV_NONE;
2707     ast_value *typevar = NULL;
2708
2709     *out = NULL;
2710
2711     if (parser->tok == TOKEN_IDENT)
2712         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2713
2714     if (typevar || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
2715     {
2716         /* local variable */
2717         if (!block) {
2718             parseerror(parser, "cannot declare a variable from here");
2719             return false;
2720         }
2721         if (opts.standard == COMPILER_QCC) {
2722             if (parsewarning(parser, WARN_EXTENSIONS, "missing 'local' keyword when declaring a local variable"))
2723                 return false;
2724         }
2725         if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false))
2726             return false;
2727         return true;
2728     }
2729     else if (parse_var_qualifiers(parser, !!block, &cvq, &noref, &noreturn))
2730     {
2731         if (cvq == CV_WRONG)
2732             return false;
2733         return parse_variable(parser, block, true, cvq, NULL, noref, noreturn);
2734     }
2735     else if (parser->tok == TOKEN_KEYWORD)
2736     {
2737         if (!strcmp(parser_tokval(parser), "__builtin_debug_printtype"))
2738         {
2739             char ty[1024];
2740             ast_value *tdef;
2741
2742             if (!parser_next(parser)) {
2743                 parseerror(parser, "parse error after __builtin_debug_printtype");
2744                 return false;
2745             }
2746
2747             if (parser->tok == TOKEN_IDENT && (tdef = parser_find_typedef(parser, parser_tokval(parser), 0)))
2748             {
2749                 ast_type_to_string((ast_expression*)tdef, ty, sizeof(ty));
2750                 con_out("__builtin_debug_printtype: `%s`=`%s`\n", tdef->name, ty);
2751                 if (!parser_next(parser)) {
2752                     parseerror(parser, "parse error after __builtin_debug_printtype typename argument");
2753                     return false;
2754                 }
2755             }
2756             else
2757             {
2758                 if (!parse_statement(parser, block, out, allow_cases))
2759                     return false;
2760                 if (!*out)
2761                     con_out("__builtin_debug_printtype: got no output node\n");
2762                 else
2763                 {
2764                     ast_type_to_string(*out, ty, sizeof(ty));
2765                     con_out("__builtin_debug_printtype: `%s`\n", ty);
2766                 }
2767             }
2768             return true;
2769         }
2770         else if (!strcmp(parser_tokval(parser), "return"))
2771         {
2772             return parse_return(parser, block, out);
2773         }
2774         else if (!strcmp(parser_tokval(parser), "if"))
2775         {
2776             return parse_if(parser, block, out);
2777         }
2778         else if (!strcmp(parser_tokval(parser), "while"))
2779         {
2780             return parse_while(parser, block, out);
2781         }
2782         else if (!strcmp(parser_tokval(parser), "do"))
2783         {
2784             return parse_dowhile(parser, block, out);
2785         }
2786         else if (!strcmp(parser_tokval(parser), "for"))
2787         {
2788             if (opts.standard == COMPILER_QCC) {
2789                 if (parsewarning(parser, WARN_EXTENSIONS, "for loops are not recognized in the original Quake C standard, to enable try an alternate standard --std=?"))
2790                     return false;
2791             }
2792             return parse_for(parser, block, out);
2793         }
2794         else if (!strcmp(parser_tokval(parser), "break"))
2795         {
2796             return parse_break_continue(parser, block, out, false);
2797         }
2798         else if (!strcmp(parser_tokval(parser), "continue"))
2799         {
2800             return parse_break_continue(parser, block, out, true);
2801         }
2802         else if (!strcmp(parser_tokval(parser), "switch"))
2803         {
2804             return parse_switch(parser, block, out);
2805         }
2806         else if (!strcmp(parser_tokval(parser), "case") ||
2807                  !strcmp(parser_tokval(parser), "default"))
2808         {
2809             if (!allow_cases) {
2810                 parseerror(parser, "unexpected 'case' label");
2811                 return false;
2812             }
2813             return true;
2814         }
2815         else if (!strcmp(parser_tokval(parser), "goto"))
2816         {
2817             return parse_goto(parser, out);
2818         }
2819         else if (!strcmp(parser_tokval(parser), "typedef"))
2820         {
2821             if (!parser_next(parser)) {
2822                 parseerror(parser, "expected type definition after 'typedef'");
2823                 return false;
2824             }
2825             return parse_typedef(parser);
2826         }
2827         parseerror(parser, "Unexpected keyword");
2828         return false;
2829     }
2830     else if (parser->tok == '{')
2831     {
2832         ast_block *inner;
2833         inner = parse_block(parser);
2834         if (!inner)
2835             return false;
2836         *out = (ast_expression*)inner;
2837         return true;
2838     }
2839     else if (parser->tok == ':')
2840     {
2841         size_t i;
2842         ast_label *label;
2843         if (!parser_next(parser)) {
2844             parseerror(parser, "expected label name");
2845             return false;
2846         }
2847         if (parser->tok != TOKEN_IDENT) {
2848             parseerror(parser, "label must be an identifier");
2849             return false;
2850         }
2851         label = ast_label_new(parser_ctx(parser), parser_tokval(parser));
2852         if (!label)
2853             return false;
2854         vec_push(parser->labels, label);
2855         *out = (ast_expression*)label;
2856         if (!parser_next(parser)) {
2857             parseerror(parser, "parse error after label");
2858             return false;
2859         }
2860         for (i = 0; i < vec_size(parser->gotos); ++i) {
2861             if (!strcmp(parser->gotos[i]->name, label->name)) {
2862                 ast_goto_set_label(parser->gotos[i], label);
2863                 vec_remove(parser->gotos, i, 1);
2864                 --i;
2865             }
2866         }
2867         return true;
2868     }
2869     else if (parser->tok == ';')
2870     {
2871         if (!parser_next(parser)) {
2872             parseerror(parser, "parse error after empty statement");
2873             return false;
2874         }
2875         return true;
2876     }
2877     else
2878     {
2879         ast_expression *exp = parse_expression(parser, false);
2880         if (!exp)
2881             return false;
2882         *out = exp;
2883         if (!ast_side_effects(exp)) {
2884             if (genwarning(ast_ctx(exp), WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2885                 return false;
2886         }
2887         return true;
2888     }
2889 }
2890
2891 static bool parse_block_into(parser_t *parser, ast_block *block)
2892 {
2893     bool   retval = true;
2894
2895     parser_enterblock(parser);
2896
2897     if (!parser_next(parser)) { /* skip the '{' */
2898         parseerror(parser, "expected function body");
2899         goto cleanup;
2900     }
2901
2902     while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
2903     {
2904         ast_expression *expr = NULL;
2905         if (parser->tok == '}')
2906             break;
2907
2908         if (!parse_statement(parser, block, &expr, false)) {
2909             /* parseerror(parser, "parse error"); */
2910             block = NULL;
2911             goto cleanup;
2912         }
2913         if (!expr)
2914             continue;
2915         if (!ast_block_add_expr(block, expr)) {
2916             ast_delete(block);
2917             block = NULL;
2918             goto cleanup;
2919         }
2920     }
2921
2922     if (parser->tok != '}') {
2923         block = NULL;
2924     } else {
2925         (void)parser_next(parser);
2926     }
2927
2928 cleanup:
2929     if (!parser_leaveblock(parser))
2930         retval = false;
2931     return retval && !!block;
2932 }
2933
2934 static ast_block* parse_block(parser_t *parser)
2935 {
2936     ast_block *block;
2937     block = ast_block_new(parser_ctx(parser));
2938     if (!block)
2939         return NULL;
2940     if (!parse_block_into(parser, block)) {
2941         ast_block_delete(block);
2942         return NULL;
2943     }
2944     return block;
2945 }
2946
2947 static bool parse_statement_or_block(parser_t *parser, ast_expression **out)
2948 {
2949     if (parser->tok == '{') {
2950         *out = (ast_expression*)parse_block(parser);
2951         return !!*out;
2952     }
2953     return parse_statement(parser, NULL, out, false);
2954 }
2955
2956 static bool create_vector_members(ast_value *var, ast_member **me)
2957 {
2958     size_t i;
2959     size_t len = strlen(var->name);
2960
2961     for (i = 0; i < 3; ++i) {
2962         char *name = mem_a(len+3);
2963         memcpy(name, var->name, len);
2964         name[len+0] = '_';
2965         name[len+1] = 'x'+i;
2966         name[len+2] = 0;
2967         me[i] = ast_member_new(ast_ctx(var), (ast_expression*)var, i, name);
2968         mem_d(name);
2969         if (!me[i])
2970             break;
2971     }
2972     if (i == 3)
2973         return true;
2974
2975     /* unroll */
2976     do { ast_member_delete(me[--i]); } while(i);
2977     return false;
2978 }
2979
2980 static bool parse_function_body(parser_t *parser, ast_value *var)
2981 {
2982     ast_block      *block = NULL;
2983     ast_function   *func;
2984     ast_function   *old;
2985     size_t          parami;
2986
2987     ast_expression *framenum  = NULL;
2988     ast_expression *nextthink = NULL;
2989     /* None of the following have to be deleted */
2990     ast_expression *fld_think = NULL, *fld_nextthink = NULL, *fld_frame = NULL;
2991     ast_expression *gbl_time = NULL, *gbl_self = NULL;
2992     bool            has_frame_think;
2993
2994     bool retval = true;
2995
2996     has_frame_think = false;
2997     old = parser->function;
2998
2999     if (vec_size(parser->gotos) || vec_size(parser->labels)) {
3000         parseerror(parser, "gotos/labels leaking");
3001         return false;
3002     }
3003
3004     if (var->expression.flags & AST_FLAG_VARIADIC) {
3005         if (parsewarning(parser, WARN_VARIADIC_FUNCTION,
3006                          "variadic function with implementation will not be able to access additional parameters"))
3007         {
3008             return false;
3009         }
3010     }
3011
3012     if (parser->tok == '[') {
3013         /* got a frame definition: [ framenum, nextthink ]
3014          * this translates to:
3015          * self.frame = framenum;
3016          * self.nextthink = time + 0.1;
3017          * self.think = nextthink;
3018          */
3019         nextthink = NULL;
3020
3021         fld_think     = parser_find_field(parser, "think");
3022         fld_nextthink = parser_find_field(parser, "nextthink");
3023         fld_frame     = parser_find_field(parser, "frame");
3024         if (!fld_think || !fld_nextthink || !fld_frame) {
3025             parseerror(parser, "cannot use [frame,think] notation without the required fields");
3026             parseerror(parser, "please declare the following entityfields: `frame`, `think`, `nextthink`");
3027             return false;
3028         }
3029         gbl_time      = parser_find_global(parser, "time");
3030         gbl_self      = parser_find_global(parser, "self");
3031         if (!gbl_time || !gbl_self) {
3032             parseerror(parser, "cannot use [frame,think] notation without the required globals");
3033             parseerror(parser, "please declare the following globals: `time`, `self`");
3034             return false;
3035         }
3036
3037         if (!parser_next(parser))
3038             return false;
3039
3040         framenum = parse_expression_leave(parser, true);
3041         if (!framenum) {
3042             parseerror(parser, "expected a framenumber constant in[frame,think] notation");
3043             return false;
3044         }
3045         if (!ast_istype(framenum, ast_value) || !( (ast_value*)framenum )->hasvalue) {
3046             ast_unref(framenum);
3047             parseerror(parser, "framenumber in [frame,think] notation must be a constant");
3048             return false;
3049         }
3050
3051         if (parser->tok != ',') {
3052             ast_unref(framenum);
3053             parseerror(parser, "expected comma after frame number in [frame,think] notation");
3054             parseerror(parser, "Got a %i\n", parser->tok);
3055             return false;
3056         }
3057
3058         if (!parser_next(parser)) {
3059             ast_unref(framenum);
3060             return false;
3061         }
3062
3063         if (parser->tok == TOKEN_IDENT && !parser_find_var(parser, parser_tokval(parser)))
3064         {
3065             /* qc allows the use of not-yet-declared functions here
3066              * - this automatically creates a prototype */
3067             ast_value      *thinkfunc;
3068             ast_expression *functype = fld_think->expression.next;
3069
3070             thinkfunc = ast_value_new(parser_ctx(parser), parser_tokval(parser), functype->expression.vtype);
3071             if (!thinkfunc || !ast_type_adopt(thinkfunc, functype)) {
3072                 ast_unref(framenum);
3073                 parseerror(parser, "failed to create implicit prototype for `%s`", parser_tokval(parser));
3074                 return false;
3075             }
3076
3077             if (!parser_next(parser)) {
3078                 ast_unref(framenum);
3079                 ast_delete(thinkfunc);
3080                 return false;
3081             }
3082
3083             vec_push(parser->globals, (ast_expression*)thinkfunc);
3084             util_htset(parser->htglobals, thinkfunc->name, thinkfunc);
3085             nextthink = (ast_expression*)thinkfunc;
3086
3087         } else {
3088             nextthink = parse_expression_leave(parser, true);
3089             if (!nextthink) {
3090                 ast_unref(framenum);
3091                 parseerror(parser, "expected a think-function in [frame,think] notation");
3092                 return false;
3093             }
3094         }
3095
3096         if (!ast_istype(nextthink, ast_value)) {
3097             parseerror(parser, "think-function in [frame,think] notation must be a constant");
3098             retval = false;
3099         }
3100
3101         if (retval && parser->tok != ']') {
3102             parseerror(parser, "expected closing `]` for [frame,think] notation");
3103             retval = false;
3104         }
3105
3106         if (retval && !parser_next(parser)) {
3107             retval = false;
3108         }
3109
3110         if (retval && parser->tok != '{') {
3111             parseerror(parser, "a function body has to be declared after a [frame,think] declaration");
3112             retval = false;
3113         }
3114
3115         if (!retval) {
3116             ast_unref(nextthink);
3117             ast_unref(framenum);
3118             return false;
3119         }
3120
3121         has_frame_think = true;
3122     }
3123
3124     block = ast_block_new(parser_ctx(parser));
3125     if (!block) {
3126         parseerror(parser, "failed to allocate block");
3127         if (has_frame_think) {
3128             ast_unref(nextthink);
3129             ast_unref(framenum);
3130         }
3131         return false;
3132     }
3133
3134     if (has_frame_think) {
3135         lex_ctx ctx;
3136         ast_expression *self_frame;
3137         ast_expression *self_nextthink;
3138         ast_expression *self_think;
3139         ast_expression *time_plus_1;
3140         ast_store *store_frame;
3141         ast_store *store_nextthink;
3142         ast_store *store_think;
3143
3144         ctx = parser_ctx(parser);
3145         self_frame     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_frame);
3146         self_nextthink = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_nextthink);
3147         self_think     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_think);
3148
3149         time_plus_1    = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_F,
3150                          gbl_time, (ast_expression*)parser_const_float(parser, 0.1));
3151
3152         if (!self_frame || !self_nextthink || !self_think || !time_plus_1) {
3153             if (self_frame)     ast_delete(self_frame);
3154             if (self_nextthink) ast_delete(self_nextthink);
3155             if (self_think)     ast_delete(self_think);
3156             if (time_plus_1)    ast_delete(time_plus_1);
3157             retval = false;
3158         }
3159
3160         if (retval)
3161         {
3162             store_frame     = ast_store_new(ctx, INSTR_STOREP_F,   self_frame,     framenum);
3163             store_nextthink = ast_store_new(ctx, INSTR_STOREP_F,   self_nextthink, time_plus_1);
3164             store_think     = ast_store_new(ctx, INSTR_STOREP_FNC, self_think,     nextthink);
3165
3166             if (!store_frame) {
3167                 ast_delete(self_frame);
3168                 retval = false;
3169             }
3170             if (!store_nextthink) {
3171                 ast_delete(self_nextthink);
3172                 retval = false;
3173             }
3174             if (!store_think) {
3175                 ast_delete(self_think);
3176                 retval = false;
3177             }
3178             if (!retval) {
3179                 if (store_frame)     ast_delete(store_frame);
3180                 if (store_nextthink) ast_delete(store_nextthink);
3181                 if (store_think)     ast_delete(store_think);
3182                 retval = false;
3183             }
3184             if (!ast_block_add_expr(block, (ast_expression*)store_frame) ||
3185                 !ast_block_add_expr(block, (ast_expression*)store_nextthink) ||
3186                 !ast_block_add_expr(block, (ast_expression*)store_think))
3187             {
3188                 retval = false;
3189             }
3190         }
3191
3192         if (!retval) {
3193             parseerror(parser, "failed to generate code for [frame,think]");
3194             ast_unref(nextthink);
3195             ast_unref(framenum);
3196             ast_delete(block);
3197             return false;
3198         }
3199     }
3200
3201     parser_enterblock(parser);
3202
3203     for (parami = 0; parami < vec_size(var->expression.params); ++parami) {
3204         size_t     e;
3205         ast_value *param = var->expression.params[parami];
3206         ast_member *me[3];
3207
3208         if (param->expression.vtype != TYPE_VECTOR &&
3209             (param->expression.vtype != TYPE_FIELD ||
3210              param->expression.next->expression.vtype != TYPE_VECTOR))
3211         {
3212             continue;
3213         }
3214
3215         if (!create_vector_members(param, me)) {
3216             ast_block_delete(block);
3217             return false;
3218         }
3219
3220         for (e = 0; e < 3; ++e) {
3221             parser_addlocal(parser, me[e]->name, (ast_expression*)me[e]);
3222             ast_block_collect(block, (ast_expression*)me[e]);
3223         }
3224     }
3225
3226     func = ast_function_new(ast_ctx(var), var->name, var);
3227     if (!func) {
3228         parseerror(parser, "failed to allocate function for `%s`", var->name);
3229         ast_block_delete(block);
3230         goto enderr;
3231     }
3232     vec_push(parser->functions, func);
3233
3234     parser->function = func;
3235     if (!parse_block_into(parser, block)) {
3236         ast_block_delete(block);
3237         goto enderrfn;
3238     }
3239
3240     vec_push(func->blocks, block);
3241
3242     parser->function = old;
3243     if (!parser_leaveblock(parser))
3244         retval = false;
3245     if (vec_size(parser->variables) != PARSER_HT_LOCALS) {
3246         parseerror(parser, "internal error: local scopes left");
3247         retval = false;
3248     }
3249
3250     if (parser->tok == ';')
3251         return parser_next(parser);
3252     else if (opts.standard == COMPILER_QCC)
3253         parseerror(parser, "missing semicolon after function body (mandatory with -std=qcc)");
3254     return retval;
3255
3256 enderrfn:
3257     vec_pop(parser->functions);
3258     ast_function_delete(func);
3259     var->constval.vfunc = NULL;
3260
3261 enderr:
3262     (void)!parser_leaveblock(parser);
3263     parser->function = old;
3264     return false;
3265 }
3266
3267 static ast_expression *array_accessor_split(
3268     parser_t  *parser,
3269     ast_value *array,
3270     ast_value *index,
3271     size_t     middle,
3272     ast_expression *left,
3273     ast_expression *right
3274     )
3275 {
3276     ast_ifthen *ifthen;
3277     ast_binary *cmp;
3278
3279     lex_ctx ctx = ast_ctx(array);
3280
3281     if (!left || !right) {
3282         if (left)  ast_delete(left);
3283         if (right) ast_delete(right);
3284         return NULL;
3285     }
3286
3287     cmp = ast_binary_new(ctx, INSTR_LT,
3288                          (ast_expression*)index,
3289                          (ast_expression*)parser_const_float(parser, middle));
3290     if (!cmp) {
3291         ast_delete(left);
3292         ast_delete(right);
3293         parseerror(parser, "internal error: failed to create comparison for array setter");
3294         return NULL;
3295     }
3296
3297     ifthen = ast_ifthen_new(ctx, (ast_expression*)cmp, left, right);
3298     if (!ifthen) {
3299         ast_delete(cmp); /* will delete left and right */
3300         parseerror(parser, "internal error: failed to create conditional jump for array setter");
3301         return NULL;
3302     }
3303
3304     return (ast_expression*)ifthen;
3305 }
3306
3307 static ast_expression *array_setter_node(parser_t *parser, ast_value *array, ast_value *index, ast_value *value, size_t from, size_t afterend)
3308 {
3309     lex_ctx ctx = ast_ctx(array);
3310
3311     if (from+1 == afterend) {
3312         /* set this value */
3313         ast_block       *block;
3314         ast_return      *ret;
3315         ast_array_index *subscript;
3316         ast_store       *st;
3317         int assignop = type_store_instr[value->expression.vtype];
3318
3319         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
3320             assignop = INSTR_STORE_V;
3321
3322         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
3323         if (!subscript)
3324             return NULL;
3325
3326         st = ast_store_new(ctx, assignop, (ast_expression*)subscript, (ast_expression*)value);
3327         if (!st) {
3328             ast_delete(subscript);
3329             return NULL;
3330         }
3331
3332         block = ast_block_new(ctx);
3333         if (!block) {
3334             ast_delete(st);
3335             return NULL;
3336         }
3337
3338         if (!ast_block_add_expr(block, (ast_expression*)st)) {
3339             ast_delete(block);
3340             return NULL;
3341         }
3342
3343         ret = ast_return_new(ctx, NULL);
3344         if (!ret) {
3345             ast_delete(block);
3346             return NULL;
3347         }
3348
3349         if (!ast_block_add_expr(block, (ast_expression*)ret)) {
3350             ast_delete(block);
3351             return NULL;
3352         }
3353
3354         return (ast_expression*)block;
3355     } else {
3356         ast_expression *left, *right;
3357         size_t diff = afterend - from;
3358         size_t middle = from + diff/2;
3359         left  = array_setter_node(parser, array, index, value, from, middle);
3360         right = array_setter_node(parser, array, index, value, middle, afterend);
3361         return array_accessor_split(parser, array, index, middle, left, right);
3362     }
3363 }
3364
3365 static ast_expression *array_field_setter_node(
3366     parser_t  *parser,
3367     ast_value *array,
3368     ast_value *entity,
3369     ast_value *index,
3370     ast_value *value,
3371     size_t     from,
3372     size_t     afterend)
3373 {
3374     lex_ctx ctx = ast_ctx(array);
3375
3376     if (from+1 == afterend) {
3377         /* set this value */
3378         ast_block       *block;
3379         ast_return      *ret;
3380         ast_entfield    *entfield;
3381         ast_array_index *subscript;
3382         ast_store       *st;
3383         int assignop = type_storep_instr[value->expression.vtype];
3384
3385         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
3386             assignop = INSTR_STOREP_V;
3387
3388         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
3389         if (!subscript)
3390             return NULL;
3391
3392         entfield = ast_entfield_new_force(ctx,
3393                                           (ast_expression*)entity,
3394                                           (ast_expression*)subscript,
3395                                           (ast_expression*)subscript);
3396         if (!entfield) {
3397             ast_delete(subscript);
3398             return NULL;
3399         }
3400
3401         st = ast_store_new(ctx, assignop, (ast_expression*)entfield, (ast_expression*)value);
3402         if (!st) {
3403             ast_delete(entfield);
3404             return NULL;
3405         }
3406
3407         block = ast_block_new(ctx);
3408         if (!block) {
3409             ast_delete(st);
3410             return NULL;
3411         }
3412
3413         if (!ast_block_add_expr(block, (ast_expression*)st)) {
3414             ast_delete(block);
3415             return NULL;
3416         }
3417
3418         ret = ast_return_new(ctx, NULL);
3419         if (!ret) {
3420             ast_delete(block);
3421             return NULL;
3422         }
3423
3424         if (!ast_block_add_expr(block, (ast_expression*)ret)) {
3425             ast_delete(block);
3426             return NULL;
3427         }
3428
3429         return (ast_expression*)block;
3430     } else {
3431         ast_expression *left, *right;
3432         size_t diff = afterend - from;
3433         size_t middle = from + diff/2;
3434         left  = array_field_setter_node(parser, array, entity, index, value, from, middle);
3435         right = array_field_setter_node(parser, array, entity, index, value, middle, afterend);
3436         return array_accessor_split(parser, array, index, middle, left, right);
3437     }
3438 }
3439
3440 static ast_expression *array_getter_node(parser_t *parser, ast_value *array, ast_value *index, size_t from, size_t afterend)
3441 {
3442     lex_ctx ctx = ast_ctx(array);
3443
3444     if (from+1 == afterend) {
3445         ast_return      *ret;
3446         ast_array_index *subscript;
3447
3448         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
3449         if (!subscript)
3450             return NULL;
3451
3452         ret = ast_return_new(ctx, (ast_expression*)subscript);
3453         if (!ret) {
3454             ast_delete(subscript);
3455             return NULL;
3456         }
3457
3458         return (ast_expression*)ret;
3459     } else {
3460         ast_expression *left, *right;
3461         size_t diff = afterend - from;
3462         size_t middle = from + diff/2;
3463         left  = array_getter_node(parser, array, index, from, middle);
3464         right = array_getter_node(parser, array, index, middle, afterend);
3465         return array_accessor_split(parser, array, index, middle, left, right);
3466     }
3467 }
3468
3469 static bool parser_create_array_accessor(parser_t *parser, ast_value *array, const char *funcname, ast_value **out)
3470 {
3471     ast_function   *func = NULL;
3472     ast_value      *fval = NULL;
3473     ast_block      *body = NULL;
3474
3475     fval = ast_value_new(ast_ctx(array), funcname, TYPE_FUNCTION);
3476     if (!fval) {
3477         parseerror(parser, "failed to create accessor function value");
3478         return false;
3479     }
3480
3481     func = ast_function_new(ast_ctx(array), funcname, fval);
3482     if (!func) {
3483         ast_delete(fval);
3484         parseerror(parser, "failed to create accessor function node");
3485         return false;
3486     }
3487
3488     body = ast_block_new(ast_ctx(array));
3489     if (!body) {
3490         parseerror(parser, "failed to create block for array accessor");
3491         ast_delete(fval);
3492         ast_delete(func);
3493         return false;
3494     }
3495
3496     vec_push(func->blocks, body);
3497     *out = fval;
3498
3499     vec_push(parser->accessors, fval);
3500
3501     return true;
3502 }
3503
3504 static bool parser_create_array_setter(parser_t *parser, ast_value *array, const char *funcname)
3505 {
3506     ast_expression *root = NULL;
3507     ast_value      *index = NULL;
3508     ast_value      *value = NULL;
3509     ast_function   *func;
3510     ast_value      *fval;
3511
3512     if (!ast_istype(array->expression.next, ast_value)) {
3513         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
3514         return false;
3515     }
3516
3517     if (!parser_create_array_accessor(parser, array, funcname, &fval))
3518         return false;
3519     func = fval->constval.vfunc;
3520     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
3521
3522     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
3523     value = ast_value_copy((ast_value*)array->expression.next);
3524
3525     if (!index || !value) {
3526         parseerror(parser, "failed to create locals for array accessor");
3527         goto cleanup;
3528     }
3529     (void)!ast_value_set_name(value, "value"); /* not important */
3530     vec_push(fval->expression.params, index);
3531     vec_push(fval->expression.params, value);
3532
3533     root = array_setter_node(parser, array, index, value, 0, array->expression.count);
3534     if (!root) {
3535         parseerror(parser, "failed to build accessor search tree");
3536         goto cleanup;
3537     }
3538
3539     array->setter = fval;
3540     return ast_block_add_expr(func->blocks[0], root);
3541 cleanup:
3542     if (index) ast_delete(index);
3543     if (value) ast_delete(value);
3544     if (root)  ast_delete(root);
3545     ast_delete(func);
3546     ast_delete(fval);
3547     return false;
3548 }
3549
3550 static bool parser_create_array_field_setter(parser_t *parser, ast_value *array, const char *funcname)
3551 {
3552     ast_expression *root = NULL;
3553     ast_value      *entity = NULL;
3554     ast_value      *index = NULL;
3555     ast_value      *value = NULL;
3556     ast_function   *func;
3557     ast_value      *fval;
3558
3559     if (!ast_istype(array->expression.next, ast_value)) {
3560         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
3561         return false;
3562     }
3563
3564     if (!parser_create_array_accessor(parser, array, funcname, &fval))
3565         return false;
3566     func = fval->constval.vfunc;
3567     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
3568
3569     entity = ast_value_new(ast_ctx(array), "entity", TYPE_ENTITY);
3570     index  = ast_value_new(ast_ctx(array), "index",  TYPE_FLOAT);
3571     value  = ast_value_copy((ast_value*)array->expression.next);
3572     if (!entity || !index || !value) {
3573         parseerror(parser, "failed to create locals for array accessor");
3574         goto cleanup;
3575     }
3576     (void)!ast_value_set_name(value, "value"); /* not important */
3577     vec_push(fval->expression.params, entity);
3578     vec_push(fval->expression.params, index);
3579     vec_push(fval->expression.params, value);
3580
3581     root = array_field_setter_node(parser, array, entity, index, value, 0, array->expression.count);
3582     if (!root) {
3583         parseerror(parser, "failed to build accessor search tree");
3584         goto cleanup;
3585     }
3586
3587     array->setter = fval;
3588     return ast_block_add_expr(func->blocks[0], root);
3589 cleanup:
3590     if (entity) ast_delete(entity);
3591     if (index)  ast_delete(index);
3592     if (value)  ast_delete(value);
3593     if (root)   ast_delete(root);
3594     ast_delete(func);
3595     ast_delete(fval);
3596     return false;
3597 }
3598
3599 static bool parser_create_array_getter(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
3600 {
3601     ast_expression *root = NULL;
3602     ast_value      *index = NULL;
3603     ast_value      *fval;
3604     ast_function   *func;
3605
3606     /* NOTE: checking array->expression.next rather than elemtype since
3607      * for fields elemtype is a temporary fieldtype.
3608      */
3609     if (!ast_istype(array->expression.next, ast_value)) {
3610         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
3611         return false;
3612     }
3613
3614     if (!parser_create_array_accessor(parser, array, funcname, &fval))
3615         return false;
3616     func = fval->constval.vfunc;
3617     fval->expression.next = ast_type_copy(ast_ctx(array), elemtype);
3618
3619     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
3620
3621     if (!index) {
3622         parseerror(parser, "failed to create locals for array accessor");
3623         goto cleanup;
3624     }
3625     vec_push(fval->expression.params, index);
3626
3627     root = array_getter_node(parser, array, index, 0, array->expression.count);
3628     if (!root) {
3629         parseerror(parser, "failed to build accessor search tree");
3630         goto cleanup;
3631     }
3632
3633     array->getter = fval;
3634     return ast_block_add_expr(func->blocks[0], root);
3635 cleanup:
3636     if (index) ast_delete(index);
3637     if (root)  ast_delete(root);
3638     ast_delete(func);
3639     ast_delete(fval);
3640     return false;
3641 }
3642
3643 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef);
3644 static ast_value *parse_parameter_list(parser_t *parser, ast_value *var)
3645 {
3646     lex_ctx     ctx;
3647     size_t      i;
3648     ast_value **params;
3649     ast_value  *param;
3650     ast_value  *fval;
3651     bool        first = true;
3652     bool        variadic = false;
3653
3654     ctx = parser_ctx(parser);
3655
3656     /* for the sake of less code we parse-in in this function */
3657     if (!parser_next(parser)) {
3658         parseerror(parser, "expected parameter list");
3659         return NULL;
3660     }
3661
3662     params = NULL;
3663
3664     /* parse variables until we hit a closing paren */
3665     while (parser->tok != ')') {
3666         if (!first) {
3667             /* there must be commas between them */
3668             if (parser->tok != ',') {
3669                 parseerror(parser, "expected comma or end of parameter list");
3670                 goto on_error;
3671             }
3672             if (!parser_next(parser)) {
3673                 parseerror(parser, "expected parameter");
3674                 goto on_error;
3675             }
3676         }
3677         first = false;
3678
3679         if (parser->tok == TOKEN_DOTS) {
3680             /* '...' indicates a varargs function */
3681             variadic = true;
3682             if (!parser_next(parser)) {
3683                 parseerror(parser, "expected parameter");
3684                 return NULL;
3685             }
3686             if (parser->tok != ')') {
3687                 parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
3688                 goto on_error;
3689             }
3690         }
3691         else
3692         {
3693             /* for anything else just parse a typename */
3694             param = parse_typename(parser, NULL, NULL);
3695             if (!param)
3696                 goto on_error;
3697             vec_push(params, param);
3698             if (param->expression.vtype >= TYPE_VARIANT) {
3699                 char typename[1024];
3700                 ast_type_to_string((ast_expression*)param, typename, sizeof(typename));
3701                 parseerror(parser, "type not supported as part of a parameter list: %s", typename);
3702                 goto on_error;
3703             }
3704         }
3705     }
3706
3707     if (vec_size(params) == 1 && params[0]->expression.vtype == TYPE_VOID)
3708         vec_free(params);
3709
3710     /* sanity check */
3711     if (vec_size(params) > 8 && opts.standard == COMPILER_QCC)
3712         (void)!parsewarning(parser, WARN_EXTENSIONS, "more than 8 parameters are not supported by this standard");
3713
3714     /* parse-out */
3715     if (!parser_next(parser)) {
3716         parseerror(parser, "parse error after typename");
3717         goto on_error;
3718     }
3719
3720     /* now turn 'var' into a function type */
3721     fval = ast_value_new(ctx, "<type()>", TYPE_FUNCTION);
3722     fval->expression.next     = (ast_expression*)var;
3723     if (variadic)
3724         fval->expression.flags |= AST_FLAG_VARIADIC;
3725     var = fval;
3726
3727     var->expression.params = params;
3728     params = NULL;
3729
3730     return var;
3731
3732 on_error:
3733     ast_delete(var);
3734     for (i = 0; i < vec_size(params); ++i)
3735         ast_delete(params[i]);
3736     vec_free(params);
3737     return NULL;
3738 }
3739
3740 static ast_value *parse_arraysize(parser_t *parser, ast_value *var)
3741 {
3742     ast_expression *cexp;
3743     ast_value      *cval, *tmp;
3744     lex_ctx ctx;
3745
3746     ctx = parser_ctx(parser);
3747
3748     if (!parser_next(parser)) {
3749         ast_delete(var);
3750         parseerror(parser, "expected array-size");
3751         return NULL;
3752     }
3753
3754     cexp = parse_expression_leave(parser, true);
3755
3756     if (!cexp || !ast_istype(cexp, ast_value)) {
3757         if (cexp)
3758             ast_unref(cexp);
3759         ast_delete(var);
3760         parseerror(parser, "expected array-size as constant positive integer");
3761         return NULL;
3762     }
3763     cval = (ast_value*)cexp;
3764
3765     tmp = ast_value_new(ctx, "<type[]>", TYPE_ARRAY);
3766     tmp->expression.next = (ast_expression*)var;
3767     var = tmp;
3768
3769     if (cval->expression.vtype == TYPE_INTEGER)
3770         tmp->expression.count = cval->constval.vint;
3771     else if (cval->expression.vtype == TYPE_FLOAT)
3772         tmp->expression.count = cval->constval.vfloat;
3773     else {
3774         ast_unref(cexp);
3775         ast_delete(var);
3776         parseerror(parser, "array-size must be a positive integer constant");
3777         return NULL;
3778     }
3779     ast_unref(cexp);
3780
3781     if (parser->tok != ']') {
3782         ast_delete(var);
3783         parseerror(parser, "expected ']' after array-size");
3784         return NULL;
3785     }
3786     if (!parser_next(parser)) {
3787         ast_delete(var);
3788         parseerror(parser, "error after parsing array size");
3789         return NULL;
3790     }
3791     return var;
3792 }
3793
3794 /* Parse a complete typename.
3795  * for single-variables (ie. function parameters or typedefs) storebase should be NULL
3796  * but when parsing variables separated by comma
3797  * 'storebase' should point to where the base-type should be kept.
3798  * The base type makes up every bit of type information which comes *before* the
3799  * variable name.
3800  *
3801  * The following will be parsed in its entirety:
3802  *     void() foo()
3803  * The 'basetype' in this case is 'void()'
3804  * and if there's a comma after it, say:
3805  *     void() foo(), bar
3806  * then the type-information 'void()' can be stored in 'storebase'
3807  */
3808 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef)
3809 {
3810     ast_value *var, *tmp;
3811     lex_ctx    ctx;
3812
3813     const char *name = NULL;
3814     bool        isfield  = false;
3815     bool        wasarray = false;
3816     size_t      morefields = 0;
3817
3818     ctx = parser_ctx(parser);
3819
3820     /* types may start with a dot */
3821     if (parser->tok == '.') {
3822         isfield = true;
3823         /* if we parsed a dot we need a typename now */
3824         if (!parser_next(parser)) {
3825             parseerror(parser, "expected typename for field definition");
3826             return NULL;
3827         }
3828
3829         /* Further dots are handled seperately because they won't be part of the
3830          * basetype
3831          */
3832         while (parser->tok == '.') {
3833             ++morefields;
3834             if (!parser_next(parser)) {
3835                 parseerror(parser, "expected typename for field definition");
3836                 return NULL;
3837             }
3838         }
3839     }
3840     if (parser->tok == TOKEN_IDENT)
3841         cached_typedef = parser_find_typedef(parser, parser_tokval(parser), 0);
3842     if (!cached_typedef && parser->tok != TOKEN_TYPENAME) {
3843         parseerror(parser, "expected typename");
3844         return NULL;
3845     }
3846
3847     /* generate the basic type value */
3848     if (cached_typedef) {
3849         var = ast_value_copy(cached_typedef);
3850         ast_value_set_name(var, "<type(from_def)>");
3851     } else
3852         var = ast_value_new(ctx, "<type>", parser_token(parser)->constval.t);
3853
3854     for (; morefields; --morefields) {
3855         tmp = ast_value_new(ctx, "<.type>", TYPE_FIELD);
3856         tmp->expression.next = (ast_expression*)var;
3857         var = tmp;
3858     }
3859
3860     /* do not yet turn into a field - remember:
3861      * .void() foo; is a field too
3862      * .void()() foo; is a function
3863      */
3864
3865     /* parse on */
3866     if (!parser_next(parser)) {
3867         ast_delete(var);
3868         parseerror(parser, "parse error after typename");
3869         return NULL;
3870     }
3871
3872     /* an opening paren now starts the parameter-list of a function
3873      * this is where original-QC has parameter lists.
3874      * We allow a single parameter list here.
3875      * Much like fteqcc we don't allow `float()() x`
3876      */
3877     if (parser->tok == '(') {
3878         var = parse_parameter_list(parser, var);
3879         if (!var)
3880             return NULL;
3881     }
3882
3883     /* store the base if requested */
3884     if (storebase) {
3885         *storebase = ast_value_copy(var);
3886         if (isfield) {
3887             tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
3888             tmp->expression.next = (ast_expression*)*storebase;
3889             *storebase = tmp;
3890         }
3891     }
3892
3893     /* there may be a name now */
3894     if (parser->tok == TOKEN_IDENT) {
3895         name = util_strdup(parser_tokval(parser));
3896         /* parse on */
3897         if (!parser_next(parser)) {
3898             ast_delete(var);
3899             parseerror(parser, "error after variable or field declaration");
3900             return NULL;
3901         }
3902     }
3903
3904     /* now this may be an array */
3905     if (parser->tok == '[') {
3906         wasarray = true;
3907         var = parse_arraysize(parser, var);
3908         if (!var)
3909             return NULL;
3910     }
3911
3912     /* This is the point where we can turn it into a field */
3913     if (isfield) {
3914         /* turn it into a field if desired */
3915         tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
3916         tmp->expression.next = (ast_expression*)var;
3917         var = tmp;
3918     }
3919
3920     /* now there may be function parens again */
3921     if (parser->tok == '(' && opts.standard == COMPILER_QCC)
3922         parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
3923     if (parser->tok == '(' && wasarray)
3924         parseerror(parser, "arrays as part of a return type is not supported");
3925     while (parser->tok == '(') {
3926         var = parse_parameter_list(parser, var);
3927         if (!var) {
3928             if (name)
3929                 mem_d((void*)name);
3930             ast_delete(var);
3931             return NULL;
3932         }
3933     }
3934
3935     /* finally name it */
3936     if (name) {
3937         if (!ast_value_set_name(var, name)) {
3938             ast_delete(var);
3939             parseerror(parser, "internal error: failed to set name");
3940             return NULL;
3941         }
3942         /* free the name, ast_value_set_name duplicates */
3943         mem_d((void*)name);
3944     }
3945
3946     return var;
3947 }
3948
3949 static bool parse_typedef(parser_t *parser)
3950 {
3951     ast_value      *typevar, *oldtype;
3952     ast_expression *old;
3953
3954     typevar = parse_typename(parser, NULL, NULL);
3955
3956     if (!typevar)
3957         return false;
3958
3959     if ( (old = parser_find_var(parser, typevar->name)) ) {
3960         parseerror(parser, "cannot define a type with the same name as a variable: %s\n"
3961                    " -> `%s` has been declared here: %s:%i",
3962                    typevar->name, ast_ctx(old).file, ast_ctx(old).line);
3963         ast_delete(typevar);
3964         return false;
3965     }
3966
3967     if ( (oldtype = parser_find_typedef(parser, typevar->name, vec_last(parser->_blocktypedefs))) ) {
3968         parseerror(parser, "type `%s` has already been declared here: %s:%i",
3969                    typevar->name, ast_ctx(oldtype).file, ast_ctx(oldtype).line);
3970         ast_delete(typevar);
3971         return false;
3972     }
3973
3974     vec_push(parser->_typedefs, typevar);
3975     util_htset(vec_last(parser->typedefs), typevar->name, typevar);
3976
3977     if (parser->tok != ';') {
3978         parseerror(parser, "expected semicolon after typedef");
3979         return false;
3980     }
3981     if (!parser_next(parser)) {
3982         parseerror(parser, "parse error after typedef");
3983         return false;
3984     }
3985
3986     return true;
3987 }
3988
3989 static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofields, int qualifier, ast_value *cached_typedef, bool noref, bool noreturn)
3990 {
3991     ast_value *var;
3992     ast_value *proto;
3993     ast_expression *old;
3994     bool       was_end;
3995     size_t     i;
3996
3997     ast_value *basetype = NULL;
3998     bool      retval    = true;
3999     bool      isparam   = false;
4000     bool      isvector  = false;
4001     bool      cleanvar  = true;
4002     bool      wasarray  = false;
4003
4004     ast_member *me[3];
4005
4006     /* get the first complete variable */
4007     var = parse_typename(parser, &basetype, cached_typedef);
4008     if (!var) {
4009         if (basetype)
4010             ast_delete(basetype);
4011         return false;
4012     }
4013
4014     while (true) {
4015         proto = NULL;
4016         wasarray = false;
4017
4018         /* Part 0: finish the type */
4019         if (parser->tok == '(') {
4020             if (opts.standard == COMPILER_QCC)
4021                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
4022             var = parse_parameter_list(parser, var);
4023             if (!var) {
4024                 retval = false;
4025                 goto cleanup;
4026             }
4027         }
4028         /* we only allow 1-dimensional arrays */
4029         if (parser->tok == '[') {
4030             wasarray = true;
4031             var = parse_arraysize(parser, var);
4032             if (!var) {
4033                 retval = false;
4034                 goto cleanup;
4035             }
4036         }
4037         if (parser->tok == '(' && wasarray) {
4038             parseerror(parser, "arrays as part of a return type is not supported");
4039             /* we'll still parse the type completely for now */
4040         }
4041         /* for functions returning functions */
4042         while (parser->tok == '(') {
4043             if (opts.standard == COMPILER_QCC)
4044                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
4045             var = parse_parameter_list(parser, var);
4046             if (!var) {
4047                 retval = false;
4048                 goto cleanup;
4049             }
4050         }
4051
4052         var->cvq = qualifier;
4053         /* in a noref section we simply bump the usecount */
4054         if (noref || parser->noref)
4055             var->uses++;
4056         if (noreturn)
4057             var->expression.flags |= AST_FLAG_NORETURN;
4058
4059         /* Part 1:
4060          * check for validity: (end_sys_..., multiple-definitions, prototypes, ...)
4061          * Also: if there was a prototype, `var` will be deleted and set to `proto` which
4062          * is then filled with the previous definition and the parameter-names replaced.
4063          */
4064         if (!localblock) {
4065             /* Deal with end_sys_ vars */
4066             was_end = false;
4067             if (!strcmp(var->name, "end_sys_globals")) {
4068                 var->uses++;
4069                 parser->crc_globals = vec_size(parser->globals);
4070                 was_end = true;
4071             }
4072             else if (!strcmp(var->name, "end_sys_fields")) {
4073                 var->uses++;
4074                 parser->crc_fields = vec_size(parser->fields);
4075                 was_end = true;
4076             }
4077             if (was_end && var->expression.vtype == TYPE_FIELD) {
4078                 if (parsewarning(parser, WARN_END_SYS_FIELDS,
4079                                  "global '%s' hint should not be a field",
4080                                  parser_tokval(parser)))
4081                 {
4082                     retval = false;
4083                     goto cleanup;
4084                 }
4085             }
4086
4087             if (!nofields && var->expression.vtype == TYPE_FIELD)
4088             {
4089                 /* deal with field declarations */
4090                 old = parser_find_field(parser, var->name);
4091                 if (old) {
4092                     if (parsewarning(parser, WARN_FIELD_REDECLARED, "field `%s` already declared here: %s:%i",
4093                                      var->name, ast_ctx(old).file, (int)ast_ctx(old).line))
4094                     {
4095                         retval = false;
4096                         goto cleanup;
4097                     }
4098                     ast_delete(var);
4099                     var = NULL;
4100                     goto skipvar;
4101                     /*
4102                     parseerror(parser, "field `%s` already declared here: %s:%i",
4103                                var->name, ast_ctx(old).file, ast_ctx(old).line);
4104                     retval = false;
4105                     goto cleanup;
4106                     */
4107                 }
4108                 if (opts.standard == COMPILER_QCC &&
4109                     (old = parser_find_global(parser, var->name)))
4110                 {
4111                     parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
4112                     parseerror(parser, "field `%s` already declared here: %s:%i",
4113                                var->name, ast_ctx(old).file, ast_ctx(old).line);
4114                     retval = false;
4115                     goto cleanup;
4116                 }
4117             }
4118             else
4119             {
4120                 /* deal with other globals */
4121                 old = parser_find_global(parser, var->name);
4122                 if (old && var->expression.vtype == TYPE_FUNCTION && old->expression.vtype == TYPE_FUNCTION)
4123                 {
4124                     /* This is a function which had a prototype */
4125                     if (!ast_istype(old, ast_value)) {
4126                         parseerror(parser, "internal error: prototype is not an ast_value");
4127                         retval = false;
4128                         goto cleanup;
4129                     }
4130                     proto = (ast_value*)old;
4131                     if (!ast_compare_type((ast_expression*)proto, (ast_expression*)var)) {
4132                         parseerror(parser, "conflicting types for `%s`, previous declaration was here: %s:%i",
4133                                    proto->name,
4134                                    ast_ctx(proto).file, ast_ctx(proto).line);
4135                         retval = false;
4136                         goto cleanup;
4137                     }
4138                     /* we need the new parameter-names */
4139                     for (i = 0; i < vec_size(proto->expression.params); ++i)
4140                         ast_value_set_name(proto->expression.params[i], var->expression.params[i]->name);
4141                     ast_delete(var);
4142                     var = proto;
4143                 }
4144                 else
4145                 {
4146                     /* other globals */
4147                     if (old) {
4148                         if (opts.standard == COMPILER_GMQCC) {
4149                             parseerror(parser, "global `%s` already declared here: %s:%i",
4150                                        var->name, ast_ctx(old).file, ast_ctx(old).line);
4151                             retval = false;
4152                             goto cleanup;
4153                         } else {
4154                             if (parsewarning(parser, WARN_DOUBLE_DECLARATION,
4155                                              "global `%s` already declared here: %s:%i",
4156                                              var->name, ast_ctx(old).file, ast_ctx(old).line))
4157                             {
4158                                 retval = false;
4159                                 goto cleanup;
4160                             }
4161                             proto = (ast_value*)old;
4162                             if (!ast_istype(old, ast_value)) {
4163                                 parseerror(parser, "internal error: not an ast_value");
4164                                 retval = false;
4165                                 proto = NULL;
4166                                 goto cleanup;
4167                             }
4168                             ast_delete(var);
4169                             var = proto;
4170                         }
4171                     }
4172                     if (opts.standard == COMPILER_QCC &&
4173                         (old = parser_find_field(parser, var->name)))
4174                     {
4175                         parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
4176                         parseerror(parser, "global `%s` already declared here: %s:%i",
4177                                    var->name, ast_ctx(old).file, ast_ctx(old).line);
4178                         retval = false;
4179                         goto cleanup;
4180                     }
4181                 }
4182             }
4183         }
4184         else /* it's not a global */
4185         {
4186             old = parser_find_local(parser, var->name, vec_size(parser->variables)-1, &isparam);
4187             if (old && !isparam) {
4188                 parseerror(parser, "local `%s` already declared here: %s:%i",
4189                            var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
4190                 retval = false;
4191                 goto cleanup;
4192             }
4193             old = parser_find_local(parser, var->name, 0, &isparam);
4194             if (old && isparam) {
4195                 if (parsewarning(parser, WARN_LOCAL_SHADOWS,
4196                                  "local `%s` is shadowing a parameter", var->name))
4197                 {
4198                     parseerror(parser, "local `%s` already declared here: %s:%i",
4199                                var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
4200                     retval = false;
4201                     goto cleanup;
4202                 }
4203                 if (opts.standard != COMPILER_GMQCC) {
4204                     ast_delete(var);
4205                     var = NULL;
4206                     goto skipvar;
4207                 }
4208             }
4209         }
4210
4211         /* Part 2:
4212          * Create the global/local, and deal with vector types.
4213          */
4214         if (!proto) {
4215             if (var->expression.vtype == TYPE_VECTOR)
4216                 isvector = true;
4217             else if (var->expression.vtype == TYPE_FIELD &&
4218                      var->expression.next->expression.vtype == TYPE_VECTOR)
4219                 isvector = true;
4220
4221             if (isvector) {
4222                 if (!create_vector_members(var, me)) {
4223                     retval = false;
4224                     goto cleanup;
4225                 }
4226             }
4227
4228             if (!localblock) {
4229                 /* deal with global variables, fields, functions */
4230                 if (!nofields && var->expression.vtype == TYPE_FIELD && parser->tok != '=') {
4231                     var->isfield = true;
4232                     vec_push(parser->fields, (ast_expression*)var);
4233                     util_htset(parser->htfields, var->name, var);
4234                     if (isvector) {
4235                         for (i = 0; i < 3; ++i) {
4236                             vec_push(parser->fields, (ast_expression*)me[i]);
4237                             util_htset(parser->htfields, me[i]->name, me[i]);
4238                         }
4239                     }
4240                 }
4241                 else {
4242                     vec_push(parser->globals, (ast_expression*)var);
4243                     util_htset(parser->htglobals, var->name, var);
4244                     if (isvector) {
4245                         for (i = 0; i < 3; ++i) {
4246                             vec_push(parser->globals, (ast_expression*)me[i]);
4247                             util_htset(parser->htglobals, me[i]->name, me[i]);
4248                         }
4249                     }
4250                 }
4251             } else {
4252                 vec_push(localblock->locals, var);
4253                 parser_addlocal(parser, var->name, (ast_expression*)var);
4254                 if (isvector) {
4255                     for (i = 0; i < 3; ++i) {
4256                         parser_addlocal(parser, me[i]->name, (ast_expression*)me[i]);
4257                         ast_block_collect(localblock, (ast_expression*)me[i]);
4258                     }
4259                 }
4260             }
4261
4262         }
4263         me[0] = me[1] = me[2] = NULL;
4264         cleanvar = false;
4265         /* Part 2.2
4266          * deal with arrays
4267          */
4268         if (var->expression.vtype == TYPE_ARRAY) {
4269             char name[1024];
4270             snprintf(name, sizeof(name), "%s##SET", var->name);
4271             if (!parser_create_array_setter(parser, var, name))
4272                 goto cleanup;
4273             snprintf(name, sizeof(name), "%s##GET", var->name);
4274             if (!parser_create_array_getter(parser, var, var->expression.next, name))
4275                 goto cleanup;
4276         }
4277         else if (!localblock && !nofields &&
4278                  var->expression.vtype == TYPE_FIELD &&
4279                  var->expression.next->expression.vtype == TYPE_ARRAY)
4280         {
4281             char name[1024];
4282             ast_expression *telem;
4283             ast_value      *tfield;
4284             ast_value      *array = (ast_value*)var->expression.next;
4285
4286             if (!ast_istype(var->expression.next, ast_value)) {
4287                 parseerror(parser, "internal error: field element type must be an ast_value");
4288                 goto cleanup;
4289             }
4290
4291             snprintf(name, sizeof(name), "%s##SETF", var->name);
4292             if (!parser_create_array_field_setter(parser, array, name))
4293                 goto cleanup;
4294
4295             telem = ast_type_copy(ast_ctx(var), array->expression.next);
4296             tfield = ast_value_new(ast_ctx(var), "<.type>", TYPE_FIELD);
4297             tfield->expression.next = telem;
4298             snprintf(name, sizeof(name), "%s##GETFP", var->name);
4299             if (!parser_create_array_getter(parser, array, (ast_expression*)tfield, name)) {
4300                 ast_delete(tfield);
4301                 goto cleanup;
4302             }
4303             ast_delete(tfield);
4304         }
4305
4306 skipvar:
4307         if (parser->tok == ';') {
4308             ast_delete(basetype);
4309             if (!parser_next(parser)) {
4310                 parseerror(parser, "error after variable declaration");
4311                 return false;
4312             }
4313             return true;
4314         }
4315
4316         if (parser->tok == ',')
4317             goto another;
4318
4319         /*
4320         if (!var || (!localblock && !nofields && basetype->expression.vtype == TYPE_FIELD)) {
4321         */
4322         if (!var) {
4323             parseerror(parser, "missing comma or semicolon while parsing variables");
4324             break;
4325         }
4326
4327         if (localblock && opts.standard == COMPILER_QCC) {
4328             if (parsewarning(parser, WARN_LOCAL_CONSTANTS,
4329                              "initializing expression turns variable `%s` into a constant in this standard",
4330                              var->name) )
4331             {
4332                 break;
4333             }
4334         }
4335
4336         if (parser->tok != '{') {
4337             if (parser->tok != '=') {
4338                 parseerror(parser, "missing semicolon or initializer, got: `%s`", parser_tokval(parser));
4339                 break;
4340             }
4341
4342             if (!parser_next(parser)) {
4343                 parseerror(parser, "error parsing initializer");
4344                 break;
4345             }
4346         }
4347         else if (opts.standard == COMPILER_QCC) {
4348             parseerror(parser, "expected '=' before function body in this standard");
4349         }
4350
4351         if (parser->tok == '#') {
4352             ast_function *func = NULL;
4353
4354             if (localblock) {
4355                 parseerror(parser, "cannot declare builtins within functions");
4356                 break;
4357             }
4358             if (var->expression.vtype != TYPE_FUNCTION) {
4359                 parseerror(parser, "unexpected builtin number, '%s' is not a function", var->name);
4360                 break;
4361             }
4362             if (!parser_next(parser)) {
4363                 parseerror(parser, "expected builtin number");
4364                 break;
4365             }
4366             if (parser->tok != TOKEN_INTCONST) {
4367                 parseerror(parser, "builtin number must be an integer constant");
4368                 break;
4369             }
4370             if (parser_token(parser)->constval.i < 0) {
4371                 parseerror(parser, "builtin number must be an integer greater than zero");
4372                 break;
4373             }
4374
4375             if (var->hasvalue) {
4376                 (void)!parsewarning(parser, WARN_DOUBLE_DECLARATION,
4377                                     "builtin `%s` has already been defined\n"
4378                                     " -> previous declaration here: %s:%i",
4379                                     var->name, ast_ctx(var).file, (int)ast_ctx(var).line);
4380             }
4381             else
4382             {
4383                 func = ast_function_new(ast_ctx(var), var->name, var);
4384                 if (!func) {
4385                     parseerror(parser, "failed to allocate function for `%s`", var->name);
4386                     break;
4387                 }
4388                 vec_push(parser->functions, func);
4389
4390                 func->builtin = -parser_token(parser)->constval.i-1;
4391             }
4392
4393             if (!parser_next(parser)) {
4394                 parseerror(parser, "expected comma or semicolon");
4395                 if (func)
4396                     ast_function_delete(func);
4397                 var->constval.vfunc = NULL;
4398                 break;
4399             }
4400         }
4401         else if (parser->tok == '{' || parser->tok == '[')
4402         {
4403             if (localblock) {
4404                 parseerror(parser, "cannot declare functions within functions");
4405                 break;
4406             }
4407
4408             if (proto)
4409                 ast_ctx(proto) = parser_ctx(parser);
4410
4411             if (!parse_function_body(parser, var))
4412                 break;
4413             ast_delete(basetype);
4414             for (i = 0; i < vec_size(parser->gotos); ++i)
4415                 parseerror(parser, "undefined label: `%s`", parser->gotos[i]->name);
4416             vec_free(parser->gotos);
4417             vec_free(parser->labels);
4418             return true;
4419         } else {
4420             ast_expression *cexp;
4421             ast_value      *cval;
4422
4423             cexp = parse_expression_leave(parser, true);
4424             if (!cexp)
4425                 break;
4426
4427             if (!localblock) {
4428                 cval = (ast_value*)cexp;
4429                 if (!ast_istype(cval, ast_value) || ((!cval->hasvalue || cval->cvq != CV_CONST) && !cval->isfield))
4430                     parseerror(parser, "cannot initialize a global constant variable with a non-constant expression");
4431                 else
4432                 {
4433                     if (opts.standard != COMPILER_GMQCC &&
4434                         !OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
4435                         qualifier != CV_VAR)
4436                     {
4437                         var->cvq = CV_CONST;
4438                     }
4439                     var->hasvalue = true;
4440                     if (cval->expression.vtype == TYPE_STRING)
4441                         var->constval.vstring = parser_strdup(cval->constval.vstring);
4442                     else if (cval->expression.vtype == TYPE_FIELD)
4443                         var->constval.vfield = cval;
4444                     else
4445                         memcpy(&var->constval, &cval->constval, sizeof(var->constval));
4446                     ast_unref(cval);
4447                 }
4448             } else {
4449                 bool cvq;
4450                 shunt sy = { NULL, NULL };
4451                 cvq = var->cvq;
4452                 var->cvq = CV_NONE;
4453                 vec_push(sy.out, syexp(ast_ctx(var), (ast_expression*)var));
4454                 vec_push(sy.out, syexp(ast_ctx(cexp), (ast_expression*)cexp));
4455                 vec_push(sy.ops, syop(ast_ctx(var), parser->assign_op));
4456                 if (!parser_sy_apply_operator(parser, &sy))
4457                     ast_unref(cexp);
4458                 else {
4459                     if (vec_size(sy.out) != 1 && vec_size(sy.ops) != 0)
4460                         parseerror(parser, "internal error: leaked operands");
4461                     if (!ast_block_add_expr(localblock, (ast_expression*)sy.out[0].out))
4462                         break;
4463                 }
4464                 vec_free(sy.out);
4465                 vec_free(sy.ops);
4466                 var->cvq = cvq;
4467             }
4468         }
4469
4470 another:
4471         if (parser->tok == ',') {
4472             if (!parser_next(parser)) {
4473                 parseerror(parser, "expected another variable");
4474                 break;
4475             }
4476
4477             if (parser->tok != TOKEN_IDENT) {
4478                 parseerror(parser, "expected another variable");
4479                 break;
4480             }
4481             var = ast_value_copy(basetype);
4482             cleanvar = true;
4483             ast_value_set_name(var, parser_tokval(parser));
4484             if (!parser_next(parser)) {
4485                 parseerror(parser, "error parsing variable declaration");
4486                 break;
4487             }
4488             continue;
4489         }
4490
4491         if (parser->tok != ';') {
4492             parseerror(parser, "missing semicolon after variables");
4493             break;
4494         }
4495
4496         if (!parser_next(parser)) {
4497             parseerror(parser, "parse error after variable declaration");
4498             break;
4499         }
4500
4501         ast_delete(basetype);
4502         return true;
4503     }
4504
4505     if (cleanvar && var)
4506         ast_delete(var);
4507     ast_delete(basetype);
4508     return false;
4509
4510 cleanup:
4511     ast_delete(basetype);
4512     if (cleanvar && var)
4513         ast_delete(var);
4514     if (me[0]) ast_member_delete(me[0]);
4515     if (me[1]) ast_member_delete(me[1]);
4516     if (me[2]) ast_member_delete(me[2]);
4517     return retval;
4518 }
4519
4520 static bool parser_global_statement(parser_t *parser)
4521 {
4522     int        cvq      = CV_WRONG;
4523     bool       noref    = false;
4524     bool       noreturn = false;
4525     ast_value *istype   = NULL;
4526
4527     if (parser->tok == TOKEN_IDENT)
4528         istype = parser_find_typedef(parser, parser_tokval(parser), 0);
4529
4530     if (istype || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
4531     {
4532         return parse_variable(parser, NULL, false, CV_NONE, istype, false, false);
4533     }
4534     else if (parse_var_qualifiers(parser, false, &cvq, &noref, &noreturn))
4535     {
4536         if (cvq == CV_WRONG)
4537             return false;
4538         return parse_variable(parser, NULL, true, cvq, NULL, noref, noreturn);
4539     }
4540     else if (parser->tok == TOKEN_KEYWORD)
4541     {
4542         if (!strcmp(parser_tokval(parser), "typedef")) {
4543             if (!parser_next(parser)) {
4544                 parseerror(parser, "expected type definition after 'typedef'");
4545                 return false;
4546             }
4547             return parse_typedef(parser);
4548         }
4549         parseerror(parser, "unrecognized keyword `%s`", parser_tokval(parser));
4550         return false;
4551     }
4552     else if (parser->tok == '#')
4553     {
4554         return parse_pragma(parser);
4555     }
4556     else if (parser->tok == '$')
4557     {
4558         if (!parser_next(parser)) {
4559             parseerror(parser, "parse error");
4560             return false;
4561         }
4562     }
4563     else
4564     {
4565         parseerror(parser, "unexpected token: %s", parser->lex->tok.value);
4566         return false;
4567     }
4568     return true;
4569 }
4570
4571 static uint16_t progdefs_crc_sum(uint16_t old, const char *str)
4572 {
4573     return util_crc16(old, str, strlen(str));
4574 }
4575
4576 static void progdefs_crc_file(const char *str)
4577 {
4578     /* write to progdefs.h here */
4579     (void)str;
4580 }
4581
4582 static uint16_t progdefs_crc_both(uint16_t old, const char *str)
4583 {
4584     old = progdefs_crc_sum(old, str);
4585     progdefs_crc_file(str);
4586     return old;
4587 }
4588
4589 static void generate_checksum(parser_t *parser)
4590 {
4591     uint16_t   crc = 0xFFFF;
4592     size_t     i;
4593     ast_value *value;
4594
4595         crc = progdefs_crc_both(crc, "\n/* file generated by qcc, do not modify */\n\ntypedef struct\n{");
4596         crc = progdefs_crc_sum(crc, "\tint\tpad[28];\n");
4597         /*
4598         progdefs_crc_file("\tint\tpad;\n");
4599         progdefs_crc_file("\tint\tofs_return[3];\n");
4600         progdefs_crc_file("\tint\tofs_parm0[3];\n");
4601         progdefs_crc_file("\tint\tofs_parm1[3];\n");
4602         progdefs_crc_file("\tint\tofs_parm2[3];\n");
4603         progdefs_crc_file("\tint\tofs_parm3[3];\n");
4604         progdefs_crc_file("\tint\tofs_parm4[3];\n");
4605         progdefs_crc_file("\tint\tofs_parm5[3];\n");
4606         progdefs_crc_file("\tint\tofs_parm6[3];\n");
4607         progdefs_crc_file("\tint\tofs_parm7[3];\n");
4608         */
4609         for (i = 0; i < parser->crc_globals; ++i) {
4610             if (!ast_istype(parser->globals[i], ast_value))
4611                 continue;
4612             value = (ast_value*)(parser->globals[i]);
4613             switch (value->expression.vtype) {
4614                 case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
4615                 case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
4616                 case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
4617                 case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
4618                 default:
4619                     crc = progdefs_crc_both(crc, "\tint\t");
4620                     break;
4621             }
4622             crc = progdefs_crc_both(crc, value->name);
4623             crc = progdefs_crc_both(crc, ";\n");
4624         }
4625         crc = progdefs_crc_both(crc, "} globalvars_t;\n\ntypedef struct\n{\n");
4626         for (i = 0; i < parser->crc_fields; ++i) {
4627             if (!ast_istype(parser->fields[i], ast_value))
4628                 continue;
4629             value = (ast_value*)(parser->fields[i]);
4630             switch (value->expression.next->expression.vtype) {
4631                 case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
4632                 case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
4633                 case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
4634                 case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
4635                 default:
4636                     crc = progdefs_crc_both(crc, "\tint\t");
4637                     break;
4638             }
4639             crc = progdefs_crc_both(crc, value->name);
4640             crc = progdefs_crc_both(crc, ";\n");
4641         }
4642         crc = progdefs_crc_both(crc, "} entvars_t;\n\n");
4643
4644         code_crc = crc;
4645 }
4646
4647 static parser_t *parser;
4648
4649 bool parser_init()
4650 {
4651     size_t i;
4652
4653     parser = (parser_t*)mem_a(sizeof(parser_t));
4654     if (!parser)
4655         return false;
4656
4657     memset(parser, 0, sizeof(*parser));
4658
4659     for (i = 0; i < operator_count; ++i) {
4660         if (operators[i].id == opid1('=')) {
4661             parser->assign_op = operators+i;
4662             break;
4663         }
4664     }
4665     if (!parser->assign_op) {
4666         printf("internal error: initializing parser: failed to find assign operator\n");
4667         mem_d(parser);
4668         return false;
4669     }
4670
4671     vec_push(parser->variables, parser->htfields  = util_htnew(PARSER_HT_SIZE));
4672     vec_push(parser->variables, parser->htglobals = util_htnew(PARSER_HT_SIZE));
4673     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
4674     vec_push(parser->_blocktypedefs, 0);
4675     return true;
4676 }
4677
4678 bool parser_compile()
4679 {
4680     /* initial lexer/parser state */
4681     parser->lex->flags.noops = true;
4682
4683     if (parser_next(parser))
4684     {
4685         while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
4686         {
4687             if (!parser_global_statement(parser)) {
4688                 if (parser->tok == TOKEN_EOF)
4689                     parseerror(parser, "unexpected eof");
4690                 else if (!parser->errors)
4691                     parseerror(parser, "there have been errors, bailing out");
4692                 lex_close(parser->lex);
4693                 parser->lex = NULL;
4694                 return false;
4695             }
4696         }
4697     } else {
4698         parseerror(parser, "parse error");
4699         lex_close(parser->lex);
4700         parser->lex = NULL;
4701         return false;
4702     }
4703
4704     lex_close(parser->lex);
4705     parser->lex = NULL;
4706
4707     return !parser->errors;
4708 }
4709
4710 bool parser_compile_file(const char *filename)
4711 {
4712     parser->lex = lex_open(filename);
4713     if (!parser->lex) {
4714         con_err("failed to open file \"%s\"\n", filename);
4715         return false;
4716     }
4717     return parser_compile();
4718 }
4719
4720 bool parser_compile_string_len(const char *name, const char *str, size_t len)
4721 {
4722     parser->lex = lex_open_string(str, len, name);
4723     if (!parser->lex) {
4724         con_err("failed to create lexer for string \"%s\"\n", name);
4725         return false;
4726     }
4727     return parser_compile();
4728 }
4729
4730 bool parser_compile_string(const char *name, const char *str)
4731 {
4732     parser->lex = lex_open_string(str, strlen(str), name);
4733     if (!parser->lex) {
4734         con_err("failed to create lexer for string \"%s\"\n", name);
4735         return false;
4736     }
4737     return parser_compile();
4738 }
4739
4740 void parser_cleanup()
4741 {
4742     size_t i;
4743     for (i = 0; i < vec_size(parser->accessors); ++i) {
4744         ast_delete(parser->accessors[i]->constval.vfunc);
4745         parser->accessors[i]->constval.vfunc = NULL;
4746         ast_delete(parser->accessors[i]);
4747     }
4748     for (i = 0; i < vec_size(parser->functions); ++i) {
4749         ast_delete(parser->functions[i]);
4750     }
4751     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
4752         ast_delete(parser->imm_vector[i]);
4753     }
4754     for (i = 0; i < vec_size(parser->imm_string); ++i) {
4755         ast_delete(parser->imm_string[i]);
4756     }
4757     for (i = 0; i < vec_size(parser->imm_float); ++i) {
4758         ast_delete(parser->imm_float[i]);
4759     }
4760     for (i = 0; i < vec_size(parser->fields); ++i) {
4761         ast_delete(parser->fields[i]);
4762     }
4763     for (i = 0; i < vec_size(parser->globals); ++i) {
4764         ast_delete(parser->globals[i]);
4765     }
4766     vec_free(parser->accessors);
4767     vec_free(parser->functions);
4768     vec_free(parser->imm_vector);
4769     vec_free(parser->imm_string);
4770     vec_free(parser->imm_float);
4771     vec_free(parser->globals);
4772     vec_free(parser->fields);
4773
4774     for (i = 0; i < vec_size(parser->variables); ++i)
4775         util_htdel(parser->variables[i]);
4776     vec_free(parser->variables);
4777     vec_free(parser->_blocklocals);
4778     vec_free(parser->_locals);
4779
4780     for (i = 0; i < vec_size(parser->_typedefs); ++i)
4781         ast_delete(parser->_typedefs[i]);
4782     vec_free(parser->_typedefs);
4783     for (i = 0; i < vec_size(parser->typedefs); ++i)
4784         util_htdel(parser->typedefs[i]);
4785     vec_free(parser->typedefs);
4786     vec_free(parser->_blocktypedefs);
4787
4788     vec_free(parser->_block_ctx);
4789
4790     vec_free(parser->labels);
4791     vec_free(parser->gotos);
4792
4793     mem_d(parser);
4794 }
4795
4796 bool parser_finish(const char *output)
4797 {
4798     size_t i;
4799     ir_builder *ir;
4800     bool retval = true;
4801
4802     if (!parser->errors)
4803     {
4804         ir = ir_builder_new("gmqcc_out");
4805         if (!ir) {
4806             con_out("failed to allocate builder\n");
4807             return false;
4808         }
4809
4810         for (i = 0; i < vec_size(parser->fields); ++i) {
4811             ast_value *field;
4812             bool hasvalue;
4813             if (!ast_istype(parser->fields[i], ast_value))
4814                 continue;
4815             field = (ast_value*)parser->fields[i];
4816             hasvalue = field->hasvalue;
4817             field->hasvalue = false;
4818             if (!ast_global_codegen((ast_value*)field, ir, true)) {
4819                 con_out("failed to generate field %s\n", field->name);
4820                 ir_builder_delete(ir);
4821                 return false;
4822             }
4823             if (hasvalue) {
4824                 ir_value *ifld;
4825                 ast_expression *subtype;
4826                 field->hasvalue = true;
4827                 subtype = field->expression.next;
4828                 ifld = ir_builder_create_field(ir, field->name, subtype->expression.vtype);
4829                 if (subtype->expression.vtype == TYPE_FIELD)
4830                     ifld->fieldtype = subtype->expression.next->expression.vtype;
4831                 else if (subtype->expression.vtype == TYPE_FUNCTION)
4832                     ifld->outtype = subtype->expression.next->expression.vtype;
4833                 (void)!ir_value_set_field(field->ir_v, ifld);
4834             }
4835         }
4836         for (i = 0; i < vec_size(parser->globals); ++i) {
4837             ast_value *asvalue;
4838             if (!ast_istype(parser->globals[i], ast_value))
4839                 continue;
4840             asvalue = (ast_value*)(parser->globals[i]);
4841             if (!asvalue->uses && !asvalue->hasvalue && asvalue->expression.vtype != TYPE_FUNCTION) {
4842                 retval = retval && !genwarning(ast_ctx(asvalue), WARN_UNUSED_VARIABLE,
4843                                                "unused global: `%s`", asvalue->name);
4844             }
4845             if (!ast_global_codegen(asvalue, ir, false)) {
4846                 con_out("failed to generate global %s\n", asvalue->name);
4847                 ir_builder_delete(ir);
4848                 return false;
4849             }
4850         }
4851         for (i = 0; i < vec_size(parser->imm_float); ++i) {
4852             if (!ast_global_codegen(parser->imm_float[i], ir, false)) {
4853                 con_out("failed to generate global %s\n", parser->imm_float[i]->name);
4854                 ir_builder_delete(ir);
4855                 return false;
4856             }
4857         }
4858         for (i = 0; i < vec_size(parser->imm_string); ++i) {
4859             if (!ast_global_codegen(parser->imm_string[i], ir, false)) {
4860                 con_out("failed to generate global %s\n", parser->imm_string[i]->name);
4861                 ir_builder_delete(ir);
4862                 return false;
4863             }
4864         }
4865         for (i = 0; i < vec_size(parser->imm_vector); ++i) {
4866             if (!ast_global_codegen(parser->imm_vector[i], ir, false)) {
4867                 con_out("failed to generate global %s\n", parser->imm_vector[i]->name);
4868                 ir_builder_delete(ir);
4869                 return false;
4870             }
4871         }
4872         for (i = 0; i < vec_size(parser->globals); ++i) {
4873             ast_value *asvalue;
4874             if (!ast_istype(parser->globals[i], ast_value))
4875                 continue;
4876             asvalue = (ast_value*)(parser->globals[i]);
4877             if (!ast_generate_accessors(asvalue, ir)) {
4878                 ir_builder_delete(ir);
4879                 return false;
4880             }
4881         }
4882         for (i = 0; i < vec_size(parser->fields); ++i) {
4883             ast_value *asvalue;
4884             asvalue = (ast_value*)(parser->fields[i]->expression.next);
4885
4886             if (!ast_istype((ast_expression*)asvalue, ast_value))
4887                 continue;
4888             if (asvalue->expression.vtype != TYPE_ARRAY)
4889                 continue;
4890             if (!ast_generate_accessors(asvalue, ir)) {
4891                 ir_builder_delete(ir);
4892                 return false;
4893             }
4894         }
4895         for (i = 0; i < vec_size(parser->functions); ++i) {
4896             if (!ast_function_codegen(parser->functions[i], ir)) {
4897                 con_out("failed to generate function %s\n", parser->functions[i]->name);
4898                 ir_builder_delete(ir);
4899                 return false;
4900             }
4901         }
4902         if (opts.dump)
4903             ir_builder_dump(ir, con_out);
4904         for (i = 0; i < vec_size(parser->functions); ++i) {
4905             if (!ir_function_finalize(parser->functions[i]->ir_func)) {
4906                 con_out("failed to finalize function %s\n", parser->functions[i]->name);
4907                 ir_builder_delete(ir);
4908                 return false;
4909             }
4910         }
4911
4912         if (retval) {
4913             if (opts.dumpfin)
4914                 ir_builder_dump(ir, con_out);
4915
4916             generate_checksum(parser);
4917
4918             if (!ir_builder_generate(ir, output)) {
4919                 con_out("*** failed to generate output file\n");
4920                 ir_builder_delete(ir);
4921                 return false;
4922             }
4923         }
4924
4925         ir_builder_delete(ir);
4926         return retval;
4927     }
4928
4929     con_out("*** there were compile errors\n");
4930     return false;
4931 }