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