]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - parser.cpp
Cleaner way to set the mask for -Wunused-component
[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             // promote these to norefs
1672             if (ast_istype(var, ast_value))
1673             {
1674                 ((ast_value *)var)->m_flags |= AST_FLAG_NOREF;
1675             }
1676             else if (ast_istype(var, ast_member))
1677             {
1678                 ast_member *mem = (ast_member *)var;
1679                 if (ast_istype(mem->m_owner, ast_value))
1680                     ((ast_value *)mem->m_owner)->m_flags |= AST_FLAG_NOREF;
1681             }
1682         }
1683         sy->out.push_back(syexp(parser_ctx(parser), var));
1684         return true;
1685     }
1686     parseerror(parser, "unexpected token `%s`", parser_tokval(parser));
1687     return false;
1688 }
1689
1690 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma, bool truthvalue, bool with_labels)
1691 {
1692     ast_expression *expr = nullptr;
1693     shunt sy;
1694     bool wantop = false;
1695     /* only warn once about an assignment in a truth value because the current code
1696      * would trigger twice on: if(a = b && ...), once for the if-truth-value, once for the && part
1697      */
1698     bool warn_parenthesis = true;
1699
1700     /* count the parens because an if starts with one, so the
1701      * end of a condition is an unmatched closing paren
1702      */
1703     int ternaries = 0;
1704
1705     memset(&sy, 0, sizeof(sy));
1706
1707     parser->lex->flags.noops = false;
1708
1709     parser_reclassify_token(parser);
1710
1711     while (true)
1712     {
1713         if (parser->tok == TOKEN_TYPENAME) {
1714             parseerror(parser, "unexpected typename `%s`", parser_tokval(parser));
1715             goto onerr;
1716         }
1717
1718         if (parser->tok == TOKEN_OPERATOR)
1719         {
1720             /* classify the operator */
1721             const oper_info *op;
1722             const oper_info *olast = nullptr;
1723             size_t o;
1724             for (o = 0; o < operator_count; ++o) {
1725                 if (((!(operators[o].flags & OP_PREFIX) == !!wantop)) &&
1726                     /* !(operators[o].flags & OP_SUFFIX) && / * remove this */
1727                     !strcmp(parser_tokval(parser), operators[o].op))
1728                 {
1729                     break;
1730                 }
1731             }
1732             if (o == operator_count) {
1733                 compile_error(parser_ctx(parser), "unexpected operator: %s", parser_tokval(parser));
1734                 goto onerr;
1735             }
1736             /* found an operator */
1737             op = &operators[o];
1738
1739             /* when declaring variables, a comma starts a new variable */
1740             if (op->id == opid1(',') && sy.paren.empty() && stopatcomma) {
1741                 /* fixup the token */
1742                 parser->tok = ',';
1743                 break;
1744             }
1745
1746             /* a colon without a pervious question mark cannot be a ternary */
1747             if (!ternaries && op->id == opid2(':','?')) {
1748                 parser->tok = ':';
1749                 break;
1750             }
1751
1752             if (op->id == opid1(',')) {
1753                 if (sy.paren.size() && sy.paren.back() == PAREN_TERNARY2) {
1754                     (void)!parsewarning(parser, WARN_TERNARY_PRECEDENCE, "suggesting parenthesis around ternary expression");
1755                 }
1756             }
1757
1758             if (sy.ops.size() && !sy.ops.back().isparen)
1759                 olast = &operators[sy.ops.back().etype-1];
1760
1761             /* first only apply higher precedences, assoc_left+equal comes after we warn about precedence rules */
1762             while (olast && op->prec < olast->prec)
1763             {
1764                 if (!parser_sy_apply_operator(parser, &sy))
1765                     goto onerr;
1766                 if (sy.ops.size() && !sy.ops.back().isparen)
1767                     olast = &operators[sy.ops.back().etype-1];
1768                 else
1769                     olast = nullptr;
1770             }
1771
1772 #define IsAssignOp(x) (\
1773                 (x) == opid1('=') || \
1774                 (x) == opid2('+','=') || \
1775                 (x) == opid2('-','=') || \
1776                 (x) == opid2('*','=') || \
1777                 (x) == opid2('/','=') || \
1778                 (x) == opid2('%','=') || \
1779                 (x) == opid2('&','=') || \
1780                 (x) == opid2('|','=') || \
1781                 (x) == opid3('&','~','=') \
1782                 )
1783             if (warn_parenthesis) {
1784                 if ( (olast && IsAssignOp(olast->id) && (op->id == opid2('&','&') || op->id == opid2('|','|'))) ||
1785                      (olast && IsAssignOp(op->id) && (olast->id == opid2('&','&') || olast->id == opid2('|','|'))) ||
1786                      (truthvalue && sy.paren.empty() && IsAssignOp(op->id))
1787                    )
1788                 {
1789                     (void)!parsewarning(parser, WARN_PARENTHESIS, "suggesting parenthesis around assignment used as truth value");
1790                     warn_parenthesis = false;
1791                 }
1792
1793                 if (olast && olast->id != op->id) {
1794                     if ((op->id    == opid1('&') || op->id    == opid1('|') || op->id    == opid1('^')) &&
1795                         (olast->id == opid1('&') || olast->id == opid1('|') || olast->id == opid1('^')))
1796                     {
1797                         (void)!parsewarning(parser, WARN_PARENTHESIS, "suggesting parenthesis around bitwise operations");
1798                         warn_parenthesis = false;
1799                     }
1800                     else if ((op->id    == opid2('&','&') || op->id    == opid2('|','|')) &&
1801                              (olast->id == opid2('&','&') || olast->id == opid2('|','|')))
1802                     {
1803                         (void)!parsewarning(parser, WARN_PARENTHESIS, "suggesting parenthesis around logical operations");
1804                         warn_parenthesis = false;
1805                     }
1806                 }
1807             }
1808
1809             while (olast && (
1810                     (op->prec < olast->prec) ||
1811                     (op->assoc == ASSOC_LEFT && op->prec <= olast->prec) ) )
1812             {
1813                 if (!parser_sy_apply_operator(parser, &sy))
1814                     goto onerr;
1815                 if (sy.ops.size() && !sy.ops.back().isparen)
1816                     olast = &operators[sy.ops.back().etype-1];
1817                 else
1818                     olast = nullptr;
1819             }
1820
1821             if (op->id == opid1('(')) {
1822                 if (wantop) {
1823                     size_t sycount = sy.out.size();
1824                     /* we expected an operator, this is the function-call operator */
1825                     sy.paren.push_back(PAREN_FUNC);
1826                     sy.ops.push_back(syparen(parser_ctx(parser), sycount-1));
1827                     sy.argc.push_back(0);
1828                 } else {
1829                     sy.paren.push_back(PAREN_EXPR);
1830                     sy.ops.push_back(syparen(parser_ctx(parser), 0));
1831                 }
1832                 wantop = false;
1833             } else if (op->id == opid1('[')) {
1834                 if (!wantop) {
1835                     parseerror(parser, "unexpected array subscript");
1836                     goto onerr;
1837                 }
1838                 sy.paren.push_back(PAREN_INDEX);
1839                 /* push both the operator and the paren, this makes life easier */
1840                 sy.ops.push_back(syop(parser_ctx(parser), op));
1841                 sy.ops.push_back(syparen(parser_ctx(parser), 0));
1842                 wantop = false;
1843             } else if (op->id == opid2('?',':')) {
1844                 sy.ops.push_back(syop(parser_ctx(parser), op));
1845                 sy.ops.push_back(syparen(parser_ctx(parser), 0));
1846                 wantop = false;
1847                 ++ternaries;
1848                 sy.paren.push_back(PAREN_TERNARY1);
1849             } else if (op->id == opid2(':','?')) {
1850                 if (sy.paren.empty()) {
1851                     parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
1852                     goto onerr;
1853                 }
1854                 if (sy.paren.back() != PAREN_TERNARY1) {
1855                     parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
1856                     goto onerr;
1857                 }
1858                 if (!parser_close_paren(parser, &sy))
1859                     goto onerr;
1860                 sy.ops.push_back(syop(parser_ctx(parser), op));
1861                 wantop = false;
1862                 --ternaries;
1863             } else {
1864                 sy.ops.push_back(syop(parser_ctx(parser), op));
1865                 wantop = !!(op->flags & OP_SUFFIX);
1866             }
1867         }
1868         else if (parser->tok == ')') {
1869             while (sy.paren.size() && sy.paren.back() == PAREN_TERNARY2) {
1870                 if (!parser_sy_apply_operator(parser, &sy))
1871                     goto onerr;
1872             }
1873             if (sy.paren.empty())
1874                 break;
1875             if (wantop) {
1876                 if (sy.paren.back() == PAREN_TERNARY1) {
1877                     parseerror(parser, "mismatched parentheses (closing paren in ternary expression?)");
1878                     goto onerr;
1879                 }
1880                 if (!parser_close_paren(parser, &sy))
1881                     goto onerr;
1882             } else {
1883                 /* must be a function call without parameters */
1884                 if (sy.paren.back() != PAREN_FUNC) {
1885                     parseerror(parser, "closing paren in invalid position");
1886                     goto onerr;
1887                 }
1888                 if (!parser_close_paren(parser, &sy))
1889                     goto onerr;
1890             }
1891             wantop = true;
1892         }
1893         else if (parser->tok == '(') {
1894             parseerror(parser, "internal error: '(' should be classified as operator");
1895             goto onerr;
1896         }
1897         else if (parser->tok == '[') {
1898             parseerror(parser, "internal error: '[' should be classified as operator");
1899             goto onerr;
1900         }
1901         else if (parser->tok == ']') {
1902             while (sy.paren.size() && sy.paren.back() == PAREN_TERNARY2) {
1903                 if (!parser_sy_apply_operator(parser, &sy))
1904                     goto onerr;
1905             }
1906             if (sy.paren.empty())
1907                 break;
1908             if (sy.paren.back() != PAREN_INDEX) {
1909                 parseerror(parser, "mismatched parentheses, unexpected ']'");
1910                 goto onerr;
1911             }
1912             if (!parser_close_paren(parser, &sy))
1913                 goto onerr;
1914             wantop = true;
1915         }
1916         else if (!wantop) {
1917             if (!parse_sya_operand(parser, &sy, with_labels))
1918                 goto onerr;
1919             wantop = true;
1920         }
1921         else {
1922             /* in this case we might want to allow constant string concatenation */
1923             bool concatenated = false;
1924             if (parser->tok == TOKEN_STRINGCONST && sy.out.size()) {
1925                 ast_expression *lexpr = sy.out.back().out;
1926                 if (ast_istype(lexpr, ast_value)) {
1927                     ast_value *last = (ast_value*)lexpr;
1928                     if (last->m_isimm == true && last->m_cvq == CV_CONST &&
1929                         last->m_hasvalue && last->m_vtype == TYPE_STRING)
1930                     {
1931                         char *newstr = nullptr;
1932                         util_asprintf(&newstr, "%s%s", last->m_constval.vstring, parser_tokval(parser));
1933                         sy.out.back().out = parser->m_fold.constgen_string(newstr, false);
1934                         mem_d(newstr);
1935                         concatenated = true;
1936                     }
1937                 }
1938             }
1939             if (!concatenated) {
1940                 parseerror(parser, "expected operator or end of statement");
1941                 goto onerr;
1942             }
1943         }
1944
1945         if (!parser_next(parser)) {
1946             goto onerr;
1947         }
1948         if (parser->tok == ';' ||
1949             ((sy.paren.empty() || (sy.paren.size() == 1 && sy.paren.back() == PAREN_TERNARY2)) &&
1950             (parser->tok == ']' || parser->tok == ')' || parser->tok == '}')))
1951         {
1952             break;
1953         }
1954     }
1955
1956     while (sy.ops.size()) {
1957         if (!parser_sy_apply_operator(parser, &sy))
1958             goto onerr;
1959     }
1960
1961     parser->lex->flags.noops = true;
1962     if (sy.out.size() != 1) {
1963         parseerror(parser, "expression expected");
1964         expr = nullptr;
1965     } else
1966         expr = sy.out[0].out;
1967     if (sy.paren.size()) {
1968         parseerror(parser, "internal error: sy.paren.size() = %zu", sy.paren.size());
1969         return nullptr;
1970     }
1971     return expr;
1972
1973 onerr:
1974     parser->lex->flags.noops = true;
1975     for (auto &it : sy.out)
1976         if (it.out) ast_unref(it.out);
1977     return nullptr;
1978 }
1979
1980 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma, bool with_labels)
1981 {
1982     ast_expression *e = parse_expression_leave(parser, stopatcomma, false, with_labels);
1983     if (!e)
1984         return nullptr;
1985     if (parser->tok != ';') {
1986         parseerror(parser, "semicolon expected after expression");
1987         ast_unref(e);
1988         return nullptr;
1989     }
1990     if (!parser_next(parser)) {
1991         ast_unref(e);
1992         return nullptr;
1993     }
1994     return e;
1995 }
1996
1997 static void parser_enterblock(parser_t *parser)
1998 {
1999     vec_push(parser->variables, util_htnew(PARSER_HT_SIZE));
2000     vec_push(parser->_blocklocals, vec_size(parser->_locals));
2001     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
2002     vec_push(parser->_blocktypedefs, vec_size(parser->_typedefs));
2003     vec_push(parser->_block_ctx, parser_ctx(parser));
2004 }
2005
2006 static bool parser_leaveblock(parser_t *parser)
2007 {
2008     bool   rv = true;
2009     size_t locals, typedefs;
2010
2011     if (vec_size(parser->variables) <= PARSER_HT_LOCALS) {
2012         parseerror(parser, "internal error: parser_leaveblock with no block");
2013         return false;
2014     }
2015
2016     util_htdel(vec_last(parser->variables));
2017
2018     vec_pop(parser->variables);
2019     if (!vec_size(parser->_blocklocals)) {
2020         parseerror(parser, "internal error: parser_leaveblock with no block (2)");
2021         return false;
2022     }
2023
2024     locals = vec_last(parser->_blocklocals);
2025     vec_pop(parser->_blocklocals);
2026     while (vec_size(parser->_locals) != locals)
2027         vec_pop(parser->_locals);
2028
2029     typedefs = vec_last(parser->_blocktypedefs);
2030     while (vec_size(parser->_typedefs) != typedefs) {
2031         delete vec_last(parser->_typedefs);
2032         vec_pop(parser->_typedefs);
2033     }
2034     util_htdel(vec_last(parser->typedefs));
2035     vec_pop(parser->typedefs);
2036
2037     vec_pop(parser->_block_ctx);
2038
2039     return rv;
2040 }
2041
2042 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e)
2043 {
2044     vec_push(parser->_locals, e);
2045     util_htset(vec_last(parser->variables), name, (void*)e);
2046 }
2047 static void parser_addlocal(parser_t *parser, const std::string &name, ast_expression *e) {
2048     return parser_addlocal(parser, name.c_str(), e);
2049 }
2050
2051 static void parser_addglobal(parser_t *parser, const char *name, ast_expression *e)
2052 {
2053     parser->globals.push_back(e);
2054     util_htset(parser->htglobals, name, e);
2055 }
2056 static void parser_addglobal(parser_t *parser, const std::string &name, ast_expression *e) {
2057     return parser_addglobal(parser, name.c_str(), e);
2058 }
2059
2060 static ast_expression* process_condition(parser_t *parser, ast_expression *cond, bool *_ifnot)
2061 {
2062     bool       ifnot = false;
2063     ast_unary *unary;
2064     ast_expression *prev;
2065
2066     if (cond->m_vtype == TYPE_VOID || cond->m_vtype >= TYPE_VARIANT) {
2067         char ty[1024];
2068         ast_type_to_string(cond, ty, sizeof(ty));
2069         compile_error(cond->m_context, "invalid type for if() condition: %s", ty);
2070     }
2071
2072     if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && cond->m_vtype == TYPE_STRING)
2073     {
2074         prev = cond;
2075         cond = ast_unary::make(cond->m_context, INSTR_NOT_S, cond);
2076         if (!cond) {
2077             ast_unref(prev);
2078             parseerror(parser, "internal error: failed to process condition");
2079             return nullptr;
2080         }
2081         ifnot = !ifnot;
2082     }
2083     else if (OPTS_FLAG(CORRECT_LOGIC) && cond->m_vtype == TYPE_VECTOR)
2084     {
2085         /* vector types need to be cast to true booleans */
2086         ast_binary *bin = (ast_binary*)cond;
2087         if (!OPTS_FLAG(PERL_LOGIC) || !ast_istype(cond, ast_binary) || !(bin->m_op == INSTR_AND || bin->m_op == INSTR_OR))
2088         {
2089             /* in perl-logic, AND and OR take care of the -fcorrect-logic */
2090             prev = cond;
2091             cond = ast_unary::make(cond->m_context, INSTR_NOT_V, cond);
2092             if (!cond) {
2093                 ast_unref(prev);
2094                 parseerror(parser, "internal error: failed to process condition");
2095                 return nullptr;
2096             }
2097             ifnot = !ifnot;
2098         }
2099     }
2100
2101     unary = (ast_unary*)cond;
2102     /* ast_istype dereferences cond, should test here for safety */
2103     while (cond && ast_istype(cond, ast_unary) && unary->m_op == INSTR_NOT_F)
2104     {
2105         cond = unary->m_operand;
2106         unary->m_operand = nullptr;
2107         delete unary;
2108         ifnot = !ifnot;
2109         unary = (ast_unary*)cond;
2110     }
2111
2112     if (!cond)
2113         parseerror(parser, "internal error: failed to process condition");
2114
2115     if (ifnot) *_ifnot = !*_ifnot;
2116     return cond;
2117 }
2118
2119 static bool parse_if(parser_t *parser, ast_block *block, ast_expression **out)
2120 {
2121     ast_ifthen *ifthen;
2122     ast_expression *cond, *ontrue = nullptr, *onfalse = nullptr;
2123     bool ifnot = false;
2124
2125     lex_ctx_t ctx = parser_ctx(parser);
2126
2127     (void)block; /* not touching */
2128
2129     /* skip the 'if', parse an optional 'not' and check for an opening paren */
2130     if (!parser_next(parser)) {
2131         parseerror(parser, "expected condition or 'not'");
2132         return false;
2133     }
2134     if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "not")) {
2135         ifnot = true;
2136         if (!parser_next(parser)) {
2137             parseerror(parser, "expected condition in parenthesis");
2138             return false;
2139         }
2140     }
2141     if (parser->tok != '(') {
2142         parseerror(parser, "expected 'if' condition in parenthesis");
2143         return false;
2144     }
2145     /* parse into the expression */
2146     if (!parser_next(parser)) {
2147         parseerror(parser, "expected 'if' condition after opening paren");
2148         return false;
2149     }
2150     /* parse the condition */
2151     cond = parse_expression_leave(parser, false, true, false);
2152     if (!cond)
2153         return false;
2154     /* closing paren */
2155     if (parser->tok != ')') {
2156         parseerror(parser, "expected closing paren after 'if' condition");
2157         ast_unref(cond);
2158         return false;
2159     }
2160     /* parse into the 'then' branch */
2161     if (!parser_next(parser)) {
2162         parseerror(parser, "expected statement for on-true branch of 'if'");
2163         ast_unref(cond);
2164         return false;
2165     }
2166     if (!parse_statement_or_block(parser, &ontrue)) {
2167         ast_unref(cond);
2168         return false;
2169     }
2170     if (!ontrue)
2171         ontrue = new ast_block(parser_ctx(parser));
2172     /* check for an else */
2173     if (!strcmp(parser_tokval(parser), "else")) {
2174         /* parse into the 'else' branch */
2175         if (!parser_next(parser)) {
2176             parseerror(parser, "expected on-false branch after 'else'");
2177             delete ontrue;
2178             ast_unref(cond);
2179             return false;
2180         }
2181         if (!parse_statement_or_block(parser, &onfalse)) {
2182             delete ontrue;
2183             ast_unref(cond);
2184             return false;
2185         }
2186     }
2187
2188     cond = process_condition(parser, cond, &ifnot);
2189     if (!cond) {
2190         if (ontrue)  delete ontrue;
2191         if (onfalse) delete onfalse;
2192         return false;
2193     }
2194
2195     if (ifnot)
2196         ifthen = new ast_ifthen(ctx, cond, onfalse, ontrue);
2197     else
2198         ifthen = new ast_ifthen(ctx, cond, ontrue, onfalse);
2199     *out = ifthen;
2200     return true;
2201 }
2202
2203 static bool parse_while_go(parser_t *parser, ast_block *block, ast_expression **out);
2204 static bool parse_while(parser_t *parser, ast_block *block, ast_expression **out)
2205 {
2206     bool rv;
2207     char *label = nullptr;
2208
2209     /* skip the 'while' and get the body */
2210     if (!parser_next(parser)) {
2211         if (OPTS_FLAG(LOOP_LABELS))
2212             parseerror(parser, "expected loop label or 'while' condition in parenthesis");
2213         else
2214             parseerror(parser, "expected 'while' condition in parenthesis");
2215         return false;
2216     }
2217
2218     if (parser->tok == ':') {
2219         if (!OPTS_FLAG(LOOP_LABELS))
2220             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2221         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2222             parseerror(parser, "expected loop label");
2223             return false;
2224         }
2225         label = util_strdup(parser_tokval(parser));
2226         if (!parser_next(parser)) {
2227             mem_d(label);
2228             parseerror(parser, "expected 'while' condition in parenthesis");
2229             return false;
2230         }
2231     }
2232
2233     if (parser->tok != '(') {
2234         parseerror(parser, "expected 'while' condition in parenthesis");
2235         return false;
2236     }
2237
2238     parser->breaks.push_back(label);
2239     parser->continues.push_back(label);
2240
2241     rv = parse_while_go(parser, block, out);
2242     if (label)
2243         mem_d(label);
2244     if (parser->breaks.back() != label || parser->continues.back() != label) {
2245         parseerror(parser, "internal error: label stack corrupted");
2246         rv = false;
2247         delete *out;
2248         *out = nullptr;
2249     }
2250     else {
2251         parser->breaks.pop_back();
2252         parser->continues.pop_back();
2253     }
2254     return rv;
2255 }
2256
2257 static bool parse_while_go(parser_t *parser, ast_block *block, ast_expression **out)
2258 {
2259     ast_loop *aloop;
2260     ast_expression *cond, *ontrue;
2261
2262     bool ifnot = false;
2263
2264     lex_ctx_t ctx = parser_ctx(parser);
2265
2266     (void)block; /* not touching */
2267
2268     /* parse into the expression */
2269     if (!parser_next(parser)) {
2270         parseerror(parser, "expected 'while' condition after opening paren");
2271         return false;
2272     }
2273     /* parse the condition */
2274     cond = parse_expression_leave(parser, false, true, false);
2275     if (!cond)
2276         return false;
2277     /* closing paren */
2278     if (parser->tok != ')') {
2279         parseerror(parser, "expected closing paren after 'while' condition");
2280         ast_unref(cond);
2281         return false;
2282     }
2283     /* parse into the 'then' branch */
2284     if (!parser_next(parser)) {
2285         parseerror(parser, "expected while-loop body");
2286         ast_unref(cond);
2287         return false;
2288     }
2289     if (!parse_statement_or_block(parser, &ontrue)) {
2290         ast_unref(cond);
2291         return false;
2292     }
2293
2294     cond = process_condition(parser, cond, &ifnot);
2295     if (!cond) {
2296         ast_unref(ontrue);
2297         return false;
2298     }
2299     aloop = new ast_loop(ctx, nullptr, cond, ifnot, nullptr, false, nullptr, ontrue);
2300     *out = aloop;
2301     return true;
2302 }
2303
2304 static bool parse_dowhile_go(parser_t *parser, ast_block *block, ast_expression **out);
2305 static bool parse_dowhile(parser_t *parser, ast_block *block, ast_expression **out)
2306 {
2307     bool rv;
2308     char *label = nullptr;
2309
2310     /* skip the 'do' and get the body */
2311     if (!parser_next(parser)) {
2312         if (OPTS_FLAG(LOOP_LABELS))
2313             parseerror(parser, "expected loop label or body");
2314         else
2315             parseerror(parser, "expected loop body");
2316         return false;
2317     }
2318
2319     if (parser->tok == ':') {
2320         if (!OPTS_FLAG(LOOP_LABELS))
2321             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2322         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2323             parseerror(parser, "expected loop label");
2324             return false;
2325         }
2326         label = util_strdup(parser_tokval(parser));
2327         if (!parser_next(parser)) {
2328             mem_d(label);
2329             parseerror(parser, "expected loop body");
2330             return false;
2331         }
2332     }
2333
2334     parser->breaks.push_back(label);
2335     parser->continues.push_back(label);
2336
2337     rv = parse_dowhile_go(parser, block, out);
2338     if (label)
2339         mem_d(label);
2340     if (parser->breaks.back() != label || parser->continues.back() != label) {
2341         parseerror(parser, "internal error: label stack corrupted");
2342         rv = false;
2343         delete *out;
2344         *out = nullptr;
2345     }
2346     else {
2347         parser->breaks.pop_back();
2348         parser->continues.pop_back();
2349     }
2350     return rv;
2351 }
2352
2353 static bool parse_dowhile_go(parser_t *parser, ast_block *block, ast_expression **out)
2354 {
2355     ast_loop *aloop;
2356     ast_expression *cond, *ontrue;
2357
2358     bool ifnot = false;
2359
2360     lex_ctx_t ctx = parser_ctx(parser);
2361
2362     (void)block; /* not touching */
2363
2364     if (!parse_statement_or_block(parser, &ontrue))
2365         return false;
2366
2367     /* expect the "while" */
2368     if (parser->tok != TOKEN_KEYWORD ||
2369         strcmp(parser_tokval(parser), "while"))
2370     {
2371         parseerror(parser, "expected 'while' and condition");
2372         delete ontrue;
2373         return false;
2374     }
2375
2376     /* skip the 'while' and check for opening paren */
2377     if (!parser_next(parser) || parser->tok != '(') {
2378         parseerror(parser, "expected 'while' condition in parenthesis");
2379         delete ontrue;
2380         return false;
2381     }
2382     /* parse into the expression */
2383     if (!parser_next(parser)) {
2384         parseerror(parser, "expected 'while' condition after opening paren");
2385         delete ontrue;
2386         return false;
2387     }
2388     /* parse the condition */
2389     cond = parse_expression_leave(parser, false, true, false);
2390     if (!cond)
2391         return false;
2392     /* closing paren */
2393     if (parser->tok != ')') {
2394         parseerror(parser, "expected closing paren after 'while' condition");
2395         delete ontrue;
2396         ast_unref(cond);
2397         return false;
2398     }
2399     /* parse on */
2400     if (!parser_next(parser) || parser->tok != ';') {
2401         parseerror(parser, "expected semicolon after condition");
2402         delete ontrue;
2403         ast_unref(cond);
2404         return false;
2405     }
2406
2407     if (!parser_next(parser)) {
2408         parseerror(parser, "parse error");
2409         delete ontrue;
2410         ast_unref(cond);
2411         return false;
2412     }
2413
2414     cond = process_condition(parser, cond, &ifnot);
2415     if (!cond) {
2416         delete ontrue;
2417         return false;
2418     }
2419     aloop = new ast_loop(ctx, nullptr, nullptr, false, cond, ifnot, nullptr, ontrue);
2420     *out = aloop;
2421     return true;
2422 }
2423
2424 static bool parse_for_go(parser_t *parser, ast_block *block, ast_expression **out);
2425 static bool parse_for(parser_t *parser, ast_block *block, ast_expression **out)
2426 {
2427     bool rv;
2428     char *label = nullptr;
2429
2430     /* skip the 'for' and check for opening paren */
2431     if (!parser_next(parser)) {
2432         if (OPTS_FLAG(LOOP_LABELS))
2433             parseerror(parser, "expected loop label or 'for' expressions in parenthesis");
2434         else
2435             parseerror(parser, "expected 'for' expressions in parenthesis");
2436         return false;
2437     }
2438
2439     if (parser->tok == ':') {
2440         if (!OPTS_FLAG(LOOP_LABELS))
2441             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2442         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2443             parseerror(parser, "expected loop label");
2444             return false;
2445         }
2446         label = util_strdup(parser_tokval(parser));
2447         if (!parser_next(parser)) {
2448             mem_d(label);
2449             parseerror(parser, "expected 'for' expressions in parenthesis");
2450             return false;
2451         }
2452     }
2453
2454     if (parser->tok != '(') {
2455         parseerror(parser, "expected 'for' expressions in parenthesis");
2456         return false;
2457     }
2458
2459     parser->breaks.push_back(label);
2460     parser->continues.push_back(label);
2461
2462     rv = parse_for_go(parser, block, out);
2463     if (label)
2464         mem_d(label);
2465     if (parser->breaks.back() != label || parser->continues.back() != label) {
2466         parseerror(parser, "internal error: label stack corrupted");
2467         rv = false;
2468         delete *out;
2469         *out = nullptr;
2470     }
2471     else {
2472         parser->breaks.pop_back();
2473         parser->continues.pop_back();
2474     }
2475     return rv;
2476 }
2477 static bool parse_for_go(parser_t *parser, ast_block *block, ast_expression **out)
2478 {
2479     ast_loop       *aloop;
2480     ast_expression *initexpr, *cond, *increment, *ontrue;
2481     ast_value      *typevar;
2482
2483     bool ifnot  = false;
2484
2485     lex_ctx_t ctx = parser_ctx(parser);
2486
2487     parser_enterblock(parser);
2488
2489     initexpr  = nullptr;
2490     cond      = nullptr;
2491     increment = nullptr;
2492     ontrue    = nullptr;
2493
2494     /* parse into the expression */
2495     if (!parser_next(parser)) {
2496         parseerror(parser, "expected 'for' initializer after opening paren");
2497         goto onerr;
2498     }
2499
2500     typevar = nullptr;
2501     if (parser->tok == TOKEN_IDENT)
2502         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2503
2504     if (typevar || parser->tok == TOKEN_TYPENAME) {
2505         if (!parse_variable(parser, block, true, CV_VAR, typevar, false, false, 0, nullptr))
2506             goto onerr;
2507     }
2508     else if (parser->tok != ';')
2509     {
2510         initexpr = parse_expression_leave(parser, false, false, false);
2511         if (!initexpr)
2512             goto onerr;
2513         /* move on to condition */
2514         if (parser->tok != ';') {
2515             parseerror(parser, "expected semicolon after for-loop initializer");
2516             goto onerr;
2517         }
2518         if (!parser_next(parser)) {
2519             parseerror(parser, "expected for-loop condition");
2520             goto onerr;
2521         }
2522     } else if (!parser_next(parser)) {
2523         parseerror(parser, "expected for-loop condition");
2524         goto onerr;
2525     }
2526
2527     /* parse the condition */
2528     if (parser->tok != ';') {
2529         cond = parse_expression_leave(parser, false, true, false);
2530         if (!cond)
2531             goto onerr;
2532     }
2533     /* move on to incrementor */
2534     if (parser->tok != ';') {
2535         parseerror(parser, "expected semicolon after for-loop initializer");
2536         goto onerr;
2537     }
2538     if (!parser_next(parser)) {
2539         parseerror(parser, "expected for-loop condition");
2540         goto onerr;
2541     }
2542
2543     /* parse the incrementor */
2544     if (parser->tok != ')') {
2545         lex_ctx_t condctx = parser_ctx(parser);
2546         increment = parse_expression_leave(parser, false, false, false);
2547         if (!increment)
2548             goto onerr;
2549         if (!increment->m_side_effects) {
2550             if (compile_warning(condctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2551                 goto onerr;
2552         }
2553     }
2554
2555     /* closing paren */
2556     if (parser->tok != ')') {
2557         parseerror(parser, "expected closing paren after 'for-loop' incrementor");
2558         goto onerr;
2559     }
2560     /* parse into the 'then' branch */
2561     if (!parser_next(parser)) {
2562         parseerror(parser, "expected for-loop body");
2563         goto onerr;
2564     }
2565     if (!parse_statement_or_block(parser, &ontrue))
2566         goto onerr;
2567
2568     if (cond) {
2569         cond = process_condition(parser, cond, &ifnot);
2570         if (!cond)
2571             goto onerr;
2572     }
2573     aloop = new ast_loop(ctx, initexpr, cond, ifnot, nullptr, false, increment, ontrue);
2574     *out = aloop;
2575
2576     if (!parser_leaveblock(parser)) {
2577         delete aloop;
2578         return false;
2579     }
2580     return true;
2581 onerr:
2582     if (initexpr)  ast_unref(initexpr);
2583     if (cond)      ast_unref(cond);
2584     if (increment) ast_unref(increment);
2585     (void)!parser_leaveblock(parser);
2586     return false;
2587 }
2588
2589 static bool parse_return(parser_t *parser, ast_block *block, ast_expression **out)
2590 {
2591     ast_expression *exp      = nullptr;
2592     ast_expression *var      = nullptr;
2593     ast_return     *ret      = nullptr;
2594     ast_value      *retval   = parser->function->m_return_value;
2595     ast_value      *expected = parser->function->m_function_type;
2596
2597     lex_ctx_t ctx = parser_ctx(parser);
2598
2599     (void)block; /* not touching */
2600
2601     if (!parser_next(parser)) {
2602         parseerror(parser, "expected return expression");
2603         return false;
2604     }
2605
2606     /* return assignments */
2607     if (parser->tok == '=') {
2608         if (!OPTS_FLAG(RETURN_ASSIGNMENTS)) {
2609             parseerror(parser, "return assignments not activated, try using -freturn-assigments");
2610             return false;
2611         }
2612
2613         if (type_store_instr[expected->m_next->m_vtype] == VINSTR_END) {
2614             char ty1[1024];
2615             ast_type_to_string(expected->m_next, ty1, sizeof(ty1));
2616             parseerror(parser, "invalid return type: `%s'", ty1);
2617             return false;
2618         }
2619
2620         if (!parser_next(parser)) {
2621             parseerror(parser, "expected return assignment expression");
2622             return false;
2623         }
2624
2625         if (!(exp = parse_expression_leave(parser, false, false, false)))
2626             return false;
2627
2628         /* prepare the return value */
2629         if (!retval) {
2630             retval = new ast_value(ctx, "#LOCAL_RETURN", TYPE_VOID);
2631             retval->adoptType(*expected->m_next);
2632             parser->function->m_return_value = retval;
2633             parser->function->m_return_value->m_flags |= AST_FLAG_NOREF;
2634         }
2635
2636         if (!exp->compareType(*retval)) {
2637             char ty1[1024], ty2[1024];
2638             ast_type_to_string(exp, ty1, sizeof(ty1));
2639             ast_type_to_string(retval, ty2, sizeof(ty2));
2640             parseerror(parser, "invalid type for return value: `%s', expected `%s'", ty1, ty2);
2641         }
2642
2643         /* store to 'return' local variable */
2644         var = new ast_store(
2645             ctx,
2646             type_store_instr[expected->m_next->m_vtype],
2647             retval, exp);
2648
2649         if (!var) {
2650             ast_unref(exp);
2651             return false;
2652         }
2653
2654         if (parser->tok != ';')
2655             parseerror(parser, "missing semicolon after return assignment");
2656         else if (!parser_next(parser))
2657             parseerror(parser, "parse error after return assignment");
2658
2659         *out = var;
2660         return true;
2661     }
2662
2663     if (parser->tok != ';') {
2664         exp = parse_expression(parser, false, false);
2665         if (!exp)
2666             return false;
2667
2668         if (exp->m_vtype != TYPE_NIL &&
2669             exp->m_vtype != (expected)->m_next->m_vtype)
2670         {
2671             parseerror(parser, "return with invalid expression");
2672         }
2673
2674         ret = new ast_return(ctx, exp);
2675         if (!ret) {
2676             ast_unref(exp);
2677             return false;
2678         }
2679     } else {
2680         if (!parser_next(parser))
2681             parseerror(parser, "parse error");
2682
2683         if (!retval && expected->m_next->m_vtype != TYPE_VOID)
2684         {
2685             (void)!parsewarning(parser, WARN_MISSING_RETURN_VALUES, "return without value");
2686         }
2687         ret = new ast_return(ctx, retval);
2688     }
2689     *out = ret;
2690     return true;
2691 }
2692
2693 static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
2694 {
2695     size_t i;
2696     unsigned int levels = 0;
2697     lex_ctx_t ctx = parser_ctx(parser);
2698     auto &loops = (is_continue ? parser->continues : parser->breaks);
2699
2700     (void)block; /* not touching */
2701     if (!parser_next(parser)) {
2702         parseerror(parser, "expected semicolon or loop label");
2703         return false;
2704     }
2705
2706     if (loops.empty()) {
2707         if (is_continue)
2708             parseerror(parser, "`continue` can only be used inside loops");
2709         else
2710             parseerror(parser, "`break` can only be used inside loops or switches");
2711     }
2712
2713     if (parser->tok == TOKEN_IDENT) {
2714         if (!OPTS_FLAG(LOOP_LABELS))
2715             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2716         i = loops.size();
2717         while (i--) {
2718             if (loops[i] && !strcmp(loops[i], parser_tokval(parser)))
2719                 break;
2720             if (!i) {
2721                 parseerror(parser, "no such loop to %s: `%s`",
2722                            (is_continue ? "continue" : "break out of"),
2723                            parser_tokval(parser));
2724                 return false;
2725             }
2726             ++levels;
2727         }
2728         if (!parser_next(parser)) {
2729             parseerror(parser, "expected semicolon");
2730             return false;
2731         }
2732     }
2733
2734     if (parser->tok != ';') {
2735         parseerror(parser, "expected semicolon");
2736         return false;
2737     }
2738
2739     if (!parser_next(parser))
2740         parseerror(parser, "parse error");
2741
2742     *out = new ast_breakcont(ctx, is_continue, levels);
2743     return true;
2744 }
2745
2746 /* returns true when it was a variable qualifier, false otherwise!
2747  * on error, cvq is set to CV_WRONG
2748  */
2749 struct attribute_t {
2750     const char *name;
2751     size_t      flag;
2752 };
2753
2754 static bool parse_qualifiers(parser_t *parser, bool with_local, int *cvq, bool *noref, bool *is_static, uint32_t *_flags, char **message)
2755 {
2756     bool had_const    = false;
2757     bool had_var      = false;
2758     bool had_noref    = false;
2759     bool had_attrib   = false;
2760     bool had_static   = false;
2761     uint32_t flags    = 0;
2762
2763     static attribute_t attributes[] = {
2764         { "noreturn",   AST_FLAG_NORETURN   },
2765         { "inline",     AST_FLAG_INLINE     },
2766         { "eraseable",  AST_FLAG_ERASEABLE  },
2767         { "accumulate", AST_FLAG_ACCUMULATE },
2768         { "last",       AST_FLAG_FINAL_DECL }
2769     };
2770
2771    *cvq = CV_NONE;
2772
2773     for (;;) {
2774         size_t i;
2775         if (parser->tok == TOKEN_ATTRIBUTE_OPEN) {
2776             had_attrib = true;
2777             /* parse an attribute */
2778             if (!parser_next(parser)) {
2779                 parseerror(parser, "expected attribute after `[[`");
2780                 *cvq = CV_WRONG;
2781                 return false;
2782             }
2783
2784             for (i = 0; i < GMQCC_ARRAY_COUNT(attributes); i++) {
2785                 if (!strcmp(parser_tokval(parser), attributes[i].name)) {
2786                     flags |= attributes[i].flag;
2787                     if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2788                         parseerror(parser, "`%s` attribute has no parameters, expected `]]`",
2789                             attributes[i].name);
2790                         *cvq = CV_WRONG;
2791                         return false;
2792                     }
2793                     break;
2794                 }
2795             }
2796
2797             if (i != GMQCC_ARRAY_COUNT(attributes))
2798                 goto leave;
2799
2800
2801             if (!strcmp(parser_tokval(parser), "noref")) {
2802                 had_noref = true;
2803                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2804                     parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
2805                     *cvq = CV_WRONG;
2806                     return false;
2807                 }
2808             }
2809             else if (!strcmp(parser_tokval(parser), "alias") && !(flags & AST_FLAG_ALIAS)) {
2810                 flags   |= AST_FLAG_ALIAS;
2811                 *message = nullptr;
2812
2813                 if (!parser_next(parser)) {
2814                     parseerror(parser, "parse error in attribute");
2815                     goto argerr;
2816                 }
2817
2818                 if (parser->tok == '(') {
2819                     if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
2820                         parseerror(parser, "`alias` attribute missing parameter");
2821                         goto argerr;
2822                     }
2823
2824                     *message = util_strdup(parser_tokval(parser));
2825
2826                     if (!parser_next(parser)) {
2827                         parseerror(parser, "parse error in attribute");
2828                         goto argerr;
2829                     }
2830
2831                     if (parser->tok != ')') {
2832                         parseerror(parser, "`alias` attribute expected `)` after parameter");
2833                         goto argerr;
2834                     }
2835
2836                     if (!parser_next(parser)) {
2837                         parseerror(parser, "parse error in attribute");
2838                         goto argerr;
2839                     }
2840                 }
2841
2842                 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2843                     parseerror(parser, "`alias` attribute expected `]]`");
2844                     goto argerr;
2845                 }
2846             }
2847             else if (!strcmp(parser_tokval(parser), "deprecated") && !(flags & AST_FLAG_DEPRECATED)) {
2848                 flags   |= AST_FLAG_DEPRECATED;
2849                 *message = nullptr;
2850
2851                 if (!parser_next(parser)) {
2852                     parseerror(parser, "parse error in attribute");
2853                     goto argerr;
2854                 }
2855
2856                 if (parser->tok == '(') {
2857                     if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
2858                         parseerror(parser, "`deprecated` attribute missing parameter");
2859                         goto argerr;
2860                     }
2861
2862                     *message = util_strdup(parser_tokval(parser));
2863
2864                     if (!parser_next(parser)) {
2865                         parseerror(parser, "parse error in attribute");
2866                         goto argerr;
2867                     }
2868
2869                     if(parser->tok != ')') {
2870                         parseerror(parser, "`deprecated` attribute expected `)` after parameter");
2871                         goto argerr;
2872                     }
2873
2874                     if (!parser_next(parser)) {
2875                         parseerror(parser, "parse error in attribute");
2876                         goto argerr;
2877                     }
2878                 }
2879                 /* no message */
2880                 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2881                     parseerror(parser, "`deprecated` attribute expected `]]`");
2882
2883                     argerr: /* ugly */
2884                     if (*message) mem_d(*message);
2885                     *message = nullptr;
2886                     *cvq     = CV_WRONG;
2887                     return false;
2888                 }
2889             }
2890             else if (!strcmp(parser_tokval(parser), "coverage") && !(flags & AST_FLAG_COVERAGE)) {
2891                 flags |= AST_FLAG_COVERAGE;
2892                 if (!parser_next(parser)) {
2893                     error_in_coverage:
2894                     parseerror(parser, "parse error in coverage attribute");
2895                     *cvq = CV_WRONG;
2896                     return false;
2897                 }
2898                 if (parser->tok == '(') {
2899                     if (!parser_next(parser)) {
2900                         bad_coverage_arg:
2901                         parseerror(parser, "invalid parameter for coverage() attribute\n"
2902                                            "valid are: block");
2903                         *cvq = CV_WRONG;
2904                         return false;
2905                     }
2906                     if (parser->tok != ')') {
2907                         do {
2908                             if (parser->tok != TOKEN_IDENT)
2909                                 goto bad_coverage_arg;
2910                             if (!strcmp(parser_tokval(parser), "block"))
2911                                 flags |= AST_FLAG_BLOCK_COVERAGE;
2912                             else if (!strcmp(parser_tokval(parser), "none"))
2913                                 flags &= ~(AST_FLAG_COVERAGE_MASK);
2914                             else
2915                                 goto bad_coverage_arg;
2916                             if (!parser_next(parser))
2917                                 goto error_in_coverage;
2918                             if (parser->tok == ',') {
2919                                 if (!parser_next(parser))
2920                                     goto error_in_coverage;
2921                             }
2922                         } while (parser->tok != ')');
2923                     }
2924                     if (parser->tok != ')' || !parser_next(parser))
2925                         goto error_in_coverage;
2926                 } else {
2927                     /* without parameter [[coverage]] equals [[coverage(block)]] */
2928                     flags |= AST_FLAG_BLOCK_COVERAGE;
2929                 }
2930             }
2931             else
2932             {
2933                 /* Skip tokens until we hit a ]] */
2934                 (void)!parsewarning(parser, WARN_UNKNOWN_ATTRIBUTE, "unknown attribute starting with `%s`", parser_tokval(parser));
2935                 while (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2936                     if (!parser_next(parser)) {
2937                         parseerror(parser, "error inside attribute");
2938                         *cvq = CV_WRONG;
2939                         return false;
2940                     }
2941                 }
2942             }
2943         }
2944         else if (with_local && !strcmp(parser_tokval(parser), "static"))
2945             had_static = true;
2946         else if (!strcmp(parser_tokval(parser), "const"))
2947             had_const = true;
2948         else if (!strcmp(parser_tokval(parser), "var"))
2949             had_var = true;
2950         else if (with_local && !strcmp(parser_tokval(parser), "local"))
2951             had_var = true;
2952         else if (!strcmp(parser_tokval(parser), "noref"))
2953             had_noref = true;
2954         else if (!had_const && !had_var && !had_noref && !had_attrib && !had_static && !flags) {
2955             return false;
2956         }
2957         else
2958             break;
2959
2960         leave:
2961         if (!parser_next(parser))
2962             goto onerr;
2963     }
2964     if (had_const)
2965         *cvq = CV_CONST;
2966     else if (had_var)
2967         *cvq = CV_VAR;
2968     else
2969         *cvq = CV_NONE;
2970     *noref     = had_noref;
2971     *is_static = had_static;
2972     *_flags    = flags;
2973     return true;
2974 onerr:
2975     parseerror(parser, "parse error after variable qualifier");
2976     *cvq = CV_WRONG;
2977     return true;
2978 }
2979
2980 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out);
2981 static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **out)
2982 {
2983     bool rv;
2984     char *label = nullptr;
2985
2986     /* skip the 'while' and get the body */
2987     if (!parser_next(parser)) {
2988         if (OPTS_FLAG(LOOP_LABELS))
2989             parseerror(parser, "expected loop label or 'switch' operand in parenthesis");
2990         else
2991             parseerror(parser, "expected 'switch' operand in parenthesis");
2992         return false;
2993     }
2994
2995     if (parser->tok == ':') {
2996         if (!OPTS_FLAG(LOOP_LABELS))
2997             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2998         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2999             parseerror(parser, "expected loop label");
3000             return false;
3001         }
3002         label = util_strdup(parser_tokval(parser));
3003         if (!parser_next(parser)) {
3004             mem_d(label);
3005             parseerror(parser, "expected 'switch' operand in parenthesis");
3006             return false;
3007         }
3008     }
3009
3010     if (parser->tok != '(') {
3011         parseerror(parser, "expected 'switch' operand in parenthesis");
3012         return false;
3013     }
3014
3015     parser->breaks.push_back(label);
3016
3017     rv = parse_switch_go(parser, block, out);
3018     if (label)
3019         mem_d(label);
3020     if (parser->breaks.back() != label) {
3021         parseerror(parser, "internal error: label stack corrupted");
3022         rv = false;
3023         delete *out;
3024         *out = nullptr;
3025     }
3026     else {
3027         parser->breaks.pop_back();
3028     }
3029     return rv;
3030 }
3031
3032 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out)
3033 {
3034     ast_expression *operand;
3035     ast_value      *opval;
3036     ast_value      *typevar;
3037     ast_switch     *switchnode;
3038     ast_switch_case swcase;
3039
3040     int  cvq;
3041     bool noref, is_static;
3042     uint32_t qflags = 0;
3043
3044     lex_ctx_t ctx = parser_ctx(parser);
3045
3046     (void)block; /* not touching */
3047     (void)opval;
3048
3049     /* parse into the expression */
3050     if (!parser_next(parser)) {
3051         parseerror(parser, "expected switch operand");
3052         return false;
3053     }
3054     /* parse the operand */
3055     operand = parse_expression_leave(parser, false, false, false);
3056     if (!operand)
3057         return false;
3058
3059     switchnode = new ast_switch(ctx, operand);
3060
3061     /* closing paren */
3062     if (parser->tok != ')') {
3063         delete switchnode;
3064         parseerror(parser, "expected closing paren after 'switch' operand");
3065         return false;
3066     }
3067
3068     /* parse over the opening paren */
3069     if (!parser_next(parser) || parser->tok != '{') {
3070         delete switchnode;
3071         parseerror(parser, "expected list of cases");
3072         return false;
3073     }
3074
3075     if (!parser_next(parser)) {
3076         delete switchnode;
3077         parseerror(parser, "expected 'case' or 'default'");
3078         return false;
3079     }
3080
3081     /* new block; allow some variables to be declared here */
3082     parser_enterblock(parser);
3083     while (true) {
3084         typevar = nullptr;
3085         if (parser->tok == TOKEN_IDENT)
3086             typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3087         if (typevar || parser->tok == TOKEN_TYPENAME) {
3088             if (!parse_variable(parser, block, true, CV_NONE, typevar, false, false, 0, nullptr)) {
3089                 delete switchnode;
3090                 return false;
3091             }
3092             continue;
3093         }
3094         if (parse_qualifiers(parser, true, &cvq, &noref, &is_static, &qflags, nullptr))
3095         {
3096             if (cvq == CV_WRONG) {
3097                 delete switchnode;
3098                 return false;
3099             }
3100             if (!parse_variable(parser, block, true, cvq, nullptr, noref, is_static, qflags, nullptr)) {
3101                 delete switchnode;
3102                 return false;
3103             }
3104             continue;
3105         }
3106         break;
3107     }
3108
3109     /* case list! */
3110     while (parser->tok != '}') {
3111         ast_block *caseblock;
3112
3113         if (!strcmp(parser_tokval(parser), "case")) {
3114             if (!parser_next(parser)) {
3115                 delete switchnode;
3116                 parseerror(parser, "expected expression for case");
3117                 return false;
3118             }
3119             swcase.m_value = parse_expression_leave(parser, false, false, false);
3120
3121             if (!operand->compareType(*swcase.m_value)) {
3122                 char ty1[1024];
3123                 char ty2[1024];
3124
3125                 ast_type_to_string(swcase.m_value, ty1, sizeof ty1);
3126                 ast_type_to_string(operand, ty2, sizeof ty2);
3127
3128                 auto fnLiteral = [](ast_expression *expression) -> char* {
3129                     if (!ast_istype(expression, ast_value))
3130                         return nullptr;
3131                     ast_value *value = (ast_value *)expression;
3132                     if (!value->m_hasvalue)
3133                         return nullptr;
3134                     char *string = nullptr;
3135                     basic_value_t *constval = &value->m_constval;
3136                     switch (value->m_vtype)
3137                     {
3138                     case TYPE_FLOAT:
3139                         util_asprintf(&string, "%.2f", constval->vfloat);
3140                         return string;
3141                     case TYPE_VECTOR:
3142                         util_asprintf(&string, "'%.2f %.2f %.2f'",
3143                             constval->vvec.x,
3144                             constval->vvec.y,
3145                             constval->vvec.z);
3146                         return string;
3147                     case TYPE_STRING:
3148                         util_asprintf(&string, "\"%s\"", constval->vstring);
3149                         return string;
3150                     default:
3151                         break;
3152                     }
3153                     return nullptr;
3154                 };
3155
3156                 char *literal = fnLiteral(swcase.m_value);
3157                 if (literal)
3158                     compile_error(parser_ctx(parser), "incompatible type `%s` for switch case `%s` expected `%s`", ty1, literal, ty2);
3159                 else
3160                     compile_error(parser_ctx(parser), "incompatible type `%s` for switch case expected `%s`", ty1, ty2);
3161                 mem_d(literal);
3162                 delete switchnode;
3163                 return false;
3164             }
3165
3166             if (!swcase.m_value) {
3167                 delete switchnode;
3168                 parseerror(parser, "expected expression for case");
3169                 return false;
3170             }
3171             if (!OPTS_FLAG(RELAXED_SWITCH)) {
3172                 if (!ast_istype(swcase.m_value, ast_value)) { /* || ((ast_value*)swcase.m_value)->m_cvq != CV_CONST) { */
3173                     parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
3174                     ast_unref(operand);
3175                     return false;
3176                 }
3177             }
3178         }
3179         else if (!strcmp(parser_tokval(parser), "default")) {
3180             swcase.m_value = nullptr;
3181             if (!parser_next(parser)) {
3182                 delete switchnode;
3183                 parseerror(parser, "expected colon");
3184                 return false;
3185             }
3186         }
3187         else {
3188             delete switchnode;
3189             parseerror(parser, "expected 'case' or 'default'");
3190             return false;
3191         }
3192
3193         /* Now the colon and body */
3194         if (parser->tok != ':') {
3195             if (swcase.m_value) ast_unref(swcase.m_value);
3196             delete switchnode;
3197             parseerror(parser, "expected colon");
3198             return false;
3199         }
3200
3201         if (!parser_next(parser)) {
3202             if (swcase.m_value) ast_unref(swcase.m_value);
3203             delete switchnode;
3204             parseerror(parser, "expected statements or case");
3205             return false;
3206         }
3207         caseblock = new ast_block(parser_ctx(parser));
3208         if (!caseblock) {
3209             if (swcase.m_value) ast_unref(swcase.m_value);
3210             delete switchnode;
3211             return false;
3212         }
3213         swcase.m_code = caseblock;
3214         switchnode->m_cases.push_back(swcase);
3215         while (true) {
3216             ast_expression *expr;
3217             if (parser->tok == '}')
3218                 break;
3219             if (parser->tok == TOKEN_KEYWORD) {
3220                 if (!strcmp(parser_tokval(parser), "case") ||
3221                     !strcmp(parser_tokval(parser), "default"))
3222                 {
3223                     break;
3224                 }
3225             }
3226             if (!parse_statement(parser, caseblock, &expr, true)) {
3227                 delete switchnode;
3228                 return false;
3229             }
3230             if (!expr)
3231                 continue;
3232             if (!caseblock->addExpr(expr)) {
3233                 delete switchnode;
3234                 return false;
3235             }
3236         }
3237     }
3238
3239     parser_leaveblock(parser);
3240
3241     /* closing paren */
3242     if (parser->tok != '}') {
3243         delete switchnode;
3244         parseerror(parser, "expected closing paren of case list");
3245         return false;
3246     }
3247     if (!parser_next(parser)) {
3248         delete switchnode;
3249         parseerror(parser, "parse error after switch");
3250         return false;
3251     }
3252     *out = switchnode;
3253     return true;
3254 }
3255
3256 /* parse computed goto sides */
3257 static ast_expression *parse_goto_computed(parser_t *parser, ast_expression **side) {
3258     ast_expression *on_true;
3259     ast_expression *on_false;
3260     ast_expression *cond;
3261
3262     if (!*side)
3263         return nullptr;
3264
3265     if (ast_istype(*side, ast_ternary)) {
3266         ast_ternary *tern = (ast_ternary*)*side;
3267         on_true  = parse_goto_computed(parser, &tern->m_on_true);
3268         on_false = parse_goto_computed(parser, &tern->m_on_false);
3269
3270         if (!on_true || !on_false) {
3271             parseerror(parser, "expected label or expression in ternary");
3272             if (on_true) ast_unref(on_true);
3273             if (on_false) ast_unref(on_false);
3274             return nullptr;
3275         }
3276
3277         cond = tern->m_cond;
3278         tern->m_cond = nullptr;
3279         delete tern;
3280         *side = nullptr;
3281         return new ast_ifthen(parser_ctx(parser), cond, on_true, on_false);
3282     } else if (ast_istype(*side, ast_label)) {
3283         ast_goto *gt = new ast_goto(parser_ctx(parser), ((ast_label*)*side)->m_name);
3284         gt->setLabel(reinterpret_cast<ast_label*>(*side));
3285         *side = nullptr;
3286         return gt;
3287     }
3288     return nullptr;
3289 }
3290
3291 static bool parse_goto(parser_t *parser, ast_expression **out)
3292 {
3293     ast_goto       *gt = nullptr;
3294     ast_expression *lbl;
3295
3296     if (!parser_next(parser))
3297         return false;
3298
3299     if (parser->tok != TOKEN_IDENT) {
3300         ast_expression *expression;
3301
3302         /* could be an expression i.e computed goto :-) */
3303         if (parser->tok != '(') {
3304             parseerror(parser, "expected label name after `goto`");
3305             return false;
3306         }
3307
3308         /* failed to parse expression for goto */
3309         if (!(expression = parse_expression(parser, false, true)) ||
3310             !(*out = parse_goto_computed(parser, &expression))) {
3311             parseerror(parser, "invalid goto expression");
3312             if(expression)
3313                 ast_unref(expression);
3314             return false;
3315         }
3316
3317         return true;
3318     }
3319
3320     /* not computed goto */
3321     gt = new ast_goto(parser_ctx(parser), parser_tokval(parser));
3322     lbl = parser_find_label(parser, gt->m_name);
3323     if (lbl) {
3324         if (!ast_istype(lbl, ast_label)) {
3325             parseerror(parser, "internal error: label is not an ast_label");
3326             delete gt;
3327             return false;
3328         }
3329         gt->setLabel(reinterpret_cast<ast_label*>(lbl));
3330     }
3331     else
3332         parser->gotos.push_back(gt);
3333
3334     if (!parser_next(parser) || parser->tok != ';') {
3335         parseerror(parser, "semicolon expected after goto label");
3336         return false;
3337     }
3338     if (!parser_next(parser)) {
3339         parseerror(parser, "parse error after goto");
3340         return false;
3341     }
3342
3343     *out = gt;
3344     return true;
3345 }
3346
3347 static bool parse_skipwhite(parser_t *parser)
3348 {
3349     do {
3350         if (!parser_next(parser))
3351             return false;
3352     } while (parser->tok == TOKEN_WHITE && parser->tok < TOKEN_ERROR);
3353     return parser->tok < TOKEN_ERROR;
3354 }
3355
3356 static bool parse_eol(parser_t *parser)
3357 {
3358     if (!parse_skipwhite(parser))
3359         return false;
3360     return parser->tok == TOKEN_EOL;
3361 }
3362
3363 static bool parse_pragma_do(parser_t *parser)
3364 {
3365     if (!parser_next(parser) ||
3366         parser->tok != TOKEN_IDENT ||
3367         strcmp(parser_tokval(parser), "pragma"))
3368     {
3369         parseerror(parser, "expected `pragma` keyword after `#`, got `%s`", parser_tokval(parser));
3370         return false;
3371     }
3372     if (!parse_skipwhite(parser) || parser->tok != TOKEN_IDENT) {
3373         parseerror(parser, "expected pragma, got `%s`", parser_tokval(parser));
3374         return false;
3375     }
3376
3377     if (!strcmp(parser_tokval(parser), "noref")) {
3378         if (!parse_skipwhite(parser) || parser->tok != TOKEN_INTCONST) {
3379             parseerror(parser, "`noref` pragma requires an argument: 0 or 1");
3380             return false;
3381         }
3382         parser->noref = !!parser_token(parser)->constval.i;
3383         if (!parse_eol(parser)) {
3384             parseerror(parser, "parse error after `noref` pragma");
3385             return false;
3386         }
3387     }
3388     else
3389     {
3390         (void)!parsewarning(parser, WARN_UNKNOWN_PRAGMAS, "ignoring #pragma %s", parser_tokval(parser));
3391
3392         /* skip to eol */
3393         while (!parse_eol(parser)) {
3394             parser_next(parser);
3395         }
3396
3397         return true;
3398     }
3399
3400     return true;
3401 }
3402
3403 static bool parse_pragma(parser_t *parser)
3404 {
3405     bool rv;
3406     parser->lex->flags.preprocessing = true;
3407     parser->lex->flags.mergelines = true;
3408     rv = parse_pragma_do(parser);
3409     if (parser->tok != TOKEN_EOL) {
3410         parseerror(parser, "junk after pragma");
3411         rv = false;
3412     }
3413     parser->lex->flags.preprocessing = false;
3414     parser->lex->flags.mergelines = false;
3415     if (!parser_next(parser)) {
3416         parseerror(parser, "parse error after pragma");
3417         rv = false;
3418     }
3419     return rv;
3420 }
3421
3422 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
3423 {
3424     bool       noref, is_static;
3425     int        cvq     = CV_NONE;
3426     uint32_t   qflags  = 0;
3427     ast_value *typevar = nullptr;
3428     char      *vstring = nullptr;
3429
3430     *out = nullptr;
3431
3432     if (parser->tok == TOKEN_IDENT)
3433         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3434
3435     if (typevar || parser->tok == TOKEN_TYPENAME || parser->tok == '.' || parser->tok == TOKEN_DOTS)
3436     {
3437         /* local variable */
3438         if (!block) {
3439             parseerror(parser, "cannot declare a variable from here");
3440             return false;
3441         }
3442         if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3443             if (parsewarning(parser, WARN_EXTENSIONS, "missing 'local' keyword when declaring a local variable"))
3444                 return false;
3445         }
3446         if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false, 0, nullptr))
3447             return false;
3448         return true;
3449     }
3450     else if (parse_qualifiers(parser, !!block, &cvq, &noref, &is_static, &qflags, &vstring))
3451     {
3452         if (cvq == CV_WRONG)
3453             return false;
3454         return parse_variable(parser, block, false, cvq, nullptr, noref, is_static, qflags, vstring);
3455     }
3456     else if (parser->tok == TOKEN_KEYWORD)
3457     {
3458         if (!strcmp(parser_tokval(parser), "__builtin_debug_printtype"))
3459         {
3460             char ty[1024];
3461             ast_value *tdef;
3462
3463             if (!parser_next(parser)) {
3464                 parseerror(parser, "parse error after __builtin_debug_printtype");
3465                 return false;
3466             }
3467
3468             if (parser->tok == TOKEN_IDENT && (tdef = parser_find_typedef(parser, parser_tokval(parser), 0)))
3469             {
3470                 ast_type_to_string(tdef, ty, sizeof(ty));
3471                 con_out("__builtin_debug_printtype: `%s`=`%s`\n", tdef->m_name.c_str(), ty);
3472                 if (!parser_next(parser)) {
3473                     parseerror(parser, "parse error after __builtin_debug_printtype typename argument");
3474                     return false;
3475                 }
3476             }
3477             else
3478             {
3479                 if (!parse_statement(parser, block, out, allow_cases))
3480                     return false;
3481                 if (!*out)
3482                     con_out("__builtin_debug_printtype: got no output node\n");
3483                 else
3484                 {
3485                     ast_type_to_string(*out, ty, sizeof(ty));
3486                     con_out("__builtin_debug_printtype: `%s`\n", ty);
3487                 }
3488             }
3489             return true;
3490         }
3491         else if (!strcmp(parser_tokval(parser), "return"))
3492         {
3493             return parse_return(parser, block, out);
3494         }
3495         else if (!strcmp(parser_tokval(parser), "if"))
3496         {
3497             return parse_if(parser, block, out);
3498         }
3499         else if (!strcmp(parser_tokval(parser), "while"))
3500         {
3501             return parse_while(parser, block, out);
3502         }
3503         else if (!strcmp(parser_tokval(parser), "do"))
3504         {
3505             return parse_dowhile(parser, block, out);
3506         }
3507         else if (!strcmp(parser_tokval(parser), "for"))
3508         {
3509             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3510                 if (parsewarning(parser, WARN_EXTENSIONS, "for loops are not recognized in the original Quake C standard, to enable try an alternate standard --std=?"))
3511                     return false;
3512             }
3513             return parse_for(parser, block, out);
3514         }
3515         else if (!strcmp(parser_tokval(parser), "break"))
3516         {
3517             return parse_break_continue(parser, block, out, false);
3518         }
3519         else if (!strcmp(parser_tokval(parser), "continue"))
3520         {
3521             return parse_break_continue(parser, block, out, true);
3522         }
3523         else if (!strcmp(parser_tokval(parser), "switch"))
3524         {
3525             return parse_switch(parser, block, out);
3526         }
3527         else if (!strcmp(parser_tokval(parser), "case") ||
3528                  !strcmp(parser_tokval(parser), "default"))
3529         {
3530             if (!allow_cases) {
3531                 parseerror(parser, "unexpected 'case' label");
3532                 return false;
3533             }
3534             return true;
3535         }
3536         else if (!strcmp(parser_tokval(parser), "goto"))
3537         {
3538             return parse_goto(parser, out);
3539         }
3540         else if (!strcmp(parser_tokval(parser), "typedef"))
3541         {
3542             if (!parser_next(parser)) {
3543                 parseerror(parser, "expected type definition after 'typedef'");
3544                 return false;
3545             }
3546             return parse_typedef(parser);
3547         }
3548         parseerror(parser, "Unexpected keyword: `%s'", parser_tokval(parser));
3549         return false;
3550     }
3551     else if (parser->tok == '{')
3552     {
3553         ast_block *inner;
3554         inner = parse_block(parser);
3555         if (!inner)
3556             return false;
3557         *out = inner;
3558         return true;
3559     }
3560     else if (parser->tok == ':')
3561     {
3562         size_t i;
3563         ast_label *label;
3564         if (!parser_next(parser)) {
3565             parseerror(parser, "expected label name");
3566             return false;
3567         }
3568         if (parser->tok != TOKEN_IDENT) {
3569             parseerror(parser, "label must be an identifier");
3570             return false;
3571         }
3572         label = (ast_label*)parser_find_label(parser, parser_tokval(parser));
3573         if (label) {
3574             if (!label->m_undefined) {
3575                 parseerror(parser, "label `%s` already defined", label->m_name);
3576                 return false;
3577             }
3578             label->m_undefined = false;
3579         }
3580         else {
3581             label = new ast_label(parser_ctx(parser), parser_tokval(parser), false);
3582             parser->labels.push_back(label);
3583         }
3584         *out = label;
3585         if (!parser_next(parser)) {
3586             parseerror(parser, "parse error after label");
3587             return false;
3588         }
3589         for (i = 0; i < parser->gotos.size(); ++i) {
3590             if (parser->gotos[i]->m_name == label->m_name) {
3591                 parser->gotos[i]->setLabel(label);
3592                 parser->gotos.erase(parser->gotos.begin() + i);
3593                 --i;
3594             }
3595         }
3596         return true;
3597     }
3598     else if (parser->tok == ';')
3599     {
3600         if (!parser_next(parser)) {
3601             parseerror(parser, "parse error after empty statement");
3602             return false;
3603         }
3604         return true;
3605     }
3606     else
3607     {
3608         lex_ctx_t ctx = parser_ctx(parser);
3609         ast_expression *exp = parse_expression(parser, false, false);
3610         if (!exp)
3611             return false;
3612         *out = exp;
3613         if (!exp->m_side_effects) {
3614             if (compile_warning(ctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
3615                 return false;
3616         }
3617         return true;
3618     }
3619 }
3620
3621 static bool parse_enum(parser_t *parser)
3622 {
3623     bool        flag = false;
3624     bool        reverse = false;
3625     qcfloat_t     num = 0;
3626     ast_value **values = nullptr;
3627     ast_value  *var = nullptr;
3628     ast_value  *asvalue;
3629
3630     ast_expression *old;
3631
3632     if (!parser_next(parser) || (parser->tok != '{' && parser->tok != ':')) {
3633         parseerror(parser, "expected `{` or `:` after `enum` keyword");
3634         return false;
3635     }
3636
3637     /* enumeration attributes (can add more later) */
3638     if (parser->tok == ':') {
3639         if (!parser_next(parser) || parser->tok != TOKEN_IDENT){
3640             parseerror(parser, "expected `flag` or `reverse` for enumeration attribute");
3641             return false;
3642         }
3643
3644         /* attributes? */
3645         if (!strcmp(parser_tokval(parser), "flag")) {
3646             num  = 1;
3647             flag = true;
3648         }
3649         else if (!strcmp(parser_tokval(parser), "reverse")) {
3650             reverse = true;
3651         }
3652         else {
3653             parseerror(parser, "invalid attribute `%s` for enumeration", parser_tokval(parser));
3654             return false;
3655         }
3656
3657         if (!parser_next(parser) || parser->tok != '{') {
3658             parseerror(parser, "expected `{` after enum attribute ");
3659             return false;
3660         }
3661     }
3662
3663     while (true) {
3664         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
3665             if (parser->tok == '}') {
3666                 /* allow an empty enum */
3667                 break;
3668             }
3669             parseerror(parser, "expected identifier or `}`");
3670             goto onerror;
3671         }
3672
3673         old = parser_find_field(parser, parser_tokval(parser));
3674         if (!old)
3675             old = parser_find_global(parser, parser_tokval(parser));
3676         if (old) {
3677             parseerror(parser, "value `%s` has already been declared here: %s:%i",
3678                        parser_tokval(parser), old->m_context.file, old->m_context.line);
3679             goto onerror;
3680         }
3681
3682         var = new ast_value(parser_ctx(parser), parser_tokval(parser), TYPE_FLOAT);
3683         vec_push(values, var);
3684         var->m_cvq             = CV_CONST;
3685         var->m_hasvalue        = true;
3686
3687         /* for flagged enumerations increment in POTs of TWO */
3688         var->m_constval.vfloat = (flag) ? (num *= 2) : (num ++);
3689         parser_addglobal(parser, var->m_name, var);
3690
3691         if (!parser_next(parser)) {
3692             parseerror(parser, "expected `=`, `}` or comma after identifier");
3693             goto onerror;
3694         }
3695
3696         if (parser->tok == ',')
3697             continue;
3698         if (parser->tok == '}')
3699             break;
3700         if (parser->tok != '=') {
3701             parseerror(parser, "expected `=`, `}` or comma after identifier");
3702             goto onerror;
3703         }
3704
3705         if (!parser_next(parser)) {
3706             parseerror(parser, "expected expression after `=`");
3707             goto onerror;
3708         }
3709
3710         /* We got a value! */
3711         old = parse_expression_leave(parser, true, false, false);
3712         asvalue = (ast_value*)old;
3713         if (!ast_istype(old, ast_value) || asvalue->m_cvq != CV_CONST || !asvalue->m_hasvalue) {
3714             compile_error(var->m_context, "constant value or expression expected");
3715             goto onerror;
3716         }
3717         num = (var->m_constval.vfloat = asvalue->m_constval.vfloat) + 1;
3718
3719         if (parser->tok == '}')
3720             break;
3721         if (parser->tok != ',') {
3722             parseerror(parser, "expected `}` or comma after expression");
3723             goto onerror;
3724         }
3725     }
3726
3727     /* patch them all (for reversed attribute) */
3728     if (reverse) {
3729         size_t i;
3730         for (i = 0; i < vec_size(values); i++)
3731             values[i]->m_constval.vfloat = vec_size(values) - i - 1;
3732     }
3733
3734     if (parser->tok != '}') {
3735         parseerror(parser, "internal error: breaking without `}`");
3736         goto onerror;
3737     }
3738
3739     if (!parser_next(parser) || parser->tok != ';') {
3740         parseerror(parser, "expected semicolon after enumeration");
3741         goto onerror;
3742     }
3743
3744     if (!parser_next(parser)) {
3745         parseerror(parser, "parse error after enumeration");
3746         goto onerror;
3747     }
3748
3749     vec_free(values);
3750     return true;
3751
3752 onerror:
3753     vec_free(values);
3754     return false;
3755 }
3756
3757 static bool parse_block_into(parser_t *parser, ast_block *block)
3758 {
3759     bool   retval = true;
3760
3761     parser_enterblock(parser);
3762
3763     if (!parser_next(parser)) { /* skip the '{' */
3764         parseerror(parser, "expected function body");
3765         goto cleanup;
3766     }
3767
3768     while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
3769     {
3770         ast_expression *expr = nullptr;
3771         if (parser->tok == '}')
3772             break;
3773
3774         if (!parse_statement(parser, block, &expr, false)) {
3775             /* parseerror(parser, "parse error"); */
3776             block = nullptr;
3777             goto cleanup;
3778         }
3779         if (!expr)
3780             continue;
3781         if (!block->addExpr(expr)) {
3782             delete block;
3783             block = nullptr;
3784             goto cleanup;
3785         }
3786     }
3787
3788     if (parser->tok != '}') {
3789         block = nullptr;
3790     } else {
3791         (void)parser_next(parser);
3792     }
3793
3794 cleanup:
3795     if (!parser_leaveblock(parser))
3796         retval = false;
3797     return retval && !!block;
3798 }
3799
3800 static ast_block* parse_block(parser_t *parser)
3801 {
3802     ast_block *block;
3803     block = new ast_block(parser_ctx(parser));
3804     if (!block)
3805         return nullptr;
3806     if (!parse_block_into(parser, block)) {
3807         delete block;
3808         return nullptr;
3809     }
3810     return block;
3811 }
3812
3813 static bool parse_statement_or_block(parser_t *parser, ast_expression **out)
3814 {
3815     if (parser->tok == '{') {
3816         *out = parse_block(parser);
3817         return !!*out;
3818     }
3819     return parse_statement(parser, nullptr, out, false);
3820 }
3821
3822 static bool create_vector_members(ast_value *var, ast_member **me)
3823 {
3824     size_t i;
3825     size_t len = var->m_name.length();
3826
3827     for (i = 0; i < 3; ++i) {
3828         char *name = (char*)mem_a(len+3);
3829         memcpy(name, var->m_name.c_str(), len);
3830         name[len+0] = '_';
3831         name[len+1] = 'x'+i;
3832         name[len+2] = 0;
3833         me[i] = ast_member::make(var->m_context, var, i, name);
3834         mem_d(name);
3835         if (!me[i])
3836             break;
3837     }
3838     if (i == 3)
3839         return true;
3840
3841     /* unroll */
3842     do { delete me[--i]; } while(i);
3843     return false;
3844 }
3845
3846 static bool parse_function_body(parser_t *parser, ast_value *var)
3847 {
3848     ast_block *block = nullptr;
3849     ast_function *func;
3850     ast_function *old;
3851
3852     ast_expression *framenum  = nullptr;
3853     ast_expression *nextthink = nullptr;
3854     /* None of the following have to be deleted */
3855     ast_expression *fld_think = nullptr, *fld_nextthink = nullptr, *fld_frame = nullptr;
3856     ast_expression *gbl_time = nullptr, *gbl_self = nullptr;
3857     bool has_frame_think;
3858
3859     bool retval = true;
3860
3861     has_frame_think = false;
3862     old = parser->function;
3863
3864     if (var->m_flags & AST_FLAG_ALIAS) {
3865         parseerror(parser, "function aliases cannot have bodies");
3866         return false;
3867     }
3868
3869     if (parser->gotos.size() || parser->labels.size()) {
3870         parseerror(parser, "gotos/labels leaking");
3871         return false;
3872     }
3873
3874     if (!OPTS_FLAG(VARIADIC_ARGS) && var->m_flags & AST_FLAG_VARIADIC) {
3875         if (parsewarning(parser, WARN_VARIADIC_FUNCTION,
3876                          "variadic function with implementation will not be able to access additional parameters (try -fvariadic-args)"))
3877         {
3878             return false;
3879         }
3880     }
3881
3882     if (parser->tok == '[') {
3883         /* got a frame definition: [ framenum, nextthink ]
3884          * this translates to:
3885          * self.frame = framenum;
3886          * self.nextthink = time + 0.1;
3887          * self.think = nextthink;
3888          */
3889         nextthink = nullptr;
3890
3891         fld_think     = parser_find_field(parser, "think");
3892         fld_nextthink = parser_find_field(parser, "nextthink");
3893         fld_frame     = parser_find_field(parser, "frame");
3894         if (!fld_think || !fld_nextthink || !fld_frame) {
3895             parseerror(parser, "cannot use [frame,think] notation without the required fields");
3896             parseerror(parser, "please declare the following entityfields: `frame`, `think`, `nextthink`");
3897             return false;
3898         }
3899         gbl_time      = parser_find_global(parser, "time");
3900         gbl_self      = parser_find_global(parser, "self");
3901         if (!gbl_time || !gbl_self) {
3902             parseerror(parser, "cannot use [frame,think] notation without the required globals");
3903             parseerror(parser, "please declare the following globals: `time`, `self`");
3904             return false;
3905         }
3906
3907         if (!parser_next(parser))
3908             return false;
3909
3910         framenum = parse_expression_leave(parser, true, false, false);
3911         if (!framenum) {
3912             parseerror(parser, "expected a framenumber constant in[frame,think] notation");
3913             return false;
3914         }
3915         if (!ast_istype(framenum, ast_value) || !( (ast_value*)framenum )->m_hasvalue) {
3916             ast_unref(framenum);
3917             parseerror(parser, "framenumber in [frame,think] notation must be a constant");
3918             return false;
3919         }
3920
3921         if (parser->tok != ',') {
3922             ast_unref(framenum);
3923             parseerror(parser, "expected comma after frame number in [frame,think] notation");
3924             parseerror(parser, "Got a %i\n", parser->tok);
3925             return false;
3926         }
3927
3928         if (!parser_next(parser)) {
3929             ast_unref(framenum);
3930             return false;
3931         }
3932
3933         if (parser->tok == TOKEN_IDENT && !parser_find_var(parser, parser_tokval(parser)))
3934         {
3935             /* qc allows the use of not-yet-declared functions here
3936              * - this automatically creates a prototype */
3937             ast_value      *thinkfunc;
3938             ast_expression *functype = fld_think->m_next;
3939
3940             thinkfunc = new ast_value(parser_ctx(parser), parser_tokval(parser), functype->m_vtype);
3941             if (!thinkfunc) { /* || !thinkfunc->adoptType(*functype)*/
3942                 ast_unref(framenum);
3943                 parseerror(parser, "failed to create implicit prototype for `%s`", parser_tokval(parser));
3944                 return false;
3945             }
3946             thinkfunc->adoptType(*functype);
3947
3948             if (!parser_next(parser)) {
3949                 ast_unref(framenum);
3950                 delete thinkfunc;
3951                 return false;
3952             }
3953
3954             parser_addglobal(parser, thinkfunc->m_name, thinkfunc);
3955
3956             nextthink = thinkfunc;
3957
3958         } else {
3959             nextthink = parse_expression_leave(parser, true, false, false);
3960             if (!nextthink) {
3961                 ast_unref(framenum);
3962                 parseerror(parser, "expected a think-function in [frame,think] notation");
3963                 return false;
3964             }
3965         }
3966
3967         if (!ast_istype(nextthink, ast_value)) {
3968             parseerror(parser, "think-function in [frame,think] notation must be a constant");
3969             retval = false;
3970         }
3971
3972         if (retval && parser->tok != ']') {
3973             parseerror(parser, "expected closing `]` for [frame,think] notation");
3974             retval = false;
3975         }
3976
3977         if (retval && !parser_next(parser)) {
3978             retval = false;
3979         }
3980
3981         if (retval && parser->tok != '{') {
3982             parseerror(parser, "a function body has to be declared after a [frame,think] declaration");
3983             retval = false;
3984         }
3985
3986         if (!retval) {
3987             ast_unref(nextthink);
3988             ast_unref(framenum);
3989             return false;
3990         }
3991
3992         has_frame_think = true;
3993     }
3994
3995     block = new ast_block(parser_ctx(parser));
3996     if (!block) {
3997         parseerror(parser, "failed to allocate block");
3998         if (has_frame_think) {
3999             ast_unref(nextthink);
4000             ast_unref(framenum);
4001         }
4002         return false;
4003     }
4004
4005     if (has_frame_think) {
4006         if (!OPTS_FLAG(EMULATE_STATE)) {
4007             ast_state *state_op = new ast_state(parser_ctx(parser), framenum, nextthink);
4008             if (!block->addExpr(state_op)) {
4009                 parseerror(parser, "failed to generate state op for [frame,think]");
4010                 ast_unref(nextthink);
4011                 ast_unref(framenum);
4012                 delete block;
4013                 return false;
4014             }
4015         } else {
4016             /* emulate OP_STATE in code: */
4017             lex_ctx_t ctx;
4018             ast_expression *self_frame;
4019             ast_expression *self_nextthink;
4020             ast_expression *self_think;
4021             ast_expression *time_plus_1;
4022             ast_store *store_frame;
4023             ast_store *store_nextthink;
4024             ast_store *store_think;
4025
4026             float frame_delta = 1.0f / (float)OPTS_OPTION_U32(OPTION_STATE_FPS);
4027
4028             ctx = parser_ctx(parser);
4029             self_frame     = new ast_entfield(ctx, gbl_self, fld_frame);
4030             self_nextthink = new ast_entfield(ctx, gbl_self, fld_nextthink);
4031             self_think     = new ast_entfield(ctx, gbl_self, fld_think);
4032
4033             time_plus_1    = new ast_binary(ctx, INSTR_ADD_F,
4034                              gbl_time, parser->m_fold.constgen_float(frame_delta, false));
4035
4036             if (!self_frame || !self_nextthink || !self_think || !time_plus_1) {
4037                 if (self_frame)     delete self_frame;
4038                 if (self_nextthink) delete self_nextthink;
4039                 if (self_think)     delete self_think;
4040                 if (time_plus_1)    delete time_plus_1;
4041                 retval = false;
4042             }
4043
4044             if (retval)
4045             {
4046                 store_frame     = new ast_store(ctx, INSTR_STOREP_F,   self_frame,     framenum);
4047                 store_nextthink = new ast_store(ctx, INSTR_STOREP_F,   self_nextthink, time_plus_1);
4048                 store_think     = new ast_store(ctx, INSTR_STOREP_FNC, self_think,     nextthink);
4049
4050                 if (!store_frame) {
4051                     delete self_frame;
4052                     retval = false;
4053                 }
4054                 if (!store_nextthink) {
4055                     delete self_nextthink;
4056                     retval = false;
4057                 }
4058                 if (!store_think) {
4059                     delete self_think;
4060                     retval = false;
4061                 }
4062                 if (!retval) {
4063                     if (store_frame)     delete store_frame;
4064                     if (store_nextthink) delete store_nextthink;
4065                     if (store_think)     delete store_think;
4066                     retval = false;
4067                 }
4068                 if (!block->addExpr(store_frame) ||
4069                     !block->addExpr(store_nextthink) ||
4070                     !block->addExpr(store_think))
4071                 {
4072                     retval = false;
4073                 }
4074             }
4075
4076             if (!retval) {
4077                 parseerror(parser, "failed to generate code for [frame,think]");
4078                 ast_unref(nextthink);
4079                 ast_unref(framenum);
4080                 delete block;
4081                 return false;
4082             }
4083         }
4084     }
4085
4086     if (var->m_hasvalue) {
4087         if (!(var->m_flags & AST_FLAG_ACCUMULATE)) {
4088             parseerror(parser, "function `%s` declared with multiple bodies", var->m_name);
4089             delete block;
4090             goto enderr;
4091         }
4092         func = var->m_constval.vfunc;
4093
4094         if (!func) {
4095             parseerror(parser, "internal error: nullptr function: `%s`", var->m_name);
4096             delete block;
4097             goto enderr;
4098         }
4099     } else {
4100         func = ast_function::make(var->m_context, var->m_name, var);
4101
4102         if (!func) {
4103             parseerror(parser, "failed to allocate function for `%s`", var->m_name);
4104             delete block;
4105             goto enderr;
4106         }
4107         parser->functions.push_back(func);
4108     }
4109
4110     parser_enterblock(parser);
4111
4112     for (auto &it : var->m_type_params) {
4113         size_t e;
4114         ast_member *me[3];
4115
4116         if (it->m_vtype != TYPE_VECTOR &&
4117             (it->m_vtype != TYPE_FIELD ||
4118              it->m_next->m_vtype != TYPE_VECTOR))
4119         {
4120             continue;
4121         }
4122
4123         if (!create_vector_members(it.get(), me)) {
4124             delete block;
4125             goto enderrfn;
4126         }
4127
4128         for (e = 0; e < 3; ++e) {
4129             parser_addlocal(parser, me[e]->m_name, me[e]);
4130             block->collect(me[e]);
4131         }
4132     }
4133
4134     if (var->m_argcounter && !func->m_argc) {
4135         ast_value *argc = new ast_value(var->m_context, var->m_argcounter, TYPE_FLOAT);
4136         parser_addlocal(parser, argc->m_name, argc);
4137         func->m_argc.reset(argc);
4138     }
4139
4140     if (OPTS_FLAG(VARIADIC_ARGS) && var->m_flags & AST_FLAG_VARIADIC && !func->m_varargs) {
4141         char name[1024];
4142         ast_value *varargs = new ast_value(var->m_context, "reserved:va_args", TYPE_ARRAY);
4143         varargs->m_flags |= AST_FLAG_IS_VARARG;
4144         varargs->m_next = new ast_value(var->m_context, "", TYPE_VECTOR);
4145         varargs->m_count = 0;
4146         util_snprintf(name, sizeof(name), "%s##va##SET", var->m_name.c_str());
4147         if (!parser_create_array_setter_proto(parser, varargs, name)) {
4148             delete varargs;
4149             delete block;
4150             goto enderrfn;
4151         }
4152         util_snprintf(name, sizeof(name), "%s##va##GET", var->m_name.c_str());
4153         if (!parser_create_array_getter_proto(parser, varargs, varargs->m_next, name)) {
4154             delete varargs;
4155             delete block;
4156             goto enderrfn;
4157         }
4158         func->m_varargs.reset(varargs);
4159         func->m_fixedparams = (ast_value*)parser->m_fold.constgen_float(var->m_type_params.size(), false);
4160     }
4161
4162     parser->function = func;
4163     if (!parse_block_into(parser, block)) {
4164         delete block;
4165         goto enderrfn;
4166     }
4167
4168     func->m_blocks.emplace_back(block);
4169
4170     parser->function = old;
4171     if (!parser_leaveblock(parser))
4172         retval = false;
4173     if (vec_size(parser->variables) != PARSER_HT_LOCALS) {
4174         parseerror(parser, "internal error: local scopes left");
4175         retval = false;
4176     }
4177
4178     if (parser->tok == ';')
4179         return parser_next(parser);
4180     else if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
4181         parseerror(parser, "missing semicolon after function body (mandatory with -std=qcc)");
4182     return retval;
4183
4184 enderrfn:
4185     (void)!parser_leaveblock(parser);
4186     parser->functions.pop_back();
4187     delete func;
4188     var->m_constval.vfunc = nullptr;
4189
4190 enderr:
4191     parser->function = old;
4192     return false;
4193 }
4194
4195 static ast_expression *array_accessor_split(
4196     parser_t  *parser,
4197     ast_value *array,
4198     ast_value *index,
4199     size_t     middle,
4200     ast_expression *left,
4201     ast_expression *right
4202     )
4203 {
4204     ast_ifthen *ifthen;
4205     ast_binary *cmp;
4206
4207     lex_ctx_t ctx = array->m_context;
4208
4209     if (!left || !right) {
4210         if (left)  delete left;
4211         if (right) delete right;
4212         return nullptr;
4213     }
4214
4215     cmp = new ast_binary(ctx, INSTR_LT,
4216                          index,
4217                          parser->m_fold.constgen_float(middle, false));
4218     if (!cmp) {
4219         delete left;
4220         delete right;
4221         parseerror(parser, "internal error: failed to create comparison for array setter");
4222         return nullptr;
4223     }
4224
4225     ifthen = new ast_ifthen(ctx, cmp, left, right);
4226     if (!ifthen) {
4227         delete cmp; /* will delete left and right */
4228         parseerror(parser, "internal error: failed to create conditional jump for array setter");
4229         return nullptr;
4230     }
4231
4232     return ifthen;
4233 }
4234
4235 static ast_expression *array_setter_node(parser_t *parser, ast_value *array, ast_value *index, ast_value *value, size_t from, size_t afterend)
4236 {
4237     lex_ctx_t ctx = array->m_context;
4238
4239     if (from+1 == afterend) {
4240         /* set this value */
4241         ast_block       *block;
4242         ast_return      *ret;
4243         ast_array_index *subscript;
4244         ast_store       *st;
4245         int assignop = type_store_instr[value->m_vtype];
4246
4247         if (value->m_vtype == TYPE_FIELD && value->m_next->m_vtype == TYPE_VECTOR)
4248             assignop = INSTR_STORE_V;
4249
4250         subscript = ast_array_index::make(ctx, array, parser->m_fold.constgen_float(from, false));
4251         if (!subscript)
4252             return nullptr;
4253
4254         st = new ast_store(ctx, assignop, subscript, value);
4255         if (!st) {
4256             delete subscript;
4257             return nullptr;
4258         }
4259
4260         block = new ast_block(ctx);
4261         if (!block) {
4262             delete st;
4263             return nullptr;
4264         }
4265
4266         if (!block->addExpr(st)) {
4267             delete block;
4268             return nullptr;
4269         }
4270
4271         ret = new ast_return(ctx, nullptr);
4272         if (!ret) {
4273             delete block;
4274             return nullptr;
4275         }
4276
4277         if (!block->addExpr(ret)) {
4278             delete block;
4279             return nullptr;
4280         }
4281
4282         return block;
4283     } else {
4284         ast_expression *left, *right;
4285         size_t diff = afterend - from;
4286         size_t middle = from + diff/2;
4287         left  = array_setter_node(parser, array, index, value, from, middle);
4288         right = array_setter_node(parser, array, index, value, middle, afterend);
4289         return array_accessor_split(parser, array, index, middle, left, right);
4290     }
4291 }
4292
4293 static ast_expression *array_field_setter_node(
4294     parser_t  *parser,
4295     ast_value *array,
4296     ast_value *entity,
4297     ast_value *index,
4298     ast_value *value,
4299     size_t     from,
4300     size_t     afterend)
4301 {
4302     lex_ctx_t ctx = array->m_context;
4303
4304     if (from+1 == afterend) {
4305         /* set this value */
4306         ast_block       *block;
4307         ast_return      *ret;
4308         ast_entfield    *entfield;
4309         ast_array_index *subscript;
4310         ast_store       *st;
4311         int assignop = type_storep_instr[value->m_vtype];
4312
4313         if (value->m_vtype == TYPE_FIELD && value->m_next->m_vtype == TYPE_VECTOR)
4314             assignop = INSTR_STOREP_V;
4315
4316         subscript = ast_array_index::make(ctx, array, parser->m_fold.constgen_float(from, false));
4317         if (!subscript)
4318             return nullptr;
4319
4320         subscript->m_next = new ast_expression(ast_copy_type, subscript->m_context, *subscript);
4321         subscript->m_vtype = TYPE_FIELD;
4322
4323         entfield = new ast_entfield(ctx, entity, subscript, subscript);
4324         if (!entfield) {
4325             delete subscript;
4326             return nullptr;
4327         }
4328
4329         st = new ast_store(ctx, assignop, entfield, value);
4330         if (!st) {
4331             delete entfield;
4332             return nullptr;
4333         }
4334
4335         block = new ast_block(ctx);
4336         if (!block) {
4337             delete st;
4338             return nullptr;
4339         }
4340
4341         if (!block->addExpr(st)) {
4342             delete block;
4343             return nullptr;
4344         }
4345
4346         ret = new ast_return(ctx, nullptr);
4347         if (!ret) {
4348             delete block;
4349             return nullptr;
4350         }
4351
4352         if (!block->addExpr(ret)) {
4353             delete block;
4354             return nullptr;
4355         }
4356
4357         return block;
4358     } else {
4359         ast_expression *left, *right;
4360         size_t diff = afterend - from;
4361         size_t middle = from + diff/2;
4362         left  = array_field_setter_node(parser, array, entity, index, value, from, middle);
4363         right = array_field_setter_node(parser, array, entity, index, value, middle, afterend);
4364         return array_accessor_split(parser, array, index, middle, left, right);
4365     }
4366 }
4367
4368 static ast_expression *array_getter_node(parser_t *parser, ast_value *array, ast_value *index, size_t from, size_t afterend)
4369 {
4370     lex_ctx_t ctx = array->m_context;
4371
4372     if (from+1 == afterend) {
4373         ast_return      *ret;
4374         ast_array_index *subscript;
4375
4376         subscript = ast_array_index::make(ctx, array, parser->m_fold.constgen_float(from, false));
4377         if (!subscript)
4378             return nullptr;
4379
4380         ret = new ast_return(ctx, subscript);
4381         if (!ret) {
4382             delete subscript;
4383             return nullptr;
4384         }
4385
4386         return ret;
4387     } else {
4388         ast_expression *left, *right;
4389         size_t diff = afterend - from;
4390         size_t middle = from + diff/2;
4391         left  = array_getter_node(parser, array, index, from, middle);
4392         right = array_getter_node(parser, array, index, middle, afterend);
4393         return array_accessor_split(parser, array, index, middle, left, right);
4394     }
4395 }
4396
4397 static bool parser_create_array_accessor(parser_t *parser, ast_value *array, const char *funcname, ast_value **out)
4398 {
4399     ast_function   *func = nullptr;
4400     ast_value      *fval = nullptr;
4401     ast_block      *body = nullptr;
4402
4403     fval = new ast_value(array->m_context, funcname, TYPE_FUNCTION);
4404     if (!fval) {
4405         parseerror(parser, "failed to create accessor function value");
4406         return false;
4407     }
4408     fval->m_flags &= ~(AST_FLAG_COVERAGE_MASK);
4409
4410     func = ast_function::make(array->m_context, funcname, fval);
4411     if (!func) {
4412         delete fval;
4413         parseerror(parser, "failed to create accessor function node");
4414         return false;
4415     }
4416
4417     body = new ast_block(array->m_context);
4418     if (!body) {
4419         parseerror(parser, "failed to create block for array accessor");
4420         delete fval;
4421         delete func;
4422         return false;
4423     }
4424
4425     func->m_blocks.emplace_back(body);
4426     *out = fval;
4427
4428     parser->accessors.push_back(fval);
4429
4430     return true;
4431 }
4432
4433 static ast_value* parser_create_array_setter_proto(parser_t *parser, ast_value *array, const char *funcname)
4434 {
4435     ast_value      *index = nullptr;
4436     ast_value      *value = nullptr;
4437     ast_function   *func;
4438     ast_value      *fval;
4439
4440     if (!ast_istype(array->m_next, ast_value)) {
4441         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4442         return nullptr;
4443     }
4444
4445     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4446         return nullptr;
4447     func = fval->m_constval.vfunc;
4448     fval->m_next = new ast_value(array->m_context, "<void>", TYPE_VOID);
4449
4450     index = new ast_value(array->m_context, "index", TYPE_FLOAT);
4451     value = new ast_value(ast_copy_type, *(ast_value*)array->m_next);
4452
4453     if (!index || !value) {
4454         parseerror(parser, "failed to create locals for array accessor");
4455         goto cleanup;
4456     }
4457     value->m_name = "value"; // not important
4458     fval->m_type_params.emplace_back(index);
4459     fval->m_type_params.emplace_back(value);
4460
4461     array->m_setter = fval;
4462     return fval;
4463 cleanup:
4464     if (index) delete index;
4465     if (value) delete value;
4466     delete func;
4467     delete fval;
4468     return nullptr;
4469 }
4470
4471 static bool parser_create_array_setter_impl(parser_t *parser, ast_value *array)
4472 {
4473     ast_expression *root = nullptr;
4474     root = array_setter_node(parser, array,
4475                              array->m_setter->m_type_params[0].get(),
4476                              array->m_setter->m_type_params[1].get(),
4477                              0, array->m_count);
4478     if (!root) {
4479         parseerror(parser, "failed to build accessor search tree");
4480         return false;
4481     }
4482     if (!array->m_setter->m_constval.vfunc->m_blocks[0].get()->addExpr(root)) {
4483         delete root;
4484         return false;
4485     }
4486     return true;
4487 }
4488
4489 static bool parser_create_array_setter(parser_t *parser, ast_value *array, const char *funcname)
4490 {
4491     if (!parser_create_array_setter_proto(parser, array, funcname))
4492         return false;
4493     return parser_create_array_setter_impl(parser, array);
4494 }
4495
4496 static bool parser_create_array_field_setter(parser_t *parser, ast_value *array, const char *funcname)
4497 {
4498     ast_expression *root = nullptr;
4499     ast_value      *entity = nullptr;
4500     ast_value      *index = nullptr;
4501     ast_value      *value = nullptr;
4502     ast_function   *func;
4503     ast_value      *fval;
4504
4505     if (!ast_istype(array->m_next, ast_value)) {
4506         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4507         return false;
4508     }
4509
4510     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4511         return false;
4512     func = fval->m_constval.vfunc;
4513     fval->m_next = new ast_value(array->m_context, "<void>", TYPE_VOID);
4514
4515     entity = new ast_value(array->m_context, "entity", TYPE_ENTITY);
4516     index  = new ast_value(array->m_context, "index",  TYPE_FLOAT);
4517     value  = new ast_value(ast_copy_type, *(ast_value*)array->m_next);
4518     if (!entity || !index || !value) {
4519         parseerror(parser, "failed to create locals for array accessor");
4520         goto cleanup;
4521     }
4522     value->m_name = "value"; // not important
4523     fval->m_type_params.emplace_back(entity);
4524     fval->m_type_params.emplace_back(index);
4525     fval->m_type_params.emplace_back(value);
4526
4527     root = array_field_setter_node(parser, array, entity, index, value, 0, array->m_count);
4528     if (!root) {
4529         parseerror(parser, "failed to build accessor search tree");
4530         goto cleanup;
4531     }
4532
4533     array->m_setter = fval;
4534     return func->m_blocks[0].get()->addExpr(root);
4535 cleanup:
4536     if (entity) delete entity;
4537     if (index)  delete index;
4538     if (value)  delete value;
4539     if (root)   delete root;
4540     delete func;
4541     delete fval;
4542     return false;
4543 }
4544
4545 static ast_value* parser_create_array_getter_proto(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
4546 {
4547     ast_value      *index = nullptr;
4548     ast_value      *fval;
4549     ast_function   *func;
4550
4551     /* NOTE: checking array->m_next rather than elemtype since
4552      * for fields elemtype is a temporary fieldtype.
4553      */
4554     if (!ast_istype(array->m_next, ast_value)) {
4555         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4556         return nullptr;
4557     }
4558
4559     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4560         return nullptr;
4561     func = fval->m_constval.vfunc;
4562     fval->m_next = new ast_expression(ast_copy_type, array->m_context, *elemtype);
4563
4564     index = new ast_value(array->m_context, "index", TYPE_FLOAT);
4565
4566     if (!index) {
4567         parseerror(parser, "failed to create locals for array accessor");
4568         goto cleanup;
4569     }
4570     fval->m_type_params.emplace_back(index);
4571
4572     array->m_getter = fval;
4573     return fval;
4574 cleanup:
4575     if (index) delete index;
4576     delete func;
4577     delete fval;
4578     return nullptr;
4579 }
4580
4581 static bool parser_create_array_getter_impl(parser_t *parser, ast_value *array)
4582 {
4583     ast_expression *root = nullptr;
4584
4585     root = array_getter_node(parser, array, array->m_getter->m_type_params[0].get(), 0, array->m_count);
4586     if (!root) {
4587         parseerror(parser, "failed to build accessor search tree");
4588         return false;
4589     }
4590     if (!array->m_getter->m_constval.vfunc->m_blocks[0].get()->addExpr(root)) {
4591         delete root;
4592         return false;
4593     }
4594     return true;
4595 }
4596
4597 static bool parser_create_array_getter(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
4598 {
4599     if (!parser_create_array_getter_proto(parser, array, elemtype, funcname))
4600         return false;
4601     return parser_create_array_getter_impl(parser, array);
4602 }
4603
4604 static ast_value *parse_parameter_list(parser_t *parser, ast_value *var)
4605 {
4606     lex_ctx_t ctx = parser_ctx(parser);
4607     std::vector<std::unique_ptr<ast_value>> params;
4608     ast_value *fval;
4609     bool first = true;
4610     bool variadic = false;
4611     ast_value *varparam = nullptr;
4612     char *argcounter = nullptr;
4613
4614     /* for the sake of less code we parse-in in this function */
4615     if (!parser_next(parser)) {
4616         delete var;
4617         parseerror(parser, "expected parameter list");
4618         return nullptr;
4619     }
4620
4621     /* parse variables until we hit a closing paren */
4622     while (parser->tok != ')') {
4623         bool is_varargs = false;
4624
4625         if (!first) {
4626             /* there must be commas between them */
4627             if (parser->tok != ',') {
4628                 parseerror(parser, "expected comma or end of parameter list");
4629                 goto on_error;
4630             }
4631             if (!parser_next(parser)) {
4632                 parseerror(parser, "expected parameter");
4633                 goto on_error;
4634             }
4635         }
4636         first = false;
4637
4638         ast_value *param = parse_typename(parser, nullptr, nullptr, &is_varargs);
4639         if (!param && !is_varargs)
4640             goto on_error;
4641         if (is_varargs) {
4642             /* '...' indicates a varargs function */
4643             variadic = true;
4644             if (parser->tok != ')' && parser->tok != TOKEN_IDENT) {
4645                 parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4646                 goto on_error;
4647             }
4648             if (parser->tok == TOKEN_IDENT) {
4649                 argcounter = util_strdup(parser_tokval(parser));
4650                 if (!parser_next(parser) || parser->tok != ')') {
4651                     parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4652                     goto on_error;
4653                 }
4654             }
4655         } else {
4656             params.emplace_back(param);
4657             if (param->m_vtype >= TYPE_VARIANT) {
4658                 char tname[1024]; /* typename is reserved in C++ */
4659                 ast_type_to_string(param, tname, sizeof(tname));
4660                 parseerror(parser, "type not supported as part of a parameter list: %s", tname);
4661                 goto on_error;
4662             }
4663             /* type-restricted varargs */
4664             if (parser->tok == TOKEN_DOTS) {
4665                 variadic = true;
4666                 varparam = params.back().release();
4667                 params.pop_back();
4668                 if (!parser_next(parser) || (parser->tok != ')' && parser->tok != TOKEN_IDENT)) {
4669                     parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4670                     goto on_error;
4671                 }
4672                 if (parser->tok == TOKEN_IDENT) {
4673                     argcounter = util_strdup(parser_tokval(parser));
4674                     param->m_name = argcounter;
4675                     if (!parser_next(parser) || parser->tok != ')') {
4676                         parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4677                         goto on_error;
4678                     }
4679                 }
4680             }
4681             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_FTEQCC && param->m_name[0] == '<') {
4682                 parseerror(parser, "parameter name omitted");
4683                 goto on_error;
4684             }
4685         }
4686     }
4687
4688     if (params.size() == 1 && params[0]->m_vtype == TYPE_VOID)
4689         params.clear();
4690
4691     /* sanity check */
4692     if (params.size() > 8 && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
4693         (void)!parsewarning(parser, WARN_EXTENSIONS, "more than 8 parameters are not supported by this standard");
4694
4695     /* parse-out */
4696     if (!parser_next(parser)) {
4697         parseerror(parser, "parse error after typename");
4698         goto on_error;
4699     }
4700
4701     /* now turn 'var' into a function type */
4702     fval = new ast_value(ctx, "<type()>", TYPE_FUNCTION);
4703     fval->m_next = var;
4704     if (variadic)
4705         fval->m_flags |= AST_FLAG_VARIADIC;
4706     var = fval;
4707
4708     var->m_type_params = move(params);
4709     var->m_varparam = varparam;
4710     var->m_argcounter = argcounter;
4711
4712     return var;
4713
4714 on_error:
4715     if (argcounter)
4716         mem_d(argcounter);
4717     if (varparam)
4718         delete varparam;
4719     delete var;
4720     return nullptr;
4721 }
4722
4723 static ast_value *parse_arraysize(parser_t *parser, ast_value *var)
4724 {
4725     ast_expression *cexp;
4726     ast_value      *cval, *tmp;
4727     lex_ctx_t ctx;
4728
4729     ctx = parser_ctx(parser);
4730
4731     if (!parser_next(parser)) {
4732         delete var;
4733         parseerror(parser, "expected array-size");
4734         return nullptr;
4735     }
4736
4737     if (parser->tok != ']') {
4738         cexp = parse_expression_leave(parser, true, false, false);
4739
4740         if (!cexp || !ast_istype(cexp, ast_value)) {
4741             if (cexp)
4742                 ast_unref(cexp);
4743             delete var;
4744             parseerror(parser, "expected array-size as constant positive integer");
4745             return nullptr;
4746         }
4747         cval = (ast_value*)cexp;
4748     }
4749     else {
4750         cexp = nullptr;
4751         cval = nullptr;
4752     }
4753
4754     tmp = new ast_value(ctx, "<type[]>", TYPE_ARRAY);
4755     tmp->m_next = var;
4756     var = tmp;
4757
4758     if (cval) {
4759         if (cval->m_vtype == TYPE_INTEGER)
4760             tmp->m_count = cval->m_constval.vint;
4761         else if (cval->m_vtype == TYPE_FLOAT)
4762             tmp->m_count = cval->m_constval.vfloat;
4763         else {
4764             ast_unref(cexp);
4765             delete var;
4766             parseerror(parser, "array-size must be a positive integer constant");
4767             return nullptr;
4768         }
4769
4770         ast_unref(cexp);
4771     } else {
4772         var->m_count = -1;
4773         var->m_flags |= AST_FLAG_ARRAY_INIT;
4774     }
4775
4776     if (parser->tok != ']') {
4777         delete var;
4778         parseerror(parser, "expected ']' after array-size");
4779         return nullptr;
4780     }
4781     if (!parser_next(parser)) {
4782         delete var;
4783         parseerror(parser, "error after parsing array size");
4784         return nullptr;
4785     }
4786     return var;
4787 }
4788
4789 /* Parse a complete typename.
4790  * for single-variables (ie. function parameters or typedefs) storebase should be nullptr
4791  * but when parsing variables separated by comma
4792  * 'storebase' should point to where the base-type should be kept.
4793  * The base type makes up every bit of type information which comes *before* the
4794  * variable name.
4795  *
4796  * NOTE: The value must either be named, have a nullptr name, or a name starting
4797  *       with '<'. In the first case, this will be the actual variable or type
4798  *       name, in the other cases it is assumed that the name will appear
4799  *       later, and an error is generated otherwise.
4800  *
4801  * The following will be parsed in its entirety:
4802  *     void() foo()
4803  * The 'basetype' in this case is 'void()'
4804  * and if there's a comma after it, say:
4805  *     void() foo(), bar
4806  * then the type-information 'void()' can be stored in 'storebase'
4807  */
4808 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef, bool *is_vararg)
4809 {
4810     ast_value *var, *tmp;
4811     lex_ctx_t    ctx;
4812
4813     const char *name = nullptr;
4814     bool        isfield  = false;
4815     bool        wasarray = false;
4816     size_t      morefields = 0;
4817
4818     bool        vararg = (parser->tok == TOKEN_DOTS);
4819
4820     ctx = parser_ctx(parser);
4821
4822     /* types may start with a dot */
4823     if (parser->tok == '.' || parser->tok == TOKEN_DOTS) {
4824         isfield = true;
4825         if (parser->tok == TOKEN_DOTS)
4826             morefields += 2;
4827         /* if we parsed a dot we need a typename now */
4828         if (!parser_next(parser)) {
4829             parseerror(parser, "expected typename for field definition");
4830             return nullptr;
4831         }
4832
4833         /* Further dots are handled seperately because they won't be part of the
4834          * basetype
4835          */
4836         while (true) {
4837             if (parser->tok == '.')
4838                 ++morefields;
4839             else if (parser->tok == TOKEN_DOTS)
4840                 morefields += 3;
4841             else
4842                 break;
4843             vararg = false;
4844             if (!parser_next(parser)) {
4845                 parseerror(parser, "expected typename for field definition");
4846                 return nullptr;
4847             }
4848         }
4849     }
4850     if (parser->tok == TOKEN_IDENT)
4851         cached_typedef = parser_find_typedef(parser, parser_tokval(parser), 0);
4852     if (!cached_typedef && parser->tok != TOKEN_TYPENAME) {
4853         if (vararg && is_vararg) {
4854             *is_vararg = true;
4855             return nullptr;
4856         }
4857         parseerror(parser, "expected typename");
4858         return nullptr;
4859     }
4860
4861     /* generate the basic type value */
4862     if (cached_typedef) {
4863         var = new ast_value(ast_copy_type, *cached_typedef);
4864         var->m_name = "<type(from_def)>";
4865     } else
4866         var = new ast_value(ctx, "<type>", parser_token(parser)->constval.t);
4867
4868     for (; morefields; --morefields) {
4869         tmp = new ast_value(ctx, "<.type>", TYPE_FIELD);
4870         tmp->m_next = var;
4871         var = tmp;
4872     }
4873
4874     /* do not yet turn into a field - remember:
4875      * .void() foo; is a field too
4876      * .void()() foo; is a function
4877      */
4878
4879     /* parse on */
4880     if (!parser_next(parser)) {
4881         delete var;
4882         parseerror(parser, "parse error after typename");
4883         return nullptr;
4884     }
4885
4886     /* an opening paren now starts the parameter-list of a function
4887      * this is where original-QC has parameter lists.
4888      * We allow a single parameter list here.
4889      * Much like fteqcc we don't allow `float()() x`
4890      */
4891     if (parser->tok == '(') {
4892         var = parse_parameter_list(parser, var);
4893         if (!var)
4894             return nullptr;
4895     }
4896
4897     /* store the base if requested */
4898     if (storebase) {
4899         *storebase = new ast_value(ast_copy_type, *var);
4900         if (isfield) {
4901             tmp = new ast_value(ctx, "<type:f>", TYPE_FIELD);
4902             tmp->m_next = *storebase;
4903             *storebase = tmp;
4904         }
4905     }
4906
4907     /* there may be a name now */
4908     if (parser->tok == TOKEN_IDENT || parser->tok == TOKEN_KEYWORD) {
4909         if (!strcmp(parser_tokval(parser), "break"))
4910             (void)!parsewarning(parser, WARN_BREAKDEF, "break definition ignored (suggest removing it)");
4911         else if (parser->tok == TOKEN_KEYWORD)
4912             goto leave;
4913
4914         name = util_strdup(parser_tokval(parser));
4915
4916         /* parse on */
4917         if (!parser_next(parser)) {
4918             delete var;
4919             mem_d(name);
4920             parseerror(parser, "error after variable or field declaration");
4921             return nullptr;
4922         }
4923     }
4924
4925     leave:
4926     /* now this may be an array */
4927     if (parser->tok == '[') {
4928         wasarray = true;
4929         var = parse_arraysize(parser, var);
4930         if (!var) {
4931             if (name) mem_d(name);
4932             return nullptr;
4933         }
4934     }
4935
4936     /* This is the point where we can turn it into a field */
4937     if (isfield) {
4938         /* turn it into a field if desired */
4939         tmp = new ast_value(ctx, "<type:f>", TYPE_FIELD);
4940         tmp->m_next = var;
4941         var = tmp;
4942     }
4943
4944     /* now there may be function parens again */
4945     if (parser->tok == '(' && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
4946         parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
4947     if (parser->tok == '(' && wasarray)
4948         parseerror(parser, "arrays as part of a return type is not supported");
4949     while (parser->tok == '(') {
4950         var = parse_parameter_list(parser, var);
4951         if (!var) {
4952             if (name) mem_d(name);
4953             return nullptr;
4954         }
4955     }
4956
4957     /* finally name it */
4958     if (name) {
4959         var->m_name = name;
4960         // free the name, ast_value_set_name duplicates
4961         mem_d(name);
4962     }
4963
4964     return var;
4965 }
4966
4967 static bool parse_typedef(parser_t *parser)
4968 {
4969     ast_value      *typevar, *oldtype;
4970     ast_expression *old;
4971
4972     typevar = parse_typename(parser, nullptr, nullptr, nullptr);
4973
4974     if (!typevar)
4975         return false;
4976
4977     // while parsing types, the ast_value's get named '<something>'
4978     if (!typevar->m_name.length() || typevar->m_name[0] == '<') {
4979         parseerror(parser, "missing name in typedef");
4980         delete typevar;
4981         return false;
4982     }
4983
4984     if ( (old = parser_find_var(parser, typevar->m_name)) ) {
4985         parseerror(parser, "cannot define a type with the same name as a variable: %s\n"
4986                    " -> `%s` has been declared here: %s:%i",
4987                    typevar->m_name, old->m_context.file, old->m_context.line);
4988         delete typevar;
4989         return false;
4990     }
4991
4992     if ( (oldtype = parser_find_typedef(parser, typevar->m_name, vec_last(parser->_blocktypedefs))) ) {
4993         parseerror(parser, "type `%s` has already been declared here: %s:%i",
4994                    typevar->m_name, oldtype->m_context.file, oldtype->m_context.line);
4995         delete typevar;
4996         return false;
4997     }
4998
4999     vec_push(parser->_typedefs, typevar);
5000     util_htset(vec_last(parser->typedefs), typevar->m_name.c_str(), typevar);
5001
5002     if (parser->tok != ';') {
5003         parseerror(parser, "expected semicolon after typedef");
5004         return false;
5005     }
5006     if (!parser_next(parser)) {
5007         parseerror(parser, "parse error after typedef");
5008         return false;
5009     }
5010
5011     return true;
5012 }
5013
5014 static const char *cvq_to_str(int cvq) {
5015     switch (cvq) {
5016         case CV_NONE:  return "none";
5017         case CV_VAR:   return "`var`";
5018         case CV_CONST: return "`const`";
5019         default:       return "<INVALID>";
5020     }
5021 }
5022
5023 static bool parser_check_qualifiers(parser_t *parser, const ast_value *var, const ast_value *proto)
5024 {
5025     bool av, ao;
5026     if (proto->m_cvq != var->m_cvq) {
5027         if (!(proto->m_cvq == CV_CONST && var->m_cvq == CV_NONE &&
5028               !OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
5029               parser->tok == '='))
5030         {
5031             return !parsewarning(parser, WARN_DIFFERENT_QUALIFIERS,
5032                                  "`%s` declared with different qualifiers: %s\n"
5033                                  " -> previous declaration here: %s:%i uses %s",
5034                                  var->m_name, cvq_to_str(var->m_cvq),
5035                                  proto->m_context.file, proto->m_context.line,
5036                                  cvq_to_str(proto->m_cvq));
5037         }
5038     }
5039     av = (var  ->m_flags & AST_FLAG_NORETURN);
5040     ao = (proto->m_flags & AST_FLAG_NORETURN);
5041     if (!av != !ao) {
5042         return !parsewarning(parser, WARN_DIFFERENT_ATTRIBUTES,
5043                              "`%s` declared with different attributes%s\n"
5044                              " -> previous declaration here: %s:%i",
5045                              var->m_name, (av ? ": noreturn" : ""),
5046                              proto->m_context.file, proto->m_context.line,
5047                              (ao ? ": noreturn" : ""));
5048     }
5049     return true;
5050 }
5051
5052 static bool create_array_accessors(parser_t *parser, ast_value *var)
5053 {
5054     char name[1024];
5055     util_snprintf(name, sizeof(name), "%s##SET", var->m_name.c_str());
5056     if (!parser_create_array_setter(parser, var, name))
5057         return false;
5058     util_snprintf(name, sizeof(name), "%s##GET", var->m_name.c_str());
5059     if (!parser_create_array_getter(parser, var, var->m_next, name))
5060         return false;
5061     return true;
5062 }
5063
5064 static bool parse_array(parser_t *parser, ast_value *array)
5065 {
5066     size_t i;
5067     if (array->m_initlist.size()) {
5068         parseerror(parser, "array already initialized elsewhere");
5069         return false;
5070     }
5071     if (!parser_next(parser)) {
5072         parseerror(parser, "parse error in array initializer");
5073         return false;
5074     }
5075     i = 0;
5076     while (parser->tok != '}') {
5077         ast_value *v = (ast_value*)parse_expression_leave(parser, true, false, false);
5078         if (!v)
5079             return false;
5080         if (!ast_istype(v, ast_value) || !v->m_hasvalue || v->m_cvq != CV_CONST) {
5081             ast_unref(v);
5082             parseerror(parser, "initializing element must be a compile time constant");
5083             return false;
5084         }
5085         array->m_initlist.push_back(v->m_constval);
5086         if (v->m_vtype == TYPE_STRING) {
5087             array->m_initlist[i].vstring = util_strdupe(array->m_initlist[i].vstring);
5088             ++i;
5089         }
5090         ast_unref(v);
5091         if (parser->tok == '}')
5092             break;
5093         if (parser->tok != ',' || !parser_next(parser)) {
5094             parseerror(parser, "expected comma or '}' in element list");
5095             return false;
5096         }
5097     }
5098     if (!parser_next(parser) || parser->tok != ';') {
5099         parseerror(parser, "expected semicolon after initializer, got %s");
5100         return false;
5101     }
5102     /*
5103     if (!parser_next(parser)) {
5104         parseerror(parser, "parse error after initializer");
5105         return false;
5106     }
5107     */
5108
5109     if (array->m_flags & AST_FLAG_ARRAY_INIT) {
5110         if (array->m_count != (size_t)-1) {
5111             parseerror(parser, "array `%s' has already been initialized with %u elements",
5112                        array->m_name, (unsigned)array->m_count);
5113         }
5114         array->m_count = array->m_initlist.size();
5115         if (!create_array_accessors(parser, array))
5116             return false;
5117     }
5118     return true;
5119 }
5120
5121 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)
5122 {
5123     ast_value *var;
5124     ast_value *proto;
5125     ast_expression *old;
5126     bool       was_end;
5127     size_t     i;
5128
5129     ast_value *basetype = nullptr;
5130     bool      retval    = true;
5131     bool      isparam   = false;
5132     bool      isvector  = false;
5133     bool      cleanvar  = true;
5134     bool      wasarray  = false;
5135
5136     ast_member *me[3] = { nullptr, nullptr, nullptr };
5137     ast_member *last_me[3] = { nullptr, nullptr, nullptr };
5138
5139     if (!localblock && is_static)
5140         parseerror(parser, "`static` qualifier is not supported in global scope");
5141
5142     /* get the first complete variable */
5143     var = parse_typename(parser, &basetype, cached_typedef, nullptr);
5144     if (!var) {
5145         if (basetype)
5146             delete basetype;
5147         return false;
5148     }
5149
5150     /* while parsing types, the ast_value's get named '<something>' */
5151     if (!var->m_name.length() || var->m_name[0] == '<') {
5152         parseerror(parser, "declaration does not declare anything");
5153         if (basetype)
5154             delete basetype;
5155         return false;
5156     }
5157
5158     while (true) {
5159         proto = nullptr;
5160         wasarray = false;
5161
5162         /* Part 0: finish the type */
5163         if (parser->tok == '(') {
5164             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
5165                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
5166             var = parse_parameter_list(parser, var);
5167             if (!var) {
5168                 retval = false;
5169                 goto cleanup;
5170             }
5171         }
5172         /* we only allow 1-dimensional arrays */
5173         if (parser->tok == '[') {
5174             wasarray = true;
5175             var = parse_arraysize(parser, var);
5176             if (!var) {
5177                 retval = false;
5178                 goto cleanup;
5179             }
5180         }
5181         if (parser->tok == '(' && wasarray) {
5182             parseerror(parser, "arrays as part of a return type is not supported");
5183             /* we'll still parse the type completely for now */
5184         }
5185         /* for functions returning functions */
5186         while (parser->tok == '(') {
5187             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
5188                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
5189             var = parse_parameter_list(parser, var);
5190             if (!var) {
5191                 retval = false;
5192                 goto cleanup;
5193             }
5194         }
5195
5196         var->m_cvq = qualifier;
5197         if (qflags & AST_FLAG_COVERAGE) /* specified in QC, drop our default */
5198             var->m_flags &= ~(AST_FLAG_COVERAGE_MASK);
5199         var->m_flags |= qflags;
5200
5201         /*
5202          * store the vstring back to var for alias and
5203          * deprecation messages.
5204          */
5205         if (var->m_flags & AST_FLAG_DEPRECATED ||
5206             var->m_flags & AST_FLAG_ALIAS)
5207             var->m_desc = vstring;
5208
5209         if (parser_find_global(parser, var->m_name) && var->m_flags & AST_FLAG_ALIAS) {
5210             parseerror(parser, "function aliases cannot be forward declared");
5211             retval = false;
5212             goto cleanup;
5213         }
5214
5215
5216         /* Part 1:
5217          * check for validity: (end_sys_..., multiple-definitions, prototypes, ...)
5218          * Also: if there was a prototype, `var` will be deleted and set to `proto` which
5219          * is then filled with the previous definition and the parameter-names replaced.
5220          */
5221         if (var->m_name == "nil") {
5222             if (OPTS_FLAG(UNTYPED_NIL)) {
5223                 if (!localblock || !OPTS_FLAG(PERMISSIVE))
5224                     parseerror(parser, "name `nil` not allowed (try -fpermissive)");
5225             } else
5226                 (void)!parsewarning(parser, WARN_RESERVED_NAMES, "variable name `nil` is reserved");
5227         }
5228         if (!localblock) {
5229             /* Deal with end_sys_ vars */
5230             was_end = false;
5231             if (var->m_name == "end_sys_globals") {
5232                 var->m_flags |= AST_FLAG_NOREF;
5233                 parser->crc_globals = parser->globals.size();
5234                 was_end = true;
5235             }
5236             else if (var->m_name == "end_sys_fields") {
5237                 var->m_flags |= AST_FLAG_NOREF;
5238                 parser->crc_fields = parser->fields.size();
5239                 was_end = true;
5240             }
5241             if (was_end && var->m_vtype == TYPE_FIELD) {
5242                 if (parsewarning(parser, WARN_END_SYS_FIELDS,
5243                                  "global '%s' hint should not be a field",
5244                                  parser_tokval(parser)))
5245                 {
5246                     retval = false;
5247                     goto cleanup;
5248                 }
5249             }
5250
5251             if (!nofields && var->m_vtype == TYPE_FIELD)
5252             {
5253                 /* deal with field declarations */
5254                 old = parser_find_field(parser, var->m_name);
5255                 if (old) {
5256                     if (parsewarning(parser, WARN_FIELD_REDECLARED, "field `%s` already declared here: %s:%i",
5257                                      var->m_name, old->m_context.file, (int)old->m_context.line))
5258                     {
5259                         retval = false;
5260                         goto cleanup;
5261                     }
5262                     delete var;
5263                     var = nullptr;
5264                     goto skipvar;
5265                     /*
5266                     parseerror(parser, "field `%s` already declared here: %s:%i",
5267                                var->m_name, old->m_context.file, old->m_context.line);
5268                     retval = false;
5269                     goto cleanup;
5270                     */
5271                 }
5272                 if ((OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC || OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_FTEQCC) &&
5273                     (old = parser_find_global(parser, var->m_name)))
5274                 {
5275                     parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
5276                     parseerror(parser, "field `%s` already declared here: %s:%i",
5277                                var->m_name, old->m_context.file, old->m_context.line);
5278                     retval = false;
5279                     goto cleanup;
5280                 }
5281             }
5282             else
5283             {
5284                 /* deal with other globals */
5285                 old = parser_find_global(parser, var->m_name);
5286                 if (old && var->m_vtype == TYPE_FUNCTION && old->m_vtype == TYPE_FUNCTION)
5287                 {
5288                     /* This is a function which had a prototype */
5289                     if (!ast_istype(old, ast_value)) {
5290                         parseerror(parser, "internal error: prototype is not an ast_value");
5291                         retval = false;
5292                         goto cleanup;
5293                     }
5294                     proto = (ast_value*)old;
5295                     proto->m_desc = var->m_desc;
5296                     if (!proto->compareType(*var)) {
5297                         parseerror(parser, "conflicting types for `%s`, previous declaration was here: %s:%i",
5298                                    proto->m_name,
5299                                    proto->m_context.file, proto->m_context.line);
5300                         retval = false;
5301                         goto cleanup;
5302                     }
5303                     /* we need the new parameter-names */
5304                     for (i = 0; i < proto->m_type_params.size(); ++i)
5305                         proto->m_type_params[i]->m_name = var->m_type_params[i]->m_name;
5306                     if (!parser_check_qualifiers(parser, var, proto)) {
5307                         retval = false;
5308                         proto = nullptr;
5309                         goto cleanup;
5310                     }
5311                     proto->m_flags |= var->m_flags;
5312                     delete var;
5313                     var = proto;
5314                 }
5315                 else
5316                 {
5317                     /* other globals */
5318                     if (old) {
5319                         if (parsewarning(parser, WARN_DOUBLE_DECLARATION,
5320                                          "global `%s` already declared here: %s:%i",
5321                                          var->m_name, old->m_context.file, old->m_context.line))
5322                         {
5323                             retval = false;
5324                             goto cleanup;
5325                         }
5326                         if (old->m_flags & AST_FLAG_FINAL_DECL) {
5327                             parseerror(parser, "cannot redeclare variable `%s`, declared final here: %s:%i",
5328                                        var->m_name, old->m_context.file, old->m_context.line);
5329                             retval = false;
5330                             goto cleanup;
5331                         }
5332                         proto = (ast_value*)old;
5333                         if (!ast_istype(old, ast_value)) {
5334                             parseerror(parser, "internal error: not an ast_value");
5335                             retval = false;
5336                             proto = nullptr;
5337                             goto cleanup;
5338                         }
5339                         if (!parser_check_qualifiers(parser, var, proto)) {
5340                             retval = false;
5341                             proto = nullptr;
5342                             goto cleanup;
5343                         }
5344                         proto->m_flags |= var->m_flags;
5345                         /* copy the context for finals,
5346                          * so the error can show where it was actually made 'final'
5347                          */
5348                         if (proto->m_flags & AST_FLAG_FINAL_DECL)
5349                             old->m_context = var->m_context;
5350                         delete var;
5351                         var = proto;
5352                     }
5353                     if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC &&
5354                         (old = parser_find_field(parser, var->m_name)))
5355                     {
5356                         parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
5357                         parseerror(parser, "global `%s` already declared here: %s:%i",
5358                                    var->m_name, old->m_context.file, old->m_context.line);
5359                         retval = false;
5360                         goto cleanup;
5361                     }
5362                 }
5363             }
5364         }
5365         else /* it's not a global */
5366         {
5367             old = parser_find_local(parser, var->m_name, vec_size(parser->variables)-1, &isparam);
5368             if (old && !isparam) {
5369                 parseerror(parser, "local `%s` already declared here: %s:%i",
5370                            var->m_name, old->m_context.file, (int)old->m_context.line);
5371                 retval = false;
5372                 goto cleanup;
5373             }
5374             /* doing this here as the above is just for a single scope */
5375             old = parser_find_local(parser, var->m_name, 0, &isparam);
5376             if (old && isparam) {
5377                 if (parsewarning(parser, WARN_LOCAL_SHADOWS,
5378                                  "local `%s` is shadowing a parameter", var->m_name))
5379                 {
5380                     parseerror(parser, "local `%s` already declared here: %s:%i",
5381                                var->m_name, old->m_context.file, (int)old->m_context.line);
5382                     retval = false;
5383                     goto cleanup;
5384                 }
5385                 if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_GMQCC) {
5386                     delete var;
5387                     if (ast_istype(old, ast_value))
5388                         var = proto = (ast_value*)old;
5389                     else {
5390                         var = nullptr;
5391                         goto skipvar;
5392                     }
5393                 }
5394             }
5395         }
5396
5397         if (noref || parser->noref)
5398             var->m_flags |= AST_FLAG_NOREF;
5399
5400         /* Part 2:
5401          * Create the global/local, and deal with vector types.
5402          */
5403         if (!proto) {
5404             if (var->m_vtype == TYPE_VECTOR)
5405                 isvector = true;
5406             else if (var->m_vtype == TYPE_FIELD &&
5407                      var->m_next->m_vtype == TYPE_VECTOR)
5408                 isvector = true;
5409
5410             if (isvector) {
5411                 if (!create_vector_members(var, me)) {
5412                     retval = false;
5413                     goto cleanup;
5414                 }
5415             }
5416
5417             if (!localblock) {
5418                 /* deal with global variables, fields, functions */
5419                 if (!nofields && var->m_vtype == TYPE_FIELD && parser->tok != '=') {
5420                     var->m_isfield = true;
5421                     parser->fields.push_back(var);
5422                     util_htset(parser->htfields, var->m_name.c_str(), var);
5423                     if (isvector) {
5424                         for (i = 0; i < 3; ++i) {
5425                             parser->fields.push_back(me[i]);
5426                             util_htset(parser->htfields, me[i]->m_name.c_str(), me[i]);
5427                         }
5428                     }
5429                 }
5430                 else {
5431                     if (!(var->m_flags & AST_FLAG_ALIAS)) {
5432                         parser_addglobal(parser, var->m_name, var);
5433                         if (isvector) {
5434                             for (i = 0; i < 3; ++i) {
5435                                 parser_addglobal(parser, me[i]->m_name.c_str(), me[i]);
5436                             }
5437                         }
5438                     } else {
5439                         ast_expression *find  = parser_find_global(parser, var->m_desc);
5440
5441                         if (!find) {
5442                             compile_error(parser_ctx(parser), "undeclared variable `%s` for alias `%s`", var->m_desc, var->m_name);
5443                             return false;
5444                         }
5445
5446                         if (!var->compareType(*find)) {
5447                             char ty1[1024];
5448                             char ty2[1024];
5449
5450                             ast_type_to_string(find, ty1, sizeof(ty1));
5451                             ast_type_to_string(var,  ty2, sizeof(ty2));
5452
5453                             compile_error(parser_ctx(parser), "incompatible types `%s` and `%s` for alias `%s`",
5454                                 ty1, ty2, var->m_name
5455                             );
5456                             return false;
5457                         }
5458
5459                         util_htset(parser->aliases, var->m_name.c_str(), find);
5460
5461                         /* generate aliases for vector components */
5462                         if (isvector) {
5463                             char *buffer[3];
5464
5465                             util_asprintf(&buffer[0], "%s_x", var->m_desc.c_str());
5466                             util_asprintf(&buffer[1], "%s_y", var->m_desc.c_str());
5467                             util_asprintf(&buffer[2], "%s_z", var->m_desc.c_str());
5468
5469                             util_htset(parser->aliases, me[0]->m_name.c_str(), parser_find_global(parser, buffer[0]));
5470                             util_htset(parser->aliases, me[1]->m_name.c_str(), parser_find_global(parser, buffer[1]));
5471                             util_htset(parser->aliases, me[2]->m_name.c_str(), parser_find_global(parser, buffer[2]));
5472
5473                             mem_d(buffer[0]);
5474                             mem_d(buffer[1]);
5475                             mem_d(buffer[2]);
5476                         }
5477                     }
5478                 }
5479             } else {
5480                 if (is_static) {
5481                     // a static adds itself to be generated like any other global
5482                     // but is added to the local namespace instead
5483                     std::string defname;
5484                     size_t  prefix_len;
5485                     size_t  sn, sn_size;
5486
5487                     defname = parser->function->m_name;
5488                     defname.append(2, ':');
5489
5490                     // remember the length up to here
5491                     prefix_len = defname.length();
5492
5493                     // Add it to the local scope
5494                     util_htset(vec_last(parser->variables), var->m_name.c_str(), (void*)var);
5495
5496                     // now rename the global
5497                     defname.append(var->m_name);
5498                     // if a variable of that name already existed, add the
5499                     // counter value.
5500                     // The counter is incremented either way.
5501                     sn_size = parser->function->m_static_names.size();
5502                     for (sn = 0; sn != sn_size; ++sn) {
5503                         if (parser->function->m_static_names[sn] == var->m_name.c_str())
5504                             break;
5505                     }
5506                     if (sn != sn_size) {
5507                         char *num = nullptr;
5508                         int   len = util_asprintf(&num, "#%u", parser->function->m_static_count);
5509                         defname.append(num, 0, len);
5510                         mem_d(num);
5511                     }
5512                     else
5513                         parser->function->m_static_names.emplace_back(var->m_name);
5514                     parser->function->m_static_count++;
5515                     var->m_name = defname;
5516
5517                     // push it to the to-be-generated globals
5518                     parser->globals.push_back(var);
5519
5520                     // same game for the vector members
5521                     if (isvector) {
5522                         defname.erase(prefix_len);
5523                         for (i = 0; i < 3; ++i) {
5524                             util_htset(vec_last(parser->variables), me[i]->m_name.c_str(), (void*)(me[i]));
5525                             me[i]->m_name = move(defname + me[i]->m_name);
5526                             parser->globals.push_back(me[i]);
5527                         }
5528                     }
5529                 } else {
5530                     localblock->m_locals.push_back(var);
5531                     parser_addlocal(parser, var->m_name, var);
5532                     if (isvector) {
5533                         for (i = 0; i < 3; ++i) {
5534                             parser_addlocal(parser, me[i]->m_name, me[i]);
5535                             localblock->collect(me[i]);
5536                         }
5537                     }
5538                 }
5539             }
5540         }
5541         memcpy(last_me, me, sizeof(me));
5542         me[0] = me[1] = me[2] = nullptr;
5543         cleanvar = false;
5544         /* Part 2.2
5545          * deal with arrays
5546          */
5547         if (var->m_vtype == TYPE_ARRAY) {
5548             if (var->m_count != (size_t)-1) {
5549                 if (!create_array_accessors(parser, var))
5550                     goto cleanup;
5551             }
5552         }
5553         else if (!localblock && !nofields &&
5554                  var->m_vtype == TYPE_FIELD &&
5555                  var->m_next->m_vtype == TYPE_ARRAY)
5556         {
5557             char name[1024];
5558             ast_expression *telem;
5559             ast_value      *tfield;
5560             ast_value      *array = (ast_value*)var->m_next;
5561
5562             if (!ast_istype(var->m_next, ast_value)) {
5563                 parseerror(parser, "internal error: field element type must be an ast_value");
5564                 goto cleanup;
5565             }
5566
5567             util_snprintf(name, sizeof(name), "%s##SETF", var->m_name.c_str());
5568             if (!parser_create_array_field_setter(parser, array, name))
5569                 goto cleanup;
5570
5571             telem = new ast_expression(ast_copy_type, var->m_context, *array->m_next);
5572             tfield = new ast_value(var->m_context, "<.type>", TYPE_FIELD);
5573             tfield->m_next = telem;
5574             util_snprintf(name, sizeof(name), "%s##GETFP", var->m_name.c_str());
5575             if (!parser_create_array_getter(parser, array, tfield, name)) {
5576                 delete tfield;
5577                 goto cleanup;
5578             }
5579             delete tfield;
5580         }
5581
5582 skipvar:
5583         if (parser->tok == ';') {
5584             delete basetype;
5585             if (!parser_next(parser)) {
5586                 parseerror(parser, "error after variable declaration");
5587                 return false;
5588             }
5589             return true;
5590         }
5591
5592         if (parser->tok == ',')
5593             goto another;
5594
5595         /*
5596         if (!var || (!localblock && !nofields && basetype->m_vtype == TYPE_FIELD)) {
5597         */
5598         if (!var) {
5599             parseerror(parser, "missing comma or semicolon while parsing variables");
5600             break;
5601         }
5602
5603         if (localblock && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
5604             if (parsewarning(parser, WARN_LOCAL_CONSTANTS,
5605                              "initializing expression turns variable `%s` into a constant in this standard",
5606                              var->m_name) )
5607             {
5608                 break;
5609             }
5610         }
5611
5612         if (parser->tok != '{' || var->m_vtype != TYPE_FUNCTION) {
5613             if (parser->tok != '=') {
5614                 parseerror(parser, "missing semicolon or initializer, got: `%s`", parser_tokval(parser));
5615                 break;
5616             }
5617
5618             if (!parser_next(parser)) {
5619                 parseerror(parser, "error parsing initializer");
5620                 break;
5621             }
5622         }
5623         else if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
5624             parseerror(parser, "expected '=' before function body in this standard");
5625         }
5626
5627         if (parser->tok == '#') {
5628             ast_function *func   = nullptr;
5629             ast_value    *number = nullptr;
5630             float         fractional;
5631             float         integral;
5632             int           builtin_num;
5633
5634             if (localblock) {
5635                 parseerror(parser, "cannot declare builtins within functions");
5636                 break;
5637             }
5638             if (var->m_vtype != TYPE_FUNCTION) {
5639                 parseerror(parser, "unexpected builtin number, '%s' is not a function", var->m_name);
5640                 break;
5641             }
5642             if (!parser_next(parser)) {
5643                 parseerror(parser, "expected builtin number");
5644                 break;
5645             }
5646
5647             if (OPTS_FLAG(EXPRESSIONS_FOR_BUILTINS)) {
5648                 number = (ast_value*)parse_expression_leave(parser, true, false, false);
5649                 if (!number) {
5650                     parseerror(parser, "builtin number expected");
5651                     break;
5652                 }
5653                 if (!ast_istype(number, ast_value) || !number->m_hasvalue || number->m_cvq != CV_CONST)
5654                 {
5655                     ast_unref(number);
5656                     parseerror(parser, "builtin number must be a compile time constant");
5657                     break;
5658                 }
5659                 if (number->m_vtype == TYPE_INTEGER)
5660                     builtin_num = number->m_constval.vint;
5661                 else if (number->m_vtype == TYPE_FLOAT)
5662                     builtin_num = number->m_constval.vfloat;
5663                 else {
5664                     ast_unref(number);
5665                     parseerror(parser, "builtin number must be an integer constant");
5666                     break;
5667                 }
5668                 ast_unref(number);
5669
5670                 fractional = modff(builtin_num, &integral);
5671                 if (builtin_num < 0 || fractional != 0) {
5672                     parseerror(parser, "builtin number must be an integer greater than zero");
5673                     break;
5674                 }
5675
5676                 /* we only want the integral part anyways */
5677                 builtin_num = integral;
5678             } else if (parser->tok == TOKEN_INTCONST) {
5679                 builtin_num = parser_token(parser)->constval.i;
5680             } else {
5681                 parseerror(parser, "builtin number must be a compile time constant");
5682                 break;
5683             }
5684
5685             if (var->m_hasvalue) {
5686                 (void)!parsewarning(parser, WARN_DOUBLE_DECLARATION,
5687                                     "builtin `%s` has already been defined\n"
5688                                     " -> previous declaration here: %s:%i",
5689                                     var->m_name, var->m_context.file, (int)var->m_context.line);
5690             }
5691             else
5692             {
5693                 func = ast_function::make(var->m_context, var->m_name, var);
5694                 if (!func) {
5695                     parseerror(parser, "failed to allocate function for `%s`", var->m_name);
5696                     break;
5697                 }
5698                 parser->functions.push_back(func);
5699
5700                 func->m_builtin = -builtin_num-1;
5701             }
5702
5703             if (OPTS_FLAG(EXPRESSIONS_FOR_BUILTINS)
5704                     ? (parser->tok != ',' && parser->tok != ';')
5705                     : (!parser_next(parser)))
5706             {
5707                 parseerror(parser, "expected comma or semicolon");
5708                 delete func;
5709                 var->m_constval.vfunc = nullptr;
5710                 break;
5711             }
5712         }
5713         else if (var->m_vtype == TYPE_ARRAY && parser->tok == '{')
5714         {
5715             if (localblock) {
5716                 /* Note that fteqcc and most others don't even *have*
5717                  * local arrays, so this is not a high priority.
5718                  */
5719                 parseerror(parser, "TODO: initializers for local arrays");
5720                 break;
5721             }
5722
5723             var->m_hasvalue = true;
5724             if (!parse_array(parser, var))
5725                 break;
5726         }
5727         else if (var->m_vtype == TYPE_FUNCTION && (parser->tok == '{' || parser->tok == '['))
5728         {
5729             if (localblock) {
5730                 parseerror(parser, "cannot declare functions within functions");
5731                 break;
5732             }
5733
5734             if (proto)
5735                 proto->m_context = parser_ctx(parser);
5736
5737             if (!parse_function_body(parser, var))
5738                 break;
5739             delete basetype;
5740             for (auto &it : parser->gotos)
5741                 parseerror(parser, "undefined label: `%s`", it->m_name);
5742             parser->gotos.clear();
5743             parser->labels.clear();
5744             return true;
5745         } else {
5746             ast_expression *cexp;
5747             ast_value      *cval;
5748             bool            folded_const = false;
5749
5750             cexp = parse_expression_leave(parser, true, false, false);
5751             if (!cexp)
5752                 break;
5753             cval = ast_istype(cexp, ast_value) ? (ast_value*)cexp : nullptr;
5754
5755             /* deal with foldable constants: */
5756             if (localblock &&
5757                 var->m_cvq == CV_CONST && cval && cval->m_hasvalue && cval->m_cvq == CV_CONST && !cval->m_isfield)
5758             {
5759                 /* remove it from the current locals */
5760                 if (isvector) {
5761                     for (i = 0; i < 3; ++i) {
5762                         vec_pop(parser->_locals);
5763                         localblock->m_collect.pop_back();
5764                     }
5765                 }
5766                 /* do sanity checking, this function really needs refactoring */
5767                 if (vec_last(parser->_locals) != var)
5768                     parseerror(parser, "internal error: unexpected change in local variable handling");
5769                 else
5770                     vec_pop(parser->_locals);
5771                 if (localblock->m_locals.back() != var)
5772                     parseerror(parser, "internal error: unexpected change in local variable handling (2)");
5773                 else
5774                     localblock->m_locals.pop_back();
5775                 /* push it to the to-be-generated globals */
5776                 parser->globals.push_back(var);
5777                 if (isvector)
5778                     for (i = 0; i < 3; ++i)
5779                         parser->globals.push_back(last_me[i]);
5780                 folded_const = true;
5781             }
5782
5783             if (folded_const || !localblock || is_static) {
5784                 if (cval != parser->nil &&
5785                     (!cval || ((!cval->m_hasvalue || cval->m_cvq != CV_CONST) && !cval->m_isfield))
5786                    )
5787                 {
5788                     parseerror(parser, "initializer is non constant");
5789                 }
5790                 else
5791                 {
5792                     if (!is_static &&
5793                         !OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
5794                         qualifier != CV_VAR)
5795                     {
5796                         var->m_cvq = CV_CONST;
5797                     }
5798                     if (cval == parser->nil)
5799                     {
5800                         var->m_flags |= AST_FLAG_INITIALIZED;
5801                         var->m_flags |= AST_FLAG_NOREF;
5802                     }
5803                     else
5804                     {
5805                         var->m_hasvalue = true;
5806                         if (cval->m_vtype == TYPE_STRING)
5807                             var->m_constval.vstring = parser_strdup(cval->m_constval.vstring);
5808                         else if (cval->m_vtype == TYPE_FIELD)
5809                             var->m_constval.vfield = cval;
5810                         else
5811                             memcpy(&var->m_constval, &cval->m_constval, sizeof(var->m_constval));
5812                         ast_unref(cval);
5813                     }
5814                 }
5815             } else {
5816                 int cvq;
5817                 shunt sy;
5818                 cvq = var->m_cvq;
5819                 var->m_cvq = CV_NONE;
5820                 sy.out.push_back(syexp(var->m_context, var));
5821                 sy.out.push_back(syexp(cexp->m_context, cexp));
5822                 sy.ops.push_back(syop(var->m_context, parser->assign_op));
5823                 if (!parser_sy_apply_operator(parser, &sy))
5824                     ast_unref(cexp);
5825                 else {
5826                     if (sy.out.size() != 1 && sy.ops.size() != 0)
5827                         parseerror(parser, "internal error: leaked operands");
5828                     if (!localblock->addExpr(sy.out[0].out))
5829                         break;
5830                 }
5831                 var->m_cvq = cvq;
5832             }
5833             /* a constant initialized to an inexact value should be marked inexact:
5834              * const float x = <inexact>; should propagate the inexact flag
5835              */
5836             if (var->m_cvq == CV_CONST && var->m_vtype == TYPE_FLOAT) {
5837                 if (cval && cval->m_hasvalue && cval->m_cvq == CV_CONST)
5838                     var->m_inexact = cval->m_inexact;
5839             }
5840         }
5841
5842 another:
5843         if (parser->tok == ',') {
5844             if (!parser_next(parser)) {
5845                 parseerror(parser, "expected another variable");
5846                 break;
5847             }
5848
5849             if (parser->tok != TOKEN_IDENT) {
5850                 parseerror(parser, "expected another variable");
5851                 break;
5852             }
5853             var = new ast_value(ast_copy_type, *basetype);
5854             cleanvar = true;
5855             var->m_name = parser_tokval(parser);
5856             if (!parser_next(parser)) {
5857                 parseerror(parser, "error parsing variable declaration");
5858                 break;
5859             }
5860             continue;
5861         }
5862
5863         if (parser->tok != ';') {
5864             parseerror(parser, "missing semicolon after variables");
5865             break;
5866         }
5867
5868         if (!parser_next(parser)) {
5869             parseerror(parser, "parse error after variable declaration");
5870             break;
5871         }
5872
5873         delete basetype;
5874         return true;
5875     }
5876
5877     if (cleanvar && var)
5878         delete var;
5879     delete basetype;
5880     return false;
5881
5882 cleanup:
5883     delete basetype;
5884     if (cleanvar && var)
5885         delete var;
5886     delete me[0];
5887     delete me[1];
5888     delete me[2];
5889     return retval;
5890 }
5891
5892 static bool parser_global_statement(parser_t *parser)
5893 {
5894     int        cvq       = CV_WRONG;
5895     bool       noref     = false;
5896     bool       is_static = false;
5897     uint32_t   qflags    = 0;
5898     ast_value *istype    = nullptr;
5899     char      *vstring   = nullptr;
5900
5901     if (parser->tok == TOKEN_IDENT)
5902         istype = parser_find_typedef(parser, parser_tokval(parser), 0);
5903
5904     if (istype || parser->tok == TOKEN_TYPENAME || parser->tok == '.' || parser->tok == TOKEN_DOTS)
5905     {
5906         return parse_variable(parser, nullptr, false, CV_NONE, istype, false, false, 0, nullptr);
5907     }
5908     else if (parse_qualifiers(parser, false, &cvq, &noref, &is_static, &qflags, &vstring))
5909     {
5910         if (cvq == CV_WRONG)
5911             return false;
5912         return parse_variable(parser, nullptr, false, cvq, nullptr, noref, is_static, qflags, vstring);
5913     }
5914     else if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "enum"))
5915     {
5916         return parse_enum(parser);
5917     }
5918     else if (parser->tok == TOKEN_KEYWORD)
5919     {
5920         if (!strcmp(parser_tokval(parser), "typedef")) {
5921             if (!parser_next(parser)) {
5922                 parseerror(parser, "expected type definition after 'typedef'");
5923                 return false;
5924             }
5925             return parse_typedef(parser);
5926         }
5927         parseerror(parser, "unrecognized keyword `%s`", parser_tokval(parser));
5928         return false;
5929     }
5930     else if (parser->tok == '#')
5931     {
5932         return parse_pragma(parser);
5933     }
5934     else if (parser->tok == '$')
5935     {
5936         if (!parser_next(parser)) {
5937             parseerror(parser, "parse error");
5938             return false;
5939         }
5940     }
5941     else
5942     {
5943         parseerror(parser, "unexpected token: `%s`", parser->lex->tok.value);
5944         return false;
5945     }
5946     return true;
5947 }
5948
5949 static uint16_t progdefs_crc_sum(uint16_t old, const char *str)
5950 {
5951     return util_crc16(old, str, strlen(str));
5952 }
5953
5954 static void progdefs_crc_file(const char *str)
5955 {
5956     /* write to progdefs.h here */
5957     (void)str;
5958 }
5959
5960 static uint16_t progdefs_crc_both(uint16_t old, const char *str)
5961 {
5962     old = progdefs_crc_sum(old, str);
5963     progdefs_crc_file(str);
5964     return old;
5965 }
5966
5967 static void generate_checksum(parser_t *parser, ir_builder *ir)
5968 {
5969     uint16_t   crc = 0xFFFF;
5970     size_t     i;
5971     ast_value *value;
5972
5973     crc = progdefs_crc_both(crc, "\n/* file generated by qcc, do not modify */\n\ntypedef struct\n{");
5974     crc = progdefs_crc_sum(crc, "\tint\tpad[28];\n");
5975     /*
5976     progdefs_crc_file("\tint\tpad;\n");
5977     progdefs_crc_file("\tint\tofs_return[3];\n");
5978     progdefs_crc_file("\tint\tofs_parm0[3];\n");
5979     progdefs_crc_file("\tint\tofs_parm1[3];\n");
5980     progdefs_crc_file("\tint\tofs_parm2[3];\n");
5981     progdefs_crc_file("\tint\tofs_parm3[3];\n");
5982     progdefs_crc_file("\tint\tofs_parm4[3];\n");
5983     progdefs_crc_file("\tint\tofs_parm5[3];\n");
5984     progdefs_crc_file("\tint\tofs_parm6[3];\n");
5985     progdefs_crc_file("\tint\tofs_parm7[3];\n");
5986     */
5987     for (i = 0; i < parser->crc_globals; ++i) {
5988         if (!ast_istype(parser->globals[i], ast_value))
5989             continue;
5990         value = (ast_value*)(parser->globals[i]);
5991         switch (value->m_vtype) {
5992             case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
5993             case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
5994             case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
5995             case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
5996             default:
5997                 crc = progdefs_crc_both(crc, "\tint\t");
5998                 break;
5999         }
6000         crc = progdefs_crc_both(crc, value->m_name.c_str());
6001         crc = progdefs_crc_both(crc, ";\n");
6002     }
6003     crc = progdefs_crc_both(crc, "} globalvars_t;\n\ntypedef struct\n{\n");
6004     for (i = 0; i < parser->crc_fields; ++i) {
6005         if (!ast_istype(parser->fields[i], ast_value))
6006             continue;
6007         value = (ast_value*)(parser->fields[i]);
6008         switch (value->m_next->m_vtype) {
6009             case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
6010             case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
6011             case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
6012             case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
6013             default:
6014                 crc = progdefs_crc_both(crc, "\tint\t");
6015                 break;
6016         }
6017         crc = progdefs_crc_both(crc, value->m_name.c_str());
6018         crc = progdefs_crc_both(crc, ";\n");
6019     }
6020     crc = progdefs_crc_both(crc, "} entvars_t;\n\n");
6021     ir->m_code->crc = crc;
6022 }
6023
6024 parser_t *parser_create()
6025 {
6026     parser_t *parser;
6027     lex_ctx_t empty_ctx;
6028     size_t i;
6029
6030     parser = (parser_t*)mem_a(sizeof(parser_t));
6031     if (!parser)
6032         return nullptr;
6033
6034     memset(parser, 0, sizeof(*parser));
6035
6036     // TODO: remove
6037     new (parser) parser_t();
6038
6039     for (i = 0; i < operator_count; ++i) {
6040         if (operators[i].id == opid1('=')) {
6041             parser->assign_op = operators+i;
6042             break;
6043         }
6044     }
6045     if (!parser->assign_op) {
6046         con_err("internal error: initializing parser: failed to find assign operator\n");
6047         mem_d(parser);
6048         return nullptr;
6049     }
6050
6051     vec_push(parser->variables, parser->htfields  = util_htnew(PARSER_HT_SIZE));
6052     vec_push(parser->variables, parser->htglobals = util_htnew(PARSER_HT_SIZE));
6053     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
6054     vec_push(parser->_blocktypedefs, 0);
6055
6056     parser->aliases = util_htnew(PARSER_HT_SIZE);
6057
6058     empty_ctx.file   = "<internal>";
6059     empty_ctx.line   = 0;
6060     empty_ctx.column = 0;
6061     parser->nil = new ast_value(empty_ctx, "nil", TYPE_NIL);
6062     parser->nil->m_cvq = CV_CONST;
6063     if (OPTS_FLAG(UNTYPED_NIL))
6064         util_htset(parser->htglobals, "nil", (void*)parser->nil);
6065
6066     parser->max_param_count = 1;
6067
6068     parser->const_vec[0] = new ast_value(empty_ctx, "<vector.x>", TYPE_NOEXPR);
6069     parser->const_vec[1] = new ast_value(empty_ctx, "<vector.y>", TYPE_NOEXPR);
6070     parser->const_vec[2] = new ast_value(empty_ctx, "<vector.z>", TYPE_NOEXPR);
6071
6072     if (OPTS_OPTION_BOOL(OPTION_ADD_INFO)) {
6073         parser->reserved_version = new ast_value(empty_ctx, "reserved:version", TYPE_STRING);
6074         parser->reserved_version->m_cvq = CV_CONST;
6075         parser->reserved_version->m_hasvalue = true;
6076         parser->reserved_version->m_flags |= AST_FLAG_INCLUDE_DEF;
6077         parser->reserved_version->m_flags |= AST_FLAG_NOREF;
6078         parser->reserved_version->m_constval.vstring = util_strdup(GMQCC_FULL_VERSION_STRING);
6079     } else {
6080         parser->reserved_version = nullptr;
6081     }
6082
6083     parser->m_fold = fold(parser);
6084     parser->m_intrin = intrin(parser);
6085     return parser;
6086 }
6087
6088 static bool parser_compile(parser_t *parser)
6089 {
6090     /* initial lexer/parser state */
6091     parser->lex->flags.noops = true;
6092
6093     if (parser_next(parser))
6094     {
6095         while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
6096         {
6097             if (!parser_global_statement(parser)) {
6098                 if (parser->tok == TOKEN_EOF)
6099                     parseerror(parser, "unexpected end of file");
6100                 else if (compile_errors)
6101                     parseerror(parser, "there have been errors, bailing out");
6102                 lex_close(parser->lex);
6103                 parser->lex = nullptr;
6104                 return false;
6105             }
6106         }
6107     } else {
6108         parseerror(parser, "parse error");
6109         lex_close(parser->lex);
6110         parser->lex = nullptr;
6111         return false;
6112     }
6113
6114     lex_close(parser->lex);
6115     parser->lex = nullptr;
6116
6117     return !compile_errors;
6118 }
6119
6120 bool parser_compile_file(parser_t *parser, const char *filename)
6121 {
6122     parser->lex = lex_open(filename);
6123     if (!parser->lex) {
6124         con_err("failed to open file \"%s\"\n", filename);
6125         return false;
6126     }
6127     return parser_compile(parser);
6128 }
6129
6130 bool parser_compile_string(parser_t *parser, const char *name, const char *str, size_t len)
6131 {
6132     parser->lex = lex_open_string(str, len, name);
6133     if (!parser->lex) {
6134         con_err("failed to create lexer for string \"%s\"\n", name);
6135         return false;
6136     }
6137     return parser_compile(parser);
6138 }
6139
6140 static void parser_remove_ast(parser_t *parser)
6141 {
6142     size_t i;
6143     if (parser->ast_cleaned)
6144         return;
6145     parser->ast_cleaned = true;
6146     for (auto &it : parser->accessors) {
6147         delete it->m_constval.vfunc;
6148         it->m_constval.vfunc = nullptr;
6149         delete it;
6150     }
6151     for (auto &it : parser->functions) delete it;
6152     for (auto &it : parser->globals) delete it;
6153     for (auto &it : parser->fields) delete it;
6154
6155     for (i = 0; i < vec_size(parser->variables); ++i)
6156         util_htdel(parser->variables[i]);
6157     vec_free(parser->variables);
6158     vec_free(parser->_blocklocals);
6159     vec_free(parser->_locals);
6160
6161     for (i = 0; i < vec_size(parser->_typedefs); ++i)
6162         delete parser->_typedefs[i];
6163     vec_free(parser->_typedefs);
6164     for (i = 0; i < vec_size(parser->typedefs); ++i)
6165         util_htdel(parser->typedefs[i]);
6166     vec_free(parser->typedefs);
6167     vec_free(parser->_blocktypedefs);
6168
6169     vec_free(parser->_block_ctx);
6170
6171     delete parser->nil;
6172
6173     delete parser->const_vec[0];
6174     delete parser->const_vec[1];
6175     delete parser->const_vec[2];
6176
6177     if (parser->reserved_version)
6178         delete parser->reserved_version;
6179
6180     util_htdel(parser->aliases);
6181 }
6182
6183 void parser_cleanup(parser_t *parser)
6184 {
6185     parser_remove_ast(parser);
6186     parser->~parser_t();
6187     mem_d(parser);
6188 }
6189
6190 static bool parser_set_coverage_func(parser_t *parser, ir_builder *ir) {
6191     ast_expression *expr;
6192     ast_value      *cov;
6193     ast_function   *func;
6194
6195     if (!OPTS_OPTION_BOOL(OPTION_COVERAGE))
6196         return true;
6197
6198     func = nullptr;
6199     for (auto &it : parser->functions) {
6200         if (it->m_name == "coverage") {
6201             func = it;
6202             break;
6203         }
6204     }
6205     if (!func) {
6206         if (OPTS_OPTION_BOOL(OPTION_COVERAGE)) {
6207             con_out("coverage support requested but no coverage() builtin declared\n");
6208             delete ir;
6209             return false;
6210         }
6211         return true;
6212     }
6213
6214     cov  = func->m_function_type;
6215     expr = cov;
6216
6217     if (expr->m_vtype != TYPE_FUNCTION || expr->m_type_params.size()) {
6218         char ty[1024];
6219         ast_type_to_string(expr, ty, sizeof(ty));
6220         con_out("invalid type for coverage(): %s\n", ty);
6221         delete ir;
6222         return false;
6223     }
6224
6225     ir->m_coverage_func = func->m_ir_func->m_value;
6226     return true;
6227 }
6228
6229 bool parser_finish(parser_t *parser, const char *output)
6230 {
6231     ir_builder *ir;
6232     bool retval = true;
6233
6234     if (compile_errors) {
6235         con_out("*** there were compile errors\n");
6236         return false;
6237     }
6238
6239     ir = new ir_builder("gmqcc_out");
6240     if (!ir) {
6241         con_out("failed to allocate builder\n");
6242         return false;
6243     }
6244
6245     for (auto &it : parser->fields) {
6246         bool hasvalue;
6247         if (!ast_istype(it, ast_value))
6248             continue;
6249         ast_value *field = (ast_value*)it;
6250         hasvalue = field->m_hasvalue;
6251         field->m_hasvalue = false;
6252         if (!reinterpret_cast<ast_value*>(field)->generateGlobal(ir, true)) {
6253             con_out("failed to generate field %s\n", field->m_name.c_str());
6254             delete ir;
6255             return false;
6256         }
6257         if (hasvalue) {
6258             ir_value *ifld;
6259             ast_expression *subtype;
6260             field->m_hasvalue = true;
6261             subtype = field->m_next;
6262             ifld = ir->createField(field->m_name, subtype->m_vtype);
6263             if (subtype->m_vtype == TYPE_FIELD)
6264                 ifld->m_fieldtype = subtype->m_next->m_vtype;
6265             else if (subtype->m_vtype == TYPE_FUNCTION)
6266                 ifld->m_outtype = subtype->m_next->m_vtype;
6267             (void)!field->m_ir_v->setField(ifld);
6268         }
6269     }
6270     for (auto &it : parser->globals) {
6271         ast_value *asvalue;
6272         if (!ast_istype(it, ast_value))
6273             continue;
6274         asvalue = (ast_value*)it;
6275         if (!(asvalue->m_flags & AST_FLAG_NOREF) && asvalue->m_cvq != CV_CONST && asvalue->m_vtype != TYPE_FUNCTION) {
6276             retval = retval && !compile_warning(asvalue->m_context, WARN_UNUSED_VARIABLE,
6277                                                 "unused global: `%s`", asvalue->m_name);
6278         }
6279         if (!asvalue->generateGlobal(ir, false)) {
6280             con_out("failed to generate global %s\n", asvalue->m_name.c_str());
6281             delete ir;
6282             return false;
6283         }
6284     }
6285     /* Build function vararg accessor ast tree now before generating
6286      * immediates, because the accessors may add new immediates
6287      */
6288     for (auto &f : parser->functions) {
6289         if (f->m_varargs) {
6290             if (parser->max_param_count > f->m_function_type->m_type_params.size()) {
6291                 f->m_varargs->m_count = parser->max_param_count - f->m_function_type->m_type_params.size();
6292                 if (!parser_create_array_setter_impl(parser, f->m_varargs.get())) {
6293                     con_out("failed to generate vararg setter for %s\n", f->m_name.c_str());
6294                     delete ir;
6295                     return false;
6296                 }
6297                 if (!parser_create_array_getter_impl(parser, f->m_varargs.get())) {
6298                     con_out("failed to generate vararg getter for %s\n", f->m_name.c_str());
6299                     delete ir;
6300                     return false;
6301                 }
6302             } else {
6303                 f->m_varargs = nullptr;
6304             }
6305         }
6306     }
6307     /* Now we can generate immediates */
6308     if (!parser->m_fold.generate(ir))
6309         return false;
6310
6311     /* before generating any functions we need to set the coverage_func */
6312     if (!parser_set_coverage_func(parser, ir))
6313         return false;
6314     for (auto &it : parser->globals) {
6315         if (!ast_istype(it, ast_value))
6316             continue;
6317         ast_value *asvalue = (ast_value*)it;
6318         if (!(asvalue->m_flags & AST_FLAG_INITIALIZED))
6319         {
6320             if (asvalue->m_cvq == CV_CONST && !asvalue->m_hasvalue)
6321                 (void)!compile_warning(asvalue->m_context, WARN_UNINITIALIZED_CONSTANT,
6322                                        "uninitialized constant: `%s`",
6323                                        asvalue->m_name);
6324             else if ((asvalue->m_cvq == CV_NONE || asvalue->m_cvq == CV_CONST) && !asvalue->m_hasvalue)
6325                 (void)!compile_warning(asvalue->m_context, WARN_UNINITIALIZED_GLOBAL,
6326                                        "uninitialized global: `%s`",
6327                                        asvalue->m_name);
6328         }
6329         if (!asvalue->generateAccessors(ir)) {
6330             delete ir;
6331             return false;
6332         }
6333     }
6334     for (auto &it : parser->fields) {
6335         ast_value *asvalue = (ast_value*)it->m_next;
6336         if (!ast_istype(asvalue, ast_value))
6337             continue;
6338         if (asvalue->m_vtype != TYPE_ARRAY)
6339             continue;
6340         if (!asvalue->generateAccessors(ir)) {
6341             delete ir;
6342             return false;
6343         }
6344     }
6345     if (parser->reserved_version &&
6346         !parser->reserved_version->generateGlobal(ir, false))
6347     {
6348         con_out("failed to generate reserved::version");
6349         delete ir;
6350         return false;
6351     }
6352     for (auto &f : parser->functions) {
6353         if (!f->generateFunction(ir)) {
6354             con_out("failed to generate function %s\n", f->m_name.c_str());
6355             delete ir;
6356             return false;
6357         }
6358     }
6359
6360     generate_checksum(parser, ir);
6361
6362     if (OPTS_OPTION_BOOL(OPTION_DUMP))
6363         ir->dump(con_out);
6364     for (auto &it : parser->functions) {
6365         if (!ir_function_finalize(it->m_ir_func)) {
6366             con_out("failed to finalize function %s\n", it->m_name.c_str());
6367             delete ir;
6368             return false;
6369         }
6370     }
6371     parser_remove_ast(parser);
6372
6373     auto fnCheckWErrors = [&retval]() {
6374         if (compile_Werrors) {
6375             con_out("*** there were warnings treated as errors\n");
6376             compile_show_werrors();
6377             retval = false;
6378         }
6379     };
6380
6381     fnCheckWErrors();
6382
6383     if (retval) {
6384         if (OPTS_OPTION_BOOL(OPTION_DUMPFIN))
6385             ir->dump(con_out);
6386
6387         if (!ir->generate(output)) {
6388             con_out("*** failed to generate output file\n");
6389             delete ir;
6390             return false;
6391         }
6392
6393         // ir->generate can generate compiler warnings
6394         fnCheckWErrors();
6395     }
6396     delete ir;
6397     return retval;
6398 }