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