]> git.xonotic.org Git - xonotic/gmqcc.git/blob - parser.c
revert 1 of the error messages
[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         parseerror(parser, "internal error: parser_leaveblock with no block (2)");
1701         return false;
1702     }
1703
1704     locals = vec_last(parser->_blocklocals);
1705     vec_pop(parser->_blocklocals);
1706     while (vec_size(parser->_locals) != locals) {
1707         ast_expression *e = vec_last(parser->_locals);
1708         ast_value      *v = (ast_value*)e;
1709         vec_pop(parser->_locals);
1710         if (ast_istype(e, ast_value) && !v->uses) {
1711             if (compile_warning(ast_ctx(v), WARN_UNUSED_VARIABLE, "unused variable: `%s`", v->name)) {
1712                 parser->errors++;
1713                 rv = false;
1714             }
1715         }
1716     }
1717
1718     typedefs = vec_last(parser->_blocktypedefs);
1719     while (vec_size(parser->_typedefs) != typedefs) {
1720         ast_delete(vec_last(parser->_typedefs));
1721         vec_pop(parser->_typedefs);
1722     }
1723     util_htdel(vec_last(parser->typedefs));
1724     vec_pop(parser->typedefs);
1725
1726     vec_pop(parser->_block_ctx);
1727     return rv;
1728 }
1729
1730 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e)
1731 {
1732     vec_push(parser->_locals, e);
1733     util_htset(vec_last(parser->variables), name, (void*)e);
1734 }
1735
1736 static bool parse_if(parser_t *parser, ast_block *block, ast_expression **out)
1737 {
1738     ast_ifthen *ifthen;
1739     ast_expression *cond, *ontrue, *onfalse = NULL;
1740     bool ifnot = false;
1741
1742     lex_ctx ctx = parser_ctx(parser);
1743
1744     (void)block; /* not touching */
1745
1746     /* skip the 'if', parse an optional 'not' and check for an opening paren */
1747     if (!parser_next(parser)) {
1748         parseerror(parser, "expected condition or 'not'");
1749         return false;
1750     }
1751     if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "not")) {
1752         ifnot = true;
1753         if (!parser_next(parser)) {
1754             parseerror(parser, "expected condition in parenthesis");
1755             return false;
1756         }
1757     }
1758     if (parser->tok != '(') {
1759         parseerror(parser, "expected 'if' condition in parenthesis");
1760         return false;
1761     }
1762     /* parse into the expression */
1763     if (!parser_next(parser)) {
1764         parseerror(parser, "expected 'if' condition after opening paren");
1765         return false;
1766     }
1767     /* parse the condition */
1768     cond = parse_expression_leave(parser, false);
1769     if (!cond)
1770         return false;
1771     /* closing paren */
1772     if (parser->tok != ')') {
1773         parseerror(parser, "expected closing paren after 'if' condition");
1774         ast_delete(cond);
1775         return false;
1776     }
1777     /* parse into the 'then' branch */
1778     if (!parser_next(parser)) {
1779         parseerror(parser, "expected statement for on-true branch of 'if'");
1780         ast_delete(cond);
1781         return false;
1782     }
1783     ontrue = parse_statement_or_block(parser);
1784     if (!ontrue) {
1785         ast_delete(cond);
1786         return false;
1787     }
1788     /* check for an else */
1789     if (!strcmp(parser_tokval(parser), "else")) {
1790         /* parse into the 'else' branch */
1791         if (!parser_next(parser)) {
1792             parseerror(parser, "expected on-false branch after 'else'");
1793             ast_delete(ontrue);
1794             ast_delete(cond);
1795             return false;
1796         }
1797         onfalse = parse_statement_or_block(parser);
1798         if (!onfalse) {
1799             ast_delete(ontrue);
1800             ast_delete(cond);
1801             return false;
1802         }
1803     }
1804
1805     if (ifnot)
1806         ifthen = ast_ifthen_new(ctx, cond, onfalse, ontrue);
1807     else
1808         ifthen = ast_ifthen_new(ctx, cond, ontrue, onfalse);
1809     *out = (ast_expression*)ifthen;
1810     return true;
1811 }
1812
1813 static bool parse_while(parser_t *parser, ast_block *block, ast_expression **out)
1814 {
1815     ast_loop *aloop;
1816     ast_expression *cond, *ontrue;
1817
1818     lex_ctx ctx = parser_ctx(parser);
1819
1820     (void)block; /* not touching */
1821
1822     /* skip the 'while' and check for opening paren */
1823     if (!parser_next(parser) || parser->tok != '(') {
1824         parseerror(parser, "expected 'while' condition in parenthesis");
1825         return false;
1826     }
1827     /* parse into the expression */
1828     if (!parser_next(parser)) {
1829         parseerror(parser, "expected 'while' condition after opening paren");
1830         return false;
1831     }
1832     /* parse the condition */
1833     cond = parse_expression_leave(parser, false);
1834     if (!cond)
1835         return false;
1836     /* closing paren */
1837     if (parser->tok != ')') {
1838         parseerror(parser, "expected closing paren after 'while' condition");
1839         ast_delete(cond);
1840         return false;
1841     }
1842     /* parse into the 'then' branch */
1843     if (!parser_next(parser)) {
1844         parseerror(parser, "expected while-loop body");
1845         ast_delete(cond);
1846         return false;
1847     }
1848     ontrue = parse_statement_or_block(parser);
1849     if (!ontrue) {
1850         ast_delete(cond);
1851         return false;
1852     }
1853
1854     aloop = ast_loop_new(ctx, NULL, cond, NULL, NULL, ontrue);
1855     *out = (ast_expression*)aloop;
1856     return true;
1857 }
1858
1859 static bool parse_dowhile(parser_t *parser, ast_block *block, ast_expression **out)
1860 {
1861     ast_loop *aloop;
1862     ast_expression *cond, *ontrue;
1863
1864     lex_ctx ctx = parser_ctx(parser);
1865
1866     (void)block; /* not touching */
1867
1868     /* skip the 'do' and get the body */
1869     if (!parser_next(parser)) {
1870         parseerror(parser, "expected loop body");
1871         return false;
1872     }
1873     ontrue = parse_statement_or_block(parser);
1874     if (!ontrue)
1875         return false;
1876
1877     /* expect the "while" */
1878     if (parser->tok != TOKEN_KEYWORD ||
1879         strcmp(parser_tokval(parser), "while"))
1880     {
1881         parseerror(parser, "expected 'while' and condition");
1882         ast_delete(ontrue);
1883         return false;
1884     }
1885
1886     /* skip the 'while' and check for opening paren */
1887     if (!parser_next(parser) || parser->tok != '(') {
1888         parseerror(parser, "expected 'while' condition in parenthesis");
1889         ast_delete(ontrue);
1890         return false;
1891     }
1892     /* parse into the expression */
1893     if (!parser_next(parser)) {
1894         parseerror(parser, "expected 'while' condition after opening paren");
1895         ast_delete(ontrue);
1896         return false;
1897     }
1898     /* parse the condition */
1899     cond = parse_expression_leave(parser, false);
1900     if (!cond)
1901         return false;
1902     /* closing paren */
1903     if (parser->tok != ')') {
1904         parseerror(parser, "expected closing paren after 'while' condition");
1905         ast_delete(ontrue);
1906         ast_delete(cond);
1907         return false;
1908     }
1909     /* parse on */
1910     if (!parser_next(parser) || parser->tok != ';') {
1911         parseerror(parser, "expected semicolon after condition");
1912         ast_delete(ontrue);
1913         ast_delete(cond);
1914         return false;
1915     }
1916
1917     if (!parser_next(parser)) {
1918         parseerror(parser, "parse error");
1919         ast_delete(ontrue);
1920         ast_delete(cond);
1921         return false;
1922     }
1923
1924     aloop = ast_loop_new(ctx, NULL, NULL, cond, NULL, ontrue);
1925     *out = (ast_expression*)aloop;
1926     return true;
1927 }
1928
1929 static bool parse_for(parser_t *parser, ast_block *block, ast_expression **out)
1930 {
1931     ast_loop       *aloop;
1932     ast_expression *initexpr, *cond, *increment, *ontrue;
1933     ast_value      *typevar;
1934     bool   retval = true;
1935
1936     lex_ctx ctx = parser_ctx(parser);
1937
1938     parser_enterblock(parser);
1939
1940     initexpr  = NULL;
1941     cond      = NULL;
1942     increment = NULL;
1943     ontrue    = NULL;
1944
1945     /* skip the 'while' and check for opening paren */
1946     if (!parser_next(parser) || parser->tok != '(') {
1947         parseerror(parser, "expected 'for' expressions in parenthesis");
1948         goto onerr;
1949     }
1950     /* parse into the expression */
1951     if (!parser_next(parser)) {
1952         parseerror(parser, "expected 'for' initializer after opening paren");
1953         goto onerr;
1954     }
1955
1956     typevar = NULL;
1957     if (parser->tok == TOKEN_IDENT)
1958         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
1959
1960     if (typevar || parser->tok == TOKEN_TYPENAME) {
1961         if (opts_standard != COMPILER_GMQCC) {
1962             if (parsewarning(parser, WARN_EXTENSIONS,
1963                              "current standard does not allow variable declarations in for-loop initializers"))
1964                 goto onerr;
1965         }
1966         if (!parse_variable(parser, block, true, CV_VAR, typevar))
1967             goto onerr;
1968     }
1969     else if (parser->tok != ';')
1970     {
1971         initexpr = parse_expression_leave(parser, false);
1972         if (!initexpr)
1973             goto onerr;
1974     }
1975
1976     /* move on to condition */
1977     if (parser->tok != ';') {
1978         parseerror(parser, "expected semicolon after for-loop initializer");
1979         goto onerr;
1980     }
1981     if (!parser_next(parser)) {
1982         parseerror(parser, "expected for-loop condition");
1983         goto onerr;
1984     }
1985
1986     /* parse the condition */
1987     if (parser->tok != ';') {
1988         cond = parse_expression_leave(parser, false);
1989         if (!cond)
1990             goto onerr;
1991     }
1992
1993     /* move on to incrementor */
1994     if (parser->tok != ';') {
1995         parseerror(parser, "expected semicolon after for-loop initializer");
1996         goto onerr;
1997     }
1998     if (!parser_next(parser)) {
1999         parseerror(parser, "expected for-loop condition");
2000         goto onerr;
2001     }
2002
2003     /* parse the incrementor */
2004     if (parser->tok != ')') {
2005         increment = parse_expression_leave(parser, false);
2006         if (!increment)
2007             goto onerr;
2008         if (!ast_side_effects(increment)) {
2009             if (genwarning(ast_ctx(increment), WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2010                 goto onerr;
2011         }
2012     }
2013
2014     /* closing paren */
2015     if (parser->tok != ')') {
2016         parseerror(parser, "expected closing paren after 'for-loop' incrementor");
2017         goto onerr;
2018     }
2019     /* parse into the 'then' branch */
2020     if (!parser_next(parser)) {
2021         parseerror(parser, "expected for-loop body");
2022         goto onerr;
2023     }
2024     ontrue = parse_statement_or_block(parser);
2025     if (!ontrue) {
2026         goto onerr;
2027     }
2028
2029     aloop = ast_loop_new(ctx, initexpr, cond, NULL, increment, ontrue);
2030     *out = (ast_expression*)aloop;
2031
2032     if (!parser_leaveblock(parser))
2033         retval = false;
2034     return retval;
2035 onerr:
2036     if (initexpr)  ast_delete(initexpr);
2037     if (cond)      ast_delete(cond);
2038     if (increment) ast_delete(increment);
2039     (void)!parser_leaveblock(parser);
2040     return false;
2041 }
2042
2043 static bool parse_return(parser_t *parser, ast_block *block, ast_expression **out)
2044 {
2045     ast_expression *exp = NULL;
2046     ast_return     *ret = NULL;
2047     ast_value      *expected = parser->function->vtype;
2048
2049     (void)block; /* not touching */
2050
2051     if (!parser_next(parser)) {
2052         parseerror(parser, "expected return expression");
2053         return false;
2054     }
2055
2056     if (parser->tok != ';') {
2057         exp = parse_expression(parser, false);
2058         if (!exp)
2059             return false;
2060
2061         if (exp->expression.vtype != expected->expression.next->expression.vtype) {
2062             parseerror(parser, "return with invalid expression");
2063         }
2064
2065         ret = ast_return_new(exp->expression.node.context, exp);
2066         if (!ret) {
2067             ast_delete(exp);
2068             return false;
2069         }
2070     } else {
2071         if (!parser_next(parser))
2072             parseerror(parser, "parse error");
2073         if (expected->expression.next->expression.vtype != TYPE_VOID) {
2074             if (opts_standard != COMPILER_GMQCC)
2075                 (void)!parsewarning(parser, WARN_MISSING_RETURN_VALUES, "return without value");
2076             else
2077                 parseerror(parser, "return without value");
2078         }
2079         ret = ast_return_new(parser_ctx(parser), NULL);
2080     }
2081     *out = (ast_expression*)ret;
2082     return true;
2083 }
2084
2085 static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
2086 {
2087     lex_ctx ctx = parser_ctx(parser);
2088
2089     (void)block; /* not touching */
2090
2091     if (!parser_next(parser) || parser->tok != ';') {
2092         parseerror(parser, "expected semicolon");
2093         return false;
2094     }
2095
2096     if (!parser_next(parser))
2097         parseerror(parser, "parse error");
2098
2099     *out = (ast_expression*)ast_breakcont_new(ctx, is_continue);
2100     return true;
2101 }
2102
2103 static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **out)
2104 {
2105     ast_expression *operand;
2106     ast_value      *opval;
2107     ast_switch     *switchnode;
2108     ast_switch_case swcase;
2109
2110     lex_ctx ctx = parser_ctx(parser);
2111
2112     (void)block; /* not touching */
2113     (void)opval;
2114
2115     /* parse over the opening paren */
2116     if (!parser_next(parser) || parser->tok != '(') {
2117         parseerror(parser, "expected switch operand in parenthesis");
2118         return false;
2119     }
2120
2121     /* parse into the expression */
2122     if (!parser_next(parser)) {
2123         parseerror(parser, "expected switch operand");
2124         return false;
2125     }
2126     /* parse the operand */
2127     operand = parse_expression_leave(parser, false);
2128     if (!operand)
2129         return false;
2130
2131     switchnode = ast_switch_new(ctx, operand);
2132
2133     /* closing paren */
2134     if (parser->tok != ')') {
2135         ast_delete(switchnode);
2136         parseerror(parser, "expected closing paren after 'switch' operand");
2137         return false;
2138     }
2139
2140     /* parse over the opening paren */
2141     if (!parser_next(parser) || parser->tok != '{') {
2142         ast_delete(switchnode);
2143         parseerror(parser, "expected list of cases");
2144         return false;
2145     }
2146
2147     if (!parser_next(parser)) {
2148         ast_delete(switchnode);
2149         parseerror(parser, "expected 'case' or 'default'");
2150         return false;
2151     }
2152
2153     /* case list! */
2154     while (parser->tok != '}') {
2155         ast_block *caseblock;
2156
2157         if (parser->tok != TOKEN_KEYWORD) {
2158             ast_delete(switchnode);
2159             parseerror(parser, "expected 'case' or 'default'");
2160             return false;
2161         }
2162         if (!strcmp(parser_tokval(parser), "case")) {
2163             if (!parser_next(parser)) {
2164                 ast_delete(switchnode);
2165                 parseerror(parser, "expected expression for case");
2166                 return false;
2167             }
2168             swcase.value = parse_expression_leave(parser, false);
2169             if (!swcase.value) {
2170                 ast_delete(switchnode);
2171                 parseerror(parser, "expected expression for case");
2172                 return false;
2173             }
2174             if (!OPTS_FLAG(RELAXED_SWITCH)) {
2175                 opval = (ast_value*)swcase.value;
2176                 if (!ast_istype(swcase.value, ast_value)) { /* || opval->cvq != CV_CONST) { */
2177                     parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
2178                     ast_unref(operand);
2179                     return false;
2180                 }
2181             }
2182         }
2183         else if (!strcmp(parser_tokval(parser), "default")) {
2184             swcase.value = NULL;
2185             if (!parser_next(parser)) {
2186                 ast_delete(switchnode);
2187                 parseerror(parser, "expected colon");
2188                 return false;
2189             }
2190         }
2191
2192         /* Now the colon and body */
2193         if (parser->tok != ':') {
2194             if (swcase.value) ast_unref(swcase.value);
2195             ast_delete(switchnode);
2196             parseerror(parser, "expected colon");
2197             return false;
2198         }
2199
2200         if (!parser_next(parser)) {
2201             if (swcase.value) ast_unref(swcase.value);
2202             ast_delete(switchnode);
2203             parseerror(parser, "expected statements or case");
2204             return false;
2205         }
2206         caseblock = ast_block_new(parser_ctx(parser));
2207         if (!caseblock) {
2208             if (swcase.value) ast_unref(swcase.value);
2209             ast_delete(switchnode);
2210             return false;
2211         }
2212         swcase.code = (ast_expression*)caseblock;
2213         vec_push(switchnode->cases, swcase);
2214         while (true) {
2215             ast_expression *expr;
2216             if (parser->tok == '}')
2217                 break;
2218             if (parser->tok == TOKEN_KEYWORD) {
2219                 if (!strcmp(parser_tokval(parser), "case") ||
2220                     !strcmp(parser_tokval(parser), "default"))
2221                 {
2222                     break;
2223                 }
2224             }
2225             if (!parse_statement(parser, caseblock, &expr, true)) {
2226                 ast_delete(switchnode);
2227                 return false;
2228             }
2229             if (!expr)
2230                 continue;
2231             ast_block_add_expr(caseblock, expr);
2232         }
2233     }
2234
2235     /* closing paren */
2236     if (parser->tok != '}') {
2237         ast_delete(switchnode);
2238         parseerror(parser, "expected closing paren of case list");
2239         return false;
2240     }
2241     if (!parser_next(parser)) {
2242         ast_delete(switchnode);
2243         parseerror(parser, "parse error after switch");
2244         return false;
2245     }
2246     *out = (ast_expression*)switchnode;
2247     return true;
2248 }
2249
2250 static bool parse_goto(parser_t *parser, ast_expression **out)
2251 {
2252     size_t    i;
2253     ast_goto *gt;
2254
2255     if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2256         parseerror(parser, "expected label name after `goto`");
2257         return false;
2258     }
2259
2260     gt = ast_goto_new(parser_ctx(parser), parser_tokval(parser));
2261
2262     for (i = 0; i < vec_size(parser->labels); ++i) {
2263         if (!strcmp(parser->labels[i]->name, parser_tokval(parser))) {
2264             ast_goto_set_label(gt, parser->labels[i]);
2265             break;
2266         }
2267     }
2268     if (i == vec_size(parser->labels))
2269         vec_push(parser->gotos, gt);
2270
2271     if (!parser_next(parser) || parser->tok != ';') {
2272         parseerror(parser, "semicolon expected after goto label");
2273         return false;
2274     }
2275     if (!parser_next(parser)) {
2276         parseerror(parser, "parse error after goto");
2277         return false;
2278     }
2279
2280     *out = (ast_expression*)gt;
2281     return true;
2282 }
2283
2284 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
2285 {
2286     int cvq;
2287     ast_value *typevar = NULL;
2288     *out = NULL;
2289
2290     if (parser->tok == TOKEN_IDENT)
2291         typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2292
2293     if (typevar || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
2294     {
2295         /* local variable */
2296         if (!block) {
2297             parseerror(parser, "cannot declare a variable from here");
2298             return false;
2299         }
2300         if (opts_standard == COMPILER_QCC) {
2301             if (parsewarning(parser, WARN_EXTENSIONS, "missing 'local' keyword when declaring a local variable"))
2302                 return false;
2303         }
2304         if (!parse_variable(parser, block, false, CV_NONE, typevar))
2305             return false;
2306         *out = NULL;
2307         return true;
2308     }
2309     else if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "var"))
2310     {
2311         goto ident_var;
2312     }
2313     else if (parser->tok == TOKEN_KEYWORD)
2314     {
2315         if (!strcmp(parser_tokval(parser), "local") ||
2316             !strcmp(parser_tokval(parser), "const") ||
2317             !strcmp(parser_tokval(parser), "var"))
2318         {
2319 ident_var:
2320             if (parser_tokval(parser)[0] == 'c')
2321                 cvq = CV_CONST;
2322             else if (parser_tokval(parser)[0] == 'v')
2323                 cvq = CV_VAR;
2324             else
2325                 cvq = CV_NONE;
2326
2327             if (!block) {
2328                 parseerror(parser, "cannot declare a local variable here");
2329                 return false;
2330             }
2331             if (!parser_next(parser)) {
2332                 parseerror(parser, "expected variable declaration");
2333                 return false;
2334             }
2335             if (!parse_variable(parser, block, true, cvq, NULL))
2336                 return false;
2337             *out = NULL;
2338             return true;
2339         }
2340         else if (!strcmp(parser_tokval(parser), "__builtin_debug_printtype"))
2341         {
2342             char ty[1024];
2343             ast_value *tdef;
2344
2345             if (!parser_next(parser)) {
2346                 parseerror(parser, "parse error after __builtin_debug_printtype");
2347                 return false;
2348             }
2349
2350             if (parser->tok == TOKEN_IDENT && (tdef = parser_find_typedef(parser, parser_tokval(parser), 0)))
2351             {
2352                 ast_type_to_string((ast_expression*)tdef, ty, sizeof(ty));
2353                 con_out("__builtin_debug_printtype: `%s`=`%s`\n", tdef->name, ty);
2354                 if (!parser_next(parser)) {
2355                     parseerror(parser, "parse error after __builtin_debug_printtype typename argument");
2356                     return false;
2357                 }
2358             }
2359             else
2360             {
2361                 if (!parse_statement(parser, block, out, allow_cases))
2362                     return false;
2363                 if (!*out)
2364                     con_out("__builtin_debug_printtype: got no output node\n");
2365                 else
2366                 {
2367                     ast_type_to_string(*out, ty, sizeof(ty));
2368                     con_out("__builtin_debug_printtype: `%s`\n", ty);
2369                 }
2370             }
2371             return true;
2372         }
2373         else if (!strcmp(parser_tokval(parser), "return"))
2374         {
2375             return parse_return(parser, block, out);
2376         }
2377         else if (!strcmp(parser_tokval(parser), "if"))
2378         {
2379             return parse_if(parser, block, out);
2380         }
2381         else if (!strcmp(parser_tokval(parser), "while"))
2382         {
2383             return parse_while(parser, block, out);
2384         }
2385         else if (!strcmp(parser_tokval(parser), "do"))
2386         {
2387             return parse_dowhile(parser, block, out);
2388         }
2389         else if (!strcmp(parser_tokval(parser), "for"))
2390         {
2391             if (opts_standard == COMPILER_QCC) {
2392                 if (parsewarning(parser, WARN_EXTENSIONS, "for loops are not recognized in the original Quake C standard, to enable try an alternate standard --std=?"))
2393                     return false;
2394             }
2395             return parse_for(parser, block, out);
2396         }
2397         else if (!strcmp(parser_tokval(parser), "break"))
2398         {
2399             return parse_break_continue(parser, block, out, false);
2400         }
2401         else if (!strcmp(parser_tokval(parser), "continue"))
2402         {
2403             return parse_break_continue(parser, block, out, true);
2404         }
2405         else if (!strcmp(parser_tokval(parser), "switch"))
2406         {
2407             return parse_switch(parser, block, out);
2408         }
2409         else if (!strcmp(parser_tokval(parser), "case") ||
2410                  !strcmp(parser_tokval(parser), "default"))
2411         {
2412             if (!allow_cases) {
2413                 parseerror(parser, "unexpected 'case' label");
2414                 return false;
2415             }
2416             return true;
2417         }
2418         else if (!strcmp(parser_tokval(parser), "goto"))
2419         {
2420             return parse_goto(parser, out);
2421         }
2422         else if (!strcmp(parser_tokval(parser), "typedef"))
2423         {
2424             if (!parser_next(parser)) {
2425                 parseerror(parser, "expected type definition after 'typedef'");
2426                 return false;
2427             }
2428             return parse_typedef(parser);
2429         }
2430         parseerror(parser, "Unexpected keyword");
2431         return false;
2432     }
2433     else if (parser->tok == '{')
2434     {
2435         ast_block *inner;
2436         inner = parse_block(parser);
2437         if (!inner)
2438             return false;
2439         *out = (ast_expression*)inner;
2440         return true;
2441     }
2442     else if (parser->tok == ':')
2443     {
2444         size_t i;
2445         ast_label *label;
2446         if (!parser_next(parser)) {
2447             parseerror(parser, "expected label name");
2448             return false;
2449         }
2450         if (parser->tok != TOKEN_IDENT) {
2451             parseerror(parser, "label must be an identifier");
2452             return false;
2453         }
2454         label = ast_label_new(parser_ctx(parser), parser_tokval(parser));
2455         if (!label)
2456             return false;
2457         vec_push(parser->labels, label);
2458         *out = (ast_expression*)label;
2459         if (!parser_next(parser)) {
2460             parseerror(parser, "parse error after label");
2461             return false;
2462         }
2463         for (i = 0; i < vec_size(parser->gotos); ++i) {
2464             if (!strcmp(parser->gotos[i]->name, label->name)) {
2465                 ast_goto_set_label(parser->gotos[i], label);
2466                 vec_remove(parser->gotos, i, 1);
2467                 --i;
2468             }
2469         }
2470         return true;
2471     }
2472     else if (parser->tok == ';')
2473     {
2474         if (!parser_next(parser)) {
2475             parseerror(parser, "parse error after empty statement");
2476             return false;
2477         }
2478         return true;
2479     }
2480     else
2481     {
2482         ast_expression *exp = parse_expression(parser, false);
2483         if (!exp)
2484             return false;
2485         *out = exp;
2486         if (!ast_side_effects(exp)) {
2487             if (genwarning(ast_ctx(exp), WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2488                 return false;
2489         }
2490         return true;
2491     }
2492 }
2493
2494 static bool parse_block_into(parser_t *parser, ast_block *block)
2495 {
2496     bool   retval = true;
2497
2498     parser_enterblock(parser);
2499
2500     if (!parser_next(parser)) { /* skip the '{' */
2501         parseerror(parser, "expected function body");
2502         goto cleanup;
2503     }
2504
2505     while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
2506     {
2507         ast_expression *expr = NULL;
2508         if (parser->tok == '}')
2509             break;
2510
2511         if (!parse_statement(parser, block, &expr, false)) {
2512             /* parseerror(parser, "parse error"); */
2513             block = NULL;
2514             goto cleanup;
2515         }
2516         if (!expr)
2517             continue;
2518         ast_block_add_expr(block, expr);
2519     }
2520
2521     if (parser->tok != '}') {
2522         block = NULL;
2523     } else {
2524         (void)parser_next(parser);
2525     }
2526
2527 cleanup:
2528     if (!parser_leaveblock(parser))
2529         retval = false;
2530     return retval && !!block;
2531 }
2532
2533 static ast_block* parse_block(parser_t *parser)
2534 {
2535     ast_block *block;
2536     block = ast_block_new(parser_ctx(parser));
2537     if (!block)
2538         return NULL;
2539     if (!parse_block_into(parser, block)) {
2540         ast_block_delete(block);
2541         return NULL;
2542     }
2543     return block;
2544 }
2545
2546 static ast_expression* parse_statement_or_block(parser_t *parser)
2547 {
2548     ast_expression *expr = NULL;
2549     if (parser->tok == '{')
2550         return (ast_expression*)parse_block(parser);
2551     if (!parse_statement(parser, NULL, &expr, false))
2552         return NULL;
2553     return expr;
2554 }
2555
2556 static bool create_vector_members(ast_value *var, ast_member **me)
2557 {
2558     size_t i;
2559     size_t len = strlen(var->name);
2560
2561     for (i = 0; i < 3; ++i) {
2562         char *name = mem_a(len+3);
2563         memcpy(name, var->name, len);
2564         name[len+0] = '_';
2565         name[len+1] = 'x'+i;
2566         name[len+2] = 0;
2567         me[i] = ast_member_new(ast_ctx(var), (ast_expression*)var, i, name);
2568         mem_d(name);
2569         if (!me[i])
2570             break;
2571     }
2572     if (i == 3)
2573         return true;
2574
2575     /* unroll */
2576     do { ast_member_delete(me[--i]); } while(i);
2577     return false;
2578 }
2579
2580 static bool parse_function_body(parser_t *parser, ast_value *var)
2581 {
2582     ast_block      *block = NULL;
2583     ast_function   *func;
2584     ast_function   *old;
2585     size_t          parami;
2586
2587     ast_expression *framenum  = NULL;
2588     ast_expression *nextthink = NULL;
2589     /* None of the following have to be deleted */
2590     ast_expression *fld_think = NULL, *fld_nextthink = NULL, *fld_frame = NULL;
2591     ast_expression *gbl_time = NULL, *gbl_self = NULL;
2592     bool            has_frame_think;
2593
2594     bool retval = true;
2595
2596     has_frame_think = false;
2597     old = parser->function;
2598
2599     if (vec_size(parser->gotos) || vec_size(parser->labels)) {
2600         parseerror(parser, "gotos/labels leaking");
2601         return false;
2602     }
2603
2604     if (var->expression.variadic) {
2605         if (parsewarning(parser, WARN_VARIADIC_FUNCTION,
2606                          "variadic function with implementation will not be able to access additional parameters"))
2607         {
2608             return false;
2609         }
2610     }
2611
2612     if (parser->tok == '[') {
2613         /* got a frame definition: [ framenum, nextthink ]
2614          * this translates to:
2615          * self.frame = framenum;
2616          * self.nextthink = time + 0.1;
2617          * self.think = nextthink;
2618          */
2619         nextthink = NULL;
2620
2621         fld_think     = parser_find_field(parser, "think");
2622         fld_nextthink = parser_find_field(parser, "nextthink");
2623         fld_frame     = parser_find_field(parser, "frame");
2624         if (!fld_think || !fld_nextthink || !fld_frame) {
2625             parseerror(parser, "cannot use [frame,think] notation without the required fields");
2626             parseerror(parser, "please declare the following entityfields: `frame`, `think`, `nextthink`");
2627             return false;
2628         }
2629         gbl_time      = parser_find_global(parser, "time");
2630         gbl_self      = parser_find_global(parser, "self");
2631         if (!gbl_time || !gbl_self) {
2632             parseerror(parser, "cannot use [frame,think] notation without the required globals");
2633             parseerror(parser, "please declare the following globals: `time`, `self`");
2634             return false;
2635         }
2636
2637         if (!parser_next(parser))
2638             return false;
2639
2640         framenum = parse_expression_leave(parser, true);
2641         if (!framenum) {
2642             parseerror(parser, "expected a framenumber constant in[frame,think] notation");
2643             return false;
2644         }
2645         if (!ast_istype(framenum, ast_value) || !( (ast_value*)framenum )->hasvalue) {
2646             ast_unref(framenum);
2647             parseerror(parser, "framenumber in [frame,think] notation must be a constant");
2648             return false;
2649         }
2650
2651         if (parser->tok != ',') {
2652             ast_unref(framenum);
2653             parseerror(parser, "expected comma after frame number in [frame,think] notation");
2654             parseerror(parser, "Got a %i\n", parser->tok);
2655             return false;
2656         }
2657
2658         if (!parser_next(parser)) {
2659             ast_unref(framenum);
2660             return false;
2661         }
2662
2663         if (parser->tok == TOKEN_IDENT && !parser_find_var(parser, parser_tokval(parser)))
2664         {
2665             /* qc allows the use of not-yet-declared functions here
2666              * - this automatically creates a prototype */
2667             ast_value      *thinkfunc;
2668             ast_expression *functype = fld_think->expression.next;
2669
2670             thinkfunc = ast_value_new(parser_ctx(parser), parser_tokval(parser), functype->expression.vtype);
2671             if (!thinkfunc || !ast_type_adopt(thinkfunc, functype)) {
2672                 ast_unref(framenum);
2673                 parseerror(parser, "failed to create implicit prototype for `%s`", parser_tokval(parser));
2674                 return false;
2675             }
2676
2677             if (!parser_next(parser)) {
2678                 ast_unref(framenum);
2679                 ast_delete(thinkfunc);
2680                 return false;
2681             }
2682
2683             vec_push(parser->globals, (ast_expression*)thinkfunc);
2684             util_htset(parser->htglobals, thinkfunc->name, thinkfunc);
2685             nextthink = (ast_expression*)thinkfunc;
2686
2687         } else {
2688             nextthink = parse_expression_leave(parser, true);
2689             if (!nextthink) {
2690                 ast_unref(framenum);
2691                 parseerror(parser, "expected a think-function in [frame,think] notation");
2692                 return false;
2693             }
2694         }
2695
2696         if (!ast_istype(nextthink, ast_value)) {
2697             parseerror(parser, "think-function in [frame,think] notation must be a constant");
2698             retval = false;
2699         }
2700
2701         if (retval && parser->tok != ']') {
2702             parseerror(parser, "expected closing `]` for [frame,think] notation");
2703             retval = false;
2704         }
2705
2706         if (retval && !parser_next(parser)) {
2707             retval = false;
2708         }
2709
2710         if (retval && parser->tok != '{') {
2711             parseerror(parser, "a function body has to be declared after a [frame,think] declaration");
2712             retval = false;
2713         }
2714
2715         if (!retval) {
2716             ast_unref(nextthink);
2717             ast_unref(framenum);
2718             return false;
2719         }
2720
2721         has_frame_think = true;
2722     }
2723
2724     block = ast_block_new(parser_ctx(parser));
2725     if (!block) {
2726         parseerror(parser, "failed to allocate block");
2727         if (has_frame_think) {
2728             ast_unref(nextthink);
2729             ast_unref(framenum);
2730         }
2731         return false;
2732     }
2733
2734     if (has_frame_think) {
2735         lex_ctx ctx;
2736         ast_expression *self_frame;
2737         ast_expression *self_nextthink;
2738         ast_expression *self_think;
2739         ast_expression *time_plus_1;
2740         ast_store *store_frame;
2741         ast_store *store_nextthink;
2742         ast_store *store_think;
2743
2744         ctx = parser_ctx(parser);
2745         self_frame     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_frame);
2746         self_nextthink = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_nextthink);
2747         self_think     = (ast_expression*)ast_entfield_new(ctx, gbl_self, fld_think);
2748
2749         time_plus_1    = (ast_expression*)ast_binary_new(ctx, INSTR_ADD_F,
2750                          gbl_time, (ast_expression*)parser_const_float(parser, 0.1));
2751
2752         if (!self_frame || !self_nextthink || !self_think || !time_plus_1) {
2753             if (self_frame)     ast_delete(self_frame);
2754             if (self_nextthink) ast_delete(self_nextthink);
2755             if (self_think)     ast_delete(self_think);
2756             if (time_plus_1)    ast_delete(time_plus_1);
2757             retval = false;
2758         }
2759
2760         if (retval)
2761         {
2762             store_frame     = ast_store_new(ctx, INSTR_STOREP_F,   self_frame,     framenum);
2763             store_nextthink = ast_store_new(ctx, INSTR_STOREP_F,   self_nextthink, time_plus_1);
2764             store_think     = ast_store_new(ctx, INSTR_STOREP_FNC, self_think,     nextthink);
2765
2766             if (!store_frame) {
2767                 ast_delete(self_frame);
2768                 retval = false;
2769             }
2770             if (!store_nextthink) {
2771                 ast_delete(self_nextthink);
2772                 retval = false;
2773             }
2774             if (!store_think) {
2775                 ast_delete(self_think);
2776                 retval = false;
2777             }
2778             if (!retval) {
2779                 if (store_frame)     ast_delete(store_frame);
2780                 if (store_nextthink) ast_delete(store_nextthink);
2781                 if (store_think)     ast_delete(store_think);
2782                 retval = false;
2783             }
2784             ast_block_add_expr(block, (ast_expression*)store_frame);
2785             ast_block_add_expr(block, (ast_expression*)store_nextthink);
2786             ast_block_add_expr(block, (ast_expression*)store_think);
2787         }
2788
2789         if (!retval) {
2790             parseerror(parser, "failed to generate code for [frame,think]");
2791             ast_unref(nextthink);
2792             ast_unref(framenum);
2793             ast_delete(block);
2794             return false;
2795         }
2796     }
2797
2798     parser_enterblock(parser);
2799
2800     for (parami = 0; parami < vec_size(var->expression.params); ++parami) {
2801         size_t     e;
2802         ast_value *param = var->expression.params[parami];
2803         ast_member *me[3];
2804
2805         if (param->expression.vtype != TYPE_VECTOR &&
2806             (param->expression.vtype != TYPE_FIELD ||
2807              param->expression.next->expression.vtype != TYPE_VECTOR))
2808         {
2809             continue;
2810         }
2811
2812         if (!create_vector_members(param, me)) {
2813             ast_block_delete(block);
2814             return false;
2815         }
2816
2817         for (e = 0; e < 3; ++e) {
2818             parser_addlocal(parser, me[e]->name, (ast_expression*)me[e]);
2819             ast_block_collect(block, (ast_expression*)me[e]);
2820         }
2821     }
2822
2823     func = ast_function_new(ast_ctx(var), var->name, var);
2824     if (!func) {
2825         parseerror(parser, "failed to allocate function for `%s`", var->name);
2826         ast_block_delete(block);
2827         goto enderr;
2828     }
2829     vec_push(parser->functions, func);
2830
2831     parser->function = func;
2832     if (!parse_block_into(parser, block)) {
2833         ast_block_delete(block);
2834         goto enderrfn;
2835     }
2836
2837     vec_push(func->blocks, block);
2838
2839     parser->function = old;
2840     if (!parser_leaveblock(parser))
2841         retval = false;
2842     if (vec_size(parser->variables) != PARSER_HT_LOCALS) {
2843         parseerror(parser, "internal error: local scopes left");
2844         retval = false;
2845     }
2846
2847     if (parser->tok == ';')
2848         return parser_next(parser);
2849     else if (opts_standard == COMPILER_QCC)
2850         parseerror(parser, "missing semicolon after function body (mandatory with -std=qcc)");
2851     return retval;
2852
2853 enderrfn:
2854     vec_pop(parser->functions);
2855     ast_function_delete(func);
2856     var->constval.vfunc = NULL;
2857
2858 enderr:
2859     (void)!parser_leaveblock(parser);
2860     parser->function = old;
2861     return false;
2862 }
2863
2864 static ast_expression *array_accessor_split(
2865     parser_t  *parser,
2866     ast_value *array,
2867     ast_value *index,
2868     size_t     middle,
2869     ast_expression *left,
2870     ast_expression *right
2871     )
2872 {
2873     ast_ifthen *ifthen;
2874     ast_binary *cmp;
2875
2876     lex_ctx ctx = ast_ctx(array);
2877
2878     if (!left || !right) {
2879         if (left)  ast_delete(left);
2880         if (right) ast_delete(right);
2881         return NULL;
2882     }
2883
2884     cmp = ast_binary_new(ctx, INSTR_LT,
2885                          (ast_expression*)index,
2886                          (ast_expression*)parser_const_float(parser, middle));
2887     if (!cmp) {
2888         ast_delete(left);
2889         ast_delete(right);
2890         parseerror(parser, "internal error: failed to create comparison for array setter");
2891         return NULL;
2892     }
2893
2894     ifthen = ast_ifthen_new(ctx, (ast_expression*)cmp, left, right);
2895     if (!ifthen) {
2896         ast_delete(cmp); /* will delete left and right */
2897         parseerror(parser, "internal error: failed to create conditional jump for array setter");
2898         return NULL;
2899     }
2900
2901     return (ast_expression*)ifthen;
2902 }
2903
2904 static ast_expression *array_setter_node(parser_t *parser, ast_value *array, ast_value *index, ast_value *value, size_t from, size_t afterend)
2905 {
2906     lex_ctx ctx = ast_ctx(array);
2907
2908     if (from+1 == afterend) {
2909         /* set this value */
2910         ast_block       *block;
2911         ast_return      *ret;
2912         ast_array_index *subscript;
2913         ast_store       *st;
2914         int assignop = type_store_instr[value->expression.vtype];
2915
2916         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
2917             assignop = INSTR_STORE_V;
2918
2919         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
2920         if (!subscript)
2921             return NULL;
2922
2923         st = ast_store_new(ctx, assignop, (ast_expression*)subscript, (ast_expression*)value);
2924         if (!st) {
2925             ast_delete(subscript);
2926             return NULL;
2927         }
2928
2929         block = ast_block_new(ctx);
2930         if (!block) {
2931             ast_delete(st);
2932             return NULL;
2933         }
2934
2935         ast_block_add_expr(block, (ast_expression*)st);
2936
2937         ret = ast_return_new(ctx, NULL);
2938         if (!ret) {
2939             ast_delete(block);
2940             return NULL;
2941         }
2942
2943         ast_block_add_expr(block, (ast_expression*)ret);
2944
2945         return (ast_expression*)block;
2946     } else {
2947         ast_expression *left, *right;
2948         size_t diff = afterend - from;
2949         size_t middle = from + diff/2;
2950         left  = array_setter_node(parser, array, index, value, from, middle);
2951         right = array_setter_node(parser, array, index, value, middle, afterend);
2952         return array_accessor_split(parser, array, index, middle, left, right);
2953     }
2954 }
2955
2956 static ast_expression *array_field_setter_node(
2957     parser_t  *parser,
2958     ast_value *array,
2959     ast_value *entity,
2960     ast_value *index,
2961     ast_value *value,
2962     size_t     from,
2963     size_t     afterend)
2964 {
2965     lex_ctx ctx = ast_ctx(array);
2966
2967     if (from+1 == afterend) {
2968         /* set this value */
2969         ast_block       *block;
2970         ast_return      *ret;
2971         ast_entfield    *entfield;
2972         ast_array_index *subscript;
2973         ast_store       *st;
2974         int assignop = type_storep_instr[value->expression.vtype];
2975
2976         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
2977             assignop = INSTR_STOREP_V;
2978
2979         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
2980         if (!subscript)
2981             return NULL;
2982
2983         entfield = ast_entfield_new_force(ctx,
2984                                           (ast_expression*)entity,
2985                                           (ast_expression*)subscript,
2986                                           (ast_expression*)subscript);
2987         if (!entfield) {
2988             ast_delete(subscript);
2989             return NULL;
2990         }
2991
2992         st = ast_store_new(ctx, assignop, (ast_expression*)entfield, (ast_expression*)value);
2993         if (!st) {
2994             ast_delete(entfield);
2995             return NULL;
2996         }
2997
2998         block = ast_block_new(ctx);
2999         if (!block) {
3000             ast_delete(st);
3001             return NULL;
3002         }
3003
3004         ast_block_add_expr(block, (ast_expression*)st);
3005
3006         ret = ast_return_new(ctx, NULL);
3007         if (!ret) {
3008             ast_delete(block);
3009             return NULL;
3010         }
3011
3012         ast_block_add_expr(block, (ast_expression*)ret);
3013
3014         return (ast_expression*)block;
3015     } else {
3016         ast_expression *left, *right;
3017         size_t diff = afterend - from;
3018         size_t middle = from + diff/2;
3019         left  = array_field_setter_node(parser, array, entity, index, value, from, middle);
3020         right = array_field_setter_node(parser, array, entity, index, value, middle, afterend);
3021         return array_accessor_split(parser, array, index, middle, left, right);
3022     }
3023 }
3024
3025 static ast_expression *array_getter_node(parser_t *parser, ast_value *array, ast_value *index, size_t from, size_t afterend)
3026 {
3027     lex_ctx ctx = ast_ctx(array);
3028
3029     if (from+1 == afterend) {
3030         ast_return      *ret;
3031         ast_array_index *subscript;
3032
3033         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
3034         if (!subscript)
3035             return NULL;
3036
3037         ret = ast_return_new(ctx, (ast_expression*)subscript);
3038         if (!ret) {
3039             ast_delete(subscript);
3040             return NULL;
3041         }
3042
3043         return (ast_expression*)ret;
3044     } else {
3045         ast_expression *left, *right;
3046         size_t diff = afterend - from;
3047         size_t middle = from + diff/2;
3048         left  = array_getter_node(parser, array, index, from, middle);
3049         right = array_getter_node(parser, array, index, middle, afterend);
3050         return array_accessor_split(parser, array, index, middle, left, right);
3051     }
3052 }
3053
3054 static bool parser_create_array_accessor(parser_t *parser, ast_value *array, const char *funcname, ast_value **out)
3055 {
3056     ast_function   *func = NULL;
3057     ast_value      *fval = NULL;
3058     ast_block      *body = NULL;
3059
3060     fval = ast_value_new(ast_ctx(array), funcname, TYPE_FUNCTION);
3061     if (!fval) {
3062         parseerror(parser, "failed to create accessor function value");
3063         return false;
3064     }
3065
3066     func = ast_function_new(ast_ctx(array), funcname, fval);
3067     if (!func) {
3068         ast_delete(fval);
3069         parseerror(parser, "failed to create accessor function node");
3070         return false;
3071     }
3072
3073     body = ast_block_new(ast_ctx(array));
3074     if (!body) {
3075         parseerror(parser, "failed to create block for array accessor");
3076         ast_delete(fval);
3077         ast_delete(func);
3078         return false;
3079     }
3080
3081     vec_push(func->blocks, body);
3082     *out = fval;
3083
3084     vec_push(parser->accessors, fval);
3085
3086     return true;
3087 }
3088
3089 static bool parser_create_array_setter(parser_t *parser, ast_value *array, const char *funcname)
3090 {
3091     ast_expression *root = NULL;
3092     ast_value      *index = NULL;
3093     ast_value      *value = NULL;
3094     ast_function   *func;
3095     ast_value      *fval;
3096
3097     if (!ast_istype(array->expression.next, ast_value)) {
3098         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
3099         return false;
3100     }
3101
3102     if (!parser_create_array_accessor(parser, array, funcname, &fval))
3103         return false;
3104     func = fval->constval.vfunc;
3105     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
3106
3107     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
3108     value = ast_value_copy((ast_value*)array->expression.next);
3109
3110     if (!index || !value) {
3111         parseerror(parser, "failed to create locals for array accessor");
3112         goto cleanup;
3113     }
3114     (void)!ast_value_set_name(value, "value"); /* not important */
3115     vec_push(fval->expression.params, index);
3116     vec_push(fval->expression.params, value);
3117
3118     root = array_setter_node(parser, array, index, value, 0, array->expression.count);
3119     if (!root) {
3120         parseerror(parser, "failed to build accessor search tree");
3121         goto cleanup;
3122     }
3123
3124     ast_block_add_expr(func->blocks[0], root);
3125     array->setter = fval;
3126     return true;
3127 cleanup:
3128     if (index) ast_delete(index);
3129     if (value) ast_delete(value);
3130     if (root)  ast_delete(root);
3131     ast_delete(func);
3132     ast_delete(fval);
3133     return false;
3134 }
3135
3136 static bool parser_create_array_field_setter(parser_t *parser, ast_value *array, const char *funcname)
3137 {
3138     ast_expression *root = NULL;
3139     ast_value      *entity = NULL;
3140     ast_value      *index = NULL;
3141     ast_value      *value = NULL;
3142     ast_function   *func;
3143     ast_value      *fval;
3144
3145     if (!ast_istype(array->expression.next, ast_value)) {
3146         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
3147         return false;
3148     }
3149
3150     if (!parser_create_array_accessor(parser, array, funcname, &fval))
3151         return false;
3152     func = fval->constval.vfunc;
3153     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
3154
3155     entity = ast_value_new(ast_ctx(array), "entity", TYPE_ENTITY);
3156     index  = ast_value_new(ast_ctx(array), "index",  TYPE_FLOAT);
3157     value  = ast_value_copy((ast_value*)array->expression.next);
3158     if (!entity || !index || !value) {
3159         parseerror(parser, "failed to create locals for array accessor");
3160         goto cleanup;
3161     }
3162     (void)!ast_value_set_name(value, "value"); /* not important */
3163     vec_push(fval->expression.params, entity);
3164     vec_push(fval->expression.params, index);
3165     vec_push(fval->expression.params, value);
3166
3167     root = array_field_setter_node(parser, array, entity, index, value, 0, array->expression.count);
3168     if (!root) {
3169         parseerror(parser, "failed to build accessor search tree");
3170         goto cleanup;
3171     }
3172
3173     ast_block_add_expr(func->blocks[0], root);
3174     array->setter = fval;
3175     return true;
3176 cleanup:
3177     if (entity) ast_delete(entity);
3178     if (index)  ast_delete(index);
3179     if (value)  ast_delete(value);
3180     if (root)   ast_delete(root);
3181     ast_delete(func);
3182     ast_delete(fval);
3183     return false;
3184 }
3185
3186 static bool parser_create_array_getter(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname)
3187 {
3188     ast_expression *root = NULL;
3189     ast_value      *index = NULL;
3190     ast_value      *fval;
3191     ast_function   *func;
3192
3193     /* NOTE: checking array->expression.next rather than elemtype since
3194      * for fields elemtype is a temporary fieldtype.
3195      */
3196     if (!ast_istype(array->expression.next, ast_value)) {
3197         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
3198         return false;
3199     }
3200
3201     if (!parser_create_array_accessor(parser, array, funcname, &fval))
3202         return false;
3203     func = fval->constval.vfunc;
3204     fval->expression.next = ast_type_copy(ast_ctx(array), elemtype);
3205
3206     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
3207
3208     if (!index) {
3209         parseerror(parser, "failed to create locals for array accessor");
3210         goto cleanup;
3211     }
3212     vec_push(fval->expression.params, index);
3213
3214     root = array_getter_node(parser, array, index, 0, array->expression.count);
3215     if (!root) {
3216         parseerror(parser, "failed to build accessor search tree");
3217         goto cleanup;
3218     }
3219
3220     ast_block_add_expr(func->blocks[0], root);
3221     array->getter = fval;
3222     return true;
3223 cleanup:
3224     if (index) ast_delete(index);
3225     if (root)  ast_delete(root);
3226     ast_delete(func);
3227     ast_delete(fval);
3228     return false;
3229 }
3230
3231 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef);
3232 static ast_value *parse_parameter_list(parser_t *parser, ast_value *var)
3233 {
3234     lex_ctx     ctx;
3235     size_t      i;
3236     ast_value **params;
3237     ast_value  *param;
3238     ast_value  *fval;
3239     bool        first = true;
3240     bool        variadic = false;
3241
3242     ctx = parser_ctx(parser);
3243
3244     /* for the sake of less code we parse-in in this function */
3245     if (!parser_next(parser)) {
3246         parseerror(parser, "expected parameter list");
3247         return NULL;
3248     }
3249
3250     params = NULL;
3251
3252     /* parse variables until we hit a closing paren */
3253     while (parser->tok != ')') {
3254         if (!first) {
3255             /* there must be commas between them */
3256             if (parser->tok != ',') {
3257                 parseerror(parser, "expected comma or end of parameter list");
3258                 goto on_error;
3259             }
3260             if (!parser_next(parser)) {
3261                 parseerror(parser, "expected parameter");
3262                 goto on_error;
3263             }
3264         }
3265         first = false;
3266
3267         if (parser->tok == TOKEN_DOTS) {
3268             /* '...' indicates a varargs function */
3269             variadic = true;
3270             if (!parser_next(parser)) {
3271                 parseerror(parser, "expected parameter");
3272                 return NULL;
3273             }
3274             if (parser->tok != ')') {
3275                 parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
3276                 goto on_error;
3277             }
3278         }
3279         else
3280         {
3281             /* for anything else just parse a typename */
3282             param = parse_typename(parser, NULL, NULL);
3283             if (!param)
3284                 goto on_error;
3285             vec_push(params, param);
3286             if (param->expression.vtype >= TYPE_VARIANT) {
3287                 char typename[1024];
3288                 ast_type_to_string((ast_expression*)param, typename, sizeof(typename));
3289                 parseerror(parser, "type not supported as part of a parameter list: %s", typename);
3290                 goto on_error;
3291             }
3292         }
3293     }
3294
3295     if (vec_size(params) == 1 && params[0]->expression.vtype == TYPE_VOID)
3296         vec_free(params);
3297
3298     /* sanity check */
3299     if (vec_size(params) > 8 && opts_standard == COMPILER_QCC)
3300         (void)!parsewarning(parser, WARN_EXTENSIONS, "more than 8 parameters are not supported by this standard");
3301
3302     /* parse-out */
3303     if (!parser_next(parser)) {
3304         parseerror(parser, "parse error after typename");
3305         goto on_error;
3306     }
3307
3308     /* now turn 'var' into a function type */
3309     fval = ast_value_new(ctx, "<type()>", TYPE_FUNCTION);
3310     fval->expression.next     = (ast_expression*)var;
3311     fval->expression.variadic = variadic;
3312     var = fval;
3313
3314     var->expression.params = params;
3315     params = NULL;
3316
3317     return var;
3318
3319 on_error:
3320     ast_delete(var);
3321     for (i = 0; i < vec_size(params); ++i)
3322         ast_delete(params[i]);
3323     vec_free(params);
3324     return NULL;
3325 }
3326
3327 static ast_value *parse_arraysize(parser_t *parser, ast_value *var)
3328 {
3329     ast_expression *cexp;
3330     ast_value      *cval, *tmp;
3331     lex_ctx ctx;
3332
3333     ctx = parser_ctx(parser);
3334
3335     if (!parser_next(parser)) {
3336         ast_delete(var);
3337         parseerror(parser, "expected array-size");
3338         return NULL;
3339     }
3340
3341     cexp = parse_expression_leave(parser, true);
3342
3343     if (!cexp || !ast_istype(cexp, ast_value)) {
3344         if (cexp)
3345             ast_unref(cexp);
3346         ast_delete(var);
3347         parseerror(parser, "expected array-size as constant positive integer");
3348         return NULL;
3349     }
3350     cval = (ast_value*)cexp;
3351
3352     tmp = ast_value_new(ctx, "<type[]>", TYPE_ARRAY);
3353     tmp->expression.next = (ast_expression*)var;
3354     var = tmp;
3355
3356     if (cval->expression.vtype == TYPE_INTEGER)
3357         tmp->expression.count = cval->constval.vint;
3358     else if (cval->expression.vtype == TYPE_FLOAT)
3359         tmp->expression.count = cval->constval.vfloat;
3360     else {
3361         ast_unref(cexp);
3362         ast_delete(var);
3363         parseerror(parser, "array-size must be a positive integer constant");
3364         return NULL;
3365     }
3366     ast_unref(cexp);
3367
3368     if (parser->tok != ']') {
3369         ast_delete(var);
3370         parseerror(parser, "expected ']' after array-size");
3371         return NULL;
3372     }
3373     if (!parser_next(parser)) {
3374         ast_delete(var);
3375         parseerror(parser, "error after parsing array size");
3376         return NULL;
3377     }
3378     return var;
3379 }
3380
3381 /* Parse a complete typename.
3382  * for single-variables (ie. function parameters or typedefs) storebase should be NULL
3383  * but when parsing variables separated by comma
3384  * 'storebase' should point to where the base-type should be kept.
3385  * The base type makes up every bit of type information which comes *before* the
3386  * variable name.
3387  *
3388  * The following will be parsed in its entirety:
3389  *     void() foo()
3390  * The 'basetype' in this case is 'void()'
3391  * and if there's a comma after it, say:
3392  *     void() foo(), bar
3393  * then the type-information 'void()' can be stored in 'storebase'
3394  */
3395 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef)
3396 {
3397     ast_value *var, *tmp;
3398     lex_ctx    ctx;
3399
3400     const char *name = NULL;
3401     bool        isfield  = false;
3402     bool        wasarray = false;
3403     size_t      morefields = 0;
3404
3405     ctx = parser_ctx(parser);
3406
3407     /* types may start with a dot */
3408     if (parser->tok == '.') {
3409         isfield = true;
3410         /* if we parsed a dot we need a typename now */
3411         if (!parser_next(parser)) {
3412             parseerror(parser, "expected typename for field definition");
3413             return NULL;
3414         }
3415
3416         /* Further dots are handled seperately because they won't be part of the
3417          * basetype
3418          */
3419         while (parser->tok == '.') {
3420             ++morefields;
3421             if (!parser_next(parser)) {
3422                 parseerror(parser, "expected typename for field definition");
3423                 return NULL;
3424             }
3425         }
3426     }
3427     if (parser->tok == TOKEN_IDENT)
3428         cached_typedef = parser_find_typedef(parser, parser_tokval(parser), 0);
3429     if (!cached_typedef && parser->tok != TOKEN_TYPENAME) {
3430         parseerror(parser, "expected typename");
3431         return NULL;
3432     }
3433
3434     /* generate the basic type value */
3435     if (cached_typedef) {
3436         var = ast_value_copy(cached_typedef);
3437         ast_value_set_name(var, "<type(from_def)>");
3438     } else
3439         var = ast_value_new(ctx, "<type>", parser_token(parser)->constval.t);
3440
3441     for (; morefields; --morefields) {
3442         tmp = ast_value_new(ctx, "<.type>", TYPE_FIELD);
3443         tmp->expression.next = (ast_expression*)var;
3444         var = tmp;
3445     }
3446
3447     /* do not yet turn into a field - remember:
3448      * .void() foo; is a field too
3449      * .void()() foo; is a function
3450      */
3451
3452     /* parse on */
3453     if (!parser_next(parser)) {
3454         ast_delete(var);
3455         parseerror(parser, "parse error after typename");
3456         return NULL;
3457     }
3458
3459     /* an opening paren now starts the parameter-list of a function
3460      * this is where original-QC has parameter lists.
3461      * We allow a single parameter list here.
3462      * Much like fteqcc we don't allow `float()() x`
3463      */
3464     if (parser->tok == '(') {
3465         var = parse_parameter_list(parser, var);
3466         if (!var)
3467             return NULL;
3468     }
3469
3470     /* store the base if requested */
3471     if (storebase) {
3472         *storebase = ast_value_copy(var);
3473         if (isfield) {
3474             tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
3475             tmp->expression.next = (ast_expression*)*storebase;
3476             *storebase = tmp;
3477         }
3478     }
3479
3480     /* there may be a name now */
3481     if (parser->tok == TOKEN_IDENT) {
3482         name = util_strdup(parser_tokval(parser));
3483         /* parse on */
3484         if (!parser_next(parser)) {
3485             ast_delete(var);
3486             parseerror(parser, "error after variable or field declaration");
3487             return NULL;
3488         }
3489     }
3490
3491     /* now this may be an array */
3492     if (parser->tok == '[') {
3493         wasarray = true;
3494         var = parse_arraysize(parser, var);
3495         if (!var)
3496             return NULL;
3497     }
3498
3499     /* This is the point where we can turn it into a field */
3500     if (isfield) {
3501         /* turn it into a field if desired */
3502         tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
3503         tmp->expression.next = (ast_expression*)var;
3504         var = tmp;
3505     }
3506
3507     /* now there may be function parens again */
3508     if (parser->tok == '(' && opts_standard == COMPILER_QCC)
3509         parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
3510     if (parser->tok == '(' && wasarray)
3511         parseerror(parser, "arrays as part of a return type is not supported");
3512     while (parser->tok == '(') {
3513         var = parse_parameter_list(parser, var);
3514         if (!var) {
3515             if (name)
3516                 mem_d((void*)name);
3517             ast_delete(var);
3518             return NULL;
3519         }
3520     }
3521
3522     /* finally name it */
3523     if (name) {
3524         if (!ast_value_set_name(var, name)) {
3525             ast_delete(var);
3526             parseerror(parser, "internal error: failed to set name");
3527             return NULL;
3528         }
3529         /* free the name, ast_value_set_name duplicates */
3530         mem_d((void*)name);
3531     }
3532
3533     return var;
3534 }
3535
3536 static bool parse_typedef(parser_t *parser)
3537 {
3538     ast_value      *typevar, *oldtype;
3539     ast_expression *old;
3540
3541     typevar = parse_typename(parser, NULL, NULL);
3542
3543     if (!typevar)
3544         return false;
3545
3546     if ( (old = parser_find_var(parser, typevar->name)) ) {
3547         parseerror(parser, "cannot define a type with the same name as a variable: %s\n"
3548                    " -> `%s` has been declared here: %s:%i",
3549                    typevar->name, ast_ctx(old).file, ast_ctx(old).line);
3550         ast_delete(typevar);
3551         return false;
3552     }
3553
3554     if ( (oldtype = parser_find_typedef(parser, typevar->name, vec_last(parser->_blocktypedefs))) ) {
3555         parseerror(parser, "type `%s` has already been declared here: %s:%i",
3556                    typevar->name, ast_ctx(oldtype).file, ast_ctx(oldtype).line);
3557         ast_delete(typevar);
3558         return false;
3559     }
3560
3561     vec_push(parser->_typedefs, typevar);
3562     util_htset(vec_last(parser->typedefs), typevar->name, typevar);
3563
3564     if (parser->tok != ';') {
3565         parseerror(parser, "expected semicolon after typedef");
3566         return false;
3567     }
3568     if (!parser_next(parser)) {
3569         parseerror(parser, "parse error after typedef");
3570         return false;
3571     }
3572
3573     return true;
3574 }
3575
3576 static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofields, int qualifier, ast_value *cached_typedef)
3577 {
3578     ast_value *var;
3579     ast_value *proto;
3580     ast_expression *old;
3581     bool       was_end;
3582     size_t     i;
3583
3584     ast_value *basetype = NULL;
3585     bool      retval    = true;
3586     bool      isparam   = false;
3587     bool      isvector  = false;
3588     bool      cleanvar  = true;
3589     bool      wasarray  = false;
3590
3591     ast_member *me[3];
3592
3593     /* get the first complete variable */
3594     var = parse_typename(parser, &basetype, cached_typedef);
3595     if (!var) {
3596         if (basetype)
3597             ast_delete(basetype);
3598         return false;
3599     }
3600
3601     while (true) {
3602         proto = NULL;
3603         wasarray = false;
3604
3605         /* Part 0: finish the type */
3606         if (parser->tok == '(') {
3607             if (opts_standard == COMPILER_QCC)
3608                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
3609             var = parse_parameter_list(parser, var);
3610             if (!var) {
3611                 retval = false;
3612                 goto cleanup;
3613             }
3614         }
3615         /* we only allow 1-dimensional arrays */
3616         if (parser->tok == '[') {
3617             wasarray = true;
3618             var = parse_arraysize(parser, var);
3619             if (!var) {
3620                 retval = false;
3621                 goto cleanup;
3622             }
3623         }
3624         if (parser->tok == '(' && wasarray) {
3625             parseerror(parser, "arrays as part of a return type is not supported");
3626             /* we'll still parse the type completely for now */
3627         }
3628         /* for functions returning functions */
3629         while (parser->tok == '(') {
3630             if (opts_standard == COMPILER_QCC)
3631                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
3632             var = parse_parameter_list(parser, var);
3633             if (!var) {
3634                 retval = false;
3635                 goto cleanup;
3636             }
3637         }
3638
3639         var->cvq = qualifier;
3640
3641         /* Part 1:
3642          * check for validity: (end_sys_..., multiple-definitions, prototypes, ...)
3643          * Also: if there was a prototype, `var` will be deleted and set to `proto` which
3644          * is then filled with the previous definition and the parameter-names replaced.
3645          */
3646         if (!localblock) {
3647             /* Deal with end_sys_ vars */
3648             was_end = false;
3649             if (!strcmp(var->name, "end_sys_globals")) {
3650                 parser->crc_globals = vec_size(parser->globals);
3651                 was_end = true;
3652             }
3653             else if (!strcmp(var->name, "end_sys_fields")) {
3654                 parser->crc_fields = vec_size(parser->fields);
3655                 was_end = true;
3656             }
3657             if (was_end && var->expression.vtype == TYPE_FIELD) {
3658                 if (parsewarning(parser, WARN_END_SYS_FIELDS,
3659                                  "global '%s' hint should not be a field",
3660                                  parser_tokval(parser)))
3661                 {
3662                     retval = false;
3663                     goto cleanup;
3664                 }
3665             }
3666
3667             if (!nofields && var->expression.vtype == TYPE_FIELD)
3668             {
3669                 /* deal with field declarations */
3670                 old = parser_find_field(parser, var->name);
3671                 if (old) {
3672                     if (parsewarning(parser, WARN_FIELD_REDECLARED, "field `%s` already declared here: %s:%i",
3673                                      var->name, ast_ctx(old).file, (int)ast_ctx(old).line))
3674                     {
3675                         retval = false;
3676                         goto cleanup;
3677                     }
3678                     ast_delete(var);
3679                     var = NULL;
3680                     goto skipvar;
3681                     /*
3682                     parseerror(parser, "field `%s` already declared here: %s:%i",
3683                                var->name, ast_ctx(old).file, ast_ctx(old).line);
3684                     retval = false;
3685                     goto cleanup;
3686                     */
3687                 }
3688                 if (opts_standard == COMPILER_QCC &&
3689                     (old = parser_find_global(parser, var->name)))
3690                 {
3691                     parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
3692                     parseerror(parser, "field `%s` already declared here: %s:%i",
3693                                var->name, ast_ctx(old).file, ast_ctx(old).line);
3694                     retval = false;
3695                     goto cleanup;
3696                 }
3697             }
3698             else
3699             {
3700                 /* deal with other globals */
3701                 old = parser_find_global(parser, var->name);
3702                 if (old && var->expression.vtype == TYPE_FUNCTION && old->expression.vtype == TYPE_FUNCTION)
3703                 {
3704                     /* This is a function which had a prototype */
3705                     if (!ast_istype(old, ast_value)) {
3706                         parseerror(parser, "internal error: prototype is not an ast_value");
3707                         retval = false;
3708                         goto cleanup;
3709                     }
3710                     proto = (ast_value*)old;
3711                     if (!ast_compare_type((ast_expression*)proto, (ast_expression*)var)) {
3712                         parseerror(parser, "conflicting types for `%s`, previous declaration was here: %s:%i",
3713                                    proto->name,
3714                                    ast_ctx(proto).file, ast_ctx(proto).line);
3715                         retval = false;
3716                         goto cleanup;
3717                     }
3718                     /* we need the new parameter-names */
3719                     for (i = 0; i < vec_size(proto->expression.params); ++i)
3720                         ast_value_set_name(proto->expression.params[i], var->expression.params[i]->name);
3721                     ast_delete(var);
3722                     var = proto;
3723                 }
3724                 else
3725                 {
3726                     /* other globals */
3727                     if (old) {
3728                         if (opts_standard == COMPILER_GMQCC) {
3729                             parseerror(parser, "global `%s` already declared here: %s:%i",
3730                                        var->name, ast_ctx(old).file, ast_ctx(old).line);
3731                             retval = false;
3732                             goto cleanup;
3733                         } else {
3734                             if (parsewarning(parser, WARN_DOUBLE_DECLARATION,
3735                                              "global `%s` already declared here: %s:%i",
3736                                              var->name, ast_ctx(old).file, ast_ctx(old).line))
3737                             {
3738                                 retval = false;
3739                                 goto cleanup;
3740                             }
3741                             proto = (ast_value*)old;
3742                             if (!ast_istype(old, ast_value)) {
3743                                 parseerror(parser, "internal error: not an ast_value");
3744                                 retval = false;
3745                                 proto = NULL;
3746                                 goto cleanup;
3747                             }
3748                             ast_delete(var);
3749                             var = proto;
3750                         }
3751                     }
3752                     if (opts_standard == COMPILER_QCC &&
3753                         (old = parser_find_field(parser, var->name)))
3754                     {
3755                         parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
3756                         parseerror(parser, "global `%s` already declared here: %s:%i",
3757                                    var->name, ast_ctx(old).file, ast_ctx(old).line);
3758                         retval = false;
3759                         goto cleanup;
3760                     }
3761                 }
3762             }
3763         }
3764         else /* it's not a global */
3765         {
3766             old = parser_find_local(parser, var->name, vec_size(parser->variables)-1, &isparam);
3767             if (old && !isparam) {
3768                 parseerror(parser, "local `%s` already declared here: %s:%i",
3769                            var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
3770                 retval = false;
3771                 goto cleanup;
3772             }
3773             old = parser_find_local(parser, var->name, 0, &isparam);
3774             if (old && isparam) {
3775                 if (parsewarning(parser, WARN_LOCAL_SHADOWS,
3776                                  "local `%s` is shadowing a parameter", var->name))
3777                 {
3778                     parseerror(parser, "local `%s` already declared here: %s:%i",
3779                                var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
3780                     retval = false;
3781                     goto cleanup;
3782                 }
3783                 if (opts_standard != COMPILER_GMQCC) {
3784                     ast_delete(var);
3785                     var = NULL;
3786                     goto skipvar;
3787                 }
3788             }
3789         }
3790
3791         /* Part 2:
3792          * Create the global/local, and deal with vector types.
3793          */
3794         if (!proto) {
3795             if (var->expression.vtype == TYPE_VECTOR)
3796                 isvector = true;
3797             else if (var->expression.vtype == TYPE_FIELD &&
3798                      var->expression.next->expression.vtype == TYPE_VECTOR)
3799                 isvector = true;
3800
3801             if (isvector) {
3802                 if (!create_vector_members(var, me)) {
3803                     retval = false;
3804                     goto cleanup;
3805                 }
3806             }
3807
3808             if (!localblock) {
3809                 /* deal with global variables, fields, functions */
3810                 if (!nofields && var->expression.vtype == TYPE_FIELD) {
3811                     vec_push(parser->fields, (ast_expression*)var);
3812                     util_htset(parser->htfields, var->name, var);
3813                     if (isvector) {
3814                         for (i = 0; i < 3; ++i) {
3815                             vec_push(parser->fields, (ast_expression*)me[i]);
3816                             util_htset(parser->htfields, me[i]->name, me[i]);
3817                         }
3818                     }
3819                 }
3820                 else {
3821                     vec_push(parser->globals, (ast_expression*)var);
3822                     util_htset(parser->htglobals, var->name, var);
3823                     if (isvector) {
3824                         for (i = 0; i < 3; ++i) {
3825                             vec_push(parser->globals, (ast_expression*)me[i]);
3826                             util_htset(parser->htglobals, me[i]->name, me[i]);
3827                         }
3828                     }
3829                 }
3830             } else {
3831                 vec_push(localblock->locals, var);
3832                 parser_addlocal(parser, var->name, (ast_expression*)var);
3833                 if (isvector) {
3834                     for (i = 0; i < 3; ++i) {
3835                         parser_addlocal(parser, me[i]->name, (ast_expression*)me[i]);
3836                         ast_block_collect(localblock, (ast_expression*)me[i]);
3837                     }
3838                 }
3839             }
3840
3841         }
3842         me[0] = me[1] = me[2] = NULL;
3843         cleanvar = false;
3844         /* Part 2.2
3845          * deal with arrays
3846          */
3847         if (var->expression.vtype == TYPE_ARRAY) {
3848             char name[1024];
3849             snprintf(name, sizeof(name), "%s##SET", var->name);
3850             if (!parser_create_array_setter(parser, var, name))
3851                 goto cleanup;
3852             snprintf(name, sizeof(name), "%s##GET", var->name);
3853             if (!parser_create_array_getter(parser, var, var->expression.next, name))
3854                 goto cleanup;
3855         }
3856         else if (!localblock && !nofields &&
3857                  var->expression.vtype == TYPE_FIELD &&
3858                  var->expression.next->expression.vtype == TYPE_ARRAY)
3859         {
3860             char name[1024];
3861             ast_expression *telem;
3862             ast_value      *tfield;
3863             ast_value      *array = (ast_value*)var->expression.next;
3864
3865             if (!ast_istype(var->expression.next, ast_value)) {
3866                 parseerror(parser, "internal error: field element type must be an ast_value");
3867                 goto cleanup;
3868             }
3869
3870             snprintf(name, sizeof(name), "%s##SETF", var->name);
3871             if (!parser_create_array_field_setter(parser, array, name))
3872                 goto cleanup;
3873
3874             telem = ast_type_copy(ast_ctx(var), array->expression.next);
3875             tfield = ast_value_new(ast_ctx(var), "<.type>", TYPE_FIELD);
3876             tfield->expression.next = telem;
3877             snprintf(name, sizeof(name), "%s##GETFP", var->name);
3878             if (!parser_create_array_getter(parser, array, (ast_expression*)tfield, name)) {
3879                 ast_delete(tfield);
3880                 goto cleanup;
3881             }
3882             ast_delete(tfield);
3883         }
3884
3885 skipvar:
3886         if (parser->tok == ';') {
3887             ast_delete(basetype);
3888             if (!parser_next(parser)) {
3889                 parseerror(parser, "error after variable declaration");
3890                 return false;
3891             }
3892             return true;
3893         }
3894
3895         if (parser->tok == ',')
3896             goto another;
3897
3898         if (!var || (!localblock && !nofields && basetype->expression.vtype == TYPE_FIELD)) {
3899             parseerror(parser, "missing comma or semicolon while parsing variables");
3900             break;
3901         }
3902
3903         if (localblock && opts_standard == COMPILER_QCC) {
3904             if (parsewarning(parser, WARN_LOCAL_CONSTANTS,
3905                              "initializing expression turns variable `%s` into a constant in this standard",
3906                              var->name) )
3907             {
3908                 break;
3909             }
3910         }
3911
3912         if (parser->tok != '{') {
3913             if (parser->tok != '=') {
3914                 parseerror(parser, "missing semicolon or initializer, got: `%s`", parser_tokval(parser));
3915                 break;
3916             }
3917
3918             if (!parser_next(parser)) {
3919                 parseerror(parser, "error parsing initializer");
3920                 break;
3921             }
3922         }
3923         else if (opts_standard == COMPILER_QCC) {
3924             parseerror(parser, "expected '=' before function body in this standard");
3925         }
3926
3927         if (parser->tok == '#') {
3928             ast_function *func = NULL;
3929
3930             if (localblock) {
3931                 parseerror(parser, "cannot declare builtins within functions");
3932                 break;
3933             }
3934             if (var->expression.vtype != TYPE_FUNCTION) {
3935                 parseerror(parser, "unexpected builtin number, '%s' is not a function", var->name);
3936                 break;
3937             }
3938             if (!parser_next(parser)) {
3939                 parseerror(parser, "expected builtin number");
3940                 break;
3941             }
3942             if (parser->tok != TOKEN_INTCONST) {
3943                 parseerror(parser, "builtin number must be an integer constant");
3944                 break;
3945             }
3946             if (parser_token(parser)->constval.i <= 0) {
3947                 parseerror(parser, "builtin number must be an integer greater than zero");
3948                 break;
3949             }
3950
3951             if (var->hasvalue) {
3952                 (void)!parsewarning(parser, WARN_DOUBLE_DECLARATION,
3953                                     "builtin `%s` has already been defined\n"
3954                                     " -> previous declaration here: %s:%i",
3955                                     var->name, ast_ctx(var).file, (int)ast_ctx(var).line);
3956             }
3957             else
3958             {
3959                 func = ast_function_new(ast_ctx(var), var->name, var);
3960                 if (!func) {
3961                     parseerror(parser, "failed to allocate function for `%s`", var->name);
3962                     break;
3963                 }
3964                 vec_push(parser->functions, func);
3965
3966                 func->builtin = -parser_token(parser)->constval.i;
3967             }
3968
3969             if (!parser_next(parser)) {
3970                 parseerror(parser, "expected comma or semicolon");
3971                 if (func)
3972                     ast_function_delete(func);
3973                 var->constval.vfunc = NULL;
3974                 break;
3975             }
3976         }
3977         else if (parser->tok == '{' || parser->tok == '[')
3978         {
3979             size_t i;
3980             if (localblock) {
3981                 parseerror(parser, "cannot declare functions within functions");
3982                 break;
3983             }
3984
3985             if (proto)
3986                 ast_ctx(proto) = parser_ctx(parser);
3987
3988             if (!parse_function_body(parser, var))
3989                 break;
3990             ast_delete(basetype);
3991             for (i = 0; i < vec_size(parser->gotos); ++i)
3992                 parseerror(parser, "undefined label: `%s`", parser->gotos[i]->name);
3993             vec_free(parser->gotos);
3994             vec_free(parser->labels);
3995             return true;
3996         } else {
3997             ast_expression *cexp;
3998             ast_value      *cval;
3999
4000             cexp = parse_expression_leave(parser, true);
4001             if (!cexp)
4002                 break;
4003
4004             if (!localblock) {
4005                 cval = (ast_value*)cexp;
4006                 if (!ast_istype(cval, ast_value) || !cval->hasvalue || cval->cvq != CV_CONST)
4007                     parseerror(parser, "cannot initialize a global constant variable with a non-constant expression");
4008                 else
4009                 {
4010                     if (opts_standard != COMPILER_GMQCC &&
4011                         !OPTS_FLAG(INITIALIZED_NONCONSTANTS) &&
4012                         qualifier != CV_VAR)
4013                     {
4014                         var->cvq = CV_CONST;
4015                     }
4016                     var->hasvalue = true;
4017                     if (cval->expression.vtype == TYPE_STRING)
4018                         var->constval.vstring = parser_strdup(cval->constval.vstring);
4019                     else
4020                         memcpy(&var->constval, &cval->constval, sizeof(var->constval));
4021                     ast_unref(cval);
4022                 }
4023             } else {
4024                 bool cvq;
4025                 shunt sy = { NULL, NULL };
4026                 cvq = var->cvq;
4027                 var->cvq = CV_NONE;
4028                 vec_push(sy.out, syexp(ast_ctx(var), (ast_expression*)var));
4029                 vec_push(sy.out, syexp(ast_ctx(cexp), (ast_expression*)cexp));
4030                 vec_push(sy.ops, syop(ast_ctx(var), parser->assign_op));
4031                 if (!parser_sy_pop(parser, &sy))
4032                     ast_unref(cexp);
4033                 else {
4034                     if (vec_size(sy.out) != 1 && vec_size(sy.ops) != 0)
4035                         parseerror(parser, "internal error: leaked operands");
4036                     ast_block_add_expr(localblock, (ast_expression*)sy.out[0].out);
4037                 }
4038                 vec_free(sy.out);
4039                 vec_free(sy.ops);
4040                 var->cvq = cvq;
4041             }
4042         }
4043
4044 another:
4045         if (parser->tok == ',') {
4046             if (!parser_next(parser)) {
4047                 parseerror(parser, "expected another variable");
4048                 break;
4049             }
4050
4051             if (parser->tok != TOKEN_IDENT) {
4052                 parseerror(parser, "expected another variable");
4053                 break;
4054             }
4055             var = ast_value_copy(basetype);
4056             cleanvar = true;
4057             ast_value_set_name(var, parser_tokval(parser));
4058             if (!parser_next(parser)) {
4059                 parseerror(parser, "error parsing variable declaration");
4060                 break;
4061             }
4062             continue;
4063         }
4064
4065         if (parser->tok != ';') {
4066             parseerror(parser, "missing semicolon after variables");
4067             break;
4068         }
4069
4070         if (!parser_next(parser)) {
4071             parseerror(parser, "parse error after variable declaration");
4072             break;
4073         }
4074
4075         ast_delete(basetype);
4076         return true;
4077     }
4078
4079     if (cleanvar && var)
4080         ast_delete(var);
4081     ast_delete(basetype);
4082     return false;
4083
4084 cleanup:
4085     ast_delete(basetype);
4086     if (cleanvar && var)
4087         ast_delete(var);
4088     if (me[0]) ast_member_delete(me[0]);
4089     if (me[1]) ast_member_delete(me[1]);
4090     if (me[2]) ast_member_delete(me[2]);
4091     return retval;
4092 }
4093
4094 static bool parser_global_statement(parser_t *parser)
4095 {
4096     ast_value *istype = NULL;
4097     if (parser->tok == TOKEN_IDENT)
4098         istype = parser_find_typedef(parser, parser_tokval(parser), 0);
4099
4100     if (istype || parser->tok == TOKEN_TYPENAME || parser->tok == '.')
4101     {
4102         return parse_variable(parser, NULL, false, CV_NONE, istype);
4103     }
4104     else if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "var"))
4105     {
4106         if (!strcmp(parser_tokval(parser), "var")) {
4107             if (!parser_next(parser)) {
4108                 parseerror(parser, "expected variable declaration after 'var'");
4109                 return false;
4110             }
4111             return parse_variable(parser, NULL, true, CV_VAR, NULL);
4112         }
4113     }
4114     else if (parser->tok == TOKEN_KEYWORD)
4115     {
4116         if (!strcmp(parser_tokval(parser), "const")) {
4117             if (!parser_next(parser)) {
4118                 parseerror(parser, "expected variable declaration after 'const'");
4119                 return false;
4120             }
4121             if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "var")) {
4122                 (void)!parsewarning(parser, WARN_CONST_VAR, "ignoring `var` after const qualifier");
4123                 if (!parser_next(parser)) {
4124                     parseerror(parser, "expected variable declaration after 'const var'");
4125                     return false;
4126                 }
4127             }
4128             return parse_variable(parser, NULL, true, CV_CONST, NULL);
4129         }
4130         else if (!strcmp(parser_tokval(parser), "typedef")) {
4131             if (!parser_next(parser)) {
4132                 parseerror(parser, "expected type definition after 'typedef'");
4133                 return false;
4134             }
4135             return parse_typedef(parser);
4136         }
4137         parseerror(parser, "unrecognized keyword `%s`", parser_tokval(parser));
4138         return false;
4139     }
4140     else if (parser->tok == '$')
4141     {
4142         if (!parser_next(parser)) {
4143             parseerror(parser, "parse error");
4144             return false;
4145         }
4146     }
4147     else
4148     {
4149         parseerror(parser, "unexpected token: %s", parser->lex->tok.value);
4150         return false;
4151     }
4152     return true;
4153 }
4154
4155 static uint16_t progdefs_crc_sum(uint16_t old, const char *str)
4156 {
4157     return util_crc16(old, str, strlen(str));
4158 }
4159
4160 static void progdefs_crc_file(const char *str)
4161 {
4162     /* write to progdefs.h here */
4163     (void)str;
4164 }
4165
4166 static uint16_t progdefs_crc_both(uint16_t old, const char *str)
4167 {
4168     old = progdefs_crc_sum(old, str);
4169     progdefs_crc_file(str);
4170     return old;
4171 }
4172
4173 static void generate_checksum(parser_t *parser)
4174 {
4175     uint16_t   crc = 0xFFFF;
4176     size_t     i;
4177     ast_value *value;
4178
4179         crc = progdefs_crc_both(crc, "\n/* file generated by qcc, do not modify */\n\ntypedef struct\n{");
4180         crc = progdefs_crc_sum(crc, "\tint\tpad[28];\n");
4181         /*
4182         progdefs_crc_file("\tint\tpad;\n");
4183         progdefs_crc_file("\tint\tofs_return[3];\n");
4184         progdefs_crc_file("\tint\tofs_parm0[3];\n");
4185         progdefs_crc_file("\tint\tofs_parm1[3];\n");
4186         progdefs_crc_file("\tint\tofs_parm2[3];\n");
4187         progdefs_crc_file("\tint\tofs_parm3[3];\n");
4188         progdefs_crc_file("\tint\tofs_parm4[3];\n");
4189         progdefs_crc_file("\tint\tofs_parm5[3];\n");
4190         progdefs_crc_file("\tint\tofs_parm6[3];\n");
4191         progdefs_crc_file("\tint\tofs_parm7[3];\n");
4192         */
4193         for (i = 0; i < parser->crc_globals; ++i) {
4194             if (!ast_istype(parser->globals[i], ast_value))
4195                 continue;
4196             value = (ast_value*)(parser->globals[i]);
4197             switch (value->expression.vtype) {
4198                 case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
4199                 case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
4200                 case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
4201                 case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
4202                 default:
4203                     crc = progdefs_crc_both(crc, "\tint\t");
4204                     break;
4205             }
4206             crc = progdefs_crc_both(crc, value->name);
4207             crc = progdefs_crc_both(crc, ";\n");
4208         }
4209         crc = progdefs_crc_both(crc, "} globalvars_t;\n\ntypedef struct\n{\n");
4210         for (i = 0; i < parser->crc_fields; ++i) {
4211             if (!ast_istype(parser->fields[i], ast_value))
4212                 continue;
4213             value = (ast_value*)(parser->fields[i]);
4214             switch (value->expression.next->expression.vtype) {
4215                 case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
4216                 case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
4217                 case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
4218                 case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
4219                 default:
4220                     crc = progdefs_crc_both(crc, "\tint\t");
4221                     break;
4222             }
4223             crc = progdefs_crc_both(crc, value->name);
4224             crc = progdefs_crc_both(crc, ";\n");
4225         }
4226         crc = progdefs_crc_both(crc, "} entvars_t;\n\n");
4227
4228         code_crc = crc;
4229 }
4230
4231 static parser_t *parser;
4232
4233 bool parser_init()
4234 {
4235     size_t i;
4236
4237     parser = (parser_t*)mem_a(sizeof(parser_t));
4238     if (!parser)
4239         return false;
4240
4241     memset(parser, 0, sizeof(*parser));
4242
4243     for (i = 0; i < operator_count; ++i) {
4244         if (operators[i].id == opid1('=')) {
4245             parser->assign_op = operators+i;
4246             break;
4247         }
4248     }
4249     if (!parser->assign_op) {
4250         printf("internal error: initializing parser: failed to find assign operator\n");
4251         mem_d(parser);
4252         return false;
4253     }
4254
4255     vec_push(parser->variables, parser->htfields  = util_htnew(PARSER_HT_SIZE));
4256     vec_push(parser->variables, parser->htglobals = util_htnew(PARSER_HT_SIZE));
4257     vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
4258     vec_push(parser->_blocktypedefs, 0);
4259     return true;
4260 }
4261
4262 bool parser_compile()
4263 {
4264     /* initial lexer/parser state */
4265     parser->lex->flags.noops = true;
4266
4267     if (parser_next(parser))
4268     {
4269         while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
4270         {
4271             if (!parser_global_statement(parser)) {
4272                 if (parser->tok == TOKEN_EOF)
4273                     parseerror(parser, "unexpected eof");
4274                 else if (!parser->errors)
4275                     parseerror(parser, "there have been errors, bailing out");
4276                 lex_close(parser->lex);
4277                 parser->lex = NULL;
4278                 return false;
4279             }
4280         }
4281     } else {
4282         parseerror(parser, "parse error");
4283         lex_close(parser->lex);
4284         parser->lex = NULL;
4285         return false;
4286     }
4287
4288     lex_close(parser->lex);
4289     parser->lex = NULL;
4290
4291     return !parser->errors;
4292 }
4293
4294 bool parser_compile_file(const char *filename)
4295 {
4296     parser->lex = lex_open(filename);
4297     if (!parser->lex) {
4298         con_err("failed to open file \"%s\"\n", filename);
4299         return false;
4300     }
4301     return parser_compile();
4302 }
4303
4304 bool parser_compile_string_len(const char *name, const char *str, size_t len)
4305 {
4306     parser->lex = lex_open_string(str, len, name);
4307     if (!parser->lex) {
4308         con_err("failed to create lexer for string \"%s\"\n", name);
4309         return false;
4310     }
4311     return parser_compile();
4312 }
4313
4314 bool parser_compile_string(const char *name, const char *str)
4315 {
4316     parser->lex = lex_open_string(str, strlen(str), name);
4317     if (!parser->lex) {
4318         con_err("failed to create lexer for string \"%s\"\n", name);
4319         return false;
4320     }
4321     return parser_compile();
4322 }
4323
4324 void parser_cleanup()
4325 {
4326     size_t i;
4327     for (i = 0; i < vec_size(parser->accessors); ++i) {
4328         ast_delete(parser->accessors[i]->constval.vfunc);
4329         parser->accessors[i]->constval.vfunc = NULL;
4330         ast_delete(parser->accessors[i]);
4331     }
4332     for (i = 0; i < vec_size(parser->functions); ++i) {
4333         ast_delete(parser->functions[i]);
4334     }
4335     for (i = 0; i < vec_size(parser->imm_vector); ++i) {
4336         ast_delete(parser->imm_vector[i]);
4337     }
4338     for (i = 0; i < vec_size(parser->imm_string); ++i) {
4339         ast_delete(parser->imm_string[i]);
4340     }
4341     for (i = 0; i < vec_size(parser->imm_float); ++i) {
4342         ast_delete(parser->imm_float[i]);
4343     }
4344     for (i = 0; i < vec_size(parser->fields); ++i) {
4345         ast_delete(parser->fields[i]);
4346     }
4347     for (i = 0; i < vec_size(parser->globals); ++i) {
4348         ast_delete(parser->globals[i]);
4349     }
4350     vec_free(parser->accessors);
4351     vec_free(parser->functions);
4352     vec_free(parser->imm_vector);
4353     vec_free(parser->imm_string);
4354     vec_free(parser->imm_float);
4355     vec_free(parser->globals);
4356     vec_free(parser->fields);
4357
4358     for (i = 0; i < vec_size(parser->variables); ++i)
4359         util_htdel(parser->variables[i]);
4360     vec_free(parser->variables);
4361     vec_free(parser->_blocklocals);
4362     vec_free(parser->_locals);
4363
4364     for (i = 0; i < vec_size(parser->_typedefs); ++i)
4365         ast_delete(parser->_typedefs[i]);
4366     vec_free(parser->_typedefs);
4367     for (i = 0; i < vec_size(parser->typedefs); ++i)
4368         util_htdel(parser->typedefs[i]);
4369     vec_free(parser->typedefs);
4370     vec_free(parser->_blocktypedefs);
4371
4372     vec_free(parser->_block_ctx);
4373
4374     vec_free(parser->labels);
4375     vec_free(parser->gotos);
4376
4377     mem_d(parser);
4378 }
4379
4380 bool parser_finish(const char *output)
4381 {
4382     size_t i;
4383     ir_builder *ir;
4384     bool retval = true;
4385
4386     if (!parser->errors)
4387     {
4388         ir = ir_builder_new("gmqcc_out");
4389         if (!ir) {
4390             con_out("failed to allocate builder\n");
4391             return false;
4392         }
4393
4394         for (i = 0; i < vec_size(parser->fields); ++i) {
4395             ast_value *field;
4396             bool hasvalue;
4397             if (!ast_istype(parser->fields[i], ast_value))
4398                 continue;
4399             field = (ast_value*)parser->fields[i];
4400             hasvalue = field->hasvalue;
4401             field->hasvalue = false;
4402             if (!ast_global_codegen((ast_value*)field, ir, true)) {
4403                 con_out("failed to generate field %s\n", field->name);
4404                 ir_builder_delete(ir);
4405                 return false;
4406             }
4407             if (hasvalue) {
4408                 ir_value *ifld;
4409                 ast_expression *subtype;
4410                 field->hasvalue = true;
4411                 subtype = field->expression.next;
4412                 ifld = ir_builder_create_field(ir, field->name, subtype->expression.vtype);
4413                 if (subtype->expression.vtype == TYPE_FIELD)
4414                     ifld->fieldtype = subtype->expression.next->expression.vtype;
4415                 else if (subtype->expression.vtype == TYPE_FUNCTION)
4416                     ifld->outtype = subtype->expression.next->expression.vtype;
4417                 (void)!ir_value_set_field(field->ir_v, ifld);
4418             }
4419         }
4420         for (i = 0; i < vec_size(parser->globals); ++i) {
4421             ast_value *asvalue;
4422             if (!ast_istype(parser->globals[i], ast_value))
4423                 continue;
4424             asvalue = (ast_value*)(parser->globals[i]);
4425             if (!asvalue->uses && !asvalue->hasvalue && asvalue->expression.vtype != TYPE_FUNCTION) {
4426                 if (strcmp(asvalue->name, "end_sys_globals") &&
4427                     strcmp(asvalue->name, "end_sys_fields"))
4428                 {
4429                     retval = retval && !genwarning(ast_ctx(asvalue), WARN_UNUSED_VARIABLE,
4430                                                    "unused global: `%s`", asvalue->name);
4431                 }
4432             }
4433             if (!ast_global_codegen(asvalue, ir, false)) {
4434                 con_out("failed to generate global %s\n", asvalue->name);
4435                 ir_builder_delete(ir);
4436                 return false;
4437             }
4438         }
4439         for (i = 0; i < vec_size(parser->imm_float); ++i) {
4440             if (!ast_global_codegen(parser->imm_float[i], ir, false)) {
4441                 con_out("failed to generate global %s\n", parser->imm_float[i]->name);
4442                 ir_builder_delete(ir);
4443                 return false;
4444             }
4445         }
4446         for (i = 0; i < vec_size(parser->imm_string); ++i) {
4447             if (!ast_global_codegen(parser->imm_string[i], ir, false)) {
4448                 con_out("failed to generate global %s\n", parser->imm_string[i]->name);
4449                 ir_builder_delete(ir);
4450                 return false;
4451             }
4452         }
4453         for (i = 0; i < vec_size(parser->imm_vector); ++i) {
4454             if (!ast_global_codegen(parser->imm_vector[i], ir, false)) {
4455                 con_out("failed to generate global %s\n", parser->imm_vector[i]->name);
4456                 ir_builder_delete(ir);
4457                 return false;
4458             }
4459         }
4460         for (i = 0; i < vec_size(parser->globals); ++i) {
4461             ast_value *asvalue;
4462             if (!ast_istype(parser->globals[i], ast_value))
4463                 continue;
4464             asvalue = (ast_value*)(parser->globals[i]);
4465             if (asvalue->setter) {
4466                 if (!ast_global_codegen(asvalue->setter, ir, false) ||
4467                     !ast_function_codegen(asvalue->setter->constval.vfunc, ir) ||
4468                     !ir_function_finalize(asvalue->setter->constval.vfunc->ir_func))
4469                 {
4470                     printf("failed to generate setter for %s\n", asvalue->name);
4471                     ir_builder_delete(ir);
4472                     return false;
4473                 }
4474             }
4475             if (asvalue->getter) {
4476                 if (!ast_global_codegen(asvalue->getter, ir, false) ||
4477                     !ast_function_codegen(asvalue->getter->constval.vfunc, ir) ||
4478                     !ir_function_finalize(asvalue->getter->constval.vfunc->ir_func))
4479                 {
4480                     printf("failed to generate getter for %s\n", asvalue->name);
4481                     ir_builder_delete(ir);
4482                     return false;
4483                 }
4484             }
4485         }
4486         for (i = 0; i < vec_size(parser->fields); ++i) {
4487             ast_value *asvalue;
4488             asvalue = (ast_value*)(parser->fields[i]->expression.next);
4489
4490             if (!ast_istype((ast_expression*)asvalue, ast_value))
4491                 continue;
4492             if (asvalue->expression.vtype != TYPE_ARRAY)
4493                 continue;
4494             if (asvalue->setter) {
4495                 if (!ast_global_codegen(asvalue->setter, ir, false) ||
4496                     !ast_function_codegen(asvalue->setter->constval.vfunc, ir) ||
4497                     !ir_function_finalize(asvalue->setter->constval.vfunc->ir_func))
4498                 {
4499                     printf("failed to generate setter for %s\n", asvalue->name);
4500                     ir_builder_delete(ir);
4501                     return false;
4502                 }
4503             }
4504             if (asvalue->getter) {
4505                 if (!ast_global_codegen(asvalue->getter, ir, false) ||
4506                     !ast_function_codegen(asvalue->getter->constval.vfunc, ir) ||
4507                     !ir_function_finalize(asvalue->getter->constval.vfunc->ir_func))
4508                 {
4509                     printf("failed to generate getter for %s\n", asvalue->name);
4510                     ir_builder_delete(ir);
4511                     return false;
4512                 }
4513             }
4514         }
4515         for (i = 0; i < vec_size(parser->functions); ++i) {
4516             if (!ast_function_codegen(parser->functions[i], ir)) {
4517                 con_out("failed to generate function %s\n", parser->functions[i]->name);
4518                 ir_builder_delete(ir);
4519                 return false;
4520             }
4521         }
4522         if (opts_dump)
4523             ir_builder_dump(ir, con_out);
4524         for (i = 0; i < vec_size(parser->functions); ++i) {
4525             if (!ir_function_finalize(parser->functions[i]->ir_func)) {
4526                 con_out("failed to finalize function %s\n", parser->functions[i]->name);
4527                 ir_builder_delete(ir);
4528                 return false;
4529             }
4530         }
4531
4532         if (retval) {
4533             if (opts_dumpfin)
4534                 ir_builder_dump(ir, con_out);
4535
4536             generate_checksum(parser);
4537
4538             if (!ir_builder_generate(ir, output)) {
4539                 con_out("*** failed to generate output file\n");
4540                 ir_builder_delete(ir);
4541                 return false;
4542             }
4543         }
4544
4545         ir_builder_delete(ir);
4546         return retval;
4547     }
4548
4549     con_out("*** there were compile errors\n");
4550     return false;
4551 }