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