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