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