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