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