]> git.xonotic.org Git - xonotic/gmqcc.git/blob - parser.c
temporarily disable the 'constant' flag when parsing the initializer to avoid the...
[xonotic/gmqcc.git] / parser.c
1 /*
2  * Copyright (C) 2012
3  *     Wolfgang Bumiller
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include <stdio.h>
24 #include <stdarg.h>
25
26 #include "gmqcc.h"
27 #include "lexer.h"
28
29 #define PARSER_HT_FIELDS  0
30 #define PARSER_HT_GLOBALS 1
31 /* beginning of locals */
32 #define PARSER_HT_LOCALS  2
33
34 #define PARSER_HT_SIZE    1024
35 #define TYPEDEF_HT_SIZE   16
36
37 typedef struct {
38     lex_file *lex;
39     int      tok;
40
41     ast_expression **globals;
42     ast_expression **fields;
43     ast_function **functions;
44     ast_value    **imm_float;
45     ast_value    **imm_string;
46     ast_value    **imm_vector;
47     size_t         translated;
48
49     /* must be deleted first, they reference immediates and values */
50     ast_value    **accessors;
51
52     ast_value *imm_float_zero;
53     ast_value *imm_float_one;
54     ast_value *imm_vector_zero;
55
56     size_t crc_globals;
57     size_t crc_fields;
58
59     ast_function *function;
60
61     /* A list of hashtables for each scope */
62     ht *variables;
63     ht htfields;
64     ht htglobals;
65     ht *typedefs;
66
67     /* not to be used directly, we use the hash table */
68     ast_expression **_locals;
69     size_t          *_blocklocals;
70     ast_value      **_typedefs;
71     size_t          *_blocktypedefs;
72
73     size_t errors;
74
75     /* we store the '=' operator info */
76     const oper_info *assign_op;
77
78     /* TYPE_FIELD -> parser_find_fields is used instead of find_var
79      * TODO: TYPE_VECTOR -> x, y and z are accepted in the gmqcc standard
80      * anything else: type error
81      */
82     qcint  memberof;
83 } parser_t;
84
85 #define CV_NONE 0
86 #define CV_CONST 1
87 #define CV_VAR -1
88
89 static void parser_enterblock(parser_t *parser);
90 static bool parser_leaveblock(parser_t *parser);
91 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e);
92 static bool parse_typedef(parser_t *parser);
93 static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofields, int is_const_var, ast_value *cached_typedef);
94 static ast_block* parse_block(parser_t *parser, bool warnreturn);
95 static bool parse_block_into(parser_t *parser, ast_block *block, bool warnreturn);
96 static ast_expression* parse_statement_or_block(parser_t *parser);
97 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases);
98 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma);
99 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma);
100
101 static void parseerror(parser_t *parser, const char *fmt, ...)
102 {
103         va_list ap;
104
105         parser->errors++;
106
107         va_start(ap, fmt);
108     con_vprintmsg(LVL_ERROR, parser->lex->tok.ctx.file, parser->lex->tok.ctx.line, "parse error", fmt, ap);
109         va_end(ap);
110 }
111
112 /* returns true if it counts as an error */
113 static bool GMQCC_WARN parsewarning(parser_t *parser, int warntype, const char *fmt, ...)
114 {
115         va_list ap;
116         int lvl = LVL_WARNING;
117
118     if (!OPTS_WARN(warntype))
119         return false;
120
121     if (opts_werror) {
122             parser->errors++;
123             lvl = LVL_ERROR;
124         }
125
126         va_start(ap, fmt);
127     con_vprintmsg(lvl, parser->lex->tok.ctx.file, parser->lex->tok.ctx.line, "warning", fmt, ap);
128         va_end(ap);
129
130         return opts_werror;
131 }
132
133 static bool GMQCC_WARN genwarning(lex_ctx ctx, int warntype, const char *fmt, ...)
134 {
135         va_list ap;
136         int lvl = LVL_WARNING;
137
138     if (!OPTS_WARN(warntype))
139         return false;
140
141     if (opts_werror)
142             lvl = LVL_ERROR;
143
144         va_start(ap, fmt);
145     con_vprintmsg(lvl, ctx.file, ctx.line, "warning", fmt, ap);
146         va_end(ap);
147
148         return opts_werror;
149 }
150
151 /**********************************************************************
152  * some maths used for constant folding
153  */
154
155 vector vec3_add(vector a, vector b)
156 {
157     vector out;
158     out.x = a.x + b.x;
159     out.y = a.y + b.y;
160     out.z = a.z + b.z;
161     return out;
162 }
163
164 vector vec3_sub(vector a, vector b)
165 {
166     vector out;
167     out.x = a.x - b.x;
168     out.y = a.y - b.y;
169     out.z = a.z - b.z;
170     return out;
171 }
172
173 qcfloat vec3_mulvv(vector a, vector b)
174 {
175     return (a.x * b.x + a.y * b.y + a.z * b.z);
176 }
177
178 vector vec3_mulvf(vector a, float b)
179 {
180     vector out;
181     out.x = a.x * b;
182     out.y = a.y * b;
183     out.z = a.z * b;
184     return out;
185 }
186
187 /**********************************************************************
188  * parsing
189  */
190
191 bool parser_next(parser_t *parser)
192 {
193     /* lex_do kills the previous token */
194     parser->tok = lex_do(parser->lex);
195     if (parser->tok == TOKEN_EOF)
196         return true;
197     if (parser->tok >= TOKEN_ERROR) {
198         parseerror(parser, "lex error");
199         return false;
200     }
201     return true;
202 }
203
204 #define parser_tokval(p) ((p)->lex->tok.value)
205 #define parser_token(p)  (&((p)->lex->tok))
206 #define parser_ctx(p)    ((p)->lex->tok.ctx)
207
208 static ast_value* parser_const_float(parser_t *parser, double d)
209 {
210     size_t i;
211     ast_value *out;
212     for (i = 0; i < vec_size(parser->imm_float); ++i) {
213         const double compare = parser->imm_float[i]->constval.vfloat;
214         if (memcmp((const void*)&compare, (const void *)&d, sizeof(double)) == 0)
215             return parser->imm_float[i];
216     }
217     out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_FLOAT);
218     out->constant = true;
219     out->hasvalue = true;
220     out->constval.vfloat = d;
221     vec_push(parser->imm_float, out);
222     return out;
223 }
224
225 static ast_value* parser_const_float_0(parser_t *parser)
226 {
227     if (!parser->imm_float_zero)
228         parser->imm_float_zero = parser_const_float(parser, 0);
229     return parser->imm_float_zero;
230 }
231
232 static ast_value* parser_const_float_1(parser_t *parser)
233 {
234     if (!parser->imm_float_one)
235         parser->imm_float_one = parser_const_float(parser, 1);
236     return parser->imm_float_one;
237 }
238
239 static char *parser_strdup(const char *str)
240 {
241     if (str && !*str) {
242         /* actually dup empty strings */
243         char *out = mem_a(1);
244         *out = 0;
245         return out;
246     }
247     return util_strdup(str);
248 }
249
250 static ast_value* parser_const_string(parser_t *parser, const char *str, bool dotranslate)
251 {
252     size_t i;
253     ast_value *out;
254     for (i = 0; i < vec_size(parser->imm_string); ++i) {
255         if (!strcmp(parser->imm_string[i]->constval.vstring, str))
256             return parser->imm_string[i];
257     }
258     if (dotranslate) {
259         char name[32];
260         snprintf(name, sizeof(name), "dotranslate_%lu", (unsigned long)(parser->translated++));
261         out = ast_value_new(parser_ctx(parser), name, TYPE_STRING);
262     } else
263         out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_STRING);
264     out->constant = true;
265     out->hasvalue = true;
266     out->constval.vstring = parser_strdup(str);
267     vec_push(parser->imm_string, out);
268     return out;
269 }
270
271 static ast_value* parser_const_vector(parser_t *parser, vector v)
272 {
273     size_t i;
274     ast_value *out;
275     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
276         if (!memcmp(&parser->imm_vector[i]->constval.vvec, &v, sizeof(v)))
277             return parser->imm_vector[i];
278     }
279     out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_VECTOR);
280     out->constant = true;
281     out->hasvalue = true;
282     out->constval.vvec = v;
283     vec_push(parser->imm_vector, out);
284     return out;
285 }
286
287 static ast_value* parser_const_vector_f(parser_t *parser, float x, float y, float z)
288 {
289     vector v;
290     v.x = x;
291     v.y = y;
292     v.z = z;
293     return parser_const_vector(parser, v);
294 }
295
296 static ast_value* parser_const_vector_0(parser_t *parser)
297 {
298     if (!parser->imm_vector_zero)
299         parser->imm_vector_zero = parser_const_vector_f(parser, 0, 0, 0);
300     return parser->imm_vector_zero;
301 }
302
303 static ast_expression* parser_find_field(parser_t *parser, const char *name)
304 {
305     return util_htget(parser->htfields, name);
306 }
307
308 static ast_expression* parser_find_global(parser_t *parser, const char *name)
309 {
310     return util_htget(parser->htglobals, name);
311 }
312
313 static ast_expression* parser_find_param(parser_t *parser, const char *name)
314 {
315     size_t i;
316     ast_value *fun;
317     if (!parser->function)
318         return NULL;
319     fun = parser->function->vtype;
320     for (i = 0; i < vec_size(fun->expression.params); ++i) {
321         if (!strcmp(fun->expression.params[i]->name, name))
322             return (ast_expression*)(fun->expression.params[i]);
323     }
324     return NULL;
325 }
326
327 static ast_expression* parser_find_local(parser_t *parser, const char *name, size_t upto, bool *isparam)
328 {
329     size_t          i, hash;
330     ast_expression *e;
331
332     hash = util_hthash(parser->htglobals, name);
333
334     *isparam = false;
335     for (i = vec_size(parser->variables); i > upto;) {
336         --i;
337         if ( (e = util_htgeth(parser->variables[i], name, hash)) )
338             return e;
339     }
340     *isparam = true;
341     return parser_find_param(parser, name);
342 }
343
344 static ast_expression* parser_find_var(parser_t *parser, const char *name)
345 {
346     bool dummy;
347     ast_expression *v;
348     v         = parser_find_local(parser, name, 0, &dummy);
349     if (!v) v = parser_find_global(parser, name);
350     return v;
351 }
352
353 static ast_value* parser_find_typedef(parser_t *parser, const char *name, size_t upto)
354 {
355     size_t     i, hash;
356     ast_value *e;
357     hash = util_hthash(parser->typedefs[0], name);
358
359     for (i = vec_size(parser->typedefs); i > upto;) {
360         --i;
361         if ( (e = (ast_value*)util_htgeth(parser->typedefs[i], name, hash)) )
362             return e;
363     }
364     return NULL;
365 }
366
367 typedef struct
368 {
369     size_t etype; /* 0 = expression, others are operators */
370     int             paren;
371     size_t          off;
372     ast_expression *out;
373     ast_block      *block; /* for commas and function calls */
374     lex_ctx ctx;
375 } sy_elem;
376 typedef struct
377 {
378     sy_elem *out;
379     sy_elem *ops;
380 } shunt;
381
382 #define SY_PAREN_EXPR '('
383 #define SY_PAREN_FUNC 'f'
384 #define SY_PAREN_INDEX '['
385
386 static sy_elem syexp(lex_ctx ctx, ast_expression *v) {
387     sy_elem e;
388     e.etype = 0;
389     e.off   = 0;
390     e.out   = v;
391     e.block = NULL;
392     e.ctx   = ctx;
393     e.paren = 0;
394     return e;
395 }
396
397 static sy_elem syblock(lex_ctx ctx, ast_block *v) {
398     sy_elem e;
399     e.etype = 0;
400     e.off   = 0;
401     e.out   = (ast_expression*)v;
402     e.block = v;
403     e.ctx   = ctx;
404     e.paren = 0;
405     return e;
406 }
407
408 static sy_elem syop(lex_ctx ctx, const oper_info *op) {
409     sy_elem e;
410     e.etype = 1 + (op - operators);
411     e.off   = 0;
412     e.out   = NULL;
413     e.block = NULL;
414     e.ctx   = ctx;
415     e.paren = 0;
416     return e;
417 }
418
419 static sy_elem syparen(lex_ctx ctx, int p, size_t off) {
420     sy_elem e;
421     e.etype = 0;
422     e.off   = off;
423     e.out   = NULL;
424     e.block = NULL;
425     e.ctx   = ctx;
426     e.paren = p;
427     return e;
428 }
429
430 #ifdef DEBUGSHUNT
431 # define DEBUGSHUNTDO(x) x
432 #else
433 # define DEBUGSHUNTDO(x)
434 #endif
435
436 /* With regular precedence rules, ent.foo[n] is the same as (ent.foo)[n],
437  * so we need to rotate it to become ent.(foo[n]).
438  */
439 static bool rotate_entfield_array_index_nodes(ast_expression **out)
440 {
441     ast_array_index *index;
442     ast_entfield    *entfield;
443
444     ast_value       *field;
445     ast_expression  *sub;
446     ast_expression  *entity;
447
448     lex_ctx ctx = ast_ctx(*out);
449
450     if (!ast_istype(*out, ast_array_index))
451         return false;
452     index = (ast_array_index*)*out;
453
454     if (!ast_istype(index->array, ast_entfield))
455         return false;
456     entfield = (ast_entfield*)index->array;
457
458     if (!ast_istype(entfield->field, ast_value))
459         return false;
460     field = (ast_value*)entfield->field;
461
462     sub    = index->index;
463     entity = entfield->entity;
464
465     ast_delete(index);
466
467     index = ast_array_index_new(ctx, (ast_expression*)field, sub);
468     entfield = ast_entfield_new(ctx, entity, (ast_expression*)index);
469     *out = (ast_expression*)entfield;
470
471     return true;
472 }
473
474 static bool parser_sy_pop(parser_t *parser, shunt *sy)
475 {
476     const oper_info *op;
477     lex_ctx ctx;
478     ast_expression *out = NULL;
479     ast_expression *exprs[3];
480     ast_block      *blocks[3];
481     ast_value      *asvalue[3];
482     size_t i, assignop, addop, subop;
483     qcint  generated_op = 0;
484
485     char ty1[1024];
486     char ty2[1024];
487
488     if (!vec_size(sy->ops)) {
489         parseerror(parser, "internal error: missing operator");
490         return false;
491     }
492
493     if (vec_last(sy->ops).paren) {
494         parseerror(parser, "unmatched parenthesis");
495         return false;
496     }
497
498     op = &operators[vec_last(sy->ops).etype - 1];
499     ctx = vec_last(sy->ops).ctx;
500
501     DEBUGSHUNTDO(con_out("apply %s\n", op->op));
502
503     if (vec_size(sy->out) < op->operands) {
504         parseerror(parser, "internal error: not enough operands: %i (operator %s (%i))", vec_size(sy->out),
505                    op->op, (int)op->id);
506         return false;
507     }
508
509     vec_shrinkby(sy->ops, 1);
510
511     vec_shrinkby(sy->out, op->operands);
512     for (i = 0; i < op->operands; ++i) {
513         exprs[i]  = sy->out[vec_size(sy->out)+i].out;
514         blocks[i] = sy->out[vec_size(sy->out)+i].block;
515         asvalue[i] = (ast_value*)exprs[i];
516     }
517
518     if (blocks[0] && !vec_size(blocks[0]->exprs) && op->id != opid1(',')) {
519         parseerror(parser, "internal error: operator cannot be applied on empty blocks");
520         return false;
521     }
522
523 #define NotSameType(T) \
524              (exprs[0]->expression.vtype != exprs[1]->expression.vtype || \
525               exprs[0]->expression.vtype != T)
526 #define CanConstFold1(A) \
527              (ast_istype((A), ast_value) && ((ast_value*)(A))->hasvalue && ((ast_value*)(A))->constant)
528 #define CanConstFold(A, B) \
529              (CanConstFold1(A) && CanConstFold1(B))
530 #define ConstV(i) (asvalue[(i)]->constval.vvec)
531 #define ConstF(i) (asvalue[(i)]->constval.vfloat)
532 #define ConstS(i) (asvalue[(i)]->constval.vstring)
533     switch (op->id)
534     {
535         default:
536             parseerror(parser, "internal error: unhandled operator: %s (%i)", op->op, (int)op->id);
537             return false;
538
539         case opid1('.'):
540             if (exprs[0]->expression.vtype == TYPE_ENTITY) {
541                 if (exprs[1]->expression.vtype != TYPE_FIELD) {
542                     parseerror(parser, "type error: right hand of member-operand should be an entity-field");
543                     return false;
544                 }
545                 out = (ast_expression*)ast_entfield_new(ctx, exprs[0], exprs[1]);
546             }
547             else if (exprs[0]->expression.vtype == TYPE_VECTOR) {
548                 parseerror(parser, "internal error: vector access is not supposed to be handled at this point");
549                 return false;
550             }
551             else {
552                 parseerror(parser, "type error: member-of operator on something that is not an entity or vector");
553                 return false;
554             }
555             break;
556
557         case opid1('['):
558             if (exprs[0]->expression.vtype != TYPE_ARRAY &&
559                 !(exprs[0]->expression.vtype == TYPE_FIELD &&
560                   exprs[0]->expression.next->expression.vtype == TYPE_ARRAY))
561             {
562                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
563                 parseerror(parser, "cannot index value of type %s", ty1);
564                 return false;
565             }
566             if (exprs[1]->expression.vtype != TYPE_FLOAT) {
567                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
568                 parseerror(parser, "index must be of type float, not %s", ty1);
569                 return false;
570             }
571             out = (ast_expression*)ast_array_index_new(ctx, exprs[0], exprs[1]);
572             if (rotate_entfield_array_index_nodes(&out))
573             {
574                 if (opts_standard != COMPILER_GMQCC) {
575                     /* this error doesn't need to make us bail out */
576                     (void)!parsewarning(parser, WARN_EXTENSIONS,
577                                         "accessing array-field members of an entity without parenthesis\n"
578                                         " -> this is an extension from -std=gmqcc");
579                 }
580             }
581             break;
582
583         case opid1(','):
584             if (blocks[0]) {
585                 ast_block_add_expr(blocks[0], exprs[1]);
586             } else {
587                 blocks[0] = ast_block_new(ctx);
588                 ast_block_add_expr(blocks[0], exprs[0]);
589                 ast_block_add_expr(blocks[0], exprs[1]);
590             }
591             if (!ast_block_set_type(blocks[0], exprs[1]))
592                 return false;
593
594             vec_push(sy->out, syblock(ctx, blocks[0]));
595             return true;
596
597         case opid2('-','P'):
598             switch (exprs[0]->expression.vtype) {
599                 case TYPE_FLOAT:
600                     if (CanConstFold1(exprs[0]))
601                         out = (ast_expression*)parser_const_float(parser, -ConstF(0));
602                     else
603                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_F,
604                                                               (ast_expression*)parser_const_float_0(parser),
605                                                               exprs[0]);
606                     break;
607                 case TYPE_VECTOR:
608                     if (CanConstFold1(exprs[0]))
609                         out = (ast_expression*)parser_const_vector_f(parser,
610                             -ConstV(0).x, -ConstV(0).y, -ConstV(0).z);
611                     else
612                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_V,
613                                                               (ast_expression*)parser_const_vector_0(parser),
614                                                               exprs[0]);
615                     break;
616                 default:
617                 parseerror(parser, "invalid types used in expression: cannot negate type %s",
618                            type_name[exprs[0]->expression.vtype]);
619                 return false;
620             }
621             break;
622
623         case opid2('!','P'):
624             switch (exprs[0]->expression.vtype) {
625                 case TYPE_FLOAT:
626                     if (CanConstFold1(exprs[0]))
627                         out = (ast_expression*)parser_const_float(parser, !ConstF(0));
628                     else
629                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, exprs[0]);
630                     break;
631                 case TYPE_VECTOR:
632                     if (CanConstFold1(exprs[0]))
633                         out = (ast_expression*)parser_const_float(parser,
634                             (!ConstV(0).x && !ConstV(0).y && !ConstV(0).z));
635                     else
636                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_V, exprs[0]);
637                     break;
638                 case TYPE_STRING:
639                     if (CanConstFold1(exprs[0]))
640                         out = (ast_expression*)parser_const_float(parser, !ConstS(0) || !*ConstS(0));
641                     else
642                         out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_S, exprs[0]);
643                     break;
644                 /* we don't constant-fold NOT for these types */
645                 case TYPE_ENTITY:
646                     out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_ENT, exprs[0]);
647                     break;
648                 case TYPE_FUNCTION:
649                     out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_FNC, exprs[0]);
650                     break;
651                 default:
652                 parseerror(parser, "invalid types used in expression: cannot logically negate type %s",
653                            type_name[exprs[0]->expression.vtype]);
654                 return false;
655             }
656             break;
657
658         case opid1('+'):
659             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype ||
660                 (exprs[0]->expression.vtype != TYPE_VECTOR && exprs[0]->expression.vtype != TYPE_FLOAT) )
661             {
662                 parseerror(parser, "invalid types used in expression: cannot add type %s and %s",
663                            type_name[exprs[0]->expression.vtype],
664                            type_name[exprs[1]->expression.vtype]);
665                 return false;
666             }
667             switch (exprs[0]->expression.vtype) {
668                 case TYPE_FLOAT:
669                     if (CanConstFold(exprs[0], exprs[1]))
670                     {
671                         out = (ast_expression*)parser_const_float(parser, ConstF(0) + ConstF(1));
672                     }
673                     else
674                         out = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_F, exprs[0], exprs[1]);
675                     break;
676                 case TYPE_VECTOR:
677                     if (CanConstFold(exprs[0], exprs[1]))
678                         out = (ast_expression*)parser_const_vector(parser, vec3_add(ConstV(0), ConstV(1)));
679                     else
680                         out = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_V, exprs[0], exprs[1]);
681                     break;
682                 default:
683                     parseerror(parser, "invalid types used in expression: cannot add type %s and %s",
684                                type_name[exprs[0]->expression.vtype],
685                                type_name[exprs[1]->expression.vtype]);
686                     return false;
687             };
688             break;
689         case opid1('-'):
690             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype ||
691                 (exprs[0]->expression.vtype != TYPE_VECTOR && exprs[0]->expression.vtype != TYPE_FLOAT) )
692             {
693                 parseerror(parser, "invalid types used in expression: cannot subtract type %s from %s",
694                            type_name[exprs[1]->expression.vtype],
695                            type_name[exprs[0]->expression.vtype]);
696                 return false;
697             }
698             switch (exprs[0]->expression.vtype) {
699                 case TYPE_FLOAT:
700                     if (CanConstFold(exprs[0], exprs[1]))
701                         out = (ast_expression*)parser_const_float(parser, ConstF(0) - ConstF(1));
702                     else
703                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_F, exprs[0], exprs[1]);
704                     break;
705                 case TYPE_VECTOR:
706                     if (CanConstFold(exprs[0], exprs[1]))
707                         out = (ast_expression*)parser_const_vector(parser, vec3_sub(ConstV(0), ConstV(1)));
708                     else
709                         out = (ast_expression*)ast_binary_new(ctx, INSTR_SUB_V, exprs[0], exprs[1]);
710                     break;
711                 default:
712                     parseerror(parser, "invalid types used in expression: cannot subtract type %s from %s",
713                                type_name[exprs[1]->expression.vtype],
714                                type_name[exprs[0]->expression.vtype]);
715                     return false;
716             };
717             break;
718         case opid1('*'):
719             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype &&
720                 exprs[0]->expression.vtype != TYPE_VECTOR &&
721                 exprs[0]->expression.vtype != TYPE_FLOAT &&
722                 exprs[1]->expression.vtype != TYPE_VECTOR &&
723                 exprs[1]->expression.vtype != TYPE_FLOAT)
724             {
725                 parseerror(parser, "invalid types used in expression: cannot multiply types %s and %s",
726                            type_name[exprs[1]->expression.vtype],
727                            type_name[exprs[0]->expression.vtype]);
728                 return false;
729             }
730             switch (exprs[0]->expression.vtype) {
731                 case TYPE_FLOAT:
732                     if (exprs[1]->expression.vtype == TYPE_VECTOR)
733                     {
734                         if (CanConstFold(exprs[0], exprs[1]))
735                             out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(1), ConstF(0)));
736                         else
737                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_FV, exprs[0], exprs[1]);
738                     }
739                     else
740                     {
741                         if (CanConstFold(exprs[0], exprs[1]))
742                             out = (ast_expression*)parser_const_float(parser, ConstF(0) * ConstF(1));
743                         else
744                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_F, exprs[0], exprs[1]);
745                     }
746                     break;
747                 case TYPE_VECTOR:
748                     if (exprs[1]->expression.vtype == TYPE_FLOAT)
749                     {
750                         if (CanConstFold(exprs[0], exprs[1]))
751                             out = (ast_expression*)parser_const_vector(parser, vec3_mulvf(ConstV(0), ConstF(1)));
752                         else
753                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_VF, exprs[0], exprs[1]);
754                     }
755                     else
756                     {
757                         if (CanConstFold(exprs[0], exprs[1]))
758                             out = (ast_expression*)parser_const_float(parser, vec3_mulvv(ConstV(0), ConstV(1)));
759                         else
760                             out = (ast_expression*)ast_binary_new(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
761                     }
762                     break;
763                 default:
764                     parseerror(parser, "invalid types used in expression: cannot multiply types %s and %s",
765                                type_name[exprs[1]->expression.vtype],
766                                type_name[exprs[0]->expression.vtype]);
767                     return false;
768             };
769             break;
770         case opid1('/'):
771             if (NotSameType(TYPE_FLOAT)) {
772                 parseerror(parser, "invalid types used in expression: cannot divide types %s and %s",
773                            type_name[exprs[0]->expression.vtype],
774                            type_name[exprs[1]->expression.vtype]);
775                 return false;
776             }
777             if (CanConstFold(exprs[0], exprs[1]))
778                 out = (ast_expression*)parser_const_float(parser, ConstF(0) / ConstF(1));
779             else
780                 out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F, exprs[0], exprs[1]);
781             break;
782         case opid1('%'):
783         case opid2('%','='):
784             parseerror(parser, "qc does not have a modulo operator");
785             return false;
786         case opid1('|'):
787         case opid1('&'):
788             if (NotSameType(TYPE_FLOAT)) {
789                 parseerror(parser, "invalid types used in expression: cannot perform bit operations between types %s and %s",
790                            type_name[exprs[0]->expression.vtype],
791                            type_name[exprs[1]->expression.vtype]);
792                 return false;
793             }
794             if (CanConstFold(exprs[0], exprs[1]))
795                 out = (ast_expression*)parser_const_float(parser,
796                     (op->id == opid1('|') ? (float)( ((qcint)ConstF(0)) | ((qcint)ConstF(1)) ) :
797                                             (float)( ((qcint)ConstF(0)) & ((qcint)ConstF(1)) ) ));
798             else
799                 out = (ast_expression*)ast_binary_new(ctx,
800                     (op->id == opid1('|') ? INSTR_BITOR : INSTR_BITAND),
801                     exprs[0], exprs[1]);
802             break;
803         case opid1('^'):
804             parseerror(parser, "TODO: bitxor");
805             return false;
806
807         case opid2('<','<'):
808         case opid2('>','>'):
809         case opid3('<','<','='):
810         case opid3('>','>','='):
811             parseerror(parser, "TODO: shifts");
812             return false;
813
814         case opid2('|','|'):
815             generated_op += 1; /* INSTR_OR */
816         case opid2('&','&'):
817             generated_op += INSTR_AND;
818 #if 0
819             if (NotSameType(TYPE_FLOAT)) {
820                 parseerror(parser, "invalid types used in expression: cannot perform logical operations between types %s and %s",
821                            type_name[exprs[0]->expression.vtype],
822                            type_name[exprs[1]->expression.vtype]);
823                 parseerror(parser, "TODO: logical ops for arbitrary types using INSTR_NOT");
824                 parseerror(parser, "TODO: optional early out");
825                 return false;
826             }
827 #endif
828             if (opts_standard == COMPILER_GMQCC)
829                 con_out("TODO: early out logic\n");
830             if (CanConstFold(exprs[0], exprs[1]))
831                 out = (ast_expression*)parser_const_float(parser,
832                     (generated_op == INSTR_OR ? (ConstF(0) || ConstF(1)) : (ConstF(0) && ConstF(1))));
833             else
834                 out = (ast_expression*)ast_binary_new(ctx, generated_op, exprs[0], exprs[1]);
835             break;
836
837         case opid2('?',':'):
838             if (exprs[1]->expression.vtype != exprs[2]->expression.vtype) {
839                 ast_type_to_string(exprs[1], ty1, sizeof(ty1));
840                 ast_type_to_string(exprs[2], ty2, sizeof(ty2));
841                 parseerror(parser, "iperands of ternary expression must have the same type, got %s and %s", ty1, ty2);
842                 return false;
843             }
844             if (CanConstFold1(exprs[0]))
845                 out = (ConstF(0) ? exprs[1] : exprs[2]);
846             else
847                 out = (ast_expression*)ast_ternary_new(ctx, exprs[0], exprs[1], exprs[2]);
848             break;
849
850         case opid1('>'):
851             generated_op += 1; /* INSTR_GT */
852         case opid1('<'):
853             generated_op += 1; /* INSTR_LT */
854         case opid2('>', '='):
855             generated_op += 1; /* INSTR_GE */
856         case opid2('<', '='):
857             generated_op += INSTR_LE;
858             if (NotSameType(TYPE_FLOAT)) {
859                 parseerror(parser, "invalid types used in expression: cannot perform comparison between types %s and %s",
860                            type_name[exprs[0]->expression.vtype],
861                            type_name[exprs[1]->expression.vtype]);
862                 return false;
863             }
864             out = (ast_expression*)ast_binary_new(ctx, generated_op, exprs[0], exprs[1]);
865             break;
866         case opid2('!', '='):
867             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype) {
868                 parseerror(parser, "invalid types used in expression: cannot perform comparison between types %s and %s",
869                            type_name[exprs[0]->expression.vtype],
870                            type_name[exprs[1]->expression.vtype]);
871                 return false;
872             }
873             out = (ast_expression*)ast_binary_new(ctx, type_ne_instr[exprs[0]->expression.vtype], exprs[0], exprs[1]);
874             break;
875         case opid2('=', '='):
876             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype) {
877                 parseerror(parser, "invalid types used in expression: cannot perform comparison between types %s and %s",
878                            type_name[exprs[0]->expression.vtype],
879                            type_name[exprs[1]->expression.vtype]);
880                 return false;
881             }
882             out = (ast_expression*)ast_binary_new(ctx, type_eq_instr[exprs[0]->expression.vtype], exprs[0], exprs[1]);
883             break;
884
885         case opid1('='):
886             if (ast_istype(exprs[0], ast_entfield)) {
887                 ast_expression *field = ((ast_entfield*)exprs[0])->field;
888                 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
889                     exprs[0]->expression.vtype == TYPE_FIELD &&
890                     exprs[0]->expression.next->expression.vtype == TYPE_VECTOR)
891                 {
892                     assignop = type_storep_instr[TYPE_VECTOR];
893                 }
894                 else
895                     assignop = type_storep_instr[exprs[0]->expression.vtype];
896                 if (!ast_compare_type(field->expression.next, exprs[1])) {
897                     ast_type_to_string(field->expression.next, ty1, sizeof(ty1));
898                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
899                     if (opts_standard == COMPILER_QCC &&
900                         field->expression.next->expression.vtype == TYPE_FUNCTION &&
901                         exprs[1]->expression.vtype == TYPE_FUNCTION)
902                     {
903                         if (parsewarning(parser, WARN_ASSIGN_FUNCTION_TYPES,
904                                          "invalid types in assignment: cannot assign %s to %s", ty2, ty1))
905                         {
906                             parser->errors++;
907                         }
908                     }
909                     else
910                         parseerror(parser, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
911                 }
912             }
913             else
914             {
915                 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
916                     exprs[0]->expression.vtype == TYPE_FIELD &&
917                     exprs[0]->expression.next->expression.vtype == TYPE_VECTOR)
918                 {
919                     assignop = type_store_instr[TYPE_VECTOR];
920                 }
921                 else {
922                     assignop = type_store_instr[exprs[0]->expression.vtype];
923                 }
924
925                 if (assignop == AINSTR_END) {
926                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
927                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
928                     parseerror(parser, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
929                 }
930                 else if (!ast_compare_type(exprs[0], exprs[1])) {
931                     ast_type_to_string(exprs[0], ty1, sizeof(ty1));
932                     ast_type_to_string(exprs[1], ty2, sizeof(ty2));
933                     if (opts_standard == COMPILER_QCC &&
934                         exprs[0]->expression.vtype == TYPE_FUNCTION &&
935                         exprs[1]->expression.vtype == TYPE_FUNCTION)
936                     {
937                         if (parsewarning(parser, WARN_ASSIGN_FUNCTION_TYPES,
938                                          "invalid types in assignment: cannot assign %s to %s", ty2, ty1))
939                         {
940                             parser->errors++;
941                         }
942                     }
943                     else
944                         parseerror(parser, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
945                 }
946             }
947             if (ast_istype(exprs[0], ast_value) && asvalue[0]->constant) {
948                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
949             }
950             out = (ast_expression*)ast_store_new(ctx, assignop, exprs[0], exprs[1]);
951             break;
952         case opid3('+','+','P'):
953         case opid3('-','-','P'):
954             /* prefix ++ */
955             if (exprs[0]->expression.vtype != TYPE_FLOAT) {
956                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
957                 parseerror(parser, "invalid type for prefix increment: %s", ty1);
958                 return false;
959             }
960             if (op->id == opid3('+','+','P'))
961                 addop = INSTR_ADD_F;
962             else
963                 addop = INSTR_SUB_F;
964             if (ast_istype(exprs[0], ast_value) && asvalue[0]->constant) {
965                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
966             }
967             if (ast_istype(exprs[0], ast_entfield)) {
968                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STOREP_F, addop,
969                                                         exprs[0],
970                                                         (ast_expression*)parser_const_float_1(parser));
971             } else {
972                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STORE_F, addop,
973                                                         exprs[0],
974                                                         (ast_expression*)parser_const_float_1(parser));
975             }
976             break;
977         case opid3('S','+','+'):
978         case opid3('S','-','-'):
979             /* prefix ++ */
980             if (exprs[0]->expression.vtype != TYPE_FLOAT) {
981                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
982                 parseerror(parser, "invalid type for suffix increment: %s", ty1);
983                 return false;
984             }
985             if (op->id == opid3('S','+','+')) {
986                 addop = INSTR_ADD_F;
987                 subop = INSTR_SUB_F;
988             } else {
989                 addop = INSTR_SUB_F;
990                 subop = INSTR_ADD_F;
991             }
992             if (ast_istype(exprs[0], ast_value) && asvalue[0]->constant) {
993                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
994             }
995             if (ast_istype(exprs[0], ast_entfield)) {
996                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STOREP_F, addop,
997                                                         exprs[0],
998                                                         (ast_expression*)parser_const_float_1(parser));
999             } else {
1000                 out = (ast_expression*)ast_binstore_new(ctx, INSTR_STORE_F, addop,
1001                                                         exprs[0],
1002                                                         (ast_expression*)parser_const_float_1(parser));
1003             }
1004             if (!out)
1005                 return false;
1006             out = (ast_expression*)ast_binary_new(ctx, subop,
1007                                                   out,
1008                                                   (ast_expression*)parser_const_float_1(parser));
1009             break;
1010         case opid2('+','='):
1011         case opid2('-','='):
1012             if (exprs[0]->expression.vtype != exprs[1]->expression.vtype ||
1013                 (exprs[0]->expression.vtype != TYPE_VECTOR && exprs[0]->expression.vtype != TYPE_FLOAT) )
1014             {
1015                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1016                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1017                 parseerror(parser, "invalid types used in expression: cannot add or subtract type %s and %s",
1018                            ty1, ty2);
1019                 return false;
1020             }
1021             if (ast_istype(exprs[0], ast_value) && asvalue[0]->constant) {
1022                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1023             }
1024             if (ast_istype(exprs[0], ast_entfield))
1025                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1026             else
1027                 assignop = type_store_instr[exprs[0]->expression.vtype];
1028             switch (exprs[0]->expression.vtype) {
1029                 case TYPE_FLOAT:
1030                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1031                                                             (op->id == opid2('+','=') ? INSTR_ADD_F : INSTR_SUB_F),
1032                                                             exprs[0], exprs[1]);
1033                     break;
1034                 case TYPE_VECTOR:
1035                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1036                                                             (op->id == opid2('+','=') ? INSTR_ADD_V : INSTR_SUB_V),
1037                                                             exprs[0], exprs[1]);
1038                     break;
1039                 default:
1040                     parseerror(parser, "invalid types used in expression: cannot add or subtract type %s and %s",
1041                                type_name[exprs[0]->expression.vtype],
1042                                type_name[exprs[1]->expression.vtype]);
1043                     return false;
1044             };
1045             break;
1046         case opid2('*','='):
1047         case opid2('/','='):
1048             if (exprs[1]->expression.vtype != TYPE_FLOAT ||
1049                 !(exprs[0]->expression.vtype == TYPE_FLOAT ||
1050                   exprs[0]->expression.vtype == TYPE_VECTOR))
1051             {
1052                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1053                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1054                 parseerror(parser, "invalid types used in expression: %s and %s",
1055                            ty1, ty2);
1056                 return false;
1057             }
1058             if (ast_istype(exprs[0], ast_value) && asvalue[0]->constant) {
1059                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1060             }
1061             if (ast_istype(exprs[0], ast_entfield))
1062                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1063             else
1064                 assignop = type_store_instr[exprs[0]->expression.vtype];
1065             switch (exprs[0]->expression.vtype) {
1066                 case TYPE_FLOAT:
1067                     out = (ast_expression*)ast_binstore_new(ctx, assignop,
1068                                                             (op->id == opid2('*','=') ? INSTR_MUL_F : INSTR_DIV_F),
1069                                                             exprs[0], exprs[1]);
1070                     break;
1071                 case TYPE_VECTOR:
1072                     if (op->id == opid2('*','=')) {
1073                         out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_MUL_VF,
1074                                                                 exprs[0], exprs[1]);
1075                     } else {
1076                         /* there's no DIV_VF */
1077                         out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F,
1078                                                               (ast_expression*)parser_const_float_1(parser),
1079                                                               exprs[1]);
1080                         if (!out)
1081                             return false;
1082                         out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_MUL_VF,
1083                                                                 exprs[0], out);
1084                     }
1085                     break;
1086                 default:
1087                     parseerror(parser, "invalid types used in expression: cannot add or subtract type %s and %s",
1088                                type_name[exprs[0]->expression.vtype],
1089                                type_name[exprs[1]->expression.vtype]);
1090                     return false;
1091             };
1092             break;
1093         case opid2('&','='):
1094         case opid2('|','='):
1095             if (NotSameType(TYPE_FLOAT)) {
1096                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1097                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1098                 parseerror(parser, "invalid types used in expression: %s and %s",
1099                            ty1, ty2);
1100                 return false;
1101             }
1102             if (ast_istype(exprs[0], ast_value) && asvalue[0]->constant) {
1103                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1104             }
1105             if (ast_istype(exprs[0], ast_entfield))
1106                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1107             else
1108                 assignop = type_store_instr[exprs[0]->expression.vtype];
1109             out = (ast_expression*)ast_binstore_new(ctx, assignop,
1110                                                     (op->id == opid2('&','=') ? INSTR_BITAND : INSTR_BITOR),
1111                                                     exprs[0], exprs[1]);
1112             break;
1113         case opid3('&','~','='):
1114             /* This is like: a &= ~(b);
1115              * But QC has no bitwise-not, so we implement it as
1116              * a -= a & (b);
1117              */
1118             if (NotSameType(TYPE_FLOAT)) {
1119                 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1120                 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1121                 parseerror(parser, "invalid types used in expression: %s and %s",
1122                            ty1, ty2);
1123                 return false;
1124             }
1125             if (ast_istype(exprs[0], ast_entfield))
1126                 assignop = type_storep_instr[exprs[0]->expression.vtype];
1127             else
1128                 assignop = type_store_instr[exprs[0]->expression.vtype];
1129             out = (ast_expression*)ast_binary_new(ctx, INSTR_BITAND, exprs[0], exprs[1]);
1130             if (!out)
1131                 return false;
1132             if (ast_istype(exprs[0], ast_value) && asvalue[0]->constant) {
1133                 parseerror(parser, "assignment to constant `%s`", asvalue[0]->name);
1134             }
1135             out = (ast_expression*)ast_binstore_new(ctx, assignop, INSTR_SUB_F, exprs[0], out);
1136             break;
1137     }
1138 #undef NotSameType
1139
1140     if (!out) {
1141         parseerror(parser, "failed to apply operand %s", op->op);
1142         return false;
1143     }
1144
1145     DEBUGSHUNTDO(con_out("applied %s\n", op->op));
1146     vec_push(sy->out, syexp(ctx, out));
1147     return true;
1148 }
1149
1150 static bool parser_close_call(parser_t *parser, shunt *sy)
1151 {
1152     /* was a function call */
1153     ast_expression *fun;
1154     ast_call       *call;
1155
1156     size_t          fid;
1157     size_t          paramcount;
1158
1159     vec_shrinkby(sy->ops, 1);
1160     fid = sy->ops[vec_size(sy->ops)].off;
1161
1162     /* out[fid] is the function
1163      * everything above is parameters...
1164      * 0 params = nothing
1165      * 1 params = ast_expression
1166      * more = ast_block
1167      */
1168
1169     if (vec_size(sy->out) < 1 || vec_size(sy->out) <= fid) {
1170         parseerror(parser, "internal error: function call needs function and parameter list...");
1171         return false;
1172     }
1173
1174     fun = sy->out[fid].out;
1175
1176     call = ast_call_new(sy->ops[vec_size(sy->ops)].ctx, fun);
1177     if (!call) {
1178         parseerror(parser, "out of memory");
1179         return false;
1180     }
1181
1182     if (fid+1 == vec_size(sy->out)) {
1183         /* no arguments */
1184         paramcount = 0;
1185     } else if (fid+2 == vec_size(sy->out)) {
1186         ast_block *params;
1187         vec_shrinkby(sy->out, 1);
1188         params = sy->out[vec_size(sy->out)].block;
1189         if (!params) {
1190             /* 1 param */
1191             paramcount = 1;
1192             vec_push(call->params, sy->out[vec_size(sy->out)].out);
1193         } else {
1194             paramcount = vec_size(params->exprs);
1195             call->params = params->exprs;
1196             params->exprs = NULL;
1197             ast_delete(params);
1198         }
1199         if (!ast_call_check_types(call))
1200             parser->errors++;
1201     } else {
1202         parseerror(parser, "invalid function call");
1203         return false;
1204     }
1205
1206     /* overwrite fid, the function, with a call */
1207     sy->out[fid] = syexp(call->expression.node.context, (ast_expression*)call);
1208
1209     if (fun->expression.vtype != TYPE_FUNCTION) {
1210         parseerror(parser, "not a function (%s)", type_name[fun->expression.vtype]);
1211         return false;
1212     }
1213
1214     if (!fun->expression.next) {
1215         parseerror(parser, "could not determine function return type");
1216         return false;
1217     } else {
1218         if (vec_size(fun->expression.params) != paramcount &&
1219             !(fun->expression.variadic &&
1220               vec_size(fun->expression.params) < paramcount))
1221         {
1222             ast_value *fval;
1223             const char *fewmany = (vec_size(fun->expression.params) > paramcount) ? "few" : "many";
1224
1225             fval = (ast_istype(fun, ast_value) ? ((ast_value*)fun) : NULL);
1226             if (opts_standard == COMPILER_GMQCC)
1227             {
1228                 if (fval)
1229                     parseerror(parser, "too %s parameters for call to %s: expected %i, got %i\n"
1230                                " -> `%s` has been declared here: %s:%i",
1231                                fewmany, fval->name, (int)vec_size(fun->expression.params), (int)paramcount,
1232                                fval->name, ast_ctx(fun).file, (int)ast_ctx(fun).line);
1233                 else
1234                     parseerror(parser, "too %s parameters for function call: expected %i, got %i\n"
1235                                " -> `%s` has been declared here: %s:%i",
1236                                fewmany, fval->name, (int)vec_size(fun->expression.params), (int)paramcount,
1237                                fval->name, ast_ctx(fun).file, (int)ast_ctx(fun).line);
1238                 return false;
1239             }
1240             else
1241             {
1242                 if (fval)
1243                     return !parsewarning(parser, WARN_TOO_FEW_PARAMETERS,
1244                                          "too %s parameters for call to %s: expected %i, got %i\n"
1245                                          " -> `%s` has been declared here: %s:%i",
1246                                          fewmany, fval->name, (int)vec_size(fun->expression.params), (int)paramcount,
1247                                          fval->name, ast_ctx(fun).file, (int)ast_ctx(fun).line);
1248                 else
1249                     return !parsewarning(parser, WARN_TOO_FEW_PARAMETERS,
1250                                          "too %s parameters for function call: expected %i, got %i\n"
1251                                          " -> `%s` has been declared here: %s:%i",
1252                                          fewmany, fval->name, (int)vec_size(fun->expression.params), (int)paramcount,
1253                                          fval->name, ast_ctx(fun).file, (int)ast_ctx(fun).line);
1254             }
1255         }
1256     }
1257
1258     return true;
1259 }
1260
1261 static bool parser_close_paren(parser_t *parser, shunt *sy, bool functions_only)
1262 {
1263     if (!vec_size(sy->ops)) {
1264         parseerror(parser, "unmatched closing paren");
1265         return false;
1266     }
1267     /* this would for bit a + (x) because there are no operators inside (x)
1268     if (sy->ops[vec_size(sy->ops)-1].paren == 1) {
1269         parseerror(parser, "empty parenthesis expression");
1270         return false;
1271     }
1272     */
1273     while (vec_size(sy->ops)) {
1274         if (sy->ops[vec_size(sy->ops)-1].paren == SY_PAREN_FUNC) {
1275             if (!parser_close_call(parser, sy))
1276                 return false;
1277             break;
1278         }
1279         if (sy->ops[vec_size(sy->ops)-1].paren == SY_PAREN_EXPR) {
1280             vec_shrinkby(sy->ops, 1);
1281             return !functions_only;
1282         }
1283         if (sy->ops[vec_size(sy->ops)-1].paren == SY_PAREN_INDEX) {
1284             if (functions_only)
1285                 return false;
1286             /* pop off the parenthesis */
1287             vec_shrinkby(sy->ops, 1);
1288             /* then apply the index operator */
1289             if (!parser_sy_pop(parser, sy))
1290                 return false;
1291             return true;
1292         }
1293         if (!parser_sy_pop(parser, sy))
1294             return false;
1295     }
1296     return true;
1297 }
1298
1299 static void parser_reclassify_token(parser_t *parser)
1300 {
1301     size_t i;
1302     for (i = 0; i < operator_count; ++i) {
1303         if (!strcmp(parser_tokval(parser), operators[i].op)) {
1304             parser->tok = TOKEN_OPERATOR;
1305             return;
1306         }
1307     }
1308 }
1309
1310 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma)
1311 {
1312     ast_expression *expr = NULL;
1313     shunt sy;
1314     bool wantop = false;
1315     bool gotmemberof = false;
1316
1317     /* count the parens because an if starts with one, so the
1318      * end of a condition is an unmatched closing paren
1319      */
1320     int parens = 0;
1321     int ternaries = 0;
1322
1323     sy.out = NULL;
1324     sy.ops = NULL;
1325
1326     parser->lex->flags.noops = false;
1327
1328     parser_reclassify_token(parser);
1329
1330     while (true)
1331     {
1332         if (gotmemberof)
1333             gotmemberof = false;
1334         else
1335             parser->memberof = 0;
1336
1337         if (OPTS_FLAG(TRANSLATABLE_STRINGS) &&
1338             parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "_"))
1339         {
1340             /* a translatable string */
1341             ast_value *val;
1342
1343             if (wantop) {
1344                 parseerror(parser, "expected operator or end of statement, got constant");
1345                 goto onerr;
1346             }
1347
1348             parser->lex->flags.noops = true;
1349             if (!parser_next(parser) || parser->tok != '(') {
1350                 parseerror(parser, "use _(\"string\") to create a translatable string constant");
1351                 goto onerr;
1352             }
1353             parser->lex->flags.noops = false;
1354             if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
1355                 parseerror(parser, "expected a constant string in translatable-string extension");
1356                 goto onerr;
1357             }
1358             val = parser_const_string(parser, parser_tokval(parser), true);
1359             wantop = true;
1360             if (!val)
1361                 return false;
1362             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1363             DEBUGSHUNTDO(con_out("push string\n"));
1364
1365             if (!parser_next(parser) || parser->tok != ')') {
1366                 parseerror(parser, "expected closing paren after translatable string");
1367                 goto onerr;
1368             }
1369         }
1370         else if (parser->tok == TOKEN_IDENT)
1371         {
1372             ast_expression *var;
1373             if (wantop) {
1374                 parseerror(parser, "expected operator or end of statement");
1375                 goto onerr;
1376             }
1377             wantop = true;
1378             /* variable */
1379             if (opts_standard == COMPILER_GMQCC)
1380             {
1381                 if (parser->memberof == TYPE_ENTITY) {
1382                     /* still get vars first since there could be a fieldpointer */
1383                     var = parser_find_var(parser, parser_tokval(parser));
1384                     if (!var)
1385                         var = parser_find_field(parser, parser_tokval(parser));
1386                 }
1387                 else if (parser->memberof == TYPE_VECTOR)
1388                 {
1389                     parseerror(parser, "TODO: implement effective vector member access");
1390                     goto onerr;
1391                 }
1392                 else if (parser->memberof) {
1393                     parseerror(parser, "namespace for member not found");
1394                     goto onerr;
1395                 }
1396                 else
1397                     var = parser_find_var(parser, parser_tokval(parser));
1398             } else {
1399                 var = parser_find_var(parser, parser_tokval(parser));
1400                 if (!var)
1401                     var = parser_find_field(parser, parser_tokval(parser));
1402             }
1403             if (!var) {
1404                 parseerror(parser, "unexpected ident: %s", parser_tokval(parser));
1405                 goto onerr;
1406             }
1407             if (ast_istype(var, ast_value))
1408                 ((ast_value*)var)->uses++;
1409             vec_push(sy.out, syexp(parser_ctx(parser), var));
1410             DEBUGSHUNTDO(con_out("push %s\n", parser_tokval(parser)));
1411         }
1412         else if (parser->tok == TOKEN_FLOATCONST) {
1413             ast_value *val;
1414             if (wantop) {
1415                 parseerror(parser, "expected operator or end of statement, got constant");
1416                 goto onerr;
1417             }
1418             wantop = true;
1419             val = parser_const_float(parser, (parser_token(parser)->constval.f));
1420             if (!val)
1421                 return false;
1422             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1423             DEBUGSHUNTDO(con_out("push %g\n", parser_token(parser)->constval.f));
1424         }
1425         else if (parser->tok == TOKEN_INTCONST) {
1426             ast_value *val;
1427             if (wantop) {
1428                 parseerror(parser, "expected operator or end of statement, got constant");
1429                 goto onerr;
1430             }
1431             wantop = true;
1432             val = parser_const_float(parser, (double)(parser_token(parser)->constval.i));
1433             if (!val)
1434                 return false;
1435             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1436             DEBUGSHUNTDO(con_out("push %i\n", parser_token(parser)->constval.i));
1437         }
1438         else if (parser->tok == TOKEN_STRINGCONST) {
1439             ast_value *val;
1440             if (wantop) {
1441                 parseerror(parser, "expected operator or end of statement, got constant");
1442                 goto onerr;
1443             }
1444             wantop = true;
1445             val = parser_const_string(parser, parser_tokval(parser), false);
1446             if (!val)
1447                 return false;
1448             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1449             DEBUGSHUNTDO(con_out("push string\n"));
1450         }
1451         else if (parser->tok == TOKEN_VECTORCONST) {
1452             ast_value *val;
1453             if (wantop) {
1454                 parseerror(parser, "expected operator or end of statement, got constant");
1455                 goto onerr;
1456             }
1457             wantop = true;
1458             val = parser_const_vector(parser, parser_token(parser)->constval.v);
1459             if (!val)
1460                 return false;
1461             vec_push(sy.out, syexp(parser_ctx(parser), (ast_expression*)val));
1462             DEBUGSHUNTDO(con_out("push '%g %g %g'\n",
1463                                 parser_token(parser)->constval.v.x,
1464                                 parser_token(parser)->constval.v.y,
1465                                 parser_token(parser)->constval.v.z));
1466         }
1467         else if (parser->tok == '(') {
1468             parseerror(parser, "internal error: '(' should be classified as operator");
1469             goto onerr;
1470         }
1471         else if (parser->tok == '[') {
1472             parseerror(parser, "internal error: '[' should be classified as operator");
1473             goto onerr;
1474         }
1475         else if (parser->tok == ')') {
1476             if (wantop) {
1477                 DEBUGSHUNTDO(con_out("do[op] )\n"));
1478                 --parens;
1479                 if (parens < 0)
1480                     break;
1481                 /* we do expect an operator next */
1482                 /* closing an opening paren */
1483                 if (!parser_close_paren(parser, &sy, false))
1484                     goto onerr;
1485             } else {
1486                 DEBUGSHUNTDO(con_out("do[nop] )\n"));
1487                 --parens;
1488                 if (parens < 0)
1489                     break;
1490                 /* allowed for function calls */
1491                 if (!parser_close_paren(parser, &sy, true))
1492                     goto onerr;
1493             }
1494             wantop = true;
1495         }
1496         else if (parser->tok == ']') {
1497             if (!wantop)
1498                 parseerror(parser, "operand expected");
1499             --parens;
1500             if (parens < 0)
1501                 break;
1502             if (!parser_close_paren(parser, &sy, false))
1503                 goto onerr;
1504             wantop = true;
1505         }
1506         else if (parser->tok != TOKEN_OPERATOR) {
1507             if (wantop) {
1508                 parseerror(parser, "expected operator or end of statement");
1509                 goto onerr;
1510             }
1511             break;
1512         }
1513         else
1514         {
1515             /* classify the operator */
1516             const oper_info *op;
1517             const oper_info *olast = NULL;
1518             size_t o;
1519             for (o = 0; o < operator_count; ++o) {
1520                 if ((!(operators[o].flags & OP_PREFIX) == wantop) &&
1521                     /* !(operators[o].flags & OP_SUFFIX) && / * remove this */
1522                     !strcmp(parser_tokval(parser), operators[o].op))
1523                 {
1524                     break;
1525                 }
1526             }
1527             if (o == operator_count) {
1528                 /* no operator found... must be the end of the statement */
1529                 break;
1530             }
1531             /* found an operator */
1532             op = &operators[o];
1533
1534             /* when declaring variables, a comma starts a new variable */
1535             if (op->id == opid1(',') && !parens && stopatcomma) {
1536                 /* fixup the token */
1537                 parser->tok = ',';
1538                 break;
1539             }
1540
1541             /* a colon without a pervious question mark cannot be a ternary */
1542             if (!ternaries && op->id == opid2(':','?')) {
1543                 parser->tok = ':';
1544                 break;
1545             }
1546
1547             if (vec_size(sy.ops) && !vec_last(sy.ops).paren)
1548                 olast = &operators[vec_last(sy.ops).etype-1];
1549
1550             while (olast && (
1551                     (op->prec < olast->prec) ||
1552                     (op->assoc == ASSOC_LEFT && op->prec <= olast->prec) ) )
1553             {
1554                 if (!parser_sy_pop(parser, &sy))
1555                     goto onerr;
1556                 if (vec_size(sy.ops) && !vec_last(sy.ops).paren)
1557                     olast = &operators[vec_last(sy.ops).etype-1];
1558                 else
1559                     olast = NULL;
1560             }
1561
1562             if (op->id == opid1('.') && opts_standard == COMPILER_GMQCC) {
1563                 /* for gmqcc standard: open up the namespace of the previous type */
1564                 ast_expression *prevex = vec_last(sy.out).out;
1565                 if (!prevex) {
1566                     parseerror(parser, "unexpected member operator");
1567                     goto onerr;
1568                 }
1569                 if (prevex->expression.vtype == TYPE_ENTITY)
1570                     parser->memberof = TYPE_ENTITY;
1571                 else if (prevex->expression.vtype == TYPE_VECTOR)
1572                     parser->memberof = TYPE_VECTOR;
1573                 else {
1574                     parseerror(parser, "type error: type has no members");
1575                     goto onerr;
1576                 }
1577                 gotmemberof = true;
1578             }
1579
1580             if (op->id == opid1('(')) {
1581                 if (wantop) {
1582                     size_t sycount = vec_size(sy.out);
1583                     DEBUGSHUNTDO(con_out("push [op] (\n"));
1584                     ++parens;
1585                     /* we expected an operator, this is the function-call operator */
1586                     vec_push(sy.ops, syparen(parser_ctx(parser), SY_PAREN_FUNC, sycount-1));
1587                 } else {
1588                     ++parens;
1589                     vec_push(sy.ops, syparen(parser_ctx(parser), SY_PAREN_EXPR, 0));
1590                     DEBUGSHUNTDO(con_out("push [nop] (\n"));
1591                 }
1592                 wantop = false;
1593             } else if (op->id == opid1('[')) {
1594                 if (!wantop) {
1595                     parseerror(parser, "unexpected array subscript");
1596                     goto onerr;
1597                 }
1598                 ++parens;
1599                 /* push both the operator and the paren, this makes life easier */
1600                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1601                 vec_push(sy.ops, syparen(parser_ctx(parser), SY_PAREN_INDEX, 0));
1602                 wantop = false;
1603             } else if (op->id == opid2('?',':')) {
1604                 wantop = false;
1605                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1606                 wantop = false;
1607                 --ternaries;
1608             } else if (op->id == opid2(':','?')) {
1609                 /* we don't push this operator */
1610                 wantop = false;
1611                 ++ternaries;
1612             } else {
1613                 DEBUGSHUNTDO(con_out("push operator %s\n", op->op));
1614                 vec_push(sy.ops, syop(parser_ctx(parser), op));
1615                 wantop = !!(op->flags & OP_SUFFIX);
1616             }
1617         }
1618         if (!parser_next(parser)) {
1619             goto onerr;
1620         }
1621         if (parser->tok == ';' ||
1622             (!parens && parser->tok == ']'))
1623         {
1624             break;
1625         }
1626     }
1627
1628     while (vec_size(sy.ops)) {
1629         if (!parser_sy_pop(parser, &sy))
1630             goto onerr;
1631     }
1632
1633     parser->lex->flags.noops = true;
1634     if (!vec_size(sy.out)) {
1635         parseerror(parser, "empty expression");
1636         expr = NULL;
1637     } else
1638         expr = sy.out[0].out;
1639     vec_free(sy.out);
1640     vec_free(sy.ops);
1641     DEBUGSHUNTDO(con_out("shunt done\n"));
1642     return expr;
1643
1644 onerr:
1645     parser->lex->flags.noops = true;
1646     vec_free(sy.out);
1647     vec_free(sy.ops);
1648     return NULL;
1649 }
1650
1651 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma)
1652 {
1653     ast_expression *e = parse_expression_leave(parser, stopatcomma);
1654     if (!e)
1655         return NULL;
1656     if (!parser_next(parser)) {
1657         ast_delete(e);
1658         return NULL;
1659     }
1660     return e;
1661 }
1662
1663 static void parser_enterblock(parser_t *parser)
1664 {
1665     vec_push(parser->variables, util_htnew(PARSER_HT_SIZE));
1666     vec_push(parser->_blocklocals, vec_size(parser->_locals));
1667     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
1668     vec_push(parser->_blocktypedefs, vec_size(parser->_typedefs));
1669 }
1670
1671 static bool parser_leaveblock(parser_t *parser)
1672 {
1673     bool   rv = true;
1674     size_t locals, typedefs;
1675
1676     if (vec_size(parser->variables) <= PARSER_HT_LOCALS) {
1677         parseerror(parser, "internal error: parser_leaveblock with no block");
1678         return false;
1679     }
1680
1681     util_htdel(vec_last(parser->variables));
1682     vec_pop(parser->variables);
1683     if (!vec_size(parser->_blocklocals)) {
1684         parseerror(parser, "internal error: parser_leaveblock with no block (2)");
1685         return false;
1686     }
1687
1688     locals = vec_last(parser->_blocklocals);
1689     vec_pop(parser->_blocklocals);
1690     while (vec_size(parser->_locals) != locals) {
1691         ast_expression *e = vec_last(parser->_locals);
1692         ast_value      *v = (ast_value*)e;
1693         vec_pop(parser->_locals);
1694         if (ast_istype(e, ast_value) && !v->uses) {
1695             if (parsewarning(parser, WARN_UNUSED_VARIABLE, "unused variable: `%s`", v->name))
1696                 rv = false;
1697         }
1698     }
1699
1700     typedefs = vec_last(parser->_blocktypedefs);
1701     while (vec_size(parser->_typedefs) != typedefs) {
1702         ast_delete(vec_last(parser->_typedefs));
1703         vec_pop(parser->_typedefs);
1704     }
1705     util_htdel(vec_last(parser->typedefs));
1706     vec_pop(parser->typedefs);
1707
1708     return rv;
1709 }
1710
1711 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e)
1712 {
1713     vec_push(parser->_locals, e);
1714     util_htset(vec_last(parser->variables), name, (void*)e);
1715 }
1716
1717 static bool parse_if(parser_t *parser, ast_block *block, ast_expression **out)
1718 {
1719     ast_ifthen *ifthen;
1720     ast_expression *cond, *ontrue, *onfalse = NULL;
1721     bool ifnot = false;
1722
1723     lex_ctx ctx = parser_ctx(parser);
1724
1725     (void)block; /* not touching */
1726
1727     /* skip the 'if', parse an optional 'not' and check for an opening paren */
1728     if (!parser_next(parser)) {
1729         parseerror(parser, "expected condition or 'not'");
1730         return false;
1731     }
1732     if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "not")) {
1733         ifnot = true;
1734         if (!parser_next(parser)) {
1735             parseerror(parser, "expected condition in parenthesis");
1736             return false;
1737         }
1738     }
1739     if (parser->tok != '(') {
1740         parseerror(parser, "expected 'if' condition in parenthesis");
1741         return false;
1742     }
1743     /* parse into the expression */
1744     if (!parser_next(parser)) {
1745         parseerror(parser, "expected 'if' condition after opening paren");
1746         return false;
1747     }
1748     /* parse the condition */
1749     cond = parse_expression_leave(parser, false);
1750     if (!cond)
1751         return false;
1752     /* closing paren */
1753     if (parser->tok != ')') {
1754         parseerror(parser, "expected closing paren after 'if' condition");
1755         ast_delete(cond);
1756         return false;
1757     }
1758     /* parse into the 'then' branch */
1759     if (!parser_next(parser)) {
1760         parseerror(parser, "expected statement for on-true branch of 'if'");
1761         ast_delete(cond);
1762         return false;
1763     }
1764     ontrue = parse_statement_or_block(parser);
1765     if (!ontrue) {
1766         ast_delete(cond);
1767         return false;
1768     }
1769     /* check for an else */
1770     if (!strcmp(parser_tokval(parser), "else")) {
1771         /* parse into the 'else' branch */
1772         if (!parser_next(parser)) {
1773             parseerror(parser, "expected on-false branch after 'else'");
1774             ast_delete(ontrue);
1775             ast_delete(cond);
1776             return false;
1777         }
1778         onfalse = parse_statement_or_block(parser);
1779         if (!onfalse) {
1780             ast_delete(ontrue);
1781             ast_delete(cond);
1782             return false;
1783         }
1784     }
1785
1786     if (ifnot)
1787         ifthen = ast_ifthen_new(ctx, cond, onfalse, ontrue);
1788     else
1789         ifthen = ast_ifthen_new(ctx, cond, ontrue, onfalse);
1790     *out = (ast_expression*)ifthen;
1791     return true;
1792 }
1793
1794 static bool parse_while(parser_t *parser, ast_block *block, ast_expression **out)
1795 {
1796     ast_loop *aloop;
1797     ast_expression *cond, *ontrue;
1798
1799     lex_ctx ctx = parser_ctx(parser);
1800
1801     (void)block; /* not touching */
1802
1803     /* skip the 'while' and check for opening paren */
1804     if (!parser_next(parser) || parser->tok != '(') {
1805         parseerror(parser, "expected 'while' condition in parenthesis");
1806         return false;
1807     }
1808     /* parse into the expression */
1809     if (!parser_next(parser)) {
1810         parseerror(parser, "expected 'while' condition after opening paren");
1811         return false;
1812     }
1813     /* parse the condition */
1814     cond = parse_expression_leave(parser, false);
1815     if (!cond)
1816         return false;
1817     /* closing paren */
1818     if (parser->tok != ')') {
1819         parseerror(parser, "expected closing paren after 'while' condition");
1820         ast_delete(cond);
1821         return false;
1822     }
1823     /* parse into the 'then' branch */
1824     if (!parser_next(parser)) {
1825         parseerror(parser, "expected while-loop body");
1826         ast_delete(cond);
1827         return false;
1828     }
1829     ontrue = parse_statement_or_block(parser);
1830     if (!ontrue) {
1831         ast_delete(cond);
1832         return false;
1833     }
1834
1835     aloop = ast_loop_new(ctx, NULL, cond, NULL, NULL, ontrue);
1836     *out = (ast_expression*)aloop;
1837     return true;
1838 }
1839
1840 static bool parse_dowhile(parser_t *parser, ast_block *block, ast_expression **out)
1841 {
1842     ast_loop *aloop;
1843     ast_expression *cond, *ontrue;
1844
1845     lex_ctx ctx = parser_ctx(parser);
1846
1847     (void)block; /* not touching */
1848
1849     /* skip the 'do' and get the body */
1850     if (!parser_next(parser)) {
1851         parseerror(parser, "expected loop body");
1852         return false;
1853     }
1854     ontrue = parse_statement_or_block(parser);
1855     if (!ontrue)
1856         return false;
1857
1858     /* expect the "while" */
1859     if (parser->tok != TOKEN_KEYWORD ||
1860         strcmp(parser_tokval(parser), "while"))
1861     {
1862         parseerror(parser, "expected 'while' and condition");
1863         ast_delete(ontrue);
1864         return false;
1865     }
1866
1867     /* skip the 'while' and check for opening paren */
1868     if (!parser_next(parser) || parser->tok != '(') {
1869         parseerror(parser, "expected 'while' condition in parenthesis");
1870         ast_delete(ontrue);
1871         return false;
1872     }
1873     /* parse into the expression */
1874     if (!parser_next(parser)) {
1875         parseerror(parser, "expected 'while' condition after opening paren");
1876         ast_delete(ontrue);
1877         return false;
1878     }
1879     /* parse the condition */
1880     cond = parse_expression_leave(parser, false);
1881     if (!cond)
1882         return false;
1883     /* closing paren */
1884     if (parser->tok != ')') {
1885         parseerror(parser, "expected closing paren after 'while' condition");
1886         ast_delete(ontrue);
1887         ast_delete(cond);
1888         return false;
1889     }
1890     /* parse on */
1891     if (!parser_next(parser) || parser->tok != ';') {
1892         parseerror(parser, "expected semicolon after condition");
1893         ast_delete(ontrue);
1894         ast_delete(cond);
1895         return false;
1896     }
1897
1898     if (!parser_next(parser)) {
1899         parseerror(parser, "parse error");
1900         ast_delete(ontrue);
1901         ast_delete(cond);
1902         return false;
1903     }
1904
1905     aloop = ast_loop_new(ctx, NULL, NULL, cond, NULL, ontrue);
1906     *out = (ast_expression*)aloop;
1907     return true;
1908 }
1909
1910 static bool parse_for(parser_t *parser, ast_block *block, ast_expression **out)
1911 {
1912     ast_loop       *aloop;
1913     ast_expression *initexpr, *cond, *increment, *ontrue;
1914     ast_value      *typevar;
1915     bool   retval = true;
1916
1917     lex_ctx ctx = parser_ctx(parser);
1918
1919     parser_enterblock(parser);
1920
1921     initexpr  = NULL;
1922     cond      = NULL;
1923     increment = NULL;
1924     ontrue    = NULL;
1925
1926     /* skip the 'while' and check for opening paren */
1927     if (!parser_next(parser) || parser->tok != '(') {
1928         parseerror(parser, "expected 'for' expressions in parenthesis");
1929         goto onerr;
1930     }
1931     /* parse into the expression */
1932     if (!parser_next(parser)) {
1933         parseerror(parser, "expected 'for' initializer after opening paren");
1934         goto onerr;
1935     }
1936
1937     typevar = NULL;
1938     if (parser->tok == TOKEN_IDENT)
1939         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
1940
1941     if (typevar || parser->tok == TOKEN_TYPENAME) {
1942         if (opts_standard != COMPILER_GMQCC) {
1943             if (parsewarning(parser, WARN_EXTENSIONS,
1944                              "current standard does not allow variable declarations in for-loop initializers"))
1945                 goto onerr;
1946         }
1947         if (!parse_variable(parser, block, true, CV_VAR, typevar))
1948             goto onerr;
1949     }
1950     else if (parser->tok != ';')
1951     {
1952         initexpr = parse_expression_leave(parser, false);
1953         if (!initexpr)
1954             goto onerr;
1955     }
1956
1957     /* move on to condition */
1958     if (parser->tok != ';') {
1959         parseerror(parser, "expected semicolon after for-loop initializer");
1960         goto onerr;
1961     }
1962     if (!parser_next(parser)) {
1963         parseerror(parser, "expected for-loop condition");
1964         goto onerr;
1965     }
1966
1967     /* parse the condition */
1968     if (parser->tok != ';') {
1969         cond = parse_expression_leave(parser, false);
1970         if (!cond)
1971             goto onerr;
1972     }
1973
1974     /* move on to incrementor */
1975     if (parser->tok != ';') {
1976         parseerror(parser, "expected semicolon after for-loop initializer");
1977         goto onerr;
1978     }
1979     if (!parser_next(parser)) {
1980         parseerror(parser, "expected for-loop condition");
1981         goto onerr;
1982     }
1983
1984     /* parse the incrementor */
1985     if (parser->tok != ')') {
1986         increment = parse_expression_leave(parser, false);
1987         if (!increment)
1988             goto onerr;
1989         if (!ast_side_effects(increment)) {
1990             if (genwarning(ast_ctx(increment), WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
1991                 goto onerr;
1992         }
1993     }
1994
1995     /* closing paren */
1996     if (parser->tok != ')') {
1997         parseerror(parser, "expected closing paren after 'for-loop' incrementor");
1998         goto onerr;
1999     }
2000     /* parse into the 'then' branch */
2001     if (!parser_next(parser)) {
2002         parseerror(parser, "expected for-loop body");
2003         goto onerr;
2004     }
2005     ontrue = parse_statement_or_block(parser);
2006     if (!ontrue) {
2007         goto onerr;
2008     }
2009
2010     aloop = ast_loop_new(ctx, initexpr, cond, NULL, increment, ontrue);
2011     *out = (ast_expression*)aloop;
2012
2013     if (!parser_leaveblock(parser))
2014         retval = false;
2015     return retval;
2016 onerr:
2017     if (initexpr)  ast_delete(initexpr);
2018     if (cond)      ast_delete(cond);
2019     if (increment) ast_delete(increment);
2020     (void)!parser_leaveblock(parser);
2021     return false;
2022 }
2023
2024 static bool parse_return(parser_t *parser, ast_block *block, ast_expression **out)
2025 {
2026     ast_expression *exp = NULL;
2027     ast_return     *ret = NULL;
2028     ast_value      *expected = parser->function->vtype;
2029
2030     (void)block; /* not touching */
2031
2032     if (!parser_next(parser)) {
2033         parseerror(parser, "expected return expression");
2034         return false;
2035     }
2036
2037     if (parser->tok != ';') {
2038         exp = parse_expression(parser, false);
2039         if (!exp)
2040             return false;
2041
2042         if (exp->expression.vtype != expected->expression.next->expression.vtype) {
2043             parseerror(parser, "return with invalid expression");
2044         }
2045
2046         ret = ast_return_new(exp->expression.node.context, exp);
2047         if (!ret) {
2048             ast_delete(exp);
2049             return false;
2050         }
2051     } else {
2052         if (!parser_next(parser))
2053             parseerror(parser, "parse error");
2054         if (expected->expression.next->expression.vtype != TYPE_VOID) {
2055             if (opts_standard != COMPILER_GMQCC)
2056                 (void)!parsewarning(parser, WARN_MISSING_RETURN_VALUES, "return without value");
2057             else
2058                 parseerror(parser, "return without value");
2059         }
2060         ret = ast_return_new(parser_ctx(parser), NULL);
2061     }
2062     *out = (ast_expression*)ret;
2063     return true;
2064 }
2065
2066 static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
2067 {
2068     lex_ctx ctx = parser_ctx(parser);
2069
2070     (void)block; /* not touching */
2071
2072     if (!parser_next(parser) || parser->tok != ';') {
2073         parseerror(parser, "expected semicolon");
2074         return false;
2075     }
2076
2077     if (!parser_next(parser))
2078         parseerror(parser, "parse error");
2079
2080     *out = (ast_expression*)ast_breakcont_new(ctx, is_continue);
2081     return true;
2082 }
2083
2084 static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **out)
2085 {
2086     ast_expression *operand;
2087     ast_value      *opval;
2088     ast_switch     *switchnode;
2089     ast_switch_case swcase;
2090
2091     lex_ctx ctx = parser_ctx(parser);
2092
2093     (void)block; /* not touching */
2094
2095     /* parse over the opening paren */
2096     if (!parser_next(parser) || parser->tok != '(') {
2097         parseerror(parser, "expected switch operand in parenthesis");
2098         return false;
2099     }
2100
2101     /* parse into the expression */
2102     if (!parser_next(parser)) {
2103         parseerror(parser, "expected switch operand");
2104         return false;
2105     }
2106     /* parse the operand */
2107     operand = parse_expression_leave(parser, false);
2108     if (!operand)
2109         return false;
2110
2111     switchnode = ast_switch_new(ctx, operand);
2112
2113     /* closing paren */
2114     if (parser->tok != ')') {
2115         ast_delete(switchnode);
2116         parseerror(parser, "expected closing paren after 'switch' operand");
2117         return false;
2118     }
2119
2120     /* parse over the opening paren */
2121     if (!parser_next(parser) || parser->tok != '{') {
2122         ast_delete(switchnode);
2123         parseerror(parser, "expected list of cases");
2124         return false;
2125     }
2126
2127     if (!parser_next(parser)) {
2128         ast_delete(switchnode);
2129         parseerror(parser, "expected 'case' or 'default'");
2130         return false;
2131     }
2132
2133     /* case list! */
2134     while (parser->tok != '}') {
2135         ast_block *caseblock;
2136
2137         if (parser->tok != TOKEN_KEYWORD) {
2138             ast_delete(switchnode);
2139             parseerror(parser, "expected 'case' or 'default'");
2140             return false;
2141         }
2142         if (!strcmp(parser_tokval(parser), "case")) {
2143             if (!parser_next(parser)) {
2144                 ast_delete(switchnode);
2145                 parseerror(parser, "expected expression for case");
2146                 return false;
2147             }
2148             swcase.value = parse_expression_leave(parser, false);
2149             if (!swcase.value) {
2150                 ast_delete(switchnode);
2151                 parseerror(parser, "expected expression for case");
2152                 return false;
2153             }
2154             if (!OPTS_FLAG(RELAXED_SWITCH)) {
2155                 opval = (ast_value*)swcase.value;
2156                 if (!ast_istype(swcase.value, ast_value) || !opval->constant) {
2157                     parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
2158                     ast_unref(operand);
2159                     return false;
2160                 }
2161             }
2162         }
2163         else if (!strcmp(parser_tokval(parser), "default")) {
2164             swcase.value = NULL;
2165             if (!parser_next(parser)) {
2166                 ast_delete(switchnode);
2167                 parseerror(parser, "expected colon");
2168                 return false;
2169             }
2170         }
2171
2172         /* Now the colon and body */
2173         if (parser->tok != ':') {
2174             if (swcase.value) ast_unref(swcase.value);
2175             ast_delete(switchnode);
2176             parseerror(parser, "expected colon");
2177             return false;
2178         }
2179
2180         if (!parser_next(parser)) {
2181             if (swcase.value) ast_unref(swcase.value);
2182             ast_delete(switchnode);
2183             parseerror(parser, "expected statements or case");
2184             return false;
2185         }
2186         caseblock = ast_block_new(parser_ctx(parser));
2187         if (!caseblock) {
2188             if (swcase.value) ast_unref(swcase.value);
2189             ast_delete(switchnode);
2190             return false;
2191         }
2192         swcase.code = (ast_expression*)caseblock;
2193         vec_push(switchnode->cases, swcase);
2194         while (true) {
2195             ast_expression *expr;
2196             if (parser->tok == '}')
2197                 break;
2198             if (parser->tok == TOKEN_KEYWORD) {
2199                 if (!strcmp(parser_tokval(parser), "case") ||
2200                     !strcmp(parser_tokval(parser), "default"))
2201                 {
2202                     break;
2203                 }
2204             }
2205             if (!parse_statement(parser, caseblock, &expr, true)) {
2206                 ast_delete(switchnode);
2207                 return false;
2208             }
2209             if (!expr)
2210                 continue;
2211             ast_block_add_expr(caseblock, expr);
2212         }
2213     }
2214
2215     /* closing paren */
2216     if (parser->tok != '}') {
2217         ast_delete(switchnode);
2218         parseerror(parser, "expected closing paren of case list");
2219         return false;
2220     }
2221     if (!parser_next(parser)) {
2222         ast_delete(switchnode);
2223         parseerror(parser, "parse error after switch");
2224         return false;
2225     }
2226     *out = (ast_expression*)switchnode;
2227     return true;
2228 }
2229
2230 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
2231 {
2232     ast_value *typevar = NULL;
2233     *out = NULL;
2234
2235     if (parser->tok == TOKEN_IDENT)
2236         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2237
2238     if (typevar || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
2239     {
2240         /* local variable */
2241         if (!block) {
2242             parseerror(parser, "cannot declare a variable from here");
2243             return false;
2244         }
2245         if (opts_standard == COMPILER_QCC) {
2246             if (parsewarning(parser, WARN_EXTENSIONS, "missing 'local' keyword when declaring a local variable"))
2247                 return false;
2248         }
2249         if (!parse_variable(parser, block, false, CV_NONE, typevar))
2250             return false;
2251         *out = NULL;
2252         return true;
2253     }
2254     else if (parser->tok == TOKEN_KEYWORD)
2255     {
2256         if (!strcmp(parser_tokval(parser), "local") ||
2257             !strcmp(parser_tokval(parser), "const"))
2258         {
2259             int cvq = parser_tokval(parser)[0] == 'c' ? CV_CONST : CV_VAR;
2260
2261             if (!block) {
2262                 parseerror(parser, "cannot declare a local variable here");
2263                 return false;
2264             }
2265             if (!parser_next(parser)) {
2266                 parseerror(parser, "expected variable declaration");
2267                 return false;
2268             }
2269             if (!parse_variable(parser, block, true, cvq, NULL))
2270                 return false;
2271             *out = NULL;
2272             return true;
2273         }
2274         else if (!strcmp(parser_tokval(parser), "return"))
2275         {
2276             return parse_return(parser, block, out);
2277         }
2278         else if (!strcmp(parser_tokval(parser), "if"))
2279         {
2280             return parse_if(parser, block, out);
2281         }
2282         else if (!strcmp(parser_tokval(parser), "while"))
2283         {
2284             return parse_while(parser, block, out);
2285         }
2286         else if (!strcmp(parser_tokval(parser), "do"))
2287         {
2288             return parse_dowhile(parser, block, out);
2289         }
2290         else if (!strcmp(parser_tokval(parser), "for"))
2291         {
2292             if (opts_standard == COMPILER_QCC) {
2293                 if (parsewarning(parser, WARN_EXTENSIONS, "for loops are not recognized in the original Quake C standard, to enable try an alternate standard --std=?"))
2294                     return false;
2295             }
2296             return parse_for(parser, block, out);
2297         }
2298         else if (!strcmp(parser_tokval(parser), "break"))
2299         {
2300             return parse_break_continue(parser, block, out, false);
2301         }
2302         else if (!strcmp(parser_tokval(parser), "continue"))
2303         {
2304             return parse_break_continue(parser, block, out, true);
2305         }
2306         else if (!strcmp(parser_tokval(parser), "switch"))
2307         {
2308             return parse_switch(parser, block, out);
2309         }
2310         else if (!strcmp(parser_tokval(parser), "case") ||
2311                  !strcmp(parser_tokval(parser), "default"))
2312         {
2313             if (!allow_cases) {
2314                 parseerror(parser, "unexpected 'case' label");
2315                 return false;
2316             }
2317             return true;
2318         }
2319         else if (!strcmp(parser_tokval(parser), "typedef"))
2320         {
2321             if (!parser_next(parser)) {
2322                 parseerror(parser, "expected type definition after 'typedef'");
2323                 return false;
2324             }
2325             return parse_typedef(parser);
2326         }
2327         parseerror(parser, "Unexpected keyword");
2328         return false;
2329     }
2330     else if (parser->tok == '{')
2331     {
2332         ast_block *inner;
2333         inner = parse_block(parser, false);
2334         if (!inner)
2335             return false;
2336         *out = (ast_expression*)inner;
2337         return true;
2338     }
2339     else if (parser->tok == ';')
2340     {
2341         if (!parser_next(parser)) {
2342             parseerror(parser, "parse error after empty statement");
2343             return false;
2344         }
2345         return true;
2346     }
2347     else
2348     {
2349         ast_expression *exp = parse_expression(parser, false);
2350         if (!exp)
2351             return false;
2352         *out = exp;
2353         if (!ast_side_effects(exp)) {
2354             if (genwarning(ast_ctx(exp), WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2355                 return false;
2356         }
2357         return true;
2358     }
2359 }
2360
2361 static bool parse_block_into(parser_t *parser, ast_block *block, bool warnreturn)
2362 {
2363     bool   retval = true;
2364
2365     parser_enterblock(parser);
2366
2367     if (!parser_next(parser)) { /* skip the '{' */
2368         parseerror(parser, "expected function body");
2369         goto cleanup;
2370     }
2371
2372     while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
2373     {
2374         ast_expression *expr = NULL;
2375         if (parser->tok == '}')
2376             break;
2377
2378         if (!parse_statement(parser, block, &expr, false)) {
2379             /* parseerror(parser, "parse error"); */
2380             block = NULL;
2381             goto cleanup;
2382         }
2383         if (!expr)
2384             continue;
2385         ast_block_add_expr(block, expr);
2386     }
2387
2388     if (parser->tok != '}') {
2389         block = NULL;
2390     } else {
2391         if (warnreturn && parser->function->vtype->expression.next->expression.vtype != TYPE_VOID)
2392         {
2393             if (!vec_size(block->exprs) ||
2394                 !ast_istype(vec_last(block->exprs), ast_return))
2395             {
2396                 if (parsewarning(parser, WARN_MISSING_RETURN_VALUES, "control reaches end of non-void function")) {
2397                     block = NULL;
2398                     goto cleanup;
2399                 }
2400             }
2401         }
2402         (void)parser_next(parser);
2403     }
2404
2405 cleanup:
2406     if (!parser_leaveblock(parser))
2407         retval = false;
2408     return retval && !!block;
2409 }
2410
2411 static ast_block* parse_block(parser_t *parser, bool warnreturn)
2412 {
2413     ast_block *block;
2414     block = ast_block_new(parser_ctx(parser));
2415     if (!block)
2416         return NULL;
2417     if (!parse_block_into(parser, block, warnreturn)) {
2418         ast_block_delete(block);
2419         return NULL;
2420     }
2421     return block;
2422 }
2423
2424 static ast_expression* parse_statement_or_block(parser_t *parser)
2425 {
2426     ast_expression *expr = NULL;
2427     if (parser->tok == '{')
2428         return (ast_expression*)parse_block(parser, false);
2429     if (!parse_statement(parser, NULL, &expr, false))
2430         return NULL;
2431     return expr;
2432 }
2433
2434 static bool create_vector_members(ast_value *var, ast_member **me)
2435 {
2436     size_t i;
2437     size_t len = strlen(var->name);
2438
2439     for (i = 0; i < 3; ++i) {
2440         char *name = mem_a(len+3);
2441         memcpy(name, var->name, len);
2442         name[len+0] = '_';
2443         name[len+1] = 'x'+i;
2444         name[len+2] = 0;
2445         me[i] = ast_member_new(ast_ctx(var), (ast_expression*)var, i, name);
2446         mem_d(name);
2447         if (!me[i])
2448             break;
2449     }
2450     if (i == 3)
2451         return true;
2452
2453     /* unroll */
2454     do { ast_member_delete(me[--i]); } while(i);
2455     return false;
2456 }
2457
2458 static bool parse_function_body(parser_t *parser, ast_value *var)
2459 {
2460     ast_block      *block = NULL;
2461     ast_function   *func;
2462     ast_function   *old;
2463     size_t          parami;
2464
2465     ast_expression *framenum  = NULL;
2466     ast_expression *nextthink = NULL;
2467     /* None of the following have to be deleted */
2468     ast_expression *fld_think = NULL, *fld_nextthink = NULL, *fld_frame = NULL;
2469     ast_expression *gbl_time = NULL, *gbl_self = NULL;
2470     bool            has_frame_think;
2471
2472     bool retval = true;
2473
2474     has_frame_think = false;
2475     old = parser->function;
2476
2477     if (var->expression.variadic) {
2478         if (parsewarning(parser, WARN_VARIADIC_FUNCTION,
2479                          "variadic function with implementation will not be able to access additional parameters"))
2480         {
2481             return false;
2482         }
2483     }
2484
2485     if (parser->tok == '[') {
2486         /* got a frame definition: [ framenum, nextthink ]
2487          * this translates to:
2488          * self.frame = framenum;
2489          * self.nextthink = time + 0.1;
2490          * self.think = nextthink;
2491          */
2492         nextthink = NULL;
2493
2494         fld_think     = parser_find_field(parser, "think");
2495         fld_nextthink = parser_find_field(parser, "nextthink");
2496         fld_frame     = parser_find_field(parser, "frame");
2497         if (!fld_think || !fld_nextthink || !fld_frame) {
2498             parseerror(parser, "cannot use [frame,think] notation without the required fields");
2499             parseerror(parser, "please declare the following entityfields: `frame`, `think`, `nextthink`");
2500             return false;
2501         }
2502         gbl_time      = parser_find_global(parser, "time");
2503         gbl_self      = parser_find_global(parser, "self");
2504         if (!gbl_time || !gbl_self) {
2505             parseerror(parser, "cannot use [frame,think] notation without the required globals");
2506             parseerror(parser, "please declare the following globals: `time`, `self`");
2507             return false;
2508         }
2509
2510         if (!parser_next(parser))
2511             return false;
2512
2513         framenum = parse_expression_leave(parser, true);
2514         if (!framenum) {
2515             parseerror(parser, "expected a framenumber constant in[frame,think] notation");
2516             return false;
2517         }
2518         if (!ast_istype(framenum, ast_value) || !( (ast_value*)framenum )->hasvalue) {
2519             ast_unref(framenum);
2520             parseerror(parser, "framenumber in [frame,think] notation must be a constant");
2521             return false;
2522         }
2523
2524         if (parser->tok != ',') {
2525             ast_unref(framenum);
2526             parseerror(parser, "expected comma after frame number in [frame,think] notation");
2527             parseerror(parser, "Got a %i\n", parser->tok);
2528             return false;
2529         }
2530
2531         if (!parser_next(parser)) {
2532             ast_unref(framenum);
2533             return false;
2534         }
2535
2536         if (parser->tok == TOKEN_IDENT && !parser_find_var(parser, parser_tokval(parser)))
2537         {
2538             /* qc allows the use of not-yet-declared functions here
2539              * - this automatically creates a prototype */
2540             ast_value      *thinkfunc;
2541             ast_expression *functype = fld_think->expression.next;
2542
2543             thinkfunc = ast_value_new(parser_ctx(parser), parser_tokval(parser), functype->expression.vtype);
2544             if (!thinkfunc || !ast_type_adopt(thinkfunc, functype)) {
2545                 ast_unref(framenum);
2546                 parseerror(parser, "failed to create implicit prototype for `%s`", parser_tokval(parser));
2547                 return false;
2548             }
2549
2550             if (!parser_next(parser)) {
2551                 ast_unref(framenum);
2552                 ast_delete(thinkfunc);
2553                 return false;
2554             }
2555
2556             vec_push(parser->globals, (ast_expression*)thinkfunc);
2557             util_htset(parser->htglobals, thinkfunc->name, thinkfunc);
2558             nextthink = (ast_expression*)thinkfunc;
2559
2560         } else {
2561             nextthink = parse_expression_leave(parser, true);
2562             if (!nextthink) {
2563                 ast_unref(framenum);
2564                 parseerror(parser, "expected a think-function in [frame,think] notation");
2565                 return false;
2566             }
2567         }
2568
2569         if (!ast_istype(nextthink, ast_value)) {
2570             parseerror(parser, "think-function in [frame,think] notation must be a constant");
2571             retval = false;
2572         }
2573
2574         if (retval && parser->tok != ']') {
2575             parseerror(parser, "expected closing `]` for [frame,think] notation");
2576             retval = false;
2577         }
2578
2579         if (retval && !parser_next(parser)) {
2580             retval = false;
2581         }
2582
2583         if (retval && parser->tok != '{') {
2584             parseerror(parser, "a function body has to be declared after a [frame,think] declaration");
2585             retval = false;
2586         }
2587
2588         if (!retval) {
2589             ast_unref(nextthink);
2590             ast_unref(framenum);
2591             return false;
2592         }
2593
2594         has_frame_think = true;
2595     }
2596
2597     block = ast_block_new(parser_ctx(parser));
2598     if (!block) {
2599         parseerror(parser, "failed to allocate block");
2600         if (has_frame_think) {
2601             ast_unref(nextthink);
2602             ast_unref(framenum);
2603         }
2604         return false;
2605     }
2606
2607     if (has_frame_think) {
2608         lex_ctx ctx;
2609         ast_expression *self_frame;
2610         ast_expression *self_nextthink;
2611         ast_expression *self_think;
2612         ast_expression *time_plus_1;
2613         ast_store *store_frame;
2614         ast_store *store_nextthink;
2615         ast_store *store_think;
2616
2617         ctx = parser_ctx(parser);
2618         self_frame     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_frame);
2619         self_nextthink = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_nextthink);
2620         self_think     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_think);
2621
2622         time_plus_1    = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_F,
2623                          gbl_time, (ast_expression*)parser_const_float(parser, 0.1));
2624
2625         if (!self_frame || !self_nextthink || !self_think || !time_plus_1) {
2626             if (self_frame)     ast_delete(self_frame);
2627             if (self_nextthink) ast_delete(self_nextthink);
2628             if (self_think)     ast_delete(self_think);
2629             if (time_plus_1)    ast_delete(time_plus_1);
2630             retval = false;
2631         }
2632
2633         if (retval)
2634         {
2635             store_frame     = ast_store_new(ctx, INSTR_STOREP_F,   self_frame,     framenum);
2636             store_nextthink = ast_store_new(ctx, INSTR_STOREP_F,   self_nextthink, time_plus_1);
2637             store_think     = ast_store_new(ctx, INSTR_STOREP_FNC, self_think,     nextthink);
2638
2639             if (!store_frame) {
2640                 ast_delete(self_frame);
2641                 retval = false;
2642             }
2643             if (!store_nextthink) {
2644                 ast_delete(self_nextthink);
2645                 retval = false;
2646             }
2647             if (!store_think) {
2648                 ast_delete(self_think);
2649                 retval = false;
2650             }
2651             if (!retval) {
2652                 if (store_frame)     ast_delete(store_frame);
2653                 if (store_nextthink) ast_delete(store_nextthink);
2654                 if (store_think)     ast_delete(store_think);
2655                 retval = false;
2656             }
2657             ast_block_add_expr(block, (ast_expression*)store_frame);
2658             ast_block_add_expr(block, (ast_expression*)store_nextthink);
2659             ast_block_add_expr(block, (ast_expression*)store_think);
2660         }
2661
2662         if (!retval) {
2663             parseerror(parser, "failed to generate code for [frame,think]");
2664             ast_unref(nextthink);
2665             ast_unref(framenum);
2666             ast_delete(block);
2667             return false;
2668         }
2669     }
2670
2671     parser_enterblock(parser);
2672
2673     for (parami = 0; parami < vec_size(var->expression.params); ++parami) {
2674         size_t     e;
2675         ast_value *param = var->expression.params[parami];
2676         ast_member *me[3];
2677
2678         if (param->expression.vtype != TYPE_VECTOR &&
2679             (param->expression.vtype != TYPE_FIELD ||
2680              param->expression.next->expression.vtype != TYPE_VECTOR))
2681         {
2682             continue;
2683         }
2684
2685         if (!create_vector_members(param, me)) {
2686             ast_block_delete(block);
2687             return false;
2688         }
2689
2690         for (e = 0; e < 3; ++e) {
2691             parser_addlocal(parser, me[e]->name, (ast_expression*)me[e]);
2692             ast_block_collect(block, (ast_expression*)me[e]);
2693         }
2694     }
2695
2696     func = ast_function_new(ast_ctx(var), var->name, var);
2697     if (!func) {
2698         parseerror(parser, "failed to allocate function for `%s`", var->name);
2699         ast_block_delete(block);
2700         goto enderr;
2701     }
2702     vec_push(parser->functions, func);
2703
2704     parser->function = func;
2705     if (!parse_block_into(parser, block, true)) {
2706         ast_block_delete(block);
2707         goto enderrfn;
2708     }
2709
2710     vec_push(func->blocks, block);
2711
2712     parser->function = old;
2713     if (!parser_leaveblock(parser))
2714         retval = false;
2715     if (vec_size(parser->variables) != PARSER_HT_LOCALS) {
2716         parseerror(parser, "internal error: local scopes left");
2717         retval = false;
2718     }
2719
2720     if (parser->tok == ';')
2721         return parser_next(parser);
2722     else if (opts_standard == COMPILER_QCC)
2723         parseerror(parser, "missing semicolon after function body (mandatory with -std=qcc)");
2724     return retval;
2725
2726 enderrfn:
2727     vec_pop(parser->functions);
2728     ast_function_delete(func);
2729     var->constval.vfunc = NULL;
2730
2731 enderr:
2732     (void)!parser_leaveblock(parser);
2733     parser->function = old;
2734     return false;
2735 }
2736
2737 static ast_expression *array_accessor_split(
2738     parser_t  *parser,
2739     ast_value *array,
2740     ast_value *index,
2741     size_t     middle,
2742     ast_expression *left,
2743     ast_expression *right
2744     )
2745 {
2746     ast_ifthen *ifthen;
2747     ast_binary *cmp;
2748
2749     lex_ctx ctx = ast_ctx(array);
2750
2751     if (!left || !right) {
2752         if (left)  ast_delete(left);
2753         if (right) ast_delete(right);
2754         return NULL;
2755     }
2756
2757     cmp = ast_binary_new(ctx, INSTR_LT,
2758                          (ast_expression*)index,
2759                          (ast_expression*)parser_const_float(parser, middle));
2760     if (!cmp) {
2761         ast_delete(left);
2762         ast_delete(right);
2763         parseerror(parser, "internal error: failed to create comparison for array setter");
2764         return NULL;
2765     }
2766
2767     ifthen = ast_ifthen_new(ctx, (ast_expression*)cmp, left, right);
2768     if (!ifthen) {
2769         ast_delete(cmp); /* will delete left and right */
2770         parseerror(parser, "internal error: failed to create conditional jump for array setter");
2771         return NULL;
2772     }
2773
2774     return (ast_expression*)ifthen;
2775 }
2776
2777 static ast_expression *array_setter_node(parser_t *parser, ast_value *array, ast_value *index, ast_value *value, size_t from, size_t afterend)
2778 {
2779     lex_ctx ctx = ast_ctx(array);
2780
2781     if (from+1 == afterend) {
2782         /* set this value */
2783         ast_block       *block;
2784         ast_return      *ret;
2785         ast_array_index *subscript;
2786         ast_store       *st;
2787         int assignop = type_store_instr[value->expression.vtype];
2788
2789         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
2790             assignop = INSTR_STORE_V;
2791
2792         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
2793         if (!subscript)
2794             return NULL;
2795
2796         st = ast_store_new(ctx, assignop, (ast_expression*)subscript, (ast_expression*)value);
2797         if (!st) {
2798             ast_delete(subscript);
2799             return NULL;
2800         }
2801
2802         block = ast_block_new(ctx);
2803         if (!block) {
2804             ast_delete(st);
2805             return NULL;
2806         }
2807
2808         ast_block_add_expr(block, (ast_expression*)st);
2809
2810         ret = ast_return_new(ctx, NULL);
2811         if (!ret) {
2812             ast_delete(block);
2813             return NULL;
2814         }
2815
2816         ast_block_add_expr(block, (ast_expression*)ret);
2817
2818         return (ast_expression*)block;
2819     } else {
2820         ast_expression *left, *right;
2821         size_t diff = afterend - from;
2822         size_t middle = from + diff/2;
2823         left  = array_setter_node(parser, array, index, value, from, middle);
2824         right = array_setter_node(parser, array, index, value, middle, afterend);
2825         return array_accessor_split(parser, array, index, middle, left, right);
2826     }
2827 }
2828
2829 static ast_expression *array_field_setter_node(
2830     parser_t  *parser,
2831     ast_value *array,
2832     ast_value *entity,
2833     ast_value *index,
2834     ast_value *value,
2835     size_t     from,
2836     size_t     afterend)
2837 {
2838     lex_ctx ctx = ast_ctx(array);
2839
2840     if (from+1 == afterend) {
2841         /* set this value */
2842         ast_block       *block;
2843         ast_return      *ret;
2844         ast_entfield    *entfield;
2845         ast_array_index *subscript;
2846         ast_store       *st;
2847         int assignop = type_storep_instr[value->expression.vtype];
2848
2849         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
2850             assignop = INSTR_STOREP_V;
2851
2852         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
2853         if (!subscript)
2854             return NULL;
2855
2856         entfield = ast_entfield_new_force(ctx,
2857                                           (ast_expression*)entity,
2858                                           (ast_expression*)subscript,
2859                                           (ast_expression*)subscript);
2860         if (!entfield) {
2861             ast_delete(subscript);
2862             return NULL;
2863         }
2864
2865         st = ast_store_new(ctx, assignop, (ast_expression*)entfield, (ast_expression*)value);
2866         if (!st) {
2867             ast_delete(entfield);
2868             return NULL;
2869         }
2870
2871         block = ast_block_new(ctx);
2872         if (!block) {
2873             ast_delete(st);
2874             return NULL;
2875         }
2876
2877         ast_block_add_expr(block, (ast_expression*)st);
2878
2879         ret = ast_return_new(ctx, NULL);
2880         if (!ret) {
2881             ast_delete(block);
2882             return NULL;
2883         }
2884
2885         ast_block_add_expr(block, (ast_expression*)ret);
2886
2887         return (ast_expression*)block;
2888     } else {
2889         ast_expression *left, *right;
2890         size_t diff = afterend - from;
2891         size_t middle = from + diff/2;
2892         left  = array_field_setter_node(parser, array, entity, index, value, from, middle);
2893         right = array_field_setter_node(parser, array, entity, index, value, middle, afterend);
2894         return array_accessor_split(parser, array, index, middle, left, right);
2895     }
2896 }
2897
2898 static ast_expression *array_getter_node(parser_t *parser, ast_value *array, ast_value *index, size_t from, size_t afterend)
2899 {
2900     lex_ctx ctx = ast_ctx(array);
2901
2902     if (from+1 == afterend) {
2903         ast_return      *ret;
2904         ast_array_index *subscript;
2905
2906         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
2907         if (!subscript)
2908             return NULL;
2909
2910         ret = ast_return_new(ctx, (ast_expression*)subscript);
2911         if (!ret) {
2912             ast_delete(subscript);
2913             return NULL;
2914         }
2915
2916         return (ast_expression*)ret;
2917     } else {
2918         ast_expression *left, *right;
2919         size_t diff = afterend - from;
2920         size_t middle = from + diff/2;
2921         left  = array_getter_node(parser, array, index, from, middle);
2922         right = array_getter_node(parser, array, index, middle, afterend);
2923         return array_accessor_split(parser, array, index, middle, left, right);
2924     }
2925 }
2926
2927 static bool parser_create_array_accessor(parser_t *parser, ast_value *array, const char *funcname, ast_value **out)
2928 {
2929     ast_function   *func = NULL;
2930     ast_value      *fval = NULL;
2931     ast_block      *body = NULL;
2932
2933     fval = ast_value_new(ast_ctx(array), funcname, TYPE_FUNCTION);
2934     if (!fval) {
2935         parseerror(parser, "failed to create accessor function value");
2936         return false;
2937     }
2938
2939     func = ast_function_new(ast_ctx(array), funcname, fval);
2940     if (!func) {
2941         ast_delete(fval);
2942         parseerror(parser, "failed to create accessor function node");
2943         return false;
2944     }
2945
2946     body = ast_block_new(ast_ctx(array));
2947     if (!body) {
2948         parseerror(parser, "failed to create block for array accessor");
2949         ast_delete(fval);
2950         ast_delete(func);
2951         return false;
2952     }
2953
2954     vec_push(func->blocks, body);
2955     *out = fval;
2956
2957     vec_push(parser->accessors, fval);
2958
2959     return true;
2960 }
2961
2962 static bool parser_create_array_setter(parser_t *parser, ast_value *array, const char *funcname)
2963 {
2964     ast_expression *root = NULL;
2965     ast_value      *index = NULL;
2966     ast_value      *value = NULL;
2967     ast_function   *func;
2968     ast_value      *fval;
2969
2970     if (!ast_istype(array->expression.next, ast_value)) {
2971         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
2972         return false;
2973     }
2974
2975     if (!parser_create_array_accessor(parser, array, funcname, &fval))
2976         return false;
2977     func = fval->constval.vfunc;
2978     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
2979
2980     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
2981     value = ast_value_copy((ast_value*)array->expression.next);
2982
2983     if (!index || !value) {
2984         parseerror(parser, "failed to create locals for array accessor");
2985         goto cleanup;
2986     }
2987     (void)!ast_value_set_name(value, "value"); /* not important */
2988     vec_push(fval->expression.params, index);
2989     vec_push(fval->expression.params, value);
2990
2991     root = array_setter_node(parser, array, index, value, 0, array->expression.count);
2992     if (!root) {
2993         parseerror(parser, "failed to build accessor search tree");
2994         goto cleanup;
2995     }
2996
2997     ast_block_add_expr(func->blocks[0], root);
2998     array->setter = fval;
2999     return true;
3000 cleanup:
3001     if (index) ast_delete(index);
3002     if (value) ast_delete(value);
3003     if (root)  ast_delete(root);
3004     ast_delete(func);
3005     ast_delete(fval);
3006     return false;
3007 }
3008
3009 static bool parser_create_array_field_setter(parser_t *parser, ast_value *array, const char *funcname)
3010 {
3011     ast_expression *root = NULL;
3012     ast_value      *entity = NULL;
3013     ast_value      *index = NULL;
3014     ast_value      *value = NULL;
3015     ast_function   *func;
3016     ast_value      *fval;
3017
3018     if (!ast_istype(array->expression.next, ast_value)) {
3019         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
3020         return false;
3021     }
3022
3023     if (!parser_create_array_accessor(parser, array, funcname, &fval))
3024         return false;
3025     func = fval->constval.vfunc;
3026     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
3027
3028     entity = ast_value_new(ast_ctx(array), "entity", TYPE_ENTITY);
3029     index  = ast_value_new(ast_ctx(array), "index",  TYPE_FLOAT);
3030     value  = ast_value_copy((ast_value*)array->expression.next);
3031     if (!entity || !index || !value) {
3032         parseerror(parser, "failed to create locals for array accessor");
3033         goto cleanup;
3034     }
3035     (void)!ast_value_set_name(value, "value"); /* not important */
3036     vec_push(fval->expression.params, entity);
3037     vec_push(fval->expression.params, index);
3038     vec_push(fval->expression.params, value);
3039
3040     root = array_field_setter_node(parser, array, entity, index, value, 0, array->expression.count);
3041     if (!root) {
3042         parseerror(parser, "failed to build accessor search tree");
3043         goto cleanup;
3044     }
3045
3046     ast_block_add_expr(func->blocks[0], root);
3047     array->setter = fval;
3048     return true;
3049 cleanup:
3050     if (entity) ast_delete(entity);
3051     if (index)  ast_delete(index);
3052     if (value)  ast_delete(value);
3053     if (root)   ast_delete(root);
3054     ast_delete(func);
3055     ast_delete(fval);
3056     return false;
3057 }
3058
3059 static bool parser_create_array_getter(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
3060 {
3061     ast_expression *root = NULL;
3062     ast_value      *index = NULL;
3063     ast_value      *fval;
3064     ast_function   *func;
3065
3066     /* NOTE: checking array->expression.next rather than elemtype since
3067      * for fields elemtype is a temporary fieldtype.
3068      */
3069     if (!ast_istype(array->expression.next, ast_value)) {
3070         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
3071         return false;
3072     }
3073
3074     if (!parser_create_array_accessor(parser, array, funcname, &fval))
3075         return false;
3076     func = fval->constval.vfunc;
3077     fval->expression.next = ast_type_copy(ast_ctx(array), elemtype);
3078
3079     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
3080
3081     if (!index) {
3082         parseerror(parser, "failed to create locals for array accessor");
3083         goto cleanup;
3084     }
3085     vec_push(fval->expression.params, index);
3086
3087     root = array_getter_node(parser, array, index, 0, array->expression.count);
3088     if (!root) {
3089         parseerror(parser, "failed to build accessor search tree");
3090         goto cleanup;
3091     }
3092
3093     ast_block_add_expr(func->blocks[0], root);
3094     array->getter = fval;
3095     return true;
3096 cleanup:
3097     if (index) ast_delete(index);
3098     if (root)  ast_delete(root);
3099     ast_delete(func);
3100     ast_delete(fval);
3101     return false;
3102 }
3103
3104 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef);
3105 static ast_value *parse_parameter_list(parser_t *parser, ast_value *var)
3106 {
3107     lex_ctx     ctx;
3108     size_t      i;
3109     ast_value **params;
3110     ast_value  *param;
3111     ast_value  *fval;
3112     bool        first = true;
3113     bool        variadic = false;
3114
3115     ctx = parser_ctx(parser);
3116
3117     /* for the sake of less code we parse-in in this function */
3118     if (!parser_next(parser)) {
3119         parseerror(parser, "expected parameter list");
3120         return NULL;
3121     }
3122
3123     params = NULL;
3124
3125     /* parse variables until we hit a closing paren */
3126     while (parser->tok != ')') {
3127         if (!first) {
3128             /* there must be commas between them */
3129             if (parser->tok != ',') {
3130                 parseerror(parser, "expected comma or end of parameter list");
3131                 goto on_error;
3132             }
3133             if (!parser_next(parser)) {
3134                 parseerror(parser, "expected parameter");
3135                 goto on_error;
3136             }
3137         }
3138         first = false;
3139
3140         if (parser->tok == TOKEN_DOTS) {
3141             /* '...' indicates a varargs function */
3142             variadic = true;
3143             if (!parser_next(parser)) {
3144                 parseerror(parser, "expected parameter");
3145                 return NULL;
3146             }
3147             if (parser->tok != ')') {
3148                 parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
3149                 goto on_error;
3150             }
3151         }
3152         else
3153         {
3154             /* for anything else just parse a typename */
3155             param = parse_typename(parser, NULL, NULL);
3156             if (!param)
3157                 goto on_error;
3158             vec_push(params, param);
3159             if (param->expression.vtype >= TYPE_VARIANT) {
3160                 char typename[1024];
3161                 ast_type_to_string((ast_expression*)param, typename, sizeof(typename));
3162                 parseerror(parser, "type not supported as part of a parameter list: %s", typename);
3163                 goto on_error;
3164             }
3165         }
3166     }
3167
3168     if (vec_size(params) == 1 && params[0]->expression.vtype == TYPE_VOID)
3169         vec_free(params);
3170
3171     /* sanity check */
3172     if (vec_size(params) > 8 && opts_standard == COMPILER_QCC)
3173         (void)!parsewarning(parser, WARN_EXTENSIONS, "more than 8 parameters are not supported by this standard");
3174
3175     /* parse-out */
3176     if (!parser_next(parser)) {
3177         parseerror(parser, "parse error after typename");
3178         goto on_error;
3179     }
3180
3181     /* now turn 'var' into a function type */
3182     fval = ast_value_new(ctx, "<type()>", TYPE_FUNCTION);
3183     fval->expression.next     = (ast_expression*)var;
3184     fval->expression.variadic = variadic;
3185     var = fval;
3186
3187     var->expression.params = params;
3188     params = NULL;
3189
3190     return var;
3191
3192 on_error:
3193     ast_delete(var);
3194     for (i = 0; i < vec_size(params); ++i)
3195         ast_delete(params[i]);
3196     vec_free(params);
3197     return NULL;
3198 }
3199
3200 static ast_value *parse_arraysize(parser_t *parser, ast_value *var)
3201 {
3202     ast_expression *cexp;
3203     ast_value      *cval, *tmp;
3204     lex_ctx ctx;
3205
3206     ctx = parser_ctx(parser);
3207
3208     if (!parser_next(parser)) {
3209         ast_delete(var);
3210         parseerror(parser, "expected array-size");
3211         return NULL;
3212     }
3213
3214     cexp = parse_expression_leave(parser, true);
3215
3216     if (!cexp || !ast_istype(cexp, ast_value)) {
3217         if (cexp)
3218             ast_unref(cexp);
3219         ast_delete(var);
3220         parseerror(parser, "expected array-size as constant positive integer");
3221         return NULL;
3222     }
3223     cval = (ast_value*)cexp;
3224
3225     tmp = ast_value_new(ctx, "<type[]>", TYPE_ARRAY);
3226     tmp->expression.next = (ast_expression*)var;
3227     var = tmp;
3228
3229     if (cval->expression.vtype == TYPE_INTEGER)
3230         tmp->expression.count = cval->constval.vint;
3231     else if (cval->expression.vtype == TYPE_FLOAT)
3232         tmp->expression.count = cval->constval.vfloat;
3233     else {
3234         ast_unref(cexp);
3235         ast_delete(var);
3236         parseerror(parser, "array-size must be a positive integer constant");
3237         return NULL;
3238     }
3239     ast_unref(cexp);
3240
3241     if (parser->tok != ']') {
3242         ast_delete(var);
3243         parseerror(parser, "expected ']' after array-size");
3244         return NULL;
3245     }
3246     if (!parser_next(parser)) {
3247         ast_delete(var);
3248         parseerror(parser, "error after parsing array size");
3249         return NULL;
3250     }
3251     return var;
3252 }
3253
3254 /* Parse a complete typename.
3255  * for single-variables (ie. function parameters or typedefs) storebase should be NULL
3256  * but when parsing variables separated by comma
3257  * 'storebase' should point to where the base-type should be kept.
3258  * The base type makes up every bit of type information which comes *before* the
3259  * variable name.
3260  *
3261  * The following will be parsed in its entirety:
3262  *     void() foo()
3263  * The 'basetype' in this case is 'void()'
3264  * and if there's a comma after it, say:
3265  *     void() foo(), bar
3266  * then the type-information 'void()' can be stored in 'storebase'
3267  */
3268 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef)
3269 {
3270     ast_value *var, *tmp;
3271     lex_ctx    ctx;
3272
3273     const char *name = NULL;
3274     bool        isfield  = false;
3275     bool        wasarray = false;
3276     size_t      morefields = 0;
3277
3278     ctx = parser_ctx(parser);
3279
3280     /* types may start with a dot */
3281     if (parser->tok == '.') {
3282         isfield = true;
3283         /* if we parsed a dot we need a typename now */
3284         if (!parser_next(parser)) {
3285             parseerror(parser, "expected typename for field definition");
3286             return NULL;
3287         }
3288
3289         /* Further dots are handled seperately because they won't be part of the
3290          * basetype
3291          */
3292         while (parser->tok == '.') {
3293             ++morefields;
3294             if (!parser_next(parser)) {
3295                 parseerror(parser, "expected typename for field definition");
3296                 return NULL;
3297             }
3298         }
3299
3300         if (parser->tok == TOKEN_IDENT)
3301             cached_typedef = parser_find_typedef(parser, parser_tokval(parser), 0);
3302         if (!cached_typedef && parser->tok != TOKEN_TYPENAME) {
3303             parseerror(parser, "expected typename");
3304             return NULL;
3305         }
3306     }
3307
3308     /* generate the basic type value */
3309     if (cached_typedef) {
3310         var = ast_value_copy(cached_typedef);
3311         ast_value_set_name(var, "<type(from_def)>");
3312     } else
3313         var = ast_value_new(ctx, "<type>", parser_token(parser)->constval.t);
3314
3315     for (; morefields; --morefields) {
3316         tmp = ast_value_new(ctx, "<.type>", TYPE_FIELD);
3317         tmp->expression.next = (ast_expression*)var;
3318         var = tmp;
3319     }
3320
3321     /* do not yet turn into a field - remember:
3322      * .void() foo; is a field too
3323      * .void()() foo; is a function
3324      */
3325
3326     /* parse on */
3327     if (!parser_next(parser)) {
3328         ast_delete(var);
3329         parseerror(parser, "parse error after typename");
3330         return NULL;
3331     }
3332
3333     /* an opening paren now starts the parameter-list of a function
3334      * this is where original-QC has parameter lists.
3335      * We allow a single parameter list here.
3336      * Much like fteqcc we don't allow `float()() x`
3337      */
3338     if (parser->tok == '(') {
3339         var = parse_parameter_list(parser, var);
3340         if (!var)
3341             return NULL;
3342     }
3343
3344     /* store the base if requested */
3345     if (storebase) {
3346         *storebase = ast_value_copy(var);
3347         if (isfield) {
3348             tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
3349             tmp->expression.next = (ast_expression*)*storebase;
3350             *storebase = tmp;
3351         }
3352     }
3353
3354     /* there may be a name now */
3355     if (parser->tok == TOKEN_IDENT) {
3356         name = util_strdup(parser_tokval(parser));
3357         /* parse on */
3358         if (!parser_next(parser)) {
3359             ast_delete(var);
3360             parseerror(parser, "error after variable or field declaration");
3361             return NULL;
3362         }
3363     }
3364
3365     /* now this may be an array */
3366     if (parser->tok == '[') {
3367         wasarray = true;
3368         var = parse_arraysize(parser, var);
3369         if (!var)
3370             return NULL;
3371     }
3372
3373     /* This is the point where we can turn it into a field */
3374     if (isfield) {
3375         /* turn it into a field if desired */
3376         tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
3377         tmp->expression.next = (ast_expression*)var;
3378         var = tmp;
3379     }
3380
3381     /* now there may be function parens again */
3382     if (parser->tok == '(' && opts_standard == COMPILER_QCC)
3383         parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
3384     if (parser->tok == '(' && wasarray)
3385         parseerror(parser, "arrays as part of a return type is not supported");
3386     while (parser->tok == '(') {
3387         var = parse_parameter_list(parser, var);
3388         if (!var) {
3389             if (name)
3390                 mem_d((void*)name);
3391             ast_delete(var);
3392             return NULL;
3393         }
3394     }
3395
3396     /* finally name it */
3397     if (name) {
3398         if (!ast_value_set_name(var, name)) {
3399             ast_delete(var);
3400             parseerror(parser, "internal error: failed to set name");
3401             return NULL;
3402         }
3403         /* free the name, ast_value_set_name duplicates */
3404         mem_d((void*)name);
3405     }
3406
3407     return var;
3408 }
3409
3410 static bool parse_typedef(parser_t *parser)
3411 {
3412     ast_value      *typevar, *oldtype;
3413     ast_expression *old;
3414
3415     typevar = parse_typename(parser, NULL, NULL);
3416
3417     if (!typevar)
3418         return false;
3419
3420     if ( (old = parser_find_var(parser, typevar->name)) ) {
3421         parseerror(parser, "cannot define a type with the same name as a variable: %s\n"
3422                    " -> `%s` has been declared here: %s:%i",
3423                    typevar->name, ast_ctx(old).file, ast_ctx(old).line);
3424         ast_delete(typevar);
3425         return false;
3426     }
3427
3428     if ( (oldtype = parser_find_typedef(parser, typevar->name, vec_last(parser->_blocktypedefs))) ) {
3429         parseerror(parser, "type `%s` has already been declared here: %s:%i",
3430                    typevar->name, ast_ctx(oldtype).file, ast_ctx(oldtype).line);
3431         ast_delete(typevar);
3432         return false;
3433     }
3434
3435     vec_push(parser->_typedefs, typevar);
3436     util_htset(vec_last(parser->typedefs), typevar->name, typevar);
3437
3438     if (parser->tok != ';') {
3439         parseerror(parser, "expected semicolon after typedef");
3440         return false;
3441     }
3442     if (!parser_next(parser)) {
3443         parseerror(parser, "parse error after typedef");
3444         return false;
3445     }
3446
3447     return true;
3448 }
3449
3450 static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofields, int is_const_var, ast_value *cached_typedef)
3451 {
3452     ast_value *var;
3453     ast_value *proto;
3454     ast_expression *old;
3455     bool       was_end;
3456     size_t     i;
3457
3458     ast_value *basetype = NULL;
3459     bool      retval    = true;
3460     bool      isparam   = false;
3461     bool      isvector  = false;
3462     bool      cleanvar  = true;
3463     bool      wasarray  = false;
3464
3465     ast_member *me[3];
3466
3467     /* get the first complete variable */
3468     var = parse_typename(parser, &basetype, cached_typedef);
3469     if (!var) {
3470         if (basetype)
3471             ast_delete(basetype);
3472         return false;
3473     }
3474
3475     while (true) {
3476         proto = NULL;
3477         wasarray = false;
3478
3479         /* Part 0: finish the type */
3480         if (parser->tok == '(') {
3481             if (opts_standard == COMPILER_QCC)
3482                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
3483             var = parse_parameter_list(parser, var);
3484             if (!var) {
3485                 retval = false;
3486                 goto cleanup;
3487             }
3488         }
3489         /* we only allow 1-dimensional arrays */
3490         if (parser->tok == '[') {
3491             wasarray = true;
3492             var = parse_arraysize(parser, var);
3493             if (!var) {
3494                 retval = false;
3495                 goto cleanup;
3496             }
3497         }
3498         if (parser->tok == '(' && wasarray) {
3499             parseerror(parser, "arrays as part of a return type is not supported");
3500             /* we'll still parse the type completely for now */
3501         }
3502         /* for functions returning functions */
3503         while (parser->tok == '(') {
3504             if (opts_standard == COMPILER_QCC)
3505                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
3506             var = parse_parameter_list(parser, var);
3507             if (!var) {
3508                 retval = false;
3509                 goto cleanup;
3510             }
3511         }
3512
3513         if (is_const_var == CV_CONST)
3514             var->constant = true;
3515
3516         /* Part 1:
3517          * check for validity: (end_sys_..., multiple-definitions, prototypes, ...)
3518          * Also: if there was a prototype, `var` will be deleted and set to `proto` which
3519          * is then filled with the previous definition and the parameter-names replaced.
3520          */
3521         if (!localblock) {
3522             /* Deal with end_sys_ vars */
3523             was_end = false;
3524             if (!strcmp(var->name, "end_sys_globals")) {
3525                 parser->crc_globals = vec_size(parser->globals);
3526                 was_end = true;
3527             }
3528             else if (!strcmp(var->name, "end_sys_fields")) {
3529                 parser->crc_fields = vec_size(parser->fields);
3530                 was_end = true;
3531             }
3532             if (was_end && var->expression.vtype == TYPE_FIELD) {
3533                 if (parsewarning(parser, WARN_END_SYS_FIELDS,
3534                                  "global '%s' hint should not be a field",
3535                                  parser_tokval(parser)))
3536                 {
3537                     retval = false;
3538                     goto cleanup;
3539                 }
3540             }
3541
3542             if (!nofields && var->expression.vtype == TYPE_FIELD)
3543             {
3544                 /* deal with field declarations */
3545                 old = parser_find_field(parser, var->name);
3546                 if (old) {
3547                     if (parsewarning(parser, WARN_FIELD_REDECLARED, "field `%s` already declared here: %s:%i",
3548                                      var->name, ast_ctx(old).file, (int)ast_ctx(old).line))
3549                     {
3550                         retval = false;
3551                         goto cleanup;
3552                     }
3553                     ast_delete(var);
3554                     var = NULL;
3555                     goto skipvar;
3556                     /*
3557                     parseerror(parser, "field `%s` already declared here: %s:%i",
3558                                var->name, ast_ctx(old).file, ast_ctx(old).line);
3559                     retval = false;
3560                     goto cleanup;
3561                     */
3562                 }
3563                 if (opts_standard == COMPILER_QCC &&
3564                     (old = parser_find_global(parser, var->name)))
3565                 {
3566                     parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
3567                     parseerror(parser, "field `%s` already declared here: %s:%i",
3568                                var->name, ast_ctx(old).file, ast_ctx(old).line);
3569                     retval = false;
3570                     goto cleanup;
3571                 }
3572             }
3573             else
3574             {
3575                 /* deal with other globals */
3576                 old = parser_find_global(parser, var->name);
3577                 if (old && var->expression.vtype == TYPE_FUNCTION && old->expression.vtype == TYPE_FUNCTION)
3578                 {
3579                     /* This is a function which had a prototype */
3580                     if (!ast_istype(old, ast_value)) {
3581                         parseerror(parser, "internal error: prototype is not an ast_value");
3582                         retval = false;
3583                         goto cleanup;
3584                     }
3585                     proto = (ast_value*)old;
3586                     if (!ast_compare_type((ast_expression*)proto, (ast_expression*)var)) {
3587                         parseerror(parser, "conflicting types for `%s`, previous declaration was here: %s:%i",
3588                                    proto->name,
3589                                    ast_ctx(proto).file, ast_ctx(proto).line);
3590                         retval = false;
3591                         goto cleanup;
3592                     }
3593                     /* we need the new parameter-names */
3594                     for (i = 0; i < vec_size(proto->expression.params); ++i)
3595                         ast_value_set_name(proto->expression.params[i], var->expression.params[i]->name);
3596                     ast_delete(var);
3597                     var = proto;
3598                 }
3599                 else
3600                 {
3601                     /* other globals */
3602                     if (old) {
3603                         if (opts_standard == COMPILER_GMQCC) {
3604                             parseerror(parser, "global `%s` already declared here: %s:%i",
3605                                        var->name, ast_ctx(old).file, ast_ctx(old).line);
3606                             retval = false;
3607                             goto cleanup;
3608                         } else {
3609                             if (parsewarning(parser, WARN_DOUBLE_DECLARATION,
3610                                              "global `%s` already declared here: %s:%i",
3611                                              var->name, ast_ctx(old).file, ast_ctx(old).line))
3612                             {
3613                                 retval = false;
3614                                 goto cleanup;
3615                             }
3616                         }
3617                     }
3618                     if (opts_standard == COMPILER_QCC &&
3619                         (old = parser_find_field(parser, var->name)))
3620                     {
3621                         parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
3622                         parseerror(parser, "global `%s` already declared here: %s:%i",
3623                                    var->name, ast_ctx(old).file, ast_ctx(old).line);
3624                         retval = false;
3625                         goto cleanup;
3626                     }
3627                 }
3628             }
3629         }
3630         else /* it's not a global */
3631         {
3632             old = parser_find_local(parser, var->name, vec_size(parser->variables)-1, &isparam);
3633             if (old && !isparam) {
3634                 parseerror(parser, "local `%s` already declared here: %s:%i",
3635                            var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
3636                 retval = false;
3637                 goto cleanup;
3638             }
3639             old = parser_find_local(parser, var->name, 0, &isparam);
3640             if (old && isparam) {
3641                 if (parsewarning(parser, WARN_LOCAL_SHADOWS,
3642                                  "local `%s` is shadowing a parameter", var->name))
3643                 {
3644                     parseerror(parser, "local `%s` already declared here: %s:%i",
3645                                var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
3646                     retval = false;
3647                     goto cleanup;
3648                 }
3649                 if (opts_standard != COMPILER_GMQCC) {
3650                     ast_delete(var);
3651                     var = NULL;
3652                     goto skipvar;
3653                 }
3654             }
3655         }
3656
3657         /* Part 2:
3658          * Create the global/local, and deal with vector types.
3659          */
3660         if (!proto) {
3661             if (var->expression.vtype == TYPE_VECTOR)
3662                 isvector = true;
3663             else if (var->expression.vtype == TYPE_FIELD &&
3664                      var->expression.next->expression.vtype == TYPE_VECTOR)
3665                 isvector = true;
3666
3667             if (isvector) {
3668                 if (!create_vector_members(var, me)) {
3669                     retval = false;
3670                     goto cleanup;
3671                 }
3672             }
3673
3674             if (!localblock) {
3675                 /* deal with global variables, fields, functions */
3676                 if (!nofields && var->expression.vtype == TYPE_FIELD) {
3677                     vec_push(parser->fields, (ast_expression*)var);
3678                     util_htset(parser->htfields, var->name, var);
3679                     if (isvector) {
3680                         for (i = 0; i < 3; ++i) {
3681                             vec_push(parser->fields, (ast_expression*)me[i]);
3682                             util_htset(parser->htfields, me[i]->name, me[i]);
3683                         }
3684                     }
3685                 }
3686                 else {
3687                     vec_push(parser->globals, (ast_expression*)var);
3688                     util_htset(parser->htglobals, var->name, var);
3689                     if (isvector) {
3690                         for (i = 0; i < 3; ++i) {
3691                             vec_push(parser->globals, (ast_expression*)me[i]);
3692                             util_htset(parser->htglobals, me[i]->name, me[i]);
3693                         }
3694                     }
3695                 }
3696             } else {
3697                 vec_push(localblock->locals, var);
3698                 parser_addlocal(parser, var->name, (ast_expression*)var);
3699                 if (isvector) {
3700                     for (i = 0; i < 3; ++i) {
3701                         parser_addlocal(parser, me[i]->name, (ast_expression*)me[i]);
3702                         ast_block_collect(localblock, (ast_expression*)me[i]);
3703                     }
3704                 }
3705             }
3706
3707         }
3708         me[0] = me[1] = me[2] = NULL;
3709         cleanvar = false;
3710         /* Part 2.2
3711          * deal with arrays
3712          */
3713         if (var->expression.vtype == TYPE_ARRAY) {
3714             char name[1024];
3715             snprintf(name, sizeof(name), "%s##SET", var->name);
3716             if (!parser_create_array_setter(parser, var, name))
3717                 goto cleanup;
3718             snprintf(name, sizeof(name), "%s##GET", var->name);
3719             if (!parser_create_array_getter(parser, var, var->expression.next, name))
3720                 goto cleanup;
3721         }
3722         else if (!localblock && !nofields &&
3723                  var->expression.vtype == TYPE_FIELD &&
3724                  var->expression.next->expression.vtype == TYPE_ARRAY)
3725         {
3726             char name[1024];
3727             ast_expression *telem;
3728             ast_value      *tfield;
3729             ast_value      *array = (ast_value*)var->expression.next;
3730
3731             if (!ast_istype(var->expression.next, ast_value)) {
3732                 parseerror(parser, "internal error: field element type must be an ast_value");
3733                 goto cleanup;
3734             }
3735
3736             snprintf(name, sizeof(name), "%s##SETF", var->name);
3737             if (!parser_create_array_field_setter(parser, array, name))
3738                 goto cleanup;
3739
3740             telem = ast_type_copy(ast_ctx(var), array->expression.next);
3741             tfield = ast_value_new(ast_ctx(var), "<.type>", TYPE_FIELD);
3742             tfield->expression.next = telem;
3743             snprintf(name, sizeof(name), "%s##GETFP", var->name);
3744             if (!parser_create_array_getter(parser, array, (ast_expression*)tfield, name)) {
3745                 ast_delete(tfield);
3746                 goto cleanup;
3747             }
3748             ast_delete(tfield);
3749         }
3750
3751 skipvar:
3752         if (parser->tok == ';') {
3753             ast_delete(basetype);
3754             if (!parser_next(parser)) {
3755                 parseerror(parser, "error after variable declaration");
3756                 return false;
3757             }
3758             return true;
3759         }
3760
3761         if (parser->tok == ',')
3762             goto another;
3763
3764         if (!var || (!localblock && !nofields && basetype->expression.vtype == TYPE_FIELD)) {
3765             parseerror(parser, "missing comma or semicolon while parsing variables");
3766             break;
3767         }
3768
3769         if (localblock && opts_standard == COMPILER_QCC) {
3770             if (parsewarning(parser, WARN_LOCAL_CONSTANTS,
3771                              "initializing expression turns variable `%s` into a constant in this standard",
3772                              var->name) )
3773             {
3774                 break;
3775             }
3776         }
3777
3778         if (parser->tok != '{') {
3779             if (parser->tok != '=') {
3780                 parseerror(parser, "missing semicolon or initializer, got: `%s`", parser_tokval(parser));
3781                 break;
3782             }
3783
3784             if (!parser_next(parser)) {
3785                 parseerror(parser, "error parsing initializer");
3786                 break;
3787             }
3788         }
3789         else if (opts_standard == COMPILER_QCC) {
3790             parseerror(parser, "expected '=' before function body in this standard");
3791         }
3792
3793         if (parser->tok == '#') {
3794             ast_function *func = NULL;
3795
3796             if (localblock) {
3797                 parseerror(parser, "cannot declare builtins within functions");
3798                 break;
3799             }
3800             if (var->expression.vtype != TYPE_FUNCTION) {
3801                 parseerror(parser, "unexpected builtin number, '%s' is not a function", var->name);
3802                 break;
3803             }
3804             if (!parser_next(parser)) {
3805                 parseerror(parser, "expected builtin number");
3806                 break;
3807             }
3808             if (parser->tok != TOKEN_INTCONST) {
3809                 parseerror(parser, "builtin number must be an integer constant");
3810                 break;
3811             }
3812             if (parser_token(parser)->constval.i <= 0) {
3813                 parseerror(parser, "builtin number must be an integer greater than zero");
3814                 break;
3815             }
3816
3817             if (var->hasvalue) {
3818                 (void)!parsewarning(parser, WARN_DOUBLE_DECLARATION,
3819                                     "builtin `%s` has already been defined\n"
3820                                     " -> previous declaration here: %s:%i",
3821                                     var->name, ast_ctx(var).file, (int)ast_ctx(var).line);
3822             }
3823             else
3824             {
3825                 func = ast_function_new(ast_ctx(var), var->name, var);
3826                 if (!func) {
3827                     parseerror(parser, "failed to allocate function for `%s`", var->name);
3828                     break;
3829                 }
3830                 vec_push(parser->functions, func);
3831
3832                 func->builtin = -parser_token(parser)->constval.i;
3833             }
3834
3835             if (!parser_next(parser)) {
3836                 parseerror(parser, "expected comma or semicolon");
3837                 if (func)
3838                     ast_function_delete(func);
3839                 var->constval.vfunc = NULL;
3840                 break;
3841             }
3842         }
3843         else if (parser->tok == '{' || parser->tok == '[')
3844         {
3845             if (localblock) {
3846                 parseerror(parser, "cannot declare functions within functions");
3847                 break;
3848             }
3849
3850             if (!parse_function_body(parser, var))
3851                 break;
3852             ast_delete(basetype);
3853             return true;
3854         } else {
3855             ast_expression *cexp;
3856             ast_value      *cval;
3857
3858             cexp = parse_expression_leave(parser, true);
3859             if (!cexp)
3860                 break;
3861
3862             if (!localblock) {
3863                 cval = (ast_value*)cexp;
3864                 if (!ast_istype(cval, ast_value) || !cval->hasvalue || !cval->constant)
3865                     parseerror(parser, "cannot initialize a global constant variable with a non-constant expression");
3866                 else
3867                 {
3868                     if (opts_standard != COMPILER_GMQCC &&
3869                         !OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
3870                         is_const_var != CV_VAR)
3871                     {
3872                         var->constant = true;
3873                     }
3874                     var->hasvalue = true;
3875                     if (cval->expression.vtype == TYPE_STRING)
3876                         var->constval.vstring = parser_strdup(cval->constval.vstring);
3877                     else
3878                         memcpy(&var->constval, &cval->constval, sizeof(var->constval));
3879                     ast_unref(cval);
3880                 }
3881             } else {
3882                 bool cvq;
3883                 shunt sy = { NULL, NULL };
3884                 cvq = var->constant;
3885                 var->constant = false;
3886                 vec_push(sy.out, syexp(ast_ctx(var), (ast_expression*)var));
3887                 vec_push(sy.out, syexp(ast_ctx(cexp), (ast_expression*)cexp));
3888                 vec_push(sy.ops, syop(ast_ctx(var), parser->assign_op));
3889                 if (!parser_sy_pop(parser, &sy))
3890                     ast_unref(cexp);
3891                 else {
3892                     if (vec_size(sy.out) != 1 && vec_size(sy.ops) != 0)
3893                         parseerror(parser, "internal error: leaked operands");
3894                     ast_block_add_expr(localblock, (ast_expression*)sy.out[0].out);
3895                 }
3896                 vec_free(sy.out);
3897                 vec_free(sy.ops);
3898                 var->constant = cvq;
3899             }
3900         }
3901
3902 another:
3903         if (parser->tok == ',') {
3904             if (!parser_next(parser)) {
3905                 parseerror(parser, "expected another variable");
3906                 break;
3907             }
3908
3909             if (parser->tok != TOKEN_IDENT) {
3910                 parseerror(parser, "expected another variable");
3911                 break;
3912             }
3913             var = ast_value_copy(basetype);
3914             cleanvar = true;
3915             ast_value_set_name(var, parser_tokval(parser));
3916             if (!parser_next(parser)) {
3917                 parseerror(parser, "error parsing variable declaration");
3918                 break;
3919             }
3920             continue;
3921         }
3922
3923         if (parser->tok != ';') {
3924             parseerror(parser, "missing semicolon after variables");
3925             break;
3926         }
3927
3928         if (!parser_next(parser)) {
3929             parseerror(parser, "parse error after variable declaration");
3930             break;
3931         }
3932
3933         ast_delete(basetype);
3934         return true;
3935     }
3936
3937     if (cleanvar && var)
3938         ast_delete(var);
3939     ast_delete(basetype);
3940     return false;
3941
3942 cleanup:
3943     ast_delete(basetype);
3944     if (cleanvar && var)
3945         ast_delete(var);
3946     if (me[0]) ast_member_delete(me[0]);
3947     if (me[1]) ast_member_delete(me[1]);
3948     if (me[2]) ast_member_delete(me[2]);
3949     return retval;
3950 }
3951
3952 static bool parser_global_statement(parser_t *parser)
3953 {
3954     ast_value *istype = NULL;
3955     if (parser->tok == TOKEN_IDENT)
3956         istype = parser_find_typedef(parser, parser_tokval(parser), 0);
3957
3958     if (istype || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
3959     {
3960         return parse_variable(parser, NULL, false, CV_NONE, istype);
3961     }
3962     else if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "var"))
3963     {
3964         if (!strcmp(parser_tokval(parser), "var")) {
3965             if (!parser_next(parser)) {
3966                 parseerror(parser, "expected variable declaration after 'var'");
3967                 return false;
3968             }
3969             return parse_variable(parser, NULL, true, CV_VAR, NULL);
3970         }
3971     }
3972     else if (parser->tok == TOKEN_KEYWORD)
3973     {
3974         if (!strcmp(parser_tokval(parser), "const")) {
3975             if (!parser_next(parser)) {
3976                 parseerror(parser, "expected variable declaration after 'const'");
3977                 return false;
3978             }
3979             if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "var")) {
3980                 (void)!parsewarning(parser, WARN_CONST_VAR, "ignoring `var` after const qualifier");
3981                 if (!parser_next(parser)) {
3982                     parseerror(parser, "expected variable declaration after 'const var'");
3983                     return false;
3984                 }
3985             }
3986             return parse_variable(parser, NULL, true, CV_CONST, NULL);
3987         }
3988         else if (!strcmp(parser_tokval(parser), "typedef")) {
3989             if (!parser_next(parser)) {
3990                 parseerror(parser, "expected type definition after 'typedef'");
3991                 return false;
3992             }
3993             return parse_typedef(parser);
3994         }
3995         parseerror(parser, "unrecognized keyword `%s`", parser_tokval(parser));
3996         return false;
3997     }
3998     else if (parser->tok == '$')
3999     {
4000         if (!parser_next(parser)) {
4001             parseerror(parser, "parse error");
4002             return false;
4003         }
4004     }
4005     else
4006     {
4007         parseerror(parser, "unexpected token: %s", parser->lex->tok.value);
4008         return false;
4009     }
4010     return true;
4011 }
4012
4013 static uint16_t progdefs_crc_sum(uint16_t old, const char *str)
4014 {
4015     return util_crc16(old, str, strlen(str));
4016 }
4017
4018 static void progdefs_crc_file(const char *str)
4019 {
4020     /* write to progdefs.h here */
4021     (void)str;
4022 }
4023
4024 static uint16_t progdefs_crc_both(uint16_t old, const char *str)
4025 {
4026     old = progdefs_crc_sum(old, str);
4027     progdefs_crc_file(str);
4028     return old;
4029 }
4030
4031 static void generate_checksum(parser_t *parser)
4032 {
4033     uint16_t   crc = 0xFFFF;
4034     size_t     i;
4035     ast_value *value;
4036
4037         crc = progdefs_crc_both(crc, "\n/* file generated by qcc, do not modify */\n\ntypedef struct\n{");
4038         crc = progdefs_crc_sum(crc, "\tint\tpad[28];\n");
4039         /*
4040         progdefs_crc_file("\tint\tpad;\n");
4041         progdefs_crc_file("\tint\tofs_return[3];\n");
4042         progdefs_crc_file("\tint\tofs_parm0[3];\n");
4043         progdefs_crc_file("\tint\tofs_parm1[3];\n");
4044         progdefs_crc_file("\tint\tofs_parm2[3];\n");
4045         progdefs_crc_file("\tint\tofs_parm3[3];\n");
4046         progdefs_crc_file("\tint\tofs_parm4[3];\n");
4047         progdefs_crc_file("\tint\tofs_parm5[3];\n");
4048         progdefs_crc_file("\tint\tofs_parm6[3];\n");
4049         progdefs_crc_file("\tint\tofs_parm7[3];\n");
4050         */
4051         for (i = 0; i < parser->crc_globals; ++i) {
4052             if (!ast_istype(parser->globals[i], ast_value))
4053                 continue;
4054             value = (ast_value*)(parser->globals[i]);
4055             switch (value->expression.vtype) {
4056                 case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
4057                 case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
4058                 case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
4059                 case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
4060                 default:
4061                     crc = progdefs_crc_both(crc, "\tint\t");
4062                     break;
4063             }
4064             crc = progdefs_crc_both(crc, value->name);
4065             crc = progdefs_crc_both(crc, ";\n");
4066         }
4067         crc = progdefs_crc_both(crc, "} globalvars_t;\n\ntypedef struct\n{\n");
4068         for (i = 0; i < parser->crc_fields; ++i) {
4069             if (!ast_istype(parser->fields[i], ast_value))
4070                 continue;
4071             value = (ast_value*)(parser->fields[i]);
4072             switch (value->expression.next->expression.vtype) {
4073                 case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
4074                 case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
4075                 case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
4076                 case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
4077                 default:
4078                     crc = progdefs_crc_both(crc, "\tint\t");
4079                     break;
4080             }
4081             crc = progdefs_crc_both(crc, value->name);
4082             crc = progdefs_crc_both(crc, ";\n");
4083         }
4084         crc = progdefs_crc_both(crc, "} entvars_t;\n\n");
4085
4086         code_crc = crc;
4087 }
4088
4089 static parser_t *parser;
4090
4091 bool parser_init()
4092 {
4093     size_t i;
4094
4095     parser = (parser_t*)mem_a(sizeof(parser_t));
4096     if (!parser)
4097         return false;
4098
4099     memset(parser, 0, sizeof(*parser));
4100
4101     for (i = 0; i < operator_count; ++i) {
4102         if (operators[i].id == opid1('=')) {
4103             parser->assign_op = operators+i;
4104             break;
4105         }
4106     }
4107     if (!parser->assign_op) {
4108         printf("internal error: initializing parser: failed to find assign operator\n");
4109         mem_d(parser);
4110         return false;
4111     }
4112
4113     vec_push(parser->variables, parser->htfields  = util_htnew(PARSER_HT_SIZE));
4114     vec_push(parser->variables, parser->htglobals = util_htnew(PARSER_HT_SIZE));
4115     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
4116     vec_push(parser->_blocktypedefs, 0);
4117     return true;
4118 }
4119
4120 bool parser_compile()
4121 {
4122     /* initial lexer/parser state */
4123     parser->lex->flags.noops = true;
4124
4125     if (parser_next(parser))
4126     {
4127         while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
4128         {
4129             if (!parser_global_statement(parser)) {
4130                 if (parser->tok == TOKEN_EOF)
4131                     parseerror(parser, "unexpected eof");
4132                 else if (!parser->errors)
4133                     parseerror(parser, "there have been errors, bailing out");
4134                 lex_close(parser->lex);
4135                 parser->lex = NULL;
4136                 return false;
4137             }
4138         }
4139     } else {
4140         parseerror(parser, "parse error");
4141         lex_close(parser->lex);
4142         parser->lex = NULL;
4143         return false;
4144     }
4145
4146     lex_close(parser->lex);
4147     parser->lex = NULL;
4148
4149     return !parser->errors;
4150 }
4151
4152 bool parser_compile_file(const char *filename)
4153 {
4154     parser->lex = lex_open(filename);
4155     if (!parser->lex) {
4156         con_err("failed to open file \"%s\"\n", filename);
4157         return false;
4158     }
4159     return parser_compile();
4160 }
4161
4162 bool parser_compile_string_len(const char *name, const char *str, size_t len)
4163 {
4164     parser->lex = lex_open_string(str, len, name);
4165     if (!parser->lex) {
4166         con_err("failed to create lexer for string \"%s\"\n", name);
4167         return false;
4168     }
4169     return parser_compile();
4170 }
4171
4172 bool parser_compile_string(const char *name, const char *str)
4173 {
4174     parser->lex = lex_open_string(str, strlen(str), name);
4175     if (!parser->lex) {
4176         con_err("failed to create lexer for string \"%s\"\n", name);
4177         return false;
4178     }
4179     return parser_compile();
4180 }
4181
4182 void parser_cleanup()
4183 {
4184     size_t i;
4185     for (i = 0; i < vec_size(parser->accessors); ++i) {
4186         ast_delete(parser->accessors[i]->constval.vfunc);
4187         parser->accessors[i]->constval.vfunc = NULL;
4188         ast_delete(parser->accessors[i]);
4189     }
4190     for (i = 0; i < vec_size(parser->functions); ++i) {
4191         ast_delete(parser->functions[i]);
4192     }
4193     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
4194         ast_delete(parser->imm_vector[i]);
4195     }
4196     for (i = 0; i < vec_size(parser->imm_string); ++i) {
4197         ast_delete(parser->imm_string[i]);
4198     }
4199     for (i = 0; i < vec_size(parser->imm_float); ++i) {
4200         ast_delete(parser->imm_float[i]);
4201     }
4202     for (i = 0; i < vec_size(parser->fields); ++i) {
4203         ast_delete(parser->fields[i]);
4204     }
4205     for (i = 0; i < vec_size(parser->globals); ++i) {
4206         ast_delete(parser->globals[i]);
4207     }
4208     vec_free(parser->accessors);
4209     vec_free(parser->functions);
4210     vec_free(parser->imm_vector);
4211     vec_free(parser->imm_string);
4212     vec_free(parser->imm_float);
4213     vec_free(parser->globals);
4214     vec_free(parser->fields);
4215
4216     for (i = 0; i < vec_size(parser->variables); ++i)
4217         util_htdel(parser->variables[i]);
4218     vec_free(parser->variables);
4219     vec_free(parser->_blocklocals);
4220     vec_free(parser->_locals);
4221
4222     for (i = 0; i < vec_size(parser->_typedefs); ++i)
4223         ast_delete(parser->_typedefs[i]);
4224     vec_free(parser->_typedefs);
4225     for (i = 0; i < vec_size(parser->typedefs); ++i)
4226         util_htdel(parser->typedefs[i]);
4227     vec_free(parser->typedefs);
4228     vec_free(parser->_blocktypedefs);
4229
4230     mem_d(parser);
4231 }
4232
4233 bool parser_finish(const char *output)
4234 {
4235     size_t i;
4236     ir_builder *ir;
4237     bool retval = true;
4238
4239     if (!parser->errors)
4240     {
4241         ir = ir_builder_new("gmqcc_out");
4242         if (!ir) {
4243             con_out("failed to allocate builder\n");
4244             return false;
4245         }
4246
4247         for (i = 0; i < vec_size(parser->fields); ++i) {
4248             ast_value *field;
4249             bool hasvalue;
4250             if (!ast_istype(parser->fields[i], ast_value))
4251                 continue;
4252             field = (ast_value*)parser->fields[i];
4253             hasvalue = field->hasvalue;
4254             field->hasvalue = false;
4255             if (!ast_global_codegen((ast_value*)field, ir, true)) {
4256                 con_out("failed to generate field %s\n", field->name);
4257                 ir_builder_delete(ir);
4258                 return false;
4259             }
4260             if (hasvalue) {
4261                 ir_value *ifld;
4262                 ast_expression *subtype;
4263                 field->hasvalue = true;
4264                 subtype = field->expression.next;
4265                 ifld = ir_builder_create_field(ir, field->name, subtype->expression.vtype);
4266                 if (subtype->expression.vtype == TYPE_FIELD)
4267                     ifld->fieldtype = subtype->expression.next->expression.vtype;
4268                 else if (subtype->expression.vtype == TYPE_FUNCTION)
4269                     ifld->outtype = subtype->expression.next->expression.vtype;
4270                 (void)!ir_value_set_field(field->ir_v, ifld);
4271             }
4272         }
4273         for (i = 0; i < vec_size(parser->globals); ++i) {
4274             ast_value *asvalue;
4275             if (!ast_istype(parser->globals[i], ast_value))
4276                 continue;
4277             asvalue = (ast_value*)(parser->globals[i]);
4278             if (!asvalue->uses && !asvalue->hasvalue && asvalue->expression.vtype != TYPE_FUNCTION) {
4279                 if (strcmp(asvalue->name, "end_sys_globals") &&
4280                     strcmp(asvalue->name, "end_sys_fields"))
4281                 {
4282                     retval = retval && !genwarning(ast_ctx(asvalue), WARN_UNUSED_VARIABLE,
4283                                                    "unused global: `%s`", asvalue->name);
4284                 }
4285             }
4286             if (!ast_global_codegen(asvalue, ir, false)) {
4287                 con_out("failed to generate global %s\n", asvalue->name);
4288                 ir_builder_delete(ir);
4289                 return false;
4290             }
4291         }
4292         for (i = 0; i < vec_size(parser->imm_float); ++i) {
4293             if (!ast_global_codegen(parser->imm_float[i], ir, false)) {
4294                 con_out("failed to generate global %s\n", parser->imm_float[i]->name);
4295                 ir_builder_delete(ir);
4296                 return false;
4297             }
4298         }
4299         for (i = 0; i < vec_size(parser->imm_string); ++i) {
4300             if (!ast_global_codegen(parser->imm_string[i], ir, false)) {
4301                 con_out("failed to generate global %s\n", parser->imm_string[i]->name);
4302                 ir_builder_delete(ir);
4303                 return false;
4304             }
4305         }
4306         for (i = 0; i < vec_size(parser->imm_vector); ++i) {
4307             if (!ast_global_codegen(parser->imm_vector[i], ir, false)) {
4308                 con_out("failed to generate global %s\n", parser->imm_vector[i]->name);
4309                 ir_builder_delete(ir);
4310                 return false;
4311             }
4312         }
4313         for (i = 0; i < vec_size(parser->globals); ++i) {
4314             ast_value *asvalue;
4315             if (!ast_istype(parser->globals[i], ast_value))
4316                 continue;
4317             asvalue = (ast_value*)(parser->globals[i]);
4318             if (asvalue->setter) {
4319                 if (!ast_global_codegen(asvalue->setter, ir, false) ||
4320                     !ast_function_codegen(asvalue->setter->constval.vfunc, ir) ||
4321                     !ir_function_finalize(asvalue->setter->constval.vfunc->ir_func))
4322                 {
4323                     printf("failed to generate setter for %s\n", asvalue->name);
4324                     ir_builder_delete(ir);
4325                     return false;
4326                 }
4327             }
4328             if (asvalue->getter) {
4329                 if (!ast_global_codegen(asvalue->getter, ir, false) ||
4330                     !ast_function_codegen(asvalue->getter->constval.vfunc, ir) ||
4331                     !ir_function_finalize(asvalue->getter->constval.vfunc->ir_func))
4332                 {
4333                     printf("failed to generate getter for %s\n", asvalue->name);
4334                     ir_builder_delete(ir);
4335                     return false;
4336                 }
4337             }
4338         }
4339         for (i = 0; i < vec_size(parser->fields); ++i) {
4340             ast_value *asvalue;
4341             asvalue = (ast_value*)(parser->fields[i]->expression.next);
4342
4343             if (!ast_istype((ast_expression*)asvalue, ast_value))
4344                 continue;
4345             if (asvalue->expression.vtype != TYPE_ARRAY)
4346                 continue;
4347             if (asvalue->setter) {
4348                 if (!ast_global_codegen(asvalue->setter, ir, false) ||
4349                     !ast_function_codegen(asvalue->setter->constval.vfunc, ir) ||
4350                     !ir_function_finalize(asvalue->setter->constval.vfunc->ir_func))
4351                 {
4352                     printf("failed to generate setter for %s\n", asvalue->name);
4353                     ir_builder_delete(ir);
4354                     return false;
4355                 }
4356             }
4357             if (asvalue->getter) {
4358                 if (!ast_global_codegen(asvalue->getter, ir, false) ||
4359                     !ast_function_codegen(asvalue->getter->constval.vfunc, ir) ||
4360                     !ir_function_finalize(asvalue->getter->constval.vfunc->ir_func))
4361                 {
4362                     printf("failed to generate getter for %s\n", asvalue->name);
4363                     ir_builder_delete(ir);
4364                     return false;
4365                 }
4366             }
4367         }
4368         for (i = 0; i < vec_size(parser->functions); ++i) {
4369             if (!ast_function_codegen(parser->functions[i], ir)) {
4370                 con_out("failed to generate function %s\n", parser->functions[i]->name);
4371                 ir_builder_delete(ir);
4372                 return false;
4373             }
4374         }
4375         if (opts_dump)
4376             ir_builder_dump(ir, con_out);
4377         for (i = 0; i < vec_size(parser->functions); ++i) {
4378             if (!ir_function_finalize(parser->functions[i]->ir_func)) {
4379                 con_out("failed to finalize function %s\n", parser->functions[i]->name);
4380                 ir_builder_delete(ir);
4381                 return false;
4382             }
4383         }
4384
4385         if (retval) {
4386             if (opts_dumpfin)
4387                 ir_builder_dump(ir, con_out);
4388
4389             generate_checksum(parser);
4390
4391             if (!ir_builder_generate(ir, output)) {
4392                 con_out("*** failed to generate output file\n");
4393                 ir_builder_delete(ir);
4394                 return false;
4395             }
4396         }
4397
4398         ir_builder_delete(ir);
4399         return retval;
4400     }
4401
4402     con_out("*** there were compile errors\n");
4403     return false;
4404 }