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