]> git.xonotic.org Git - xonotic/gmqcc.git/blob - parser.c
7034e64c7314ede34e1d65878c7b71c746efa40e
[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 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)((int)(ConstF(0)) << (int)(ConstF(1))));
1042                 else
1043                     out = (ast_expression*)parser_const_float(parser, (double)((int)(ConstF(0)) >> (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)) {
2231         parseerror(parser, "empty expression");
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_delete(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_delete(cond);
2463         return false;
2464     }
2465     if (!parse_statement_or_block(parser, &ontrue)) {
2466         ast_delete(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_delete(cond);
2478             return false;
2479         }
2480         if (!parse_statement_or_block(parser, &onfalse)) {
2481             ast_delete(ontrue);
2482             ast_delete(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_delete(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_delete(cond);
2586         return false;
2587     }
2588     if (!parse_statement_or_block(parser, &ontrue)) {
2589         ast_delete(cond);
2590         return false;
2591     }
2592
2593     cond = process_condition(parser, cond, &ifnot);
2594     if (!cond) {
2595         ast_delete(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_delete(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_delete(cond);
2703         return false;
2704     }
2705
2706     if (!parser_next(parser)) {
2707         parseerror(parser, "parse error");
2708         ast_delete(ontrue);
2709         ast_delete(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 retval = true;
2783     bool ifnot  = false;
2784
2785     lex_ctx ctx = parser_ctx(parser);
2786
2787     parser_enterblock(parser);
2788
2789     initexpr  = NULL;
2790     cond      = NULL;
2791     increment = NULL;
2792     ontrue    = NULL;
2793
2794     /* parse into the expression */
2795     if (!parser_next(parser)) {
2796         parseerror(parser, "expected 'for' initializer after opening paren");
2797         goto onerr;
2798     }
2799
2800     typevar = NULL;
2801     if (parser->tok == TOKEN_IDENT)
2802         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2803
2804     if (typevar || parser->tok == TOKEN_TYPENAME) {
2805 #if 0
2806         if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_GMQCC) {
2807             if (parsewarning(parser, WARN_EXTENSIONS,
2808                              "current standard does not allow variable declarations in for-loop initializers"))
2809                 goto onerr;
2810         }
2811 #endif
2812         if (!parse_variable(parser, block, true, CV_VAR, typevar, false, false, 0, NULL))
2813             goto onerr;
2814     }
2815     else if (parser->tok != ';')
2816     {
2817         initexpr = parse_expression_leave(parser, false, false, false);
2818         if (!initexpr)
2819             goto onerr;
2820     }
2821
2822     /* move on to condition */
2823     if (parser->tok != ';') {
2824         parseerror(parser, "expected semicolon after for-loop initializer");
2825         goto onerr;
2826     }
2827     if (!parser_next(parser)) {
2828         parseerror(parser, "expected for-loop condition");
2829         goto onerr;
2830     }
2831
2832     /* parse the condition */
2833     if (parser->tok != ';') {
2834         cond = parse_expression_leave(parser, false, true, false);
2835         if (!cond)
2836             goto onerr;
2837     }
2838
2839     /* move on to incrementor */
2840     if (parser->tok != ';') {
2841         parseerror(parser, "expected semicolon after for-loop initializer");
2842         goto onerr;
2843     }
2844     if (!parser_next(parser)) {
2845         parseerror(parser, "expected for-loop condition");
2846         goto onerr;
2847     }
2848
2849     /* parse the incrementor */
2850     if (parser->tok != ')') {
2851         lex_ctx condctx = parser_ctx(parser);
2852         increment = parse_expression_leave(parser, false, false, false);
2853         if (!increment)
2854             goto onerr;
2855         if (!ast_side_effects(increment)) {
2856             if (compile_warning(condctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2857                 goto onerr;
2858         }
2859     }
2860
2861     /* closing paren */
2862     if (parser->tok != ')') {
2863         parseerror(parser, "expected closing paren after 'for-loop' incrementor");
2864         goto onerr;
2865     }
2866     /* parse into the 'then' branch */
2867     if (!parser_next(parser)) {
2868         parseerror(parser, "expected for-loop body");
2869         goto onerr;
2870     }
2871     if (!parse_statement_or_block(parser, &ontrue))
2872         goto onerr;
2873
2874     if (cond) {
2875         cond = process_condition(parser, cond, &ifnot);
2876         if (!cond)
2877             goto onerr;
2878     }
2879     aloop = ast_loop_new(ctx, initexpr, cond, ifnot, NULL, false, increment, ontrue);
2880     *out = (ast_expression*)aloop;
2881
2882     if (!parser_leaveblock(parser))
2883         retval = false;
2884     return retval;
2885 onerr:
2886     if (initexpr)  ast_delete(initexpr);
2887     if (cond)      ast_delete(cond);
2888     if (increment) ast_delete(increment);
2889     (void)!parser_leaveblock(parser);
2890     return false;
2891 }
2892
2893 static bool parse_return(parser_t *parser, ast_block *block, ast_expression **out)
2894 {
2895     ast_expression *exp = NULL;
2896     ast_return     *ret = NULL;
2897     ast_value      *expected = parser->function->vtype;
2898
2899     lex_ctx ctx = parser_ctx(parser);
2900
2901     (void)block; /* not touching */
2902
2903     if (!parser_next(parser)) {
2904         parseerror(parser, "expected return expression");
2905         return false;
2906     }
2907
2908     if (parser->tok != ';') {
2909         exp = parse_expression(parser, false, false);
2910         if (!exp)
2911             return false;
2912
2913         if (exp->expression.vtype != TYPE_NIL &&
2914             exp->expression.vtype != expected->expression.next->expression.vtype)
2915         {
2916             parseerror(parser, "return with invalid expression");
2917         }
2918
2919         ret = ast_return_new(ctx, exp);
2920         if (!ret) {
2921             ast_delete(exp);
2922             return false;
2923         }
2924     } else {
2925         if (!parser_next(parser))
2926             parseerror(parser, "parse error");
2927         if (expected->expression.next->expression.vtype != TYPE_VOID) {
2928             (void)!parsewarning(parser, WARN_MISSING_RETURN_VALUES, "return without value");
2929         }
2930         ret = ast_return_new(ctx, NULL);
2931     }
2932     *out = (ast_expression*)ret;
2933     return true;
2934 }
2935
2936 static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
2937 {
2938     size_t       i;
2939     unsigned int levels = 0;
2940     lex_ctx      ctx = parser_ctx(parser);
2941     const char **loops = (is_continue ? parser->continues : parser->breaks);
2942
2943     (void)block; /* not touching */
2944     if (!parser_next(parser)) {
2945         parseerror(parser, "expected semicolon or loop label");
2946         return false;
2947     }
2948
2949     if (!vec_size(loops)) {
2950         if (is_continue)
2951             parseerror(parser, "`continue` can only be used inside loops");
2952         else
2953             parseerror(parser, "`break` can only be used inside loops or switches");
2954     }
2955
2956     if (parser->tok == TOKEN_IDENT) {
2957         if (!OPTS_FLAG(LOOP_LABELS))
2958             parseerror(parser, "labeled loops not activated, try using -floop-labels");
2959         i = vec_size(loops);
2960         while (i--) {
2961             if (loops[i] && !strcmp(loops[i], parser_tokval(parser)))
2962                 break;
2963             if (!i) {
2964                 parseerror(parser, "no such loop to %s: `%s`",
2965                            (is_continue ? "continue" : "break out of"),
2966                            parser_tokval(parser));
2967                 return false;
2968             }
2969             ++levels;
2970         }
2971         if (!parser_next(parser)) {
2972             parseerror(parser, "expected semicolon");
2973             return false;
2974         }
2975     }
2976
2977     if (parser->tok != ';') {
2978         parseerror(parser, "expected semicolon");
2979         return false;
2980     }
2981
2982     if (!parser_next(parser))
2983         parseerror(parser, "parse error");
2984
2985     *out = (ast_expression*)ast_breakcont_new(ctx, is_continue, levels);
2986     return true;
2987 }
2988
2989 /* returns true when it was a variable qualifier, false otherwise!
2990  * on error, cvq is set to CV_WRONG
2991  */
2992 static bool parse_qualifiers(parser_t *parser, bool with_local, int *cvq, bool *noref, bool *is_static, uint32_t *_flags, char **message)
2993 {
2994     bool had_const    = false;
2995     bool had_var      = false;
2996     bool had_noref    = false;
2997     bool had_attrib   = false;
2998     bool had_static   = false;
2999     uint32_t flags    = 0;
3000
3001     *cvq = CV_NONE;
3002     for (;;) {
3003         if (parser->tok == TOKEN_ATTRIBUTE_OPEN) {
3004             had_attrib = true;
3005             /* parse an attribute */
3006             if (!parser_next(parser)) {
3007                 parseerror(parser, "expected attribute after `[[`");
3008                 *cvq = CV_WRONG;
3009                 return false;
3010             }
3011             if (!strcmp(parser_tokval(parser), "noreturn")) {
3012                 flags |= AST_FLAG_NORETURN;
3013                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3014                     parseerror(parser, "`noreturn` attribute has no parameters, expected `]]`");
3015                     *cvq = CV_WRONG;
3016                     return false;
3017                 }
3018             }
3019             else if (!strcmp(parser_tokval(parser), "noref")) {
3020                 had_noref = true;
3021                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3022                     parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
3023                     *cvq = CV_WRONG;
3024                     return false;
3025                 }
3026             }
3027             else if (!strcmp(parser_tokval(parser), "inline")) {
3028                 flags |= AST_FLAG_INLINE;
3029                 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3030                     parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
3031                     *cvq = CV_WRONG;
3032                     return false;
3033                 }
3034             }
3035             else if (!strcmp(parser_tokval(parser), "alias") && !(flags & AST_FLAG_ALIAS)) {
3036                 flags   |= AST_FLAG_ALIAS;
3037                 *message = NULL;
3038
3039                 if (!parser_next(parser)) {
3040                     parseerror(parser, "parse error in attribute");
3041                     goto argerr;
3042                 }
3043
3044                 if (parser->tok == '(') {
3045                     if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
3046                         parseerror(parser, "`alias` attribute missing parameter");
3047                         goto argerr;
3048                     }
3049
3050                     *message = util_strdup(parser_tokval(parser));
3051
3052                     if (!parser_next(parser)) {
3053                         parseerror(parser, "parse error in attribute");
3054                         goto argerr;
3055                     }
3056
3057                     if (parser->tok != ')') {
3058                         parseerror(parser, "`alias` attribute expected `)` after parameter");
3059                         goto argerr;
3060                     }
3061
3062                     if (!parser_next(parser)) {
3063                         parseerror(parser, "parse error in attribute");
3064                         goto argerr;
3065                     }
3066                 }
3067
3068                 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3069                     parseerror(parser, "`alias` attribute expected `]]`");
3070                     goto argerr;
3071                 }
3072             }
3073             else if (!strcmp(parser_tokval(parser), "deprecated") && !(flags & AST_FLAG_DEPRECATED)) {
3074                 flags   |= AST_FLAG_DEPRECATED;
3075                 *message = NULL;
3076
3077                 if (!parser_next(parser)) {
3078                     parseerror(parser, "parse error in attribute");
3079                     goto argerr;
3080                 }
3081
3082                 if (parser->tok == '(') {
3083                     if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
3084                         parseerror(parser, "`deprecated` attribute missing parameter");
3085                         goto argerr;
3086                     }
3087
3088                     *message = util_strdup(parser_tokval(parser));
3089
3090                     if (!parser_next(parser)) {
3091                         parseerror(parser, "parse error in attribute");
3092                         goto argerr;
3093                     }
3094
3095                     if(parser->tok != ')') {
3096                         parseerror(parser, "`deprecated` attribute expected `)` after parameter");
3097                         goto argerr;
3098                     }
3099
3100                     if (!parser_next(parser)) {
3101                         parseerror(parser, "parse error in attribute");
3102                         goto argerr;
3103                     }
3104                 }
3105                 /* no message */
3106                 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3107                     parseerror(parser, "`deprecated` attribute expected `]]`");
3108
3109                     argerr: /* ugly */
3110                     if (*message) mem_d(*message);
3111                     *message = NULL;
3112                     *cvq     = CV_WRONG;
3113                     return false;
3114                 }
3115             }
3116             else
3117             {
3118                 /* Skip tokens until we hit a ]] */
3119                 (void)!parsewarning(parser, WARN_UNKNOWN_ATTRIBUTE, "unknown attribute starting with `%s`", parser_tokval(parser));
3120                 while (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
3121                     if (!parser_next(parser)) {
3122                         parseerror(parser, "error inside attribute");
3123                         *cvq = CV_WRONG;
3124                         return false;
3125                     }
3126                 }
3127             }
3128         }
3129         else if (with_local && !strcmp(parser_tokval(parser), "static"))
3130             had_static = true;
3131         else if (!strcmp(parser_tokval(parser), "const"))
3132             had_const = true;
3133         else if (!strcmp(parser_tokval(parser), "var"))
3134             had_var = true;
3135         else if (with_local && !strcmp(parser_tokval(parser), "local"))
3136             had_var = true;
3137         else if (!strcmp(parser_tokval(parser), "noref"))
3138             had_noref = true;
3139         else if (!had_const && !had_var && !had_noref && !had_attrib && !had_static && !flags) {
3140             return false;
3141         }
3142         else
3143             break;
3144         if (!parser_next(parser))
3145             goto onerr;
3146     }
3147     if (had_const)
3148         *cvq = CV_CONST;
3149     else if (had_var)
3150         *cvq = CV_VAR;
3151     else
3152         *cvq = CV_NONE;
3153     *noref     = had_noref;
3154     *is_static = had_static;
3155     *_flags    = flags;
3156     return true;
3157 onerr:
3158     parseerror(parser, "parse error after variable qualifier");
3159     *cvq = CV_WRONG;
3160     return true;
3161 }
3162
3163 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out);
3164 static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **out)
3165 {
3166     bool rv;
3167     char *label = NULL;
3168
3169     /* skip the 'while' and get the body */
3170     if (!parser_next(parser)) {
3171         if (OPTS_FLAG(LOOP_LABELS))
3172             parseerror(parser, "expected loop label or 'switch' operand in parenthesis");
3173         else
3174             parseerror(parser, "expected 'switch' operand in parenthesis");
3175         return false;
3176     }
3177
3178     if (parser->tok == ':') {
3179         if (!OPTS_FLAG(LOOP_LABELS))
3180             parseerror(parser, "labeled loops not activated, try using -floop-labels");
3181         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
3182             parseerror(parser, "expected loop label");
3183             return false;
3184         }
3185         label = util_strdup(parser_tokval(parser));
3186         if (!parser_next(parser)) {
3187             mem_d(label);
3188             parseerror(parser, "expected 'switch' operand in parenthesis");
3189             return false;
3190         }
3191     }
3192
3193     if (parser->tok != '(') {
3194         parseerror(parser, "expected 'switch' operand in parenthesis");
3195         return false;
3196     }
3197
3198     vec_push(parser->breaks, label);
3199
3200     rv = parse_switch_go(parser, block, out);
3201     if (label)
3202         mem_d(label);
3203     if (vec_last(parser->breaks) != label) {
3204         parseerror(parser, "internal error: label stack corrupted");
3205         rv = false;
3206         ast_delete(*out);
3207         *out = NULL;
3208     }
3209     else {
3210         vec_pop(parser->breaks);
3211     }
3212     return rv;
3213 }
3214
3215 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out)
3216 {
3217     ast_expression *operand;
3218     ast_value      *opval;
3219     ast_value      *typevar;
3220     ast_switch     *switchnode;
3221     ast_switch_case swcase;
3222
3223     int  cvq;
3224     bool noref, is_static;
3225     uint32_t qflags = 0;
3226
3227     lex_ctx ctx = parser_ctx(parser);
3228
3229     (void)block; /* not touching */
3230     (void)opval;
3231
3232     /* parse into the expression */
3233     if (!parser_next(parser)) {
3234         parseerror(parser, "expected switch operand");
3235         return false;
3236     }
3237     /* parse the operand */
3238     operand = parse_expression_leave(parser, false, false, false);
3239     if (!operand)
3240         return false;
3241
3242     switchnode = ast_switch_new(ctx, operand);
3243
3244     /* closing paren */
3245     if (parser->tok != ')') {
3246         ast_delete(switchnode);
3247         parseerror(parser, "expected closing paren after 'switch' operand");
3248         return false;
3249     }
3250
3251     /* parse over the opening paren */
3252     if (!parser_next(parser) || parser->tok != '{') {
3253         ast_delete(switchnode);
3254         parseerror(parser, "expected list of cases");
3255         return false;
3256     }
3257
3258     if (!parser_next(parser)) {
3259         ast_delete(switchnode);
3260         parseerror(parser, "expected 'case' or 'default'");
3261         return false;
3262     }
3263
3264     /* new block; allow some variables to be declared here */
3265     parser_enterblock(parser);
3266     while (true) {
3267         typevar = NULL;
3268         if (parser->tok == TOKEN_IDENT)
3269             typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3270         if (typevar || parser->tok == TOKEN_TYPENAME) {
3271             if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false, 0, NULL)) {
3272                 ast_delete(switchnode);
3273                 return false;
3274             }
3275             continue;
3276         }
3277         if (parse_qualifiers(parser, true, &cvq, &noref, &is_static, &qflags, NULL))
3278         {
3279             if (cvq == CV_WRONG) {
3280                 ast_delete(switchnode);
3281                 return false;
3282             }
3283             if (!parse_variable(parser, block, false, cvq, NULL, noref, is_static, qflags, NULL)) {
3284                 ast_delete(switchnode);
3285                 return false;
3286             }
3287             continue;
3288         }
3289         break;
3290     }
3291
3292     /* case list! */
3293     while (parser->tok != '}') {
3294         ast_block *caseblock;
3295
3296         if (!strcmp(parser_tokval(parser), "case")) {
3297             if (!parser_next(parser)) {
3298                 ast_delete(switchnode);
3299                 parseerror(parser, "expected expression for case");
3300                 return false;
3301             }
3302             swcase.value = parse_expression_leave(parser, false, false, false);
3303             if (!swcase.value) {
3304                 ast_delete(switchnode);
3305                 parseerror(parser, "expected expression for case");
3306                 return false;
3307             }
3308             if (!OPTS_FLAG(RELAXED_SWITCH)) {
3309                 if (!ast_istype(swcase.value, ast_value)) { /* || ((ast_value*)swcase.value)->cvq != CV_CONST) { */
3310                     parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
3311                     ast_unref(operand);
3312                     return false;
3313                 }
3314             }
3315         }
3316         else if (!strcmp(parser_tokval(parser), "default")) {
3317             swcase.value = NULL;
3318             if (!parser_next(parser)) {
3319                 ast_delete(switchnode);
3320                 parseerror(parser, "expected colon");
3321                 return false;
3322             }
3323         }
3324         else {
3325             ast_delete(switchnode);
3326             parseerror(parser, "expected 'case' or 'default'");
3327             return false;
3328         }
3329
3330         /* Now the colon and body */
3331         if (parser->tok != ':') {
3332             if (swcase.value) ast_unref(swcase.value);
3333             ast_delete(switchnode);
3334             parseerror(parser, "expected colon");
3335             return false;
3336         }
3337
3338         if (!parser_next(parser)) {
3339             if (swcase.value) ast_unref(swcase.value);
3340             ast_delete(switchnode);
3341             parseerror(parser, "expected statements or case");
3342             return false;
3343         }
3344         caseblock = ast_block_new(parser_ctx(parser));
3345         if (!caseblock) {
3346             if (swcase.value) ast_unref(swcase.value);
3347             ast_delete(switchnode);
3348             return false;
3349         }
3350         swcase.code = (ast_expression*)caseblock;
3351         vec_push(switchnode->cases, swcase);
3352         while (true) {
3353             ast_expression *expr;
3354             if (parser->tok == '}')
3355                 break;
3356             if (parser->tok == TOKEN_KEYWORD) {
3357                 if (!strcmp(parser_tokval(parser), "case") ||
3358                     !strcmp(parser_tokval(parser), "default"))
3359                 {
3360                     break;
3361                 }
3362             }
3363             if (!parse_statement(parser, caseblock, &expr, true)) {
3364                 ast_delete(switchnode);
3365                 return false;
3366             }
3367             if (!expr)
3368                 continue;
3369             if (!ast_block_add_expr(caseblock, expr)) {
3370                 ast_delete(switchnode);
3371                 return false;
3372             }
3373         }
3374     }
3375
3376     parser_leaveblock(parser);
3377
3378     /* closing paren */
3379     if (parser->tok != '}') {
3380         ast_delete(switchnode);
3381         parseerror(parser, "expected closing paren of case list");
3382         return false;
3383     }
3384     if (!parser_next(parser)) {
3385         ast_delete(switchnode);
3386         parseerror(parser, "parse error after switch");
3387         return false;
3388     }
3389     *out = (ast_expression*)switchnode;
3390     return true;
3391 }
3392
3393 /* parse computed goto sides */
3394 static ast_expression *parse_goto_computed(parser_t *parser, ast_expression **side) {
3395     ast_expression *on_true;
3396     ast_expression *on_false;
3397     ast_expression *cond;
3398
3399     if (!*side)
3400         return NULL;
3401
3402     if (ast_istype(*side, ast_ternary)) {
3403         ast_ternary *tern = (ast_ternary*)*side;
3404         on_true  = parse_goto_computed(parser, &tern->on_true);
3405         on_false = parse_goto_computed(parser, &tern->on_false);
3406
3407         if (!on_true || !on_false) {
3408             parseerror(parser, "expected label or expression in ternary");
3409             if (on_true) ast_unref(on_true);
3410             if (on_false) ast_unref(on_false);
3411             return NULL;
3412         }
3413
3414         cond = tern->cond;
3415         tern->cond = NULL;
3416         ast_delete(tern);
3417         *side = NULL;
3418         return (ast_expression*)ast_ifthen_new(parser_ctx(parser), cond, on_true, on_false);
3419     } else if (ast_istype(*side, ast_label)) {
3420         ast_goto *gt = ast_goto_new(parser_ctx(parser), ((ast_label*)*side)->name);
3421         ast_goto_set_label(gt, ((ast_label*)*side));
3422         *side = NULL;
3423         return (ast_expression*)gt;
3424     }
3425     return NULL;
3426 }
3427
3428 static bool parse_goto(parser_t *parser, ast_expression **out)
3429 {
3430     ast_goto       *gt = NULL;
3431     ast_expression *lbl;
3432
3433     if (!parser_next(parser))
3434         return false;
3435
3436     if (parser->tok != TOKEN_IDENT) {
3437         ast_expression *expression;
3438
3439         /* could be an expression i.e computed goto :-) */
3440         if (parser->tok != '(') {
3441             parseerror(parser, "expected label name after `goto`");
3442             return false;
3443         }
3444
3445         /* failed to parse expression for goto */
3446         if (!(expression = parse_expression(parser, false, true)) ||
3447             !(*out = parse_goto_computed(parser, &expression))) {
3448             parseerror(parser, "invalid goto expression");
3449             ast_unref(expression);
3450             return false;
3451         }
3452
3453         return true;
3454     }
3455
3456     /* not computed goto */
3457     gt = ast_goto_new(parser_ctx(parser), parser_tokval(parser));
3458     lbl = parser_find_label(parser, gt->name);
3459     if (lbl) {
3460         if (!ast_istype(lbl, ast_label)) {
3461             parseerror(parser, "internal error: label is not an ast_label");
3462             ast_delete(gt);
3463             return false;
3464         }
3465         ast_goto_set_label(gt, (ast_label*)lbl);
3466     }
3467     else
3468         vec_push(parser->gotos, gt);
3469
3470     if (!parser_next(parser) || parser->tok != ';') {
3471         parseerror(parser, "semicolon expected after goto label");
3472         return false;
3473     }
3474     if (!parser_next(parser)) {
3475         parseerror(parser, "parse error after goto");
3476         return false;
3477     }
3478
3479     *out = (ast_expression*)gt;
3480     return true;
3481 }
3482
3483 static bool parse_skipwhite(parser_t *parser)
3484 {
3485     do {
3486         if (!parser_next(parser))
3487             return false;
3488     } while (parser->tok == TOKEN_WHITE && parser->tok < TOKEN_ERROR);
3489     return parser->tok < TOKEN_ERROR;
3490 }
3491
3492 static bool parse_eol(parser_t *parser)
3493 {
3494     if (!parse_skipwhite(parser))
3495         return false;
3496     return parser->tok == TOKEN_EOL;
3497 }
3498
3499 static bool parse_pragma_do(parser_t *parser)
3500 {
3501     if (!parser_next(parser) ||
3502         parser->tok != TOKEN_IDENT ||
3503         strcmp(parser_tokval(parser), "pragma"))
3504     {
3505         parseerror(parser, "expected `pragma` keyword after `#`, got `%s`", parser_tokval(parser));
3506         return false;
3507     }
3508     if (!parse_skipwhite(parser) || parser->tok != TOKEN_IDENT) {
3509         parseerror(parser, "expected pragma, got `%s`", parser_tokval(parser));
3510         return false;
3511     }
3512
3513     if (!strcmp(parser_tokval(parser), "noref")) {
3514         if (!parse_skipwhite(parser) || parser->tok != TOKEN_INTCONST) {
3515             parseerror(parser, "`noref` pragma requires an argument: 0 or 1");
3516             return false;
3517         }
3518         parser->noref = !!parser_token(parser)->constval.i;
3519         if (!parse_eol(parser)) {
3520             parseerror(parser, "parse error after `noref` pragma");
3521             return false;
3522         }
3523     }
3524     else
3525     {
3526         (void)!parsewarning(parser, WARN_UNKNOWN_PRAGMAS, "ignoring #pragma %s", parser_tokval(parser));
3527         return false;
3528     }
3529
3530     return true;
3531 }
3532
3533 static bool parse_pragma(parser_t *parser)
3534 {
3535     bool rv;
3536     parser->lex->flags.preprocessing = true;
3537     parser->lex->flags.mergelines = true;
3538     rv = parse_pragma_do(parser);
3539     if (parser->tok != TOKEN_EOL) {
3540         parseerror(parser, "junk after pragma");
3541         rv = false;
3542     }
3543     parser->lex->flags.preprocessing = false;
3544     parser->lex->flags.mergelines = false;
3545     if (!parser_next(parser)) {
3546         parseerror(parser, "parse error after pragma");
3547         rv = false;
3548     }
3549     return rv;
3550 }
3551
3552 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
3553 {
3554     bool       noref, is_static;
3555     int        cvq     = CV_NONE;
3556     uint32_t   qflags  = 0;
3557     ast_value *typevar = NULL;
3558     char      *vstring = NULL;
3559
3560     *out = NULL;
3561
3562     if (parser->tok == TOKEN_IDENT)
3563         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3564
3565     if (typevar || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
3566     {
3567         /* local variable */
3568         if (!block) {
3569             parseerror(parser, "cannot declare a variable from here");
3570             return false;
3571         }
3572         if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3573             if (parsewarning(parser, WARN_EXTENSIONS, "missing 'local' keyword when declaring a local variable"))
3574                 return false;
3575         }
3576         if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false, 0, NULL))
3577             return false;
3578         return true;
3579     }
3580     else if (parse_qualifiers(parser, !!block, &cvq, &noref, &is_static, &qflags, &vstring))
3581     {
3582         if (cvq == CV_WRONG)
3583             return false;
3584         return parse_variable(parser, block, true, cvq, NULL, noref, is_static, qflags, vstring);
3585     }
3586     else if (parser->tok == TOKEN_KEYWORD)
3587     {
3588         if (!strcmp(parser_tokval(parser), "__builtin_debug_printtype"))
3589         {
3590             char ty[1024];
3591             ast_value *tdef;
3592
3593             if (!parser_next(parser)) {
3594                 parseerror(parser, "parse error after __builtin_debug_printtype");
3595                 return false;
3596             }
3597
3598             if (parser->tok == TOKEN_IDENT && (tdef = parser_find_typedef(parser, parser_tokval(parser), 0)))
3599             {
3600                 ast_type_to_string((ast_expression*)tdef, ty, sizeof(ty));
3601                 con_out("__builtin_debug_printtype: `%s`=`%s`\n", tdef->name, ty);
3602                 if (!parser_next(parser)) {
3603                     parseerror(parser, "parse error after __builtin_debug_printtype typename argument");
3604                     return false;
3605                 }
3606             }
3607             else
3608             {
3609                 if (!parse_statement(parser, block, out, allow_cases))
3610                     return false;
3611                 if (!*out)
3612                     con_out("__builtin_debug_printtype: got no output node\n");
3613                 else
3614                 {
3615                     ast_type_to_string(*out, ty, sizeof(ty));
3616                     con_out("__builtin_debug_printtype: `%s`\n", ty);
3617                 }
3618             }
3619             return true;
3620         }
3621         else if (!strcmp(parser_tokval(parser), "return"))
3622         {
3623             return parse_return(parser, block, out);
3624         }
3625         else if (!strcmp(parser_tokval(parser), "if"))
3626         {
3627             return parse_if(parser, block, out);
3628         }
3629         else if (!strcmp(parser_tokval(parser), "while"))
3630         {
3631             return parse_while(parser, block, out);
3632         }
3633         else if (!strcmp(parser_tokval(parser), "do"))
3634         {
3635             return parse_dowhile(parser, block, out);
3636         }
3637         else if (!strcmp(parser_tokval(parser), "for"))
3638         {
3639             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3640                 if (parsewarning(parser, WARN_EXTENSIONS, "for loops are not recognized in the original Quake C standard, to enable try an alternate standard --std=?"))
3641                     return false;
3642             }
3643             return parse_for(parser, block, out);
3644         }
3645         else if (!strcmp(parser_tokval(parser), "break"))
3646         {
3647             return parse_break_continue(parser, block, out, false);
3648         }
3649         else if (!strcmp(parser_tokval(parser), "continue"))
3650         {
3651             return parse_break_continue(parser, block, out, true);
3652         }
3653         else if (!strcmp(parser_tokval(parser), "switch"))
3654         {
3655             return parse_switch(parser, block, out);
3656         }
3657         else if (!strcmp(parser_tokval(parser), "case") ||
3658                  !strcmp(parser_tokval(parser), "default"))
3659         {
3660             if (!allow_cases) {
3661                 parseerror(parser, "unexpected 'case' label");
3662                 return false;
3663             }
3664             return true;
3665         }
3666         else if (!strcmp(parser_tokval(parser), "goto"))
3667         {
3668             return parse_goto(parser, out);
3669         }
3670         else if (!strcmp(parser_tokval(parser), "typedef"))
3671         {
3672             if (!parser_next(parser)) {
3673                 parseerror(parser, "expected type definition after 'typedef'");
3674                 return false;
3675             }
3676             return parse_typedef(parser);
3677         }
3678         parseerror(parser, "Unexpected keyword");
3679         return false;
3680     }
3681     else if (parser->tok == '{')
3682     {
3683         ast_block *inner;
3684         inner = parse_block(parser);
3685         if (!inner)
3686             return false;
3687         *out = (ast_expression*)inner;
3688         return true;
3689     }
3690     else if (parser->tok == ':')
3691     {
3692         size_t i;
3693         ast_label *label;
3694         if (!parser_next(parser)) {
3695             parseerror(parser, "expected label name");
3696             return false;
3697         }
3698         if (parser->tok != TOKEN_IDENT) {
3699             parseerror(parser, "label must be an identifier");
3700             return false;
3701         }
3702         label = (ast_label*)parser_find_label(parser, parser_tokval(parser));
3703         if (label) {
3704             if (!label->undefined) {
3705                 parseerror(parser, "label `%s` already defined", label->name);
3706                 return false;
3707             }
3708             label->undefined = false;
3709         }
3710         else {
3711             label = ast_label_new(parser_ctx(parser), parser_tokval(parser), false);
3712             vec_push(parser->labels, label);
3713         }
3714         *out = (ast_expression*)label;
3715         if (!parser_next(parser)) {
3716             parseerror(parser, "parse error after label");
3717             return false;
3718         }
3719         for (i = 0; i < vec_size(parser->gotos); ++i) {
3720             if (!strcmp(parser->gotos[i]->name, label->name)) {
3721                 ast_goto_set_label(parser->gotos[i], label);
3722                 vec_remove(parser->gotos, i, 1);
3723                 --i;
3724             }
3725         }
3726         return true;
3727     }
3728     else if (parser->tok == ';')
3729     {
3730         if (!parser_next(parser)) {
3731             parseerror(parser, "parse error after empty statement");
3732             return false;
3733         }
3734         return true;
3735     }
3736     else
3737     {
3738         lex_ctx ctx = parser_ctx(parser);
3739         ast_expression *exp = parse_expression(parser, false, false);
3740         if (!exp)
3741             return false;
3742         *out = exp;
3743         if (!ast_side_effects(exp)) {
3744             if (compile_warning(ctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
3745                 return false;
3746         }
3747         return true;
3748     }
3749 }
3750
3751 static bool parse_enum(parser_t *parser)
3752 {
3753     bool        flag = false;
3754     bool        reverse = false;
3755     qcfloat     num = 0;
3756     ast_value **values = NULL;
3757     ast_value  *var = NULL;
3758     ast_value  *asvalue;
3759
3760     ast_expression *old;
3761
3762     if (!parser_next(parser) || (parser->tok != '{' && parser->tok != ':')) {
3763         parseerror(parser, "expected `{` or `:` after `enum` keyword");
3764         return false;
3765     }
3766
3767     /* enumeration attributes (can add more later) */
3768     if (parser->tok == ':') {
3769         if (!parser_next(parser) || parser->tok != TOKEN_IDENT){
3770             parseerror(parser, "expected `flag` or `reverse` for enumeration attribute");
3771             return false;
3772         }
3773
3774         /* attributes? */
3775         if (!strcmp(parser_tokval(parser), "flag")) {
3776             num  = 1;
3777             flag = true;
3778         }
3779         else if (!strcmp(parser_tokval(parser), "reverse")) {
3780             reverse = true;
3781         }
3782         else {
3783             parseerror(parser, "invalid attribute `%s` for enumeration", parser_tokval(parser));
3784             return false;
3785         }
3786
3787         if (!parser_next(parser) || parser->tok != '{') {
3788             parseerror(parser, "expected `{` after enum attribute ");
3789             return false;
3790         }
3791     }
3792
3793     while (true) {
3794         if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
3795             if (parser->tok == '}') {
3796                 /* allow an empty enum */
3797                 break;
3798             }
3799             parseerror(parser, "expected identifier or `}`");
3800             goto onerror;
3801         }
3802
3803         old = parser_find_field(parser, parser_tokval(parser));
3804         if (!old)
3805             old = parser_find_global(parser, parser_tokval(parser));
3806         if (old) {
3807             parseerror(parser, "value `%s` has already been declared here: %s:%i",
3808                        parser_tokval(parser), ast_ctx(old).file, ast_ctx(old).line);
3809             goto onerror;
3810         }
3811
3812         var = ast_value_new(parser_ctx(parser), parser_tokval(parser), TYPE_FLOAT);
3813         vec_push(values, var);
3814         var->cvq             = CV_CONST;
3815         var->hasvalue        = true;
3816
3817         /* for flagged enumerations increment in POTs of TWO */
3818         var->constval.vfloat = (flag) ? (num *= 2) : (num ++);
3819         parser_addglobal(parser, var->name, (ast_expression*)var);
3820
3821         if (!parser_next(parser)) {
3822             parseerror(parser, "expected `=`, `}` or comma after identifier");
3823             goto onerror;
3824         }
3825
3826         if (parser->tok == ',')
3827             continue;
3828         if (parser->tok == '}')
3829             break;
3830         if (parser->tok != '=') {
3831             parseerror(parser, "expected `=`, `}` or comma after identifier");
3832             goto onerror;
3833         }
3834
3835         if (!parser_next(parser)) {
3836             parseerror(parser, "expected expression after `=`");
3837             goto onerror;
3838         }
3839
3840         /* We got a value! */
3841         old = parse_expression_leave(parser, true, false, false);
3842         asvalue = (ast_value*)old;
3843         if (!ast_istype(old, ast_value) || asvalue->cvq != CV_CONST || !asvalue->hasvalue) {
3844             compile_error(ast_ctx(var), "constant value or expression expected");
3845             goto onerror;
3846         }
3847         num = (var->constval.vfloat = asvalue->constval.vfloat) + 1;
3848
3849         if (parser->tok == '}')
3850             break;
3851         if (parser->tok != ',') {
3852             parseerror(parser, "expected `}` or comma after expression");
3853             goto onerror;
3854         }
3855     }
3856
3857     /* patch them all (for reversed attribute) */
3858     if (reverse) {
3859         size_t i;
3860         for (i = 0; i < vec_size(values); i++)
3861             values[i]->constval.vfloat = vec_size(values) - i - 1;
3862     }
3863
3864     if (parser->tok != '}') {
3865         parseerror(parser, "internal error: breaking without `}`");
3866         goto onerror;
3867     }
3868
3869     if (!parser_next(parser) || parser->tok != ';') {
3870         parseerror(parser, "expected semicolon after enumeration");
3871         goto onerror;
3872     }
3873
3874     if (!parser_next(parser)) {
3875         parseerror(parser, "parse error after enumeration");
3876         goto onerror;
3877     }
3878
3879     vec_free(values);
3880     return true;
3881
3882 onerror:
3883     vec_free(values);
3884     return false;
3885 }
3886
3887 static bool parse_block_into(parser_t *parser, ast_block *block)
3888 {
3889     bool   retval = true;
3890
3891     parser_enterblock(parser);
3892
3893     if (!parser_next(parser)) { /* skip the '{' */
3894         parseerror(parser, "expected function body");
3895         goto cleanup;
3896     }
3897
3898     while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
3899     {
3900         ast_expression *expr = NULL;
3901         if (parser->tok == '}')
3902             break;
3903
3904         if (!parse_statement(parser, block, &expr, false)) {
3905             /* parseerror(parser, "parse error"); */
3906             block = NULL;
3907             goto cleanup;
3908         }
3909         if (!expr)
3910             continue;
3911         if (!ast_block_add_expr(block, expr)) {
3912             ast_delete(block);
3913             block = NULL;
3914             goto cleanup;
3915         }
3916     }
3917
3918     if (parser->tok != '}') {
3919         block = NULL;
3920     } else {
3921         (void)parser_next(parser);
3922     }
3923
3924 cleanup:
3925     if (!parser_leaveblock(parser))
3926         retval = false;
3927     return retval && !!block;
3928 }
3929
3930 static ast_block* parse_block(parser_t *parser)
3931 {
3932     ast_block *block;
3933     block = ast_block_new(parser_ctx(parser));
3934     if (!block)
3935         return NULL;
3936     if (!parse_block_into(parser, block)) {
3937         ast_block_delete(block);
3938         return NULL;
3939     }
3940     return block;
3941 }
3942
3943 static bool parse_statement_or_block(parser_t *parser, ast_expression **out)
3944 {
3945     if (parser->tok == '{') {
3946         *out = (ast_expression*)parse_block(parser);
3947         return !!*out;
3948     }
3949     return parse_statement(parser, NULL, out, false);
3950 }
3951
3952 static bool create_vector_members(ast_value *var, ast_member **me)
3953 {
3954     size_t i;
3955     size_t len = strlen(var->name);
3956
3957     for (i = 0; i < 3; ++i) {
3958         char *name = (char*)mem_a(len+3);
3959         memcpy(name, var->name, len);
3960         name[len+0] = '_';
3961         name[len+1] = 'x'+i;
3962         name[len+2] = 0;
3963         me[i] = ast_member_new(ast_ctx(var), (ast_expression*)var, i, name);
3964         mem_d(name);
3965         if (!me[i])
3966             break;
3967     }
3968     if (i == 3)
3969         return true;
3970
3971     /* unroll */
3972     do { ast_member_delete(me[--i]); } while(i);
3973     return false;
3974 }
3975
3976 static bool parse_function_body(parser_t *parser, ast_value *var)
3977 {
3978     ast_block      *block = NULL;
3979     ast_function   *func;
3980     ast_function   *old;
3981     size_t          parami;
3982
3983     ast_expression *framenum  = NULL;
3984     ast_expression *nextthink = NULL;
3985     /* None of the following have to be deleted */
3986     ast_expression *fld_think = NULL, *fld_nextthink = NULL, *fld_frame = NULL;
3987     ast_expression *gbl_time = NULL, *gbl_self = NULL;
3988     bool            has_frame_think;
3989
3990     bool retval = true;
3991
3992     has_frame_think = false;
3993     old = parser->function;
3994
3995     if (var->expression.flags & AST_FLAG_ALIAS) {
3996         parseerror(parser, "function aliases cannot have bodies");
3997         return false;
3998     }
3999
4000     if (vec_size(parser->gotos) || vec_size(parser->labels)) {
4001         parseerror(parser, "gotos/labels leaking");
4002         return false;
4003     }
4004
4005     if (!OPTS_FLAG(VARIADIC_ARGS) && var->expression.flags & AST_FLAG_VARIADIC) {
4006         if (parsewarning(parser, WARN_VARIADIC_FUNCTION,
4007                          "variadic function with implementation will not be able to access additional parameters (try -fvariadic-args)"))
4008         {
4009             return false;
4010         }
4011     }
4012
4013     if (parser->tok == '[') {
4014         /* got a frame definition: [ framenum, nextthink ]
4015          * this translates to:
4016          * self.frame = framenum;
4017          * self.nextthink = time + 0.1;
4018          * self.think = nextthink;
4019          */
4020         nextthink = NULL;
4021
4022         fld_think     = parser_find_field(parser, "think");
4023         fld_nextthink = parser_find_field(parser, "nextthink");
4024         fld_frame     = parser_find_field(parser, "frame");
4025         if (!fld_think || !fld_nextthink || !fld_frame) {
4026             parseerror(parser, "cannot use [frame,think] notation without the required fields");
4027             parseerror(parser, "please declare the following entityfields: `frame`, `think`, `nextthink`");
4028             return false;
4029         }
4030         gbl_time      = parser_find_global(parser, "time");
4031         gbl_self      = parser_find_global(parser, "self");
4032         if (!gbl_time || !gbl_self) {
4033             parseerror(parser, "cannot use [frame,think] notation without the required globals");
4034             parseerror(parser, "please declare the following globals: `time`, `self`");
4035             return false;
4036         }
4037
4038         if (!parser_next(parser))
4039             return false;
4040
4041         framenum = parse_expression_leave(parser, true, false, false);
4042         if (!framenum) {
4043             parseerror(parser, "expected a framenumber constant in[frame,think] notation");
4044             return false;
4045         }
4046         if (!ast_istype(framenum, ast_value) || !( (ast_value*)framenum )->hasvalue) {
4047             ast_unref(framenum);
4048             parseerror(parser, "framenumber in [frame,think] notation must be a constant");
4049             return false;
4050         }
4051
4052         if (parser->tok != ',') {
4053             ast_unref(framenum);
4054             parseerror(parser, "expected comma after frame number in [frame,think] notation");
4055             parseerror(parser, "Got a %i\n", parser->tok);
4056             return false;
4057         }
4058
4059         if (!parser_next(parser)) {
4060             ast_unref(framenum);
4061             return false;
4062         }
4063
4064         if (parser->tok == TOKEN_IDENT && !parser_find_var(parser, parser_tokval(parser)))
4065         {
4066             /* qc allows the use of not-yet-declared functions here
4067              * - this automatically creates a prototype */
4068             ast_value      *thinkfunc;
4069             ast_expression *functype = fld_think->expression.next;
4070
4071             thinkfunc = ast_value_new(parser_ctx(parser), parser_tokval(parser), functype->expression.vtype);
4072             if (!thinkfunc) { /* || !ast_type_adopt(thinkfunc, functype)*/
4073                 ast_unref(framenum);
4074                 parseerror(parser, "failed to create implicit prototype for `%s`", parser_tokval(parser));
4075                 return false;
4076             }
4077             ast_type_adopt(thinkfunc, functype);
4078
4079             if (!parser_next(parser)) {
4080                 ast_unref(framenum);
4081                 ast_delete(thinkfunc);
4082                 return false;
4083             }
4084
4085             parser_addglobal(parser, thinkfunc->name, (ast_expression*)thinkfunc);
4086
4087             nextthink = (ast_expression*)thinkfunc;
4088
4089         } else {
4090             nextthink = parse_expression_leave(parser, true, false, false);
4091             if (!nextthink) {
4092                 ast_unref(framenum);
4093                 parseerror(parser, "expected a think-function in [frame,think] notation");
4094                 return false;
4095             }
4096         }
4097
4098         if (!ast_istype(nextthink, ast_value)) {
4099             parseerror(parser, "think-function in [frame,think] notation must be a constant");
4100             retval = false;
4101         }
4102
4103         if (retval && parser->tok != ']') {
4104             parseerror(parser, "expected closing `]` for [frame,think] notation");
4105             retval = false;
4106         }
4107
4108         if (retval && !parser_next(parser)) {
4109             retval = false;
4110         }
4111
4112         if (retval && parser->tok != '{') {
4113             parseerror(parser, "a function body has to be declared after a [frame,think] declaration");
4114             retval = false;
4115         }
4116
4117         if (!retval) {
4118             ast_unref(nextthink);
4119             ast_unref(framenum);
4120             return false;
4121         }
4122
4123         has_frame_think = true;
4124     }
4125
4126     block = ast_block_new(parser_ctx(parser));
4127     if (!block) {
4128         parseerror(parser, "failed to allocate block");
4129         if (has_frame_think) {
4130             ast_unref(nextthink);
4131             ast_unref(framenum);
4132         }
4133         return false;
4134     }
4135
4136     if (has_frame_think) {
4137         lex_ctx ctx;
4138         ast_expression *self_frame;
4139         ast_expression *self_nextthink;
4140         ast_expression *self_think;
4141         ast_expression *time_plus_1;
4142         ast_store *store_frame;
4143         ast_store *store_nextthink;
4144         ast_store *store_think;
4145
4146         ctx = parser_ctx(parser);
4147         self_frame     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_frame);
4148         self_nextthink = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_nextthink);
4149         self_think     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_think);
4150
4151         time_plus_1    = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_F,
4152                          gbl_time, (ast_expression*)parser_const_float(parser, 0.1));
4153
4154         if (!self_frame || !self_nextthink || !self_think || !time_plus_1) {
4155             if (self_frame)     ast_delete(self_frame);
4156             if (self_nextthink) ast_delete(self_nextthink);
4157             if (self_think)     ast_delete(self_think);
4158             if (time_plus_1)    ast_delete(time_plus_1);
4159             retval = false;
4160         }
4161
4162         if (retval)
4163         {
4164             store_frame     = ast_store_new(ctx, INSTR_STOREP_F,   self_frame,     framenum);
4165             store_nextthink = ast_store_new(ctx, INSTR_STOREP_F,   self_nextthink, time_plus_1);
4166             store_think     = ast_store_new(ctx, INSTR_STOREP_FNC, self_think,     nextthink);
4167
4168             if (!store_frame) {
4169                 ast_delete(self_frame);
4170                 retval = false;
4171             }
4172             if (!store_nextthink) {
4173                 ast_delete(self_nextthink);
4174                 retval = false;
4175             }
4176             if (!store_think) {
4177                 ast_delete(self_think);
4178                 retval = false;
4179             }
4180             if (!retval) {
4181                 if (store_frame)     ast_delete(store_frame);
4182                 if (store_nextthink) ast_delete(store_nextthink);
4183                 if (store_think)     ast_delete(store_think);
4184                 retval = false;
4185             }
4186             if (!ast_block_add_expr(block, (ast_expression*)store_frame) ||
4187                 !ast_block_add_expr(block, (ast_expression*)store_nextthink) ||
4188                 !ast_block_add_expr(block, (ast_expression*)store_think))
4189             {
4190                 retval = false;
4191             }
4192         }
4193
4194         if (!retval) {
4195             parseerror(parser, "failed to generate code for [frame,think]");
4196             ast_unref(nextthink);
4197             ast_unref(framenum);
4198             ast_delete(block);
4199             return false;
4200         }
4201     }
4202
4203     if (var->hasvalue) {
4204         parseerror(parser, "function `%s` declared with multiple bodies", var->name);
4205         ast_block_delete(block);
4206         goto enderr;
4207     }
4208
4209     func = ast_function_new(ast_ctx(var), var->name, var);
4210     if (!func) {
4211         parseerror(parser, "failed to allocate function for `%s`", var->name);
4212         ast_block_delete(block);
4213         goto enderr;
4214     }
4215     vec_push(parser->functions, func);
4216
4217     parser_enterblock(parser);
4218
4219     for (parami = 0; parami < vec_size(var->expression.params); ++parami) {
4220         size_t     e;
4221         ast_value *param = var->expression.params[parami];
4222         ast_member *me[3];
4223
4224         if (param->expression.vtype != TYPE_VECTOR &&
4225             (param->expression.vtype != TYPE_FIELD ||
4226              param->expression.next->expression.vtype != TYPE_VECTOR))
4227         {
4228             continue;
4229         }
4230
4231         if (!create_vector_members(param, me)) {
4232             ast_block_delete(block);
4233             goto enderrfn;
4234         }
4235
4236         for (e = 0; e < 3; ++e) {
4237             parser_addlocal(parser, me[e]->name, (ast_expression*)me[e]);
4238             ast_block_collect(block, (ast_expression*)me[e]);
4239         }
4240     }
4241
4242     if (var->argcounter) {
4243         ast_value *argc = ast_value_new(ast_ctx(var), var->argcounter, TYPE_FLOAT);
4244         parser_addlocal(parser, argc->name, (ast_expression*)argc);
4245         func->argc = argc;
4246     }
4247
4248     if (OPTS_FLAG(VARIADIC_ARGS) && var->expression.flags & AST_FLAG_VARIADIC) {
4249         char name[1024];
4250         ast_value *varargs = ast_value_new(ast_ctx(var), "reserved:va_args", TYPE_ARRAY);
4251         varargs->expression.flags |= AST_FLAG_IS_VARARG;
4252         varargs->expression.next = (ast_expression*)ast_value_new(ast_ctx(var), NULL, TYPE_VECTOR);
4253         varargs->expression.count = 0;
4254         util_snprintf(name, sizeof(name), "%s##va##SET", var->name);
4255         if (!parser_create_array_setter_proto(parser, varargs, name)) {
4256             ast_delete(varargs);
4257             ast_block_delete(block);
4258             goto enderrfn;
4259         }
4260         util_snprintf(name, sizeof(name), "%s##va##GET", var->name);
4261         if (!parser_create_array_getter_proto(parser, varargs, varargs->expression.next, name)) {
4262             ast_delete(varargs);
4263             ast_block_delete(block);
4264             goto enderrfn;
4265         }
4266         func->varargs = varargs;
4267
4268         func->fixedparams = parser_const_float(parser, vec_size(var->expression.params));
4269     }
4270
4271     parser->function = func;
4272     if (!parse_block_into(parser, block)) {
4273         ast_block_delete(block);
4274         goto enderrfn;
4275     }
4276
4277     vec_push(func->blocks, block);
4278
4279     parser->function = old;
4280     if (!parser_leaveblock(parser))
4281         retval = false;
4282     if (vec_size(parser->variables) != PARSER_HT_LOCALS) {
4283         parseerror(parser, "internal error: local scopes left");
4284         retval = false;
4285     }
4286
4287     if (parser->tok == ';')
4288         return parser_next(parser);
4289     else if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
4290         parseerror(parser, "missing semicolon after function body (mandatory with -std=qcc)");
4291     return retval;
4292
4293 enderrfn:
4294     (void)!parser_leaveblock(parser);
4295     vec_pop(parser->functions);
4296     ast_function_delete(func);
4297     var->constval.vfunc = NULL;
4298
4299 enderr:
4300     parser->function = old;
4301     return false;
4302 }
4303
4304 static ast_expression *array_accessor_split(
4305     parser_t  *parser,
4306     ast_value *array,
4307     ast_value *index,
4308     size_t     middle,
4309     ast_expression *left,
4310     ast_expression *right
4311     )
4312 {
4313     ast_ifthen *ifthen;
4314     ast_binary *cmp;
4315
4316     lex_ctx ctx = ast_ctx(array);
4317
4318     if (!left || !right) {
4319         if (left)  ast_delete(left);
4320         if (right) ast_delete(right);
4321         return NULL;
4322     }
4323
4324     cmp = ast_binary_new(ctx, INSTR_LT,
4325                          (ast_expression*)index,
4326                          (ast_expression*)parser_const_float(parser, middle));
4327     if (!cmp) {
4328         ast_delete(left);
4329         ast_delete(right);
4330         parseerror(parser, "internal error: failed to create comparison for array setter");
4331         return NULL;
4332     }
4333
4334     ifthen = ast_ifthen_new(ctx, (ast_expression*)cmp, left, right);
4335     if (!ifthen) {
4336         ast_delete(cmp); /* will delete left and right */
4337         parseerror(parser, "internal error: failed to create conditional jump for array setter");
4338         return NULL;
4339     }
4340
4341     return (ast_expression*)ifthen;
4342 }
4343
4344 static ast_expression *array_setter_node(parser_t *parser, ast_value *array, ast_value *index, ast_value *value, size_t from, size_t afterend)
4345 {
4346     lex_ctx ctx = ast_ctx(array);
4347
4348     if (from+1 == afterend) {
4349         /* set this value */
4350         ast_block       *block;
4351         ast_return      *ret;
4352         ast_array_index *subscript;
4353         ast_store       *st;
4354         int assignop = type_store_instr[value->expression.vtype];
4355
4356         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
4357             assignop = INSTR_STORE_V;
4358
4359         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
4360         if (!subscript)
4361             return NULL;
4362
4363         st = ast_store_new(ctx, assignop, (ast_expression*)subscript, (ast_expression*)value);
4364         if (!st) {
4365             ast_delete(subscript);
4366             return NULL;
4367         }
4368
4369         block = ast_block_new(ctx);
4370         if (!block) {
4371             ast_delete(st);
4372             return NULL;
4373         }
4374
4375         if (!ast_block_add_expr(block, (ast_expression*)st)) {
4376             ast_delete(block);
4377             return NULL;
4378         }
4379
4380         ret = ast_return_new(ctx, NULL);
4381         if (!ret) {
4382             ast_delete(block);
4383             return NULL;
4384         }
4385
4386         if (!ast_block_add_expr(block, (ast_expression*)ret)) {
4387             ast_delete(block);
4388             return NULL;
4389         }
4390
4391         return (ast_expression*)block;
4392     } else {
4393         ast_expression *left, *right;
4394         size_t diff = afterend - from;
4395         size_t middle = from + diff/2;
4396         left  = array_setter_node(parser, array, index, value, from, middle);
4397         right = array_setter_node(parser, array, index, value, middle, afterend);
4398         return array_accessor_split(parser, array, index, middle, left, right);
4399     }
4400 }
4401
4402 static ast_expression *array_field_setter_node(
4403     parser_t  *parser,
4404     ast_value *array,
4405     ast_value *entity,
4406     ast_value *index,
4407     ast_value *value,
4408     size_t     from,
4409     size_t     afterend)
4410 {
4411     lex_ctx ctx = ast_ctx(array);
4412
4413     if (from+1 == afterend) {
4414         /* set this value */
4415         ast_block       *block;
4416         ast_return      *ret;
4417         ast_entfield    *entfield;
4418         ast_array_index *subscript;
4419         ast_store       *st;
4420         int assignop = type_storep_instr[value->expression.vtype];
4421
4422         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
4423             assignop = INSTR_STOREP_V;
4424
4425         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
4426         if (!subscript)
4427             return NULL;
4428
4429         subscript->expression.next = ast_type_copy(ast_ctx(subscript), (ast_expression*)subscript);
4430         subscript->expression.vtype = TYPE_FIELD;
4431
4432         entfield = ast_entfield_new_force(ctx,
4433                                           (ast_expression*)entity,
4434                                           (ast_expression*)subscript,
4435                                           (ast_expression*)subscript);
4436         if (!entfield) {
4437             ast_delete(subscript);
4438             return NULL;
4439         }
4440
4441         st = ast_store_new(ctx, assignop, (ast_expression*)entfield, (ast_expression*)value);
4442         if (!st) {
4443             ast_delete(entfield);
4444             return NULL;
4445         }
4446
4447         block = ast_block_new(ctx);
4448         if (!block) {
4449             ast_delete(st);
4450             return NULL;
4451         }
4452
4453         if (!ast_block_add_expr(block, (ast_expression*)st)) {
4454             ast_delete(block);
4455             return NULL;
4456         }
4457
4458         ret = ast_return_new(ctx, NULL);
4459         if (!ret) {
4460             ast_delete(block);
4461             return NULL;
4462         }
4463
4464         if (!ast_block_add_expr(block, (ast_expression*)ret)) {
4465             ast_delete(block);
4466             return NULL;
4467         }
4468
4469         return (ast_expression*)block;
4470     } else {
4471         ast_expression *left, *right;
4472         size_t diff = afterend - from;
4473         size_t middle = from + diff/2;
4474         left  = array_field_setter_node(parser, array, entity, index, value, from, middle);
4475         right = array_field_setter_node(parser, array, entity, index, value, middle, afterend);
4476         return array_accessor_split(parser, array, index, middle, left, right);
4477     }
4478 }
4479
4480 static ast_expression *array_getter_node(parser_t *parser, ast_value *array, ast_value *index, size_t from, size_t afterend)
4481 {
4482     lex_ctx ctx = ast_ctx(array);
4483
4484     if (from+1 == afterend) {
4485         ast_return      *ret;
4486         ast_array_index *subscript;
4487
4488         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
4489         if (!subscript)
4490             return NULL;
4491
4492         ret = ast_return_new(ctx, (ast_expression*)subscript);
4493         if (!ret) {
4494             ast_delete(subscript);
4495             return NULL;
4496         }
4497
4498         return (ast_expression*)ret;
4499     } else {
4500         ast_expression *left, *right;
4501         size_t diff = afterend - from;
4502         size_t middle = from + diff/2;
4503         left  = array_getter_node(parser, array, index, from, middle);
4504         right = array_getter_node(parser, array, index, middle, afterend);
4505         return array_accessor_split(parser, array, index, middle, left, right);
4506     }
4507 }
4508
4509 static bool parser_create_array_accessor(parser_t *parser, ast_value *array, const char *funcname, ast_value **out)
4510 {
4511     ast_function   *func = NULL;
4512     ast_value      *fval = NULL;
4513     ast_block      *body = NULL;
4514
4515     fval = ast_value_new(ast_ctx(array), funcname, TYPE_FUNCTION);
4516     if (!fval) {
4517         parseerror(parser, "failed to create accessor function value");
4518         return false;
4519     }
4520
4521     func = ast_function_new(ast_ctx(array), funcname, fval);
4522     if (!func) {
4523         ast_delete(fval);
4524         parseerror(parser, "failed to create accessor function node");
4525         return false;
4526     }
4527
4528     body = ast_block_new(ast_ctx(array));
4529     if (!body) {
4530         parseerror(parser, "failed to create block for array accessor");
4531         ast_delete(fval);
4532         ast_delete(func);
4533         return false;
4534     }
4535
4536     vec_push(func->blocks, body);
4537     *out = fval;
4538
4539     vec_push(parser->accessors, fval);
4540
4541     return true;
4542 }
4543
4544 static ast_value* parser_create_array_setter_proto(parser_t *parser, ast_value *array, const char *funcname)
4545 {
4546     ast_value      *index = NULL;
4547     ast_value      *value = NULL;
4548     ast_function   *func;
4549     ast_value      *fval;
4550
4551     if (!ast_istype(array->expression.next, ast_value)) {
4552         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4553         return NULL;
4554     }
4555
4556     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4557         return NULL;
4558     func = fval->constval.vfunc;
4559     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
4560
4561     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
4562     value = ast_value_copy((ast_value*)array->expression.next);
4563
4564     if (!index || !value) {
4565         parseerror(parser, "failed to create locals for array accessor");
4566         goto cleanup;
4567     }
4568     (void)!ast_value_set_name(value, "value"); /* not important */
4569     vec_push(fval->expression.params, index);
4570     vec_push(fval->expression.params, value);
4571
4572     array->setter = fval;
4573     return fval;
4574 cleanup:
4575     if (index) ast_delete(index);
4576     if (value) ast_delete(value);
4577     ast_delete(func);
4578     ast_delete(fval);
4579     return NULL;
4580 }
4581
4582 static bool parser_create_array_setter_impl(parser_t *parser, ast_value *array)
4583 {
4584     ast_expression *root = NULL;
4585     root = array_setter_node(parser, array,
4586                              array->setter->expression.params[0],
4587                              array->setter->expression.params[1],
4588                              0, array->expression.count);
4589     if (!root) {
4590         parseerror(parser, "failed to build accessor search tree");
4591         return false;
4592     }
4593     if (!ast_block_add_expr(array->setter->constval.vfunc->blocks[0], root)) {
4594         ast_delete(root);
4595         return false;
4596     }
4597     return true;
4598 }
4599
4600 static bool parser_create_array_setter(parser_t *parser, ast_value *array, const char *funcname)
4601 {
4602     if (!parser_create_array_setter_proto(parser, array, funcname))
4603         return false;
4604     return parser_create_array_setter_impl(parser, array);
4605 }
4606
4607 static bool parser_create_array_field_setter(parser_t *parser, ast_value *array, const char *funcname)
4608 {
4609     ast_expression *root = NULL;
4610     ast_value      *entity = NULL;
4611     ast_value      *index = NULL;
4612     ast_value      *value = NULL;
4613     ast_function   *func;
4614     ast_value      *fval;
4615
4616     if (!ast_istype(array->expression.next, ast_value)) {
4617         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4618         return false;
4619     }
4620
4621     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4622         return false;
4623     func = fval->constval.vfunc;
4624     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
4625
4626     entity = ast_value_new(ast_ctx(array), "entity", TYPE_ENTITY);
4627     index  = ast_value_new(ast_ctx(array), "index",  TYPE_FLOAT);
4628     value  = ast_value_copy((ast_value*)array->expression.next);
4629     if (!entity || !index || !value) {
4630         parseerror(parser, "failed to create locals for array accessor");
4631         goto cleanup;
4632     }
4633     (void)!ast_value_set_name(value, "value"); /* not important */
4634     vec_push(fval->expression.params, entity);
4635     vec_push(fval->expression.params, index);
4636     vec_push(fval->expression.params, value);
4637
4638     root = array_field_setter_node(parser, array, entity, index, value, 0, array->expression.count);
4639     if (!root) {
4640         parseerror(parser, "failed to build accessor search tree");
4641         goto cleanup;
4642     }
4643
4644     array->setter = fval;
4645     return ast_block_add_expr(func->blocks[0], root);
4646 cleanup:
4647     if (entity) ast_delete(entity);
4648     if (index)  ast_delete(index);
4649     if (value)  ast_delete(value);
4650     if (root)   ast_delete(root);
4651     ast_delete(func);
4652     ast_delete(fval);
4653     return false;
4654 }
4655
4656 static ast_value* parser_create_array_getter_proto(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
4657 {
4658     ast_value      *index = NULL;
4659     ast_value      *fval;
4660     ast_function   *func;
4661
4662     /* NOTE: checking array->expression.next rather than elemtype since
4663      * for fields elemtype is a temporary fieldtype.
4664      */
4665     if (!ast_istype(array->expression.next, ast_value)) {
4666         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
4667         return NULL;
4668     }
4669
4670     if (!parser_create_array_accessor(parser, array, funcname, &fval))
4671         return NULL;
4672     func = fval->constval.vfunc;
4673     fval->expression.next = ast_type_copy(ast_ctx(array), elemtype);
4674
4675     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
4676
4677     if (!index) {
4678         parseerror(parser, "failed to create locals for array accessor");
4679         goto cleanup;
4680     }
4681     vec_push(fval->expression.params, index);
4682
4683     array->getter = fval;
4684     return fval;
4685 cleanup:
4686     if (index) ast_delete(index);
4687     ast_delete(func);
4688     ast_delete(fval);
4689     return NULL;
4690 }
4691
4692 static bool parser_create_array_getter_impl(parser_t *parser, ast_value *array)
4693 {
4694     ast_expression *root = NULL;
4695
4696     root = array_getter_node(parser, array, array->getter->expression.params[0], 0, array->expression.count);
4697     if (!root) {
4698         parseerror(parser, "failed to build accessor search tree");
4699         return false;
4700     }
4701     if (!ast_block_add_expr(array->getter->constval.vfunc->blocks[0], root)) {
4702         ast_delete(root);
4703         return false;
4704     }
4705     return true;
4706 }
4707
4708 static bool parser_create_array_getter(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
4709 {
4710     if (!parser_create_array_getter_proto(parser, array, elemtype, funcname))
4711         return false;
4712     return parser_create_array_getter_impl(parser, array);
4713 }
4714
4715 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef);
4716 static ast_value *parse_parameter_list(parser_t *parser, ast_value *var)
4717 {
4718     lex_ctx     ctx;
4719     size_t      i;
4720     ast_value **params;
4721     ast_value  *param;
4722     ast_value  *fval;
4723     bool        first = true;
4724     bool        variadic = false;
4725     ast_value  *varparam = NULL;
4726     char       *argcounter = NULL;
4727
4728     ctx = parser_ctx(parser);
4729
4730     /* for the sake of less code we parse-in in this function */
4731     if (!parser_next(parser)) {
4732         parseerror(parser, "expected parameter list");
4733         return NULL;
4734     }
4735
4736     params = NULL;
4737
4738     /* parse variables until we hit a closing paren */
4739     while (parser->tok != ')') {
4740         if (!first) {
4741             /* there must be commas between them */
4742             if (parser->tok != ',') {
4743                 parseerror(parser, "expected comma or end of parameter list");
4744                 goto on_error;
4745             }
4746             if (!parser_next(parser)) {
4747                 parseerror(parser, "expected parameter");
4748                 goto on_error;
4749             }
4750         }
4751         first = false;
4752
4753         if (parser->tok == TOKEN_DOTS) {
4754             /* '...' indicates a varargs function */
4755             variadic = true;
4756             if (!parser_next(parser) || (parser->tok != ')' && parser->tok != TOKEN_IDENT)) {
4757                 parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4758                 goto on_error;
4759             }
4760             if (parser->tok == TOKEN_IDENT) {
4761                 argcounter = util_strdup(parser_tokval(parser));
4762                 if (!parser_next(parser) || parser->tok != ')') {
4763                     parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4764                     goto on_error;
4765                 }
4766             }
4767         }
4768         else
4769         {
4770             /* for anything else just parse a typename */
4771             param = parse_typename(parser, NULL, NULL);
4772             if (!param)
4773                 goto on_error;
4774             vec_push(params, param);
4775             if (param->expression.vtype >= TYPE_VARIANT) {
4776                 char tname[1024]; /* typename is reserved in C++ */
4777                 ast_type_to_string((ast_expression*)param, tname, sizeof(tname));
4778                 parseerror(parser, "type not supported as part of a parameter list: %s", tname);
4779                 goto on_error;
4780             }
4781             /* type-restricted varargs */
4782             if (parser->tok == TOKEN_DOTS) {
4783                 variadic = true;
4784                 varparam = vec_last(params);
4785                 vec_pop(params);
4786                 if (!parser_next(parser) || (parser->tok != ')' && parser->tok != TOKEN_IDENT)) {
4787                     parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4788                     goto on_error;
4789                 }
4790                 if (parser->tok == TOKEN_IDENT) {
4791                     argcounter = util_strdup(parser_tokval(parser));
4792                     if (!parser_next(parser) || parser->tok != ')') {
4793                         parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
4794                         goto on_error;
4795                     }
4796                 }
4797             }
4798         }
4799     }
4800
4801     if (vec_size(params) == 1 && params[0]->expression.vtype == TYPE_VOID)
4802         vec_free(params);
4803
4804     /* sanity check */
4805     if (vec_size(params) > 8 && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
4806         (void)!parsewarning(parser, WARN_EXTENSIONS, "more than 8 parameters are not supported by this standard");
4807
4808     /* parse-out */
4809     if (!parser_next(parser)) {
4810         parseerror(parser, "parse error after typename");
4811         goto on_error;
4812     }
4813
4814     /* now turn 'var' into a function type */
4815     fval = ast_value_new(ctx, "<type()>", TYPE_FUNCTION);
4816     fval->expression.next     = (ast_expression*)var;
4817     if (variadic)
4818         fval->expression.flags |= AST_FLAG_VARIADIC;
4819     var = fval;
4820
4821     var->expression.params   = params;
4822     var->expression.varparam = (ast_expression*)varparam;
4823     var->argcounter          = argcounter;
4824     params = NULL;
4825
4826     return var;
4827
4828 on_error:
4829     if (argcounter)
4830         mem_d(argcounter);
4831     if (varparam)
4832         ast_delete(varparam);
4833     ast_delete(var);
4834     for (i = 0; i < vec_size(params); ++i)
4835         ast_delete(params[i]);
4836     vec_free(params);
4837     return NULL;
4838 }
4839
4840 static ast_value *parse_arraysize(parser_t *parser, ast_value *var)
4841 {
4842     ast_expression *cexp;
4843     ast_value      *cval, *tmp;
4844     lex_ctx ctx;
4845
4846     ctx = parser_ctx(parser);
4847
4848     if (!parser_next(parser)) {
4849         ast_delete(var);
4850         parseerror(parser, "expected array-size");
4851         return NULL;
4852     }
4853
4854     cexp = parse_expression_leave(parser, true, false, false);
4855
4856     if (!cexp || !ast_istype(cexp, ast_value)) {
4857         if (cexp)
4858             ast_unref(cexp);
4859         ast_delete(var);
4860         parseerror(parser, "expected array-size as constant positive integer");
4861         return NULL;
4862     }
4863     cval = (ast_value*)cexp;
4864
4865     tmp = ast_value_new(ctx, "<type[]>", TYPE_ARRAY);
4866     tmp->expression.next = (ast_expression*)var;
4867     var = tmp;
4868
4869     if (cval->expression.vtype == TYPE_INTEGER)
4870         tmp->expression.count = cval->constval.vint;
4871     else if (cval->expression.vtype == TYPE_FLOAT)
4872         tmp->expression.count = cval->constval.vfloat;
4873     else {
4874         ast_unref(cexp);
4875         ast_delete(var);
4876         parseerror(parser, "array-size must be a positive integer constant");
4877         return NULL;
4878     }
4879     ast_unref(cexp);
4880
4881     if (parser->tok != ']') {
4882         ast_delete(var);
4883         parseerror(parser, "expected ']' after array-size");
4884         return NULL;
4885     }
4886     if (!parser_next(parser)) {
4887         ast_delete(var);
4888         parseerror(parser, "error after parsing array size");
4889         return NULL;
4890     }
4891     return var;
4892 }
4893
4894 /* Parse a complete typename.
4895  * for single-variables (ie. function parameters or typedefs) storebase should be NULL
4896  * but when parsing variables separated by comma
4897  * 'storebase' should point to where the base-type should be kept.
4898  * The base type makes up every bit of type information which comes *before* the
4899  * variable name.
4900  *
4901  * The following will be parsed in its entirety:
4902  *     void() foo()
4903  * The 'basetype' in this case is 'void()'
4904  * and if there's a comma after it, say:
4905  *     void() foo(), bar
4906  * then the type-information 'void()' can be stored in 'storebase'
4907  */
4908 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef)
4909 {
4910     ast_value *var, *tmp;
4911     lex_ctx    ctx;
4912
4913     const char *name = NULL;
4914     bool        isfield  = false;
4915     bool        wasarray = false;
4916     size_t      morefields = 0;
4917
4918     ctx = parser_ctx(parser);
4919
4920     /* types may start with a dot */
4921     if (parser->tok == '.') {
4922         isfield = true;
4923         /* if we parsed a dot we need a typename now */
4924         if (!parser_next(parser)) {
4925             parseerror(parser, "expected typename for field definition");
4926             return NULL;
4927         }
4928
4929         /* Further dots are handled seperately because they won't be part of the
4930          * basetype
4931          */
4932         while (parser->tok == '.') {
4933             ++morefields;
4934             if (!parser_next(parser)) {
4935                 parseerror(parser, "expected typename for field definition");
4936                 return NULL;
4937             }
4938         }
4939     }
4940     if (parser->tok == TOKEN_IDENT)
4941         cached_typedef = parser_find_typedef(parser, parser_tokval(parser), 0);
4942     if (!cached_typedef && parser->tok != TOKEN_TYPENAME) {
4943         parseerror(parser, "expected typename");
4944         return NULL;
4945     }
4946
4947     /* generate the basic type value */
4948     if (cached_typedef) {
4949         var = ast_value_copy(cached_typedef);
4950         ast_value_set_name(var, "<type(from_def)>");
4951     } else
4952         var = ast_value_new(ctx, "<type>", parser_token(parser)->constval.t);
4953
4954     for (; morefields; --morefields) {
4955         tmp = ast_value_new(ctx, "<.type>", TYPE_FIELD);
4956         tmp->expression.next = (ast_expression*)var;
4957         var = tmp;
4958     }
4959
4960     /* do not yet turn into a field - remember:
4961      * .void() foo; is a field too
4962      * .void()() foo; is a function
4963      */
4964
4965     /* parse on */
4966     if (!parser_next(parser)) {
4967         ast_delete(var);
4968         parseerror(parser, "parse error after typename");
4969         return NULL;
4970     }
4971
4972     /* an opening paren now starts the parameter-list of a function
4973      * this is where original-QC has parameter lists.
4974      * We allow a single parameter list here.
4975      * Much like fteqcc we don't allow `float()() x`
4976      */
4977     if (parser->tok == '(') {
4978         var = parse_parameter_list(parser, var);
4979         if (!var)
4980             return NULL;
4981     }
4982
4983     /* store the base if requested */
4984     if (storebase) {
4985         *storebase = ast_value_copy(var);
4986         if (isfield) {
4987             tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
4988             tmp->expression.next = (ast_expression*)*storebase;
4989             *storebase = tmp;
4990         }
4991     }
4992
4993     /* there may be a name now */
4994     if (parser->tok == TOKEN_IDENT) {
4995         name = util_strdup(parser_tokval(parser));
4996         /* parse on */
4997         if (!parser_next(parser)) {
4998             ast_delete(var);
4999             parseerror(parser, "error after variable or field declaration");
5000             return NULL;
5001         }
5002     }
5003
5004     /* now this may be an array */
5005     if (parser->tok == '[') {
5006         wasarray = true;
5007         var = parse_arraysize(parser, var);
5008         if (!var)
5009             return NULL;
5010     }
5011
5012     /* This is the point where we can turn it into a field */
5013     if (isfield) {
5014         /* turn it into a field if desired */
5015         tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
5016         tmp->expression.next = (ast_expression*)var;
5017         var = tmp;
5018     }
5019
5020     /* now there may be function parens again */
5021     if (parser->tok == '(' && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
5022         parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
5023     if (parser->tok == '(' && wasarray)
5024         parseerror(parser, "arrays as part of a return type is not supported");
5025     while (parser->tok == '(') {
5026         var = parse_parameter_list(parser, var);
5027         if (!var) {
5028             if (name)
5029                 mem_d((void*)name);
5030             return NULL;
5031         }
5032     }
5033
5034     /* finally name it */
5035     if (name) {
5036         if (!ast_value_set_name(var, name)) {
5037             ast_delete(var);
5038             parseerror(parser, "internal error: failed to set name");
5039             return NULL;
5040         }
5041         /* free the name, ast_value_set_name duplicates */
5042         mem_d((void*)name);
5043     }
5044
5045     return var;
5046 }
5047
5048 static bool parse_typedef(parser_t *parser)
5049 {
5050     ast_value      *typevar, *oldtype;
5051     ast_expression *old;
5052
5053     typevar = parse_typename(parser, NULL, NULL);
5054
5055     if (!typevar)
5056         return false;
5057
5058     if ( (old = parser_find_var(parser, typevar->name)) ) {
5059         parseerror(parser, "cannot define a type with the same name as a variable: %s\n"
5060                    " -> `%s` has been declared here: %s:%i",
5061                    typevar->name, ast_ctx(old).file, ast_ctx(old).line);
5062         ast_delete(typevar);
5063         return false;
5064     }
5065
5066     if ( (oldtype = parser_find_typedef(parser, typevar->name, vec_last(parser->_blocktypedefs))) ) {
5067         parseerror(parser, "type `%s` has already been declared here: %s:%i",
5068                    typevar->name, ast_ctx(oldtype).file, ast_ctx(oldtype).line);
5069         ast_delete(typevar);
5070         return false;
5071     }
5072
5073     vec_push(parser->_typedefs, typevar);
5074     util_htset(vec_last(parser->typedefs), typevar->name, typevar);
5075
5076     if (parser->tok != ';') {
5077         parseerror(parser, "expected semicolon after typedef");
5078         return false;
5079     }
5080     if (!parser_next(parser)) {
5081         parseerror(parser, "parse error after typedef");
5082         return false;
5083     }
5084
5085     return true;
5086 }
5087
5088 static const char *cvq_to_str(int cvq) {
5089     switch (cvq) {
5090         case CV_NONE:  return "none";
5091         case CV_VAR:   return "`var`";
5092         case CV_CONST: return "`const`";
5093         default:       return "<INVALID>";
5094     }
5095 }
5096
5097 static bool parser_check_qualifiers(parser_t *parser, const ast_value *var, const ast_value *proto)
5098 {
5099     bool av, ao;
5100     if (proto->cvq != var->cvq) {
5101         if (!(proto->cvq == CV_CONST && var->cvq == CV_NONE &&
5102               !OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
5103               parser->tok == '='))
5104         {
5105             return !parsewarning(parser, WARN_DIFFERENT_QUALIFIERS,
5106                                  "`%s` declared with different qualifiers: %s\n"
5107                                  " -> previous declaration here: %s:%i uses %s",
5108                                  var->name, cvq_to_str(var->cvq),
5109                                  ast_ctx(proto).file, ast_ctx(proto).line,
5110                                  cvq_to_str(proto->cvq));
5111         }
5112     }
5113     av = (var  ->expression.flags & AST_FLAG_NORETURN);
5114     ao = (proto->expression.flags & AST_FLAG_NORETURN);
5115     if (!av != !ao) {
5116         return !parsewarning(parser, WARN_DIFFERENT_ATTRIBUTES,
5117                              "`%s` declared with different attributes%s\n"
5118                              " -> previous declaration here: %s:%i",
5119                              var->name, (av ? ": noreturn" : ""),
5120                              ast_ctx(proto).file, ast_ctx(proto).line,
5121                              (ao ? ": noreturn" : ""));
5122     }
5123     return true;
5124 }
5125
5126 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)
5127 {
5128     ast_value *var;
5129     ast_value *proto;
5130     ast_expression *old;
5131     bool       was_end;
5132     size_t     i;
5133
5134     ast_value *basetype = NULL;
5135     bool      retval    = true;
5136     bool      isparam   = false;
5137     bool      isvector  = false;
5138     bool      cleanvar  = true;
5139     bool      wasarray  = false;
5140
5141     ast_member *me[3] = { NULL, NULL, NULL };
5142
5143     if (!localblock && is_static)
5144         parseerror(parser, "`static` qualifier is not supported in global scope");
5145
5146     /* get the first complete variable */
5147     var = parse_typename(parser, &basetype, cached_typedef);
5148     if (!var) {
5149         if (basetype)
5150             ast_delete(basetype);
5151         return false;
5152     }
5153
5154     while (true) {
5155         proto = NULL;
5156         wasarray = false;
5157
5158         /* Part 0: finish the type */
5159         if (parser->tok == '(') {
5160             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
5161                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
5162             var = parse_parameter_list(parser, var);
5163             if (!var) {
5164                 retval = false;
5165                 goto cleanup;
5166             }
5167         }
5168         /* we only allow 1-dimensional arrays */
5169         if (parser->tok == '[') {
5170             wasarray = true;
5171             var = parse_arraysize(parser, var);
5172             if (!var) {
5173                 retval = false;
5174                 goto cleanup;
5175             }
5176         }
5177         if (parser->tok == '(' && wasarray) {
5178             parseerror(parser, "arrays as part of a return type is not supported");
5179             /* we'll still parse the type completely for now */
5180         }
5181         /* for functions returning functions */
5182         while (parser->tok == '(') {
5183             if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC)
5184                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
5185             var = parse_parameter_list(parser, var);
5186             if (!var) {
5187                 retval = false;
5188                 goto cleanup;
5189             }
5190         }
5191
5192         var->cvq = qualifier;
5193         var->expression.flags |= qflags;
5194
5195         /*
5196          * store the vstring back to var for alias and
5197          * deprecation messages.
5198          */
5199         if (var->expression.flags & AST_FLAG_DEPRECATED ||
5200             var->expression.flags & AST_FLAG_ALIAS)
5201             var->desc = vstring;
5202
5203         /* Part 1:
5204          * check for validity: (end_sys_..., multiple-definitions, prototypes, ...)
5205          * Also: if there was a prototype, `var` will be deleted and set to `proto` which
5206          * is then filled with the previous definition and the parameter-names replaced.
5207          */
5208         if (!strcmp(var->name, "nil")) {
5209             if (OPTS_FLAG(UNTYPED_NIL)) {
5210                 if (!localblock || !OPTS_FLAG(PERMISSIVE))
5211                     parseerror(parser, "name `nil` not allowed (try -fpermissive)");
5212             } else
5213                 (void)!parsewarning(parser, WARN_RESERVED_NAMES, "variable name `nil` is reserved");
5214         }
5215         if (!localblock) {
5216             /* Deal with end_sys_ vars */
5217             was_end = false;
5218             if (!strcmp(var->name, "end_sys_globals")) {
5219                 var->uses++;
5220                 parser->crc_globals = vec_size(parser->globals);
5221                 was_end = true;
5222             }
5223             else if (!strcmp(var->name, "end_sys_fields")) {
5224                 var->uses++;
5225                 parser->crc_fields = vec_size(parser->fields);
5226                 was_end = true;
5227             }
5228             if (was_end && var->expression.vtype == TYPE_FIELD) {
5229                 if (parsewarning(parser, WARN_END_SYS_FIELDS,
5230                                  "global '%s' hint should not be a field",
5231                                  parser_tokval(parser)))
5232                 {
5233                     retval = false;
5234                     goto cleanup;
5235                 }
5236             }
5237
5238             if (!nofields && var->expression.vtype == TYPE_FIELD)
5239             {
5240                 /* deal with field declarations */
5241                 old = parser_find_field(parser, var->name);
5242                 if (old) {
5243                     if (parsewarning(parser, WARN_FIELD_REDECLARED, "field `%s` already declared here: %s:%i",
5244                                      var->name, ast_ctx(old).file, (int)ast_ctx(old).line))
5245                     {
5246                         retval = false;
5247                         goto cleanup;
5248                     }
5249                     ast_delete(var);
5250                     var = NULL;
5251                     goto skipvar;
5252                     /*
5253                     parseerror(parser, "field `%s` already declared here: %s:%i",
5254                                var->name, ast_ctx(old).file, ast_ctx(old).line);
5255                     retval = false;
5256                     goto cleanup;
5257                     */
5258                 }
5259                 if ((OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC || OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_FTEQCC) &&
5260                     (old = parser_find_global(parser, var->name)))
5261                 {
5262                     parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
5263                     parseerror(parser, "field `%s` already declared here: %s:%i",
5264                                var->name, ast_ctx(old).file, ast_ctx(old).line);
5265                     retval = false;
5266                     goto cleanup;
5267                 }
5268             }
5269             else
5270             {
5271                 /* deal with other globals */
5272                 old = parser_find_global(parser, var->name);
5273                 if (old && var->expression.vtype == TYPE_FUNCTION && old->expression.vtype == TYPE_FUNCTION)
5274                 {
5275                     /* This is a function which had a prototype */
5276                     if (!ast_istype(old, ast_value)) {
5277                         parseerror(parser, "internal error: prototype is not an ast_value");
5278                         retval = false;
5279                         goto cleanup;
5280                     }
5281                     proto = (ast_value*)old;
5282                     proto->desc = var->desc;
5283                     if (!ast_compare_type((ast_expression*)proto, (ast_expression*)var)) {
5284                         parseerror(parser, "conflicting types for `%s`, previous declaration was here: %s:%i",
5285                                    proto->name,
5286                                    ast_ctx(proto).file, ast_ctx(proto).line);
5287                         retval = false;
5288                         goto cleanup;
5289                     }
5290                     /* we need the new parameter-names */
5291                     for (i = 0; i < vec_size(proto->expression.params); ++i)
5292                         ast_value_set_name(proto->expression.params[i], var->expression.params[i]->name);
5293                     if (!parser_check_qualifiers(parser, var, proto)) {
5294                         retval = false;
5295                         if (proto->desc)
5296                             mem_d(proto->desc);
5297                         proto = NULL;
5298                         goto cleanup;
5299                     }
5300                     proto->expression.flags |= var->expression.flags;
5301                     ast_delete(var);
5302                     var = proto;
5303                 }
5304                 else
5305                 {
5306                     /* other globals */
5307                     if (old) {
5308                         if (parsewarning(parser, WARN_DOUBLE_DECLARATION,
5309                                          "global `%s` already declared here: %s:%i",
5310                                          var->name, ast_ctx(old).file, ast_ctx(old).line))
5311                         {
5312                             retval = false;
5313                             goto cleanup;
5314                         }
5315                         proto = (ast_value*)old;
5316                         if (!ast_istype(old, ast_value)) {
5317                             parseerror(parser, "internal error: not an ast_value");
5318                             retval = false;
5319                             proto = NULL;
5320                             goto cleanup;
5321                         }
5322                         if (!parser_check_qualifiers(parser, var, proto)) {
5323                             retval = false;
5324                             proto = NULL;
5325                             goto cleanup;
5326                         }
5327                         proto->expression.flags |= var->expression.flags;
5328                         ast_delete(var);
5329                         var = proto;
5330                     }
5331                     if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC &&
5332                         (old = parser_find_field(parser, var->name)))
5333                     {
5334                         parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
5335                         parseerror(parser, "global `%s` already declared here: %s:%i",
5336                                    var->name, ast_ctx(old).file, ast_ctx(old).line);
5337                         retval = false;
5338                         goto cleanup;
5339                     }
5340                 }
5341             }
5342         }
5343         else /* it's not a global */
5344         {
5345             old = parser_find_local(parser, var->name, vec_size(parser->variables)-1, &isparam);
5346             if (old && !isparam) {
5347                 parseerror(parser, "local `%s` already declared here: %s:%i",
5348                            var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
5349                 retval = false;
5350                 goto cleanup;
5351             }
5352             old = parser_find_local(parser, var->name, 0, &isparam);
5353             if (old && isparam) {
5354                 if (parsewarning(parser, WARN_LOCAL_SHADOWS,
5355                                  "local `%s` is shadowing a parameter", var->name))
5356                 {
5357                     parseerror(parser, "local `%s` already declared here: %s:%i",
5358                                var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
5359                     retval = false;
5360                     goto cleanup;
5361                 }
5362                 if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_GMQCC) {
5363                     ast_delete(var);
5364                     var = NULL;
5365                     goto skipvar;
5366                 }
5367             }
5368         }
5369
5370         /* in a noref section we simply bump the usecount */
5371         if (noref || parser->noref)
5372             var->uses++;
5373
5374         /* Part 2:
5375          * Create the global/local, and deal with vector types.
5376          */
5377         if (!proto) {
5378             if (var->expression.vtype == TYPE_VECTOR)
5379                 isvector = true;
5380             else if (var->expression.vtype == TYPE_FIELD &&
5381                      var->expression.next->expression.vtype == TYPE_VECTOR)
5382                 isvector = true;
5383
5384             if (isvector) {
5385                 if (!create_vector_members(var, me)) {
5386                     retval = false;
5387                     goto cleanup;
5388                 }
5389             }
5390
5391             if (!localblock) {
5392                 /* deal with global variables, fields, functions */
5393                 if (!nofields && var->expression.vtype == TYPE_FIELD && parser->tok != '=') {
5394                     var->isfield = true;
5395                     vec_push(parser->fields, (ast_expression*)var);
5396                     util_htset(parser->htfields, var->name, var);
5397                     if (isvector) {
5398                         for (i = 0; i < 3; ++i) {
5399                             vec_push(parser->fields, (ast_expression*)me[i]);
5400                             util_htset(parser->htfields, me[i]->name, me[i]);
5401                         }
5402                     }
5403                 }
5404                 else {
5405                     if (!(var->expression.flags & AST_FLAG_ALIAS)) {
5406                         parser_addglobal(parser, var->name, (ast_expression*)var);
5407                         if (isvector) {
5408                             for (i = 0; i < 3; ++i) {
5409                                 parser_addglobal(parser, me[i]->name, (ast_expression*)me[i]);
5410                             }
5411                         }
5412                     } else {
5413                         ast_expression *find  = parser_find_global(parser, var->desc);
5414
5415                         if (!find) {
5416                             compile_error(parser_ctx(parser), "undeclared variable `%s` for alias `%s`", var->desc, var->name);
5417                             return false;
5418                         }
5419
5420                         if (var->expression.vtype != find->expression.vtype) {
5421                             char ty1[1024];
5422                             char ty2[1024];
5423
5424                             ast_type_to_string(find,                  ty1, sizeof(ty1));
5425                             ast_type_to_string((ast_expression*)var,  ty2, sizeof(ty2));
5426
5427                             compile_error(parser_ctx(parser), "incompatible types `%s` and `%s` for alias `%s`",
5428                                 ty1, ty2, var->name
5429                             );
5430                             return false;
5431                         }
5432
5433                         /*
5434                          * add alias to aliases table and to corrector
5435                          * so corrections can apply for aliases as well.
5436                          */
5437                         util_htset(parser->aliases, var->name, find);
5438
5439                         /*
5440                          * add to corrector so corrections can work
5441                          * even for aliases too.
5442                          */
5443                         correct_add (
5444                              vec_last(parser->correct_variables),
5445                             &vec_last(parser->correct_variables_score),
5446                             var->name
5447                         );
5448
5449                         /* generate aliases for vector components */
5450                         if (isvector) {
5451                             char *buffer[3];
5452
5453                             util_asprintf(&buffer[0], "%s_x", var->desc);
5454                             util_asprintf(&buffer[1], "%s_y", var->desc);
5455                             util_asprintf(&buffer[2], "%s_z", var->desc);
5456
5457                             util_htset(parser->aliases, me[0]->name, parser_find_global(parser, buffer[0]));
5458                             util_htset(parser->aliases, me[1]->name, parser_find_global(parser, buffer[1]));
5459                             util_htset(parser->aliases, me[2]->name, parser_find_global(parser, buffer[2]));
5460
5461                             mem_d(buffer[0]);
5462                             mem_d(buffer[1]);
5463                             mem_d(buffer[2]);
5464
5465                             /*
5466                              * add to corrector so corrections can work
5467                              * even for aliases too.
5468                              */
5469                             correct_add (
5470                                  vec_last(parser->correct_variables),
5471                                 &vec_last(parser->correct_variables_score),
5472                                 me[0]->name
5473                             );
5474                             correct_add (
5475                                  vec_last(parser->correct_variables),
5476                                 &vec_last(parser->correct_variables_score),
5477                                 me[1]->name
5478                             );
5479                             correct_add (
5480                                  vec_last(parser->correct_variables),
5481                                 &vec_last(parser->correct_variables_score),
5482                                 me[2]->name
5483                             );
5484                         }
5485                     }
5486                 }
5487             } else {
5488                 if (is_static) {
5489                     /* a static adds itself to be generated like any other global
5490                      * but is added to the local namespace instead
5491                      */
5492                     char   *defname = NULL;
5493                     size_t  prefix_len, ln;
5494
5495                     ln = strlen(parser->function->name);
5496                     vec_append(defname, ln, parser->function->name);
5497
5498                     vec_append(defname, 2, "::");
5499                     /* remember the length up to here */
5500                     prefix_len = vec_size(defname);
5501
5502                     /* Add it to the local scope */
5503                     util_htset(vec_last(parser->variables), var->name, (void*)var);
5504
5505                     /* corrector */
5506                     correct_add (
5507                          vec_last(parser->correct_variables),
5508                         &vec_last(parser->correct_variables_score),
5509                         var->name
5510                     );
5511
5512                     /* now rename the global */
5513                     ln = strlen(var->name);
5514                     vec_append(defname, ln, var->name);
5515                     ast_value_set_name(var, defname);
5516
5517                     /* push it to the to-be-generated globals */
5518                     vec_push(parser->globals, (ast_expression*)var);
5519
5520                     /* same game for the vector members */
5521                     if (isvector) {
5522                         for (i = 0; i < 3; ++i) {
5523                             util_htset(vec_last(parser->variables), me[i]->name, (void*)(me[i]));
5524
5525                             /* corrector */
5526                             correct_add(
5527                                  vec_last(parser->correct_variables),
5528                                 &vec_last(parser->correct_variables_score),
5529                                 me[i]->name
5530                             );
5531
5532                             vec_shrinkto(defname, prefix_len);
5533                             ln = strlen(me[i]->name);
5534                             vec_append(defname, ln, me[i]->name);
5535                             ast_member_set_name(me[i], defname);
5536
5537                             vec_push(parser->globals, (ast_expression*)me[i]);
5538                         }
5539                     }
5540                     vec_free(defname);
5541                 } else {
5542                     vec_push(localblock->locals, var);
5543                     parser_addlocal(parser, var->name, (ast_expression*)var);
5544                     if (isvector) {
5545                         for (i = 0; i < 3; ++i) {
5546                             parser_addlocal(parser, me[i]->name, (ast_expression*)me[i]);
5547                             ast_block_collect(localblock, (ast_expression*)me[i]);
5548                         }
5549                     }
5550                 }
5551             }
5552         }
5553         me[0] = me[1] = me[2] = NULL;
5554         cleanvar = false;
5555         /* Part 2.2
5556          * deal with arrays
5557          */
5558         if (var->expression.vtype == TYPE_ARRAY) {
5559             char name[1024];
5560             util_snprintf(name, sizeof(name), "%s##SET", var->name);
5561             if (!parser_create_array_setter(parser, var, name))
5562                 goto cleanup;
5563             util_snprintf(name, sizeof(name), "%s##GET", var->name);
5564             if (!parser_create_array_getter(parser, var, var->expression.next, name))
5565                 goto cleanup;
5566         }
5567         else if (!localblock && !nofields &&
5568                  var->expression.vtype == TYPE_FIELD &&
5569                  var->expression.next->expression.vtype == TYPE_ARRAY)
5570         {
5571             char name[1024];
5572             ast_expression *telem;
5573             ast_value      *tfield;
5574             ast_value      *array = (ast_value*)var->expression.next;
5575
5576             if (!ast_istype(var->expression.next, ast_value)) {
5577                 parseerror(parser, "internal error: field element type must be an ast_value");
5578                 goto cleanup;
5579             }
5580
5581             util_snprintf(name, sizeof(name), "%s##SETF", var->name);
5582             if (!parser_create_array_field_setter(parser, array, name))
5583                 goto cleanup;
5584
5585             telem = ast_type_copy(ast_ctx(var), array->expression.next);
5586             tfield = ast_value_new(ast_ctx(var), "<.type>", TYPE_FIELD);
5587             tfield->expression.next = telem;
5588             util_snprintf(name, sizeof(name), "%s##GETFP", var->name);
5589             if (!parser_create_array_getter(parser, array, (ast_expression*)tfield, name)) {
5590                 ast_delete(tfield);
5591                 goto cleanup;
5592             }
5593             ast_delete(tfield);
5594         }
5595
5596 skipvar:
5597         if (parser->tok == ';') {
5598             ast_delete(basetype);
5599             if (!parser_next(parser)) {
5600                 parseerror(parser, "error after variable declaration");
5601                 return false;
5602             }
5603             return true;
5604         }
5605
5606         if (parser->tok == ',')
5607             goto another;
5608
5609         /*
5610         if (!var || (!localblock && !nofields && basetype->expression.vtype == TYPE_FIELD)) {
5611         */
5612         if (!var) {
5613             parseerror(parser, "missing comma or semicolon while parsing variables");
5614             break;
5615         }
5616
5617         if (localblock && OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
5618             if (parsewarning(parser, WARN_LOCAL_CONSTANTS,
5619                              "initializing expression turns variable `%s` into a constant in this standard",
5620                              var->name) )
5621             {
5622                 break;
5623             }
5624         }
5625
5626         if (parser->tok != '{') {
5627             if (parser->tok != '=') {
5628                 parseerror(parser, "missing semicolon or initializer, got: `%s`", parser_tokval(parser));
5629                 break;
5630             }
5631
5632             if (!parser_next(parser)) {
5633                 parseerror(parser, "error parsing initializer");
5634                 break;
5635             }
5636         }
5637         else if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
5638             parseerror(parser, "expected '=' before function body in this standard");
5639         }
5640
5641         if (parser->tok == '#') {
5642             ast_function *func        = NULL;
5643             ast_value    *number      = NULL;
5644             float         fractional  = 0;
5645             float         integral    = 0;
5646             int           builtin_num = 0;
5647
5648             if (localblock) {
5649                 parseerror(parser, "cannot declare builtins within functions");
5650                 break;
5651             }
5652             if (var->expression.vtype != TYPE_FUNCTION) {
5653                 parseerror(parser, "unexpected builtin number, '%s' is not a function", var->name);
5654                 break;
5655             }
5656             if (!parser_next(parser)) {
5657                 parseerror(parser, "expected builtin number");
5658                 break;
5659             }
5660
5661             if (OPTS_FLAG(EXPRESSIONS_FOR_BUILTINS)) {
5662                 number = (ast_value*)parse_expression_leave(parser, true, false, false);
5663                 if (!number) {
5664                     parseerror(parser, "builtin number expected");
5665                     break;
5666                 }
5667                 if (!ast_istype(number, ast_value) || !number->hasvalue || number->cvq != CV_CONST)
5668                 {
5669                     ast_unref(number);
5670                     parseerror(parser, "builtin number must be a compile time constant");
5671                     break;
5672                 }
5673                 if (number->expression.vtype == TYPE_INTEGER)
5674                     builtin_num = number->constval.vint;
5675                 else if (number->expression.vtype == TYPE_FLOAT)
5676                     builtin_num = number->constval.vfloat;
5677                 else {
5678                     ast_unref(number);
5679                     parseerror(parser, "builtin number must be an integer constant");
5680                     break;
5681                 }
5682                 ast_unref(number);
5683
5684                 fractional = modff(builtin_num, &integral);
5685                 if (builtin_num < 0 || fractional != 0) {
5686                     parseerror(parser, "builtin number must be an integer greater than zero");
5687                     break;
5688                 }
5689
5690                 /* we only want the integral part anyways */
5691                 builtin_num = integral;
5692             } else if (parser->tok != TOKEN_INTCONST) {
5693                 parseerror(parser, "builtin number must be a compile time constant");
5694                 break;
5695             }
5696
5697             if (var->hasvalue) {
5698                 (void)!parsewarning(parser, WARN_DOUBLE_DECLARATION,
5699                                     "builtin `%s` has already been defined\n"
5700                                     " -> previous declaration here: %s:%i",
5701                                     var->name, ast_ctx(var).file, (int)ast_ctx(var).line);
5702             }
5703             else
5704             {
5705                 func = ast_function_new(ast_ctx(var), var->name, var);
5706                 if (!func) {
5707                     parseerror(parser, "failed to allocate function for `%s`", var->name);
5708                     break;
5709                 }
5710                 vec_push(parser->functions, func);
5711
5712                 func->builtin = -((OPTS_FLAG(EXPRESSIONS_FOR_BUILTINS))
5713                                     ? builtin_num
5714                                     : parser_token(parser)->constval.i) - 1;
5715             }
5716
5717             if (OPTS_FLAG(EXPRESSIONS_FOR_BUILTINS)
5718                     ? (parser->tok != ',' && parser->tok != ';')
5719                     : (!parser_next(parser)))
5720             {
5721                 parseerror(parser, "expected comma or semicolon");
5722                 if (func)
5723                     ast_function_delete(func);
5724                 var->constval.vfunc = NULL;
5725                 break;
5726             }
5727         }
5728         else if (parser->tok == '{' || parser->tok == '[')
5729         {
5730             if (localblock) {
5731                 parseerror(parser, "cannot declare functions within functions");
5732                 break;
5733             }
5734
5735             if (proto)
5736                 ast_ctx(proto) = parser_ctx(parser);
5737
5738             if (!parse_function_body(parser, var))
5739                 break;
5740             ast_delete(basetype);
5741             for (i = 0; i < vec_size(parser->gotos); ++i)
5742                 parseerror(parser, "undefined label: `%s`", parser->gotos[i]->name);
5743             vec_free(parser->gotos);
5744             vec_free(parser->labels);
5745             return true;
5746         } else {
5747             ast_expression *cexp;
5748             ast_value      *cval;
5749
5750             cexp = parse_expression_leave(parser, true, false, false);
5751             if (!cexp)
5752                 break;
5753
5754             if (!localblock) {
5755                 cval = (ast_value*)cexp;
5756                 if (cval != parser->nil &&
5757                     (!ast_istype(cval, ast_value) || ((!cval->hasvalue || cval->cvq != CV_CONST) && !cval->isfield))
5758                    )
5759                 {
5760                     parseerror(parser, "cannot initialize a global constant variable with a non-constant expression");
5761                 }
5762                 else
5763                 {
5764                     if (!OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
5765                         qualifier != CV_VAR)
5766                     {
5767                         var->cvq = CV_CONST;
5768                     }
5769                     if (cval == parser->nil)
5770                         var->expression.flags |= AST_FLAG_INITIALIZED;
5771                     else
5772                     {
5773                         var->hasvalue = true;
5774                         if (cval->expression.vtype == TYPE_STRING)
5775                             var->constval.vstring = parser_strdup(cval->constval.vstring);
5776                         else if (cval->expression.vtype == TYPE_FIELD)
5777                             var->constval.vfield = cval;
5778                         else
5779                             memcpy(&var->constval, &cval->constval, sizeof(var->constval));
5780                         ast_unref(cval);
5781                     }
5782                 }
5783             } else {
5784                 int cvq;
5785                 shunt sy = { NULL, NULL, NULL, NULL };
5786                 cvq = var->cvq;
5787                 var->cvq = CV_NONE;
5788                 vec_push(sy.out, syexp(ast_ctx(var), (ast_expression*)var));
5789                 vec_push(sy.out, syexp(ast_ctx(cexp), (ast_expression*)cexp));
5790                 vec_push(sy.ops, syop(ast_ctx(var), parser->assign_op));
5791                 if (!parser_sy_apply_operator(parser, &sy))
5792                     ast_unref(cexp);
5793                 else {
5794                     if (vec_size(sy.out) != 1 && vec_size(sy.ops) != 0)
5795                         parseerror(parser, "internal error: leaked operands");
5796                     if (!ast_block_add_expr(localblock, (ast_expression*)sy.out[0].out))
5797                         break;
5798                 }
5799                 vec_free(sy.out);
5800                 vec_free(sy.ops);
5801                 var->cvq = cvq;
5802             }
5803         }
5804
5805 another:
5806         if (parser->tok == ',') {
5807             if (!parser_next(parser)) {
5808                 parseerror(parser, "expected another variable");
5809                 break;
5810             }
5811
5812             if (parser->tok != TOKEN_IDENT) {
5813                 parseerror(parser, "expected another variable");
5814                 break;
5815             }
5816             var = ast_value_copy(basetype);
5817             cleanvar = true;
5818             ast_value_set_name(var, parser_tokval(parser));
5819             if (!parser_next(parser)) {
5820                 parseerror(parser, "error parsing variable declaration");
5821                 break;
5822             }
5823             continue;
5824         }
5825
5826         if (parser->tok != ';') {
5827             parseerror(parser, "missing semicolon after variables");
5828             break;
5829         }
5830
5831         if (!parser_next(parser)) {
5832             parseerror(parser, "parse error after variable declaration");
5833             break;
5834         }
5835
5836         ast_delete(basetype);
5837         return true;
5838     }
5839
5840     if (cleanvar && var)
5841         ast_delete(var);
5842     ast_delete(basetype);
5843     return false;
5844
5845 cleanup:
5846     ast_delete(basetype);
5847     if (cleanvar && var)
5848         ast_delete(var);
5849     if (me[0]) ast_member_delete(me[0]);
5850     if (me[1]) ast_member_delete(me[1]);
5851     if (me[2]) ast_member_delete(me[2]);
5852     return retval;
5853 }
5854
5855 static bool parser_global_statement(parser_t *parser)
5856 {
5857     int        cvq       = CV_WRONG;
5858     bool       noref     = false;
5859     bool       is_static = false;
5860     uint32_t   qflags    = 0;
5861     ast_value *istype    = NULL;
5862     char      *vstring   = NULL;
5863
5864     if (parser->tok == TOKEN_IDENT)
5865         istype = parser_find_typedef(parser, parser_tokval(parser), 0);
5866
5867     if (istype || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
5868     {
5869         return parse_variable(parser, NULL, false, CV_NONE, istype, false, false, 0, NULL);
5870     }
5871     else if (parse_qualifiers(parser, false, &cvq, &noref, &is_static, &qflags, &vstring))
5872     {
5873         if (cvq == CV_WRONG)
5874             return false;
5875         return parse_variable(parser, NULL, true, cvq, NULL, noref, is_static, qflags, vstring);
5876     }
5877     else if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "enum"))
5878     {
5879         return parse_enum(parser);
5880     }
5881     else if (parser->tok == TOKEN_KEYWORD)
5882     {
5883         if (!strcmp(parser_tokval(parser), "typedef")) {
5884             if (!parser_next(parser)) {
5885                 parseerror(parser, "expected type definition after 'typedef'");
5886                 return false;
5887             }
5888             return parse_typedef(parser);
5889         }
5890         parseerror(parser, "unrecognized keyword `%s`", parser_tokval(parser));
5891         return false;
5892     }
5893     else if (parser->tok == '#')
5894     {
5895         return parse_pragma(parser);
5896     }
5897     else if (parser->tok == '$')
5898     {
5899         if (!parser_next(parser)) {
5900             parseerror(parser, "parse error");
5901             return false;
5902         }
5903     }
5904     else
5905     {
5906         parseerror(parser, "unexpected token: `%s`", parser->lex->tok.value);
5907         return false;
5908     }
5909     return true;
5910 }
5911
5912 static uint16_t progdefs_crc_sum(uint16_t old, const char *str)
5913 {
5914     return util_crc16(old, str, strlen(str));
5915 }
5916
5917 static void progdefs_crc_file(const char *str)
5918 {
5919     /* write to progdefs.h here */
5920     (void)str;
5921 }
5922
5923 static uint16_t progdefs_crc_both(uint16_t old, const char *str)
5924 {
5925     old = progdefs_crc_sum(old, str);
5926     progdefs_crc_file(str);
5927     return old;
5928 }
5929
5930 static void generate_checksum(parser_t *parser)
5931 {
5932     uint16_t   crc = 0xFFFF;
5933     size_t     i;
5934     ast_value *value;
5935
5936     crc = progdefs_crc_both(crc, "\n/* file generated by qcc, do not modify */\n\ntypedef struct\n{");
5937     crc = progdefs_crc_sum(crc, "\tint\tpad[28];\n");
5938     /*
5939     progdefs_crc_file("\tint\tpad;\n");
5940     progdefs_crc_file("\tint\tofs_return[3];\n");
5941     progdefs_crc_file("\tint\tofs_parm0[3];\n");
5942     progdefs_crc_file("\tint\tofs_parm1[3];\n");
5943     progdefs_crc_file("\tint\tofs_parm2[3];\n");
5944     progdefs_crc_file("\tint\tofs_parm3[3];\n");
5945     progdefs_crc_file("\tint\tofs_parm4[3];\n");
5946     progdefs_crc_file("\tint\tofs_parm5[3];\n");
5947     progdefs_crc_file("\tint\tofs_parm6[3];\n");
5948     progdefs_crc_file("\tint\tofs_parm7[3];\n");
5949     */
5950     for (i = 0; i < parser->crc_globals; ++i) {
5951         if (!ast_istype(parser->globals[i], ast_value))
5952             continue;
5953         value = (ast_value*)(parser->globals[i]);
5954         switch (value->expression.vtype) {
5955             case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
5956             case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
5957             case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
5958             case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
5959             default:
5960                 crc = progdefs_crc_both(crc, "\tint\t");
5961                 break;
5962         }
5963         crc = progdefs_crc_both(crc, value->name);
5964         crc = progdefs_crc_both(crc, ";\n");
5965     }
5966     crc = progdefs_crc_both(crc, "} globalvars_t;\n\ntypedef struct\n{\n");
5967     for (i = 0; i < parser->crc_fields; ++i) {
5968         if (!ast_istype(parser->fields[i], ast_value))
5969             continue;
5970         value = (ast_value*)(parser->fields[i]);
5971         switch (value->expression.next->expression.vtype) {
5972             case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
5973             case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
5974             case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
5975             case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
5976             default:
5977                 crc = progdefs_crc_both(crc, "\tint\t");
5978                 break;
5979         }
5980         crc = progdefs_crc_both(crc, value->name);
5981         crc = progdefs_crc_both(crc, ";\n");
5982     }
5983     crc = progdefs_crc_both(crc, "} entvars_t;\n\n");
5984
5985     parser->code->crc = crc;
5986 }
5987
5988 parser_t *parser_create()
5989 {
5990     parser_t *parser;
5991     lex_ctx empty_ctx;
5992     size_t i;
5993
5994     parser = (parser_t*)mem_a(sizeof(parser_t));
5995     if (!parser)
5996         return NULL;
5997
5998     memset(parser, 0, sizeof(*parser));
5999
6000     if (!(parser->code = code_init())) {
6001         mem_d(parser);
6002         return NULL;
6003     }
6004     
6005
6006     for (i = 0; i < operator_count; ++i) {
6007         if (operators[i].id == opid1('=')) {
6008             parser->assign_op = operators+i;
6009             break;
6010         }
6011     }
6012     if (!parser->assign_op) {
6013         printf("internal error: initializing parser: failed to find assign operator\n");
6014         mem_d(parser);
6015         return NULL;
6016     }
6017
6018     vec_push(parser->variables, parser->htfields  = util_htnew(PARSER_HT_SIZE));
6019     vec_push(parser->variables, parser->htglobals = util_htnew(PARSER_HT_SIZE));
6020     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
6021     vec_push(parser->_blocktypedefs, 0);
6022
6023     parser->aliases = util_htnew(PARSER_HT_SIZE);
6024
6025     parser->ht_imm_string = util_htnew(512);
6026
6027     /* corrector */
6028     vec_push(parser->correct_variables, correct_trie_new());
6029     vec_push(parser->correct_variables_score, NULL);
6030
6031     empty_ctx.file = "<internal>";
6032     empty_ctx.line = 0;
6033     parser->nil = ast_value_new(empty_ctx, "nil", TYPE_NIL);
6034     parser->nil->cvq = CV_CONST;
6035     if (OPTS_FLAG(UNTYPED_NIL))
6036         util_htset(parser->htglobals, "nil", (void*)parser->nil);
6037
6038     parser->max_param_count = 1;
6039
6040     parser->const_vec[0] = ast_value_new(empty_ctx, "<vector.x>", TYPE_NOEXPR);
6041     parser->const_vec[1] = ast_value_new(empty_ctx, "<vector.y>", TYPE_NOEXPR);
6042     parser->const_vec[2] = ast_value_new(empty_ctx, "<vector.z>", TYPE_NOEXPR);
6043
6044     if (OPTS_OPTION_BOOL(OPTION_ADD_INFO)) {
6045         parser->reserved_version = ast_value_new(empty_ctx, "reserved:version", TYPE_STRING);
6046         parser->reserved_version->cvq = CV_CONST;
6047         parser->reserved_version->hasvalue = true;
6048         parser->reserved_version->expression.flags |= AST_FLAG_INCLUDE_DEF;
6049         parser->reserved_version->constval.vstring = util_strdup(GMQCC_FULL_VERSION_STRING);
6050     } else {
6051         parser->reserved_version = NULL;
6052     }
6053
6054     return parser;
6055 }
6056
6057 bool parser_compile(parser_t *parser)
6058 {
6059     /* initial lexer/parser state */
6060     parser->lex->flags.noops = true;
6061
6062     if (parser_next(parser))
6063     {
6064         while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
6065         {
6066             if (!parser_global_statement(parser)) {
6067                 if (parser->tok == TOKEN_EOF)
6068                     parseerror(parser, "unexpected eof");
6069                 else if (compile_errors)
6070                     parseerror(parser, "there have been errors, bailing out");
6071                 lex_close(parser->lex);
6072                 parser->lex = NULL;
6073                 return false;
6074             }
6075         }
6076     } else {
6077         parseerror(parser, "parse error");
6078         lex_close(parser->lex);
6079         parser->lex = NULL;
6080         return false;
6081     }
6082
6083     lex_close(parser->lex);
6084     parser->lex = NULL;
6085
6086     return !compile_errors;
6087 }
6088
6089 bool parser_compile_file(parser_t *parser, const char *filename)
6090 {
6091     parser->lex = lex_open(filename);
6092     if (!parser->lex) {
6093         con_err("failed to open file \"%s\"\n", filename);
6094         return false;
6095     }
6096     return parser_compile(parser);
6097 }
6098
6099 bool parser_compile_string(parser_t *parser, const char *name, const char *str, size_t len)
6100 {
6101     parser->lex = lex_open_string(str, len, name);
6102     if (!parser->lex) {
6103         con_err("failed to create lexer for string \"%s\"\n", name);
6104         return false;
6105     }
6106     return parser_compile(parser);
6107 }
6108
6109 void parser_cleanup(parser_t *parser)
6110 {
6111     size_t i;
6112     for (i = 0; i < vec_size(parser->accessors); ++i) {
6113         ast_delete(parser->accessors[i]->constval.vfunc);
6114         parser->accessors[i]->constval.vfunc = NULL;
6115         ast_delete(parser->accessors[i]);
6116     }
6117     for (i = 0; i < vec_size(parser->functions); ++i) {
6118         ast_delete(parser->functions[i]);
6119     }
6120     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
6121         ast_delete(parser->imm_vector[i]);
6122     }
6123     for (i = 0; i < vec_size(parser->imm_string); ++i) {
6124         ast_delete(parser->imm_string[i]);
6125     }
6126     for (i = 0; i < vec_size(parser->imm_float); ++i) {
6127         ast_delete(parser->imm_float[i]);
6128     }
6129     for (i = 0; i < vec_size(parser->fields); ++i) {
6130         ast_delete(parser->fields[i]);
6131     }
6132     for (i = 0; i < vec_size(parser->globals); ++i) {
6133         ast_delete(parser->globals[i]);
6134     }
6135     vec_free(parser->accessors);
6136     vec_free(parser->functions);
6137     vec_free(parser->imm_vector);
6138     vec_free(parser->imm_string);
6139     util_htdel(parser->ht_imm_string);
6140     vec_free(parser->imm_float);
6141     vec_free(parser->globals);
6142     vec_free(parser->fields);
6143
6144     for (i = 0; i < vec_size(parser->variables); ++i)
6145         util_htdel(parser->variables[i]);
6146     vec_free(parser->variables);
6147     vec_free(parser->_blocklocals);
6148     vec_free(parser->_locals);
6149
6150     /* corrector */
6151     for (i = 0; i < vec_size(parser->correct_variables); ++i) {
6152         correct_del(parser->correct_variables[i], parser->correct_variables_score[i]);
6153     }
6154     vec_free(parser->correct_variables);
6155     vec_free(parser->correct_variables_score);
6156
6157
6158     for (i = 0; i < vec_size(parser->_typedefs); ++i)
6159         ast_delete(parser->_typedefs[i]);
6160     vec_free(parser->_typedefs);
6161     for (i = 0; i < vec_size(parser->typedefs); ++i)
6162         util_htdel(parser->typedefs[i]);
6163     vec_free(parser->typedefs);
6164     vec_free(parser->_blocktypedefs);
6165
6166     vec_free(parser->_block_ctx);
6167
6168     vec_free(parser->labels);
6169     vec_free(parser->gotos);
6170     vec_free(parser->breaks);
6171     vec_free(parser->continues);
6172
6173     ast_value_delete(parser->nil);
6174
6175     ast_value_delete(parser->const_vec[0]);
6176     ast_value_delete(parser->const_vec[1]);
6177     ast_value_delete(parser->const_vec[2]);
6178
6179     util_htdel(parser->aliases);
6180
6181     intrin_intrinsics_destroy(parser);
6182
6183     mem_d(parser);
6184 }
6185
6186 bool parser_finish(parser_t *parser, const char *output)
6187 {
6188     size_t i;
6189     ir_builder *ir;
6190     bool retval = true;
6191
6192     if (compile_errors) {
6193         con_out("*** there were compile errors\n");
6194         return false;
6195     }
6196
6197     ir = ir_builder_new("gmqcc_out");
6198     if (!ir) {
6199         con_out("failed to allocate builder\n");
6200         return false;
6201     }
6202
6203     for (i = 0; i < vec_size(parser->fields); ++i) {
6204         ast_value *field;
6205         bool hasvalue;
6206         if (!ast_istype(parser->fields[i], ast_value))
6207             continue;
6208         field = (ast_value*)parser->fields[i];
6209         hasvalue = field->hasvalue;
6210         field->hasvalue = false;
6211         if (!ast_global_codegen((ast_value*)field, ir, true)) {
6212             con_out("failed to generate field %s\n", field->name);
6213             ir_builder_delete(ir);
6214             return false;
6215         }
6216         if (hasvalue) {
6217             ir_value *ifld;
6218             ast_expression *subtype;
6219             field->hasvalue = true;
6220             subtype = field->expression.next;
6221             ifld = ir_builder_create_field(ir, field->name, subtype->expression.vtype);
6222             if (subtype->expression.vtype == TYPE_FIELD)
6223                 ifld->fieldtype = subtype->expression.next->expression.vtype;
6224             else if (subtype->expression.vtype == TYPE_FUNCTION)
6225                 ifld->outtype = subtype->expression.next->expression.vtype;
6226             (void)!ir_value_set_field(field->ir_v, ifld);
6227         }
6228     }
6229     for (i = 0; i < vec_size(parser->globals); ++i) {
6230         ast_value *asvalue;
6231         if (!ast_istype(parser->globals[i], ast_value))
6232             continue;
6233         asvalue = (ast_value*)(parser->globals[i]);
6234         if (!asvalue->uses && !asvalue->hasvalue && asvalue->expression.vtype != TYPE_FUNCTION) {
6235             retval = retval && !compile_warning(ast_ctx(asvalue), WARN_UNUSED_VARIABLE,
6236                                                 "unused global: `%s`", asvalue->name);
6237         }
6238         if (!ast_global_codegen(asvalue, ir, false)) {
6239             con_out("failed to generate global %s\n", asvalue->name);
6240             ir_builder_delete(ir);
6241             return false;
6242         }
6243     }
6244     /* Build function vararg accessor ast tree now before generating
6245      * immediates, because the accessors may add new immediates
6246      */
6247     for (i = 0; i < vec_size(parser->functions); ++i) {
6248         ast_function *f = parser->functions[i];
6249         if (f->varargs) {
6250             if (parser->max_param_count > vec_size(f->vtype->expression.params)) {
6251                 f->varargs->expression.count = parser->max_param_count - vec_size(f->vtype->expression.params);
6252                 if (!parser_create_array_setter_impl(parser, f->varargs)) {
6253                     con_out("failed to generate vararg setter for %s\n", f->name);
6254                     ir_builder_delete(ir);
6255                     return false;
6256                 }
6257                 if (!parser_create_array_getter_impl(parser, f->varargs)) {
6258                     con_out("failed to generate vararg getter for %s\n", f->name);
6259                     ir_builder_delete(ir);
6260                     return false;
6261                 }
6262             } else {
6263                 ast_delete(f->varargs);
6264                 f->varargs = NULL;
6265             }
6266         }
6267     }
6268     /* Now we can generate immediates */
6269     for (i = 0; i < vec_size(parser->imm_float); ++i) {
6270         if (!ast_global_codegen(parser->imm_float[i], ir, false)) {
6271             con_out("failed to generate global %s\n", parser->imm_float[i]->name);
6272             ir_builder_delete(ir);
6273             return false;
6274         }
6275     }
6276     for (i = 0; i < vec_size(parser->imm_string); ++i) {
6277         if (!ast_global_codegen(parser->imm_string[i], ir, false)) {
6278             con_out("failed to generate global %s\n", parser->imm_string[i]->name);
6279             ir_builder_delete(ir);
6280             return false;
6281         }
6282     }
6283     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
6284         if (!ast_global_codegen(parser->imm_vector[i], ir, false)) {
6285             con_out("failed to generate global %s\n", parser->imm_vector[i]->name);
6286             ir_builder_delete(ir);
6287             return false;
6288         }
6289     }
6290     for (i = 0; i < vec_size(parser->globals); ++i) {
6291         ast_value *asvalue;
6292         if (!ast_istype(parser->globals[i], ast_value))
6293             continue;
6294         asvalue = (ast_value*)(parser->globals[i]);
6295         if (!(asvalue->expression.flags & AST_FLAG_INITIALIZED))
6296         {
6297             if (asvalue->cvq == CV_CONST && !asvalue->hasvalue)
6298                 (void)!compile_warning(ast_ctx(asvalue), WARN_UNINITIALIZED_CONSTANT,
6299                                        "uninitialized constant: `%s`",
6300                                        asvalue->name);
6301             else if ((asvalue->cvq == CV_NONE || asvalue->cvq == CV_CONST) && !asvalue->hasvalue)
6302                 (void)!compile_warning(ast_ctx(asvalue), WARN_UNINITIALIZED_GLOBAL,
6303                                        "uninitialized global: `%s`",
6304                                        asvalue->name);
6305         }
6306         if (!ast_generate_accessors(asvalue, ir)) {
6307             ir_builder_delete(ir);
6308             return false;
6309         }
6310     }
6311     for (i = 0; i < vec_size(parser->fields); ++i) {
6312         ast_value *asvalue;
6313         asvalue = (ast_value*)(parser->fields[i]->expression.next);
6314
6315         if (!ast_istype((ast_expression*)asvalue, ast_value))
6316             continue;
6317         if (asvalue->expression.vtype != TYPE_ARRAY)
6318             continue;
6319         if (!ast_generate_accessors(asvalue, ir)) {
6320             ir_builder_delete(ir);
6321             return false;
6322         }
6323     }
6324     if (parser->reserved_version &&
6325         !ast_global_codegen(parser->reserved_version, ir, false))
6326     {
6327         con_out("failed to generate reserved::version");
6328         ir_builder_delete(ir);
6329         return false;
6330     }
6331     for (i = 0; i < vec_size(parser->functions); ++i) {
6332         ast_function *f = parser->functions[i];
6333         if (!ast_function_codegen(f, ir)) {
6334             con_out("failed to generate function %s\n", f->name);
6335             ir_builder_delete(ir);
6336             return false;
6337         }
6338     }
6339     if (OPTS_OPTION_BOOL(OPTION_DUMP))
6340         ir_builder_dump(ir, con_out);
6341     for (i = 0; i < vec_size(parser->functions); ++i) {
6342         if (!ir_function_finalize(parser->functions[i]->ir_func)) {
6343             con_out("failed to finalize function %s\n", parser->functions[i]->name);
6344             ir_builder_delete(ir);
6345             return false;
6346         }
6347     }
6348
6349     if (compile_Werrors) {
6350         con_out("*** there were warnings treated as errors\n");
6351         compile_show_werrors();
6352         retval = false;
6353     }
6354
6355     if (retval) {
6356         if (OPTS_OPTION_BOOL(OPTION_DUMPFIN))
6357             ir_builder_dump(ir, con_out);
6358
6359         generate_checksum(parser);
6360
6361         if (!ir_builder_generate(parser->code, ir, output)) {
6362             con_out("*** failed to generate output file\n");
6363             ir_builder_delete(ir);
6364             return false;
6365         }
6366     }
6367
6368     ir_builder_delete(ir);
6369     return retval;
6370 }