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