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