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