]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - parser.c
call ir_function_finalize on array accessors otherwise they'll blow up stuff
[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_setter_node(parser_t *parser, ast_value *array, ast_value *index, ast_value *value, size_t from, size_t afterend)
2234 {
2235     lex_ctx ctx = ast_ctx(array);
2236
2237     if (from+1 == afterend) {
2238         // set this value
2239         ast_block       *block;
2240         ast_return      *ret;
2241         ast_array_index *subscript;
2242         int assignop = type_store_instr[value->expression.vtype];
2243
2244         if (value->expression.vtype == TYPE_FIELD && value->expression.next->expression.vtype == TYPE_VECTOR)
2245             assignop = INSTR_STORE_V;
2246
2247         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
2248         if (!subscript)
2249             return NULL;
2250
2251         ast_store *st = ast_store_new(ctx, assignop, (ast_expression*)subscript, (ast_expression*)value);
2252         if (!st) {
2253             ast_delete(subscript);
2254             return NULL;
2255         }
2256
2257         block = ast_block_new(ctx);
2258         if (!block) {
2259             ast_delete(st);
2260             return NULL;
2261         }
2262
2263         if (!ast_block_exprs_add(block, (ast_expression*)st)) {
2264             ast_delete(block);
2265             return NULL;
2266         }
2267
2268         ret = ast_return_new(ctx, NULL);
2269         if (!ret) {
2270             ast_delete(block);
2271             return NULL;
2272         }
2273
2274         if (!ast_block_exprs_add(block, (ast_expression*)ret)) {
2275             ast_delete(block);
2276             return NULL;
2277         }
2278
2279         return (ast_expression*)block;
2280     } else {
2281         ast_ifthen *ifthen;
2282         ast_expression *left, *right;
2283         ast_binary *cmp;
2284
2285         size_t diff = afterend - from;
2286         size_t middle = from + diff/2;
2287
2288         left  = array_setter_node(parser, array, index, value, from, middle);
2289         right = array_setter_node(parser, array, index, value, middle, afterend);
2290         if (!left || !right) {
2291             if (left)  ast_delete(left);
2292             if (right) ast_delete(right);
2293             return NULL;
2294         }
2295
2296         cmp = ast_binary_new(ctx, INSTR_LT,
2297                              (ast_expression*)index,
2298                              (ast_expression*)parser_const_float(parser, from + diff/2));
2299         if (!cmp) {
2300             ast_delete(left);
2301             ast_delete(right);
2302             parseerror(parser, "internal error: failed to create comparison for array setter");
2303             return NULL;
2304         }
2305
2306         ifthen = ast_ifthen_new(ctx, (ast_expression*)cmp, left, right);
2307         if (!ifthen) {
2308             ast_delete(cmp); /* will delete left and right */
2309             parseerror(parser, "internal error: failed to create conditional jump for array setter");
2310             return NULL;
2311         }
2312
2313         return (ast_expression*)ifthen;
2314     }
2315 }
2316
2317 static ast_expression *array_getter_node(parser_t *parser, ast_value *array, ast_value *index, size_t from, size_t afterend)
2318 {
2319     lex_ctx ctx = ast_ctx(array);
2320
2321     if (from+1 == afterend) {
2322         ast_return      *ret;
2323         ast_array_index *subscript;
2324
2325         subscript = ast_array_index_new(ctx, (ast_expression*)array, (ast_expression*)parser_const_float(parser, from));
2326         if (!subscript)
2327             return NULL;
2328
2329         ret = ast_return_new(ctx, (ast_expression*)subscript);
2330         if (!ret) {
2331             ast_delete(subscript);
2332             return NULL;
2333         }
2334
2335         return (ast_expression*)ret;
2336     } else {
2337         ast_ifthen *ifthen;
2338         ast_expression *left, *right;
2339         ast_binary *cmp;
2340
2341         size_t diff = afterend - from;
2342         size_t middle = from + diff/2;
2343
2344         left  = array_getter_node(parser, array, index, from, middle);
2345         right = array_getter_node(parser, array, index, middle, afterend);
2346         if (!left || !right) {
2347             if (left)  ast_delete(left);
2348             if (right) ast_delete(right);
2349             return NULL;
2350         }
2351
2352         cmp = ast_binary_new(ctx, INSTR_LT,
2353                              (ast_expression*)index,
2354                              (ast_expression*)parser_const_float(parser, from + diff/2));
2355         if (!cmp) {
2356             ast_delete(left);
2357             ast_delete(right);
2358             parseerror(parser, "internal error: failed to create comparison for array setter");
2359             return NULL;
2360         }
2361
2362         ifthen = ast_ifthen_new(ctx, (ast_expression*)cmp, left, right);
2363         if (!ifthen) {
2364             ast_delete(cmp); /* will delete left and right */
2365             parseerror(parser, "internal error: failed to create conditional jump for array setter");
2366             return NULL;
2367         }
2368
2369         return (ast_expression*)ifthen;
2370     }
2371 }
2372
2373 static bool parser_create_array_setter(parser_t *parser, ast_value *array, const char *funcname)
2374 {
2375     ast_expression *root = NULL;
2376     ast_function   *func = NULL;
2377     ast_value      *fval = NULL;
2378     ast_block      *body;
2379     ast_value      *index, *value;
2380
2381     if (!ast_istype(array->expression.next, ast_value)) {
2382         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
2383         return false;
2384     }
2385
2386     body = ast_block_new(ast_ctx(array));
2387     if (!body) {
2388         parseerror(parser, "failed to create block for array accessor");
2389         return false;
2390     }
2391
2392     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
2393     value = ast_value_copy((ast_value*)array->expression.next);
2394
2395     if (!index || !value) {
2396         ast_delete(body);
2397         if (index) ast_delete(index);
2398         if (value) ast_delete(value);
2399         parseerror(parser, "failed to create locals for array accessor");
2400         return false;
2401     }
2402
2403     root = array_setter_node(parser, array, index, value, 0, array->expression.count);
2404     if (!root) {
2405         parseerror(parser, "failed to build accessor search tree");
2406         goto cleanup;
2407     }
2408
2409     if (!ast_block_exprs_add(body, root)) {
2410         parseerror(parser, "failed to build accessor search block");
2411         goto cleanup;
2412     }
2413
2414     fval = ast_value_new(ast_ctx(array), funcname, TYPE_FUNCTION);
2415     if (!fval) {
2416         parseerror(parser, "failed to create accessor function value");
2417         goto cleanup;
2418     }
2419     fval->expression.next = (ast_expression*)ast_value_new(ast_ctx(array), "<void>", TYPE_VOID);
2420
2421     (void)!ast_value_set_name(value, "value"); /* not important */
2422     if (!ast_expression_common_params_add(&fval->expression, index)) {
2423         parseerror(parser, "failed to build array setter");
2424         goto cleanup;
2425     }
2426     if (!ast_expression_common_params_add(&fval->expression, value)) {
2427         ast_delete(index);
2428         parseerror(parser, "failed to build array setter");
2429         goto cleanup2;
2430     }
2431
2432     func = ast_function_new(ast_ctx(array), funcname, fval);
2433     if (!func) {
2434         parseerror(parser, "failed to create accessor function node");
2435         goto cleanup2;
2436     }
2437
2438     if (!ast_function_blocks_add(func, body))
2439         goto cleanup2;
2440
2441     array->setter = fval;
2442
2443     return true;
2444 cleanup:
2445     ast_delete(index);
2446     ast_delete(value);
2447 cleanup2:
2448     ast_delete(body);
2449     if (root) ast_delete(root);
2450     if (func) ast_delete(func);
2451     if (fval) ast_delete(fval);
2452     return false;
2453 }
2454
2455 static bool parser_create_array_getter(parser_t *parser, ast_value *array, const char *funcname)
2456 {
2457     ast_expression *root = NULL;
2458     ast_function   *func = NULL;
2459     ast_value      *fval = NULL;
2460     ast_block      *body;
2461     ast_value      *index;
2462
2463     if (!ast_istype(array->expression.next, ast_value)) {
2464         parseerror(parser, "internal error: array accessor needs to build an ast_value with a copy of the element type");
2465         return false;
2466     }
2467
2468     body = ast_block_new(ast_ctx(array));
2469     if (!body) {
2470         parseerror(parser, "failed to create block for array accessor");
2471         return false;
2472     }
2473
2474     index = ast_value_new(ast_ctx(array), "index", TYPE_FLOAT);
2475
2476     if (!index) {
2477         ast_delete(body);
2478         if (index) ast_delete(index);
2479         parseerror(parser, "failed to create locals for array accessor");
2480         return false;
2481     }
2482
2483     root = array_getter_node(parser, array, index, 0, array->expression.count);
2484     if (!root) {
2485         parseerror(parser, "failed to build accessor search tree");
2486         goto cleanup;
2487     }
2488
2489     if (!ast_block_exprs_add(body, root)) {
2490         parseerror(parser, "failed to build accessor search block");
2491         goto cleanup;
2492     }
2493
2494     fval = ast_value_new(ast_ctx(array), funcname, TYPE_FUNCTION);
2495     if (!fval) {
2496         parseerror(parser, "failed to create accessor function value");
2497         goto cleanup;
2498     }
2499     fval->expression.next = ast_type_copy(ast_ctx(array), array->expression.next);
2500
2501     if (!ast_expression_common_params_add(&fval->expression, index)) {
2502         parseerror(parser, "failed to build array setter");
2503         goto cleanup;
2504     }
2505
2506     func = ast_function_new(ast_ctx(array), funcname, fval);
2507     if (!func) {
2508         parseerror(parser, "failed to create accessor function node");
2509         goto cleanup2;
2510     }
2511
2512     if (!ast_function_blocks_add(func, body))
2513         goto cleanup2;
2514
2515     array->getter = fval;
2516
2517     return true;
2518 cleanup:
2519     ast_delete(index);
2520 cleanup2:
2521     ast_delete(body);
2522     if (root) ast_delete(root);
2523     if (func) ast_delete(func);
2524     if (fval) ast_delete(fval);
2525     return false;
2526 }
2527
2528 typedef struct {
2529     MEM_VECTOR_MAKE(ast_value*, p);
2530 } paramlist_t;
2531 MEM_VEC_FUNCTIONS(paramlist_t, ast_value*, p)
2532
2533 static ast_value *parse_typename(parser_t *parser, ast_value **storebase);
2534 static ast_value *parse_parameter_list(parser_t *parser, ast_value *var)
2535 {
2536     lex_ctx     ctx;
2537     size_t      i;
2538     paramlist_t params;
2539     ast_value  *param;
2540     ast_value  *fval;
2541     bool        first = true;
2542     bool        variadic = false;
2543
2544     ctx = parser_ctx(parser);
2545
2546     /* for the sake of less code we parse-in in this function */
2547     if (!parser_next(parser)) {
2548         parseerror(parser, "expected parameter list");
2549         return NULL;
2550     }
2551
2552     MEM_VECTOR_INIT(&params, p);
2553
2554     /* parse variables until we hit a closing paren */
2555     while (parser->tok != ')') {
2556         if (!first) {
2557             /* there must be commas between them */
2558             if (parser->tok != ',') {
2559                 parseerror(parser, "expected comma or end of parameter list");
2560                 goto on_error;
2561             }
2562             if (!parser_next(parser)) {
2563                 parseerror(parser, "expected parameter");
2564                 goto on_error;
2565             }
2566         }
2567         first = false;
2568
2569         if (parser->tok == TOKEN_DOTS) {
2570             /* '...' indicates a varargs function */
2571             variadic = true;
2572             if (!parser_next(parser)) {
2573                 parseerror(parser, "expected parameter");
2574                 return NULL;
2575             }
2576             if (parser->tok != ')') {
2577                 parseerror(parser, "`...` must be the last parameter of a variadic function declaration");
2578                 goto on_error;
2579             }
2580         }
2581         else
2582         {
2583             /* for anything else just parse a typename */
2584             param = parse_typename(parser, NULL);
2585             if (!param)
2586                 goto on_error;
2587             if (!paramlist_t_p_add(&params, param)) {
2588                 ast_delete(param);
2589                 goto on_error;
2590             }
2591             if (param->expression.vtype >= TYPE_VARIANT) {
2592                 char typename[1024];
2593                 ast_type_to_string((ast_expression*)param, typename, sizeof(typename));
2594                 parseerror(parser, "type not supported as part of a parameter list: %s", typename);
2595                 goto on_error;
2596             }
2597         }
2598     }
2599
2600     /* sanity check */
2601     if (params.p_count > 8)
2602         parseerror(parser, "more than 8 parameters are currently not supported");
2603
2604     /* parse-out */
2605     if (!parser_next(parser)) {
2606         parseerror(parser, "parse error after typename");
2607         goto on_error;
2608     }
2609
2610     /* now turn 'var' into a function type */
2611     fval = ast_value_new(ctx, "<type()>", TYPE_FUNCTION);
2612     fval->expression.next     = (ast_expression*)var;
2613     fval->expression.variadic = variadic;
2614     var = fval;
2615
2616     MEM_VECTOR_MOVE(&params, p, &var->expression, params);
2617
2618     return var;
2619
2620 on_error:
2621     ast_delete(var);
2622     for (i = 0; i < params.p_count; ++i)
2623         ast_delete(params.p[i]);
2624     MEM_VECTOR_CLEAR(&params, p);
2625     return NULL;
2626 }
2627
2628 static ast_value *parse_arraysize(parser_t *parser, ast_value *var)
2629 {
2630     ast_expression *cexp;
2631     ast_value      *cval, *tmp;
2632     lex_ctx ctx;
2633
2634     ctx = parser_ctx(parser);
2635
2636     if (!parser_next(parser)) {
2637         ast_delete(var);
2638         parseerror(parser, "expected array-size");
2639         return NULL;
2640     }
2641
2642     cexp = parse_expression_leave(parser, true);
2643
2644     if (!cexp || !ast_istype(cexp, ast_value)) {
2645         if (cexp)
2646             ast_unref(cexp);
2647         ast_delete(var);
2648         parseerror(parser, "expected array-size as constant positive integer");
2649         return NULL;
2650     }
2651     cval = (ast_value*)cexp;
2652
2653     tmp = ast_value_new(ctx, "<type[]>", TYPE_ARRAY);
2654     tmp->expression.next = (ast_expression*)var;
2655     var = tmp;
2656
2657     if (cval->expression.vtype == TYPE_INTEGER)
2658         tmp->expression.count = cval->constval.vint;
2659     else if (cval->expression.vtype == TYPE_FLOAT)
2660         tmp->expression.count = cval->constval.vfloat;
2661     else {
2662         ast_unref(cexp);
2663         ast_delete(var);
2664         parseerror(parser, "array-size must be a positive integer constant");
2665         return NULL;
2666     }
2667     ast_unref(cexp);
2668
2669     if (parser->tok != ']') {
2670         ast_delete(var);
2671         parseerror(parser, "expected ']' after array-size");
2672         return NULL;
2673     }
2674     if (!parser_next(parser)) {
2675         ast_delete(var);
2676         parseerror(parser, "error after parsing array size");
2677         return NULL;
2678     }
2679     return var;
2680 }
2681
2682 /* Parse a complete typename.
2683  * for single-variables (ie. function parameters or typedefs) storebase should be NULL
2684  * but when parsing variables separated by comma
2685  * 'storebase' should point to where the base-type should be kept.
2686  * The base type makes up every bit of type information which comes *before* the
2687  * variable name.
2688  *
2689  * The following will be parsed in its entirety:
2690  *     void() foo()
2691  * The 'basetype' in this case is 'void()'
2692  * and if there's a comma after it, say:
2693  *     void() foo(), bar
2694  * then the type-information 'void()' can be stored in 'storebase'
2695  */
2696 static ast_value *parse_typename(parser_t *parser, ast_value **storebase)
2697 {
2698     ast_value *var, *tmp;
2699     lex_ctx    ctx;
2700
2701     const char *name = NULL;
2702     bool        isfield  = false;
2703     bool        wasarray = false;
2704
2705     ctx = parser_ctx(parser);
2706
2707     /* types may start with a dot */
2708     if (parser->tok == '.') {
2709         isfield = true;
2710         /* if we parsed a dot we need a typename now */
2711         if (!parser_next(parser)) {
2712             parseerror(parser, "expected typename for field definition");
2713             return NULL;
2714         }
2715         if (parser->tok != TOKEN_TYPENAME) {
2716             parseerror(parser, "expected typename");
2717             return NULL;
2718         }
2719     }
2720
2721     /* generate the basic type value */
2722     var = ast_value_new(ctx, "<type>", parser_token(parser)->constval.t);
2723     /* do not yet turn into a field - remember:
2724      * .void() foo; is a field too
2725      * .void()() foo; is a function
2726      */
2727
2728     /* parse on */
2729     if (!parser_next(parser)) {
2730         ast_delete(var);
2731         parseerror(parser, "parse error after typename");
2732         return NULL;
2733     }
2734
2735     /* an opening paren now starts the parameter-list of a function
2736      * this is where original-QC has parameter lists.
2737      * We allow a single parameter list here.
2738      * Much like fteqcc we don't allow `float()() x`
2739      */
2740     if (parser->tok == '(') {
2741         var = parse_parameter_list(parser, var);
2742         if (!var)
2743             return NULL;
2744     }
2745
2746     /* store the base if requested */
2747     if (storebase) {
2748         *storebase = ast_value_copy(var);
2749         if (isfield) {
2750             tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
2751             tmp->expression.next = (ast_expression*)*storebase;
2752             *storebase = tmp;
2753         }
2754     }
2755
2756     /* there may be a name now */
2757     if (parser->tok == TOKEN_IDENT) {
2758         name = util_strdup(parser_tokval(parser));
2759         /* parse on */
2760         if (!parser_next(parser)) {
2761             ast_delete(var);
2762             parseerror(parser, "error after variable or field declaration");
2763             return NULL;
2764         }
2765     }
2766
2767     /* now this may be an array */
2768     if (parser->tok == '[') {
2769         wasarray = true;
2770         var = parse_arraysize(parser, var);
2771         if (!var)
2772             return NULL;
2773     }
2774
2775     /* This is the point where we can turn it into a field */
2776     if (isfield) {
2777         /* turn it into a field if desired */
2778         tmp = ast_value_new(ctx, "<type:f>", TYPE_FIELD);
2779         tmp->expression.next = (ast_expression*)var;
2780         var = tmp;
2781     }
2782
2783     /* now there may be function parens again */
2784     if (parser->tok == '(' && opts_standard == COMPILER_QCC)
2785         parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
2786     if (parser->tok == '(' && wasarray)
2787         parseerror(parser, "arrays as part of a return type is not supported");
2788     while (parser->tok == '(') {
2789         var = parse_parameter_list(parser, var);
2790         if (!var) {
2791             if (name)
2792                 mem_d((void*)name);
2793             ast_delete(var);
2794             return NULL;
2795         }
2796     }
2797
2798     /* finally name it */
2799     if (name) {
2800         if (!ast_value_set_name(var, name)) {
2801             ast_delete(var);
2802             parseerror(parser, "internal error: failed to set name");
2803             return NULL;
2804         }
2805         /* free the name, ast_value_set_name duplicates */
2806         mem_d((void*)name);
2807     }
2808
2809     return var;
2810 }
2811
2812 static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofields)
2813 {
2814     ast_value *var;
2815     ast_value *proto;
2816     ast_expression *old;
2817     bool       was_end;
2818     size_t     i;
2819
2820     ast_value *basetype = NULL;
2821     bool      retval    = true;
2822     bool      isparam   = false;
2823     bool      isvector  = false;
2824     bool      cleanvar  = true;
2825     bool      wasarray  = false;
2826
2827     varentry_t varent, ve[3];
2828
2829     /* get the first complete variable */
2830     var = parse_typename(parser, &basetype);
2831     if (!var) {
2832         if (basetype)
2833             ast_delete(basetype);
2834         return false;
2835     }
2836
2837     memset(&varent, 0, sizeof(varent));
2838     memset(&ve, 0, sizeof(ve));
2839
2840     while (true) {
2841         proto = NULL;
2842         wasarray = false;
2843
2844         /* Part 0: finish the type */
2845         if (parser->tok == '(') {
2846             if (opts_standard == COMPILER_QCC)
2847                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
2848             var = parse_parameter_list(parser, var);
2849             if (!var) {
2850                 retval = false;
2851                 goto cleanup;
2852             }
2853         }
2854         /* we only allow 1-dimensional arrays */
2855         if (parser->tok == '[') {
2856             wasarray = true;
2857             var = parse_arraysize(parser, var);
2858             if (!var) {
2859                 retval = false;
2860                 goto cleanup;
2861             }
2862         }
2863         if (parser->tok == '(' && wasarray) {
2864             parseerror(parser, "arrays as part of a return type is not supported");
2865             /* we'll still parse the type completely for now */
2866         }
2867         /* for functions returning functions */
2868         while (parser->tok == '(') {
2869             if (opts_standard == COMPILER_QCC)
2870                 parseerror(parser, "C-style function syntax is not allowed in -std=qcc");
2871             var = parse_parameter_list(parser, var);
2872             if (!var) {
2873                 retval = false;
2874                 goto cleanup;
2875             }
2876         }
2877
2878         /* Part 1:
2879          * check for validity: (end_sys_..., multiple-definitions, prototypes, ...)
2880          * Also: if there was a prototype, `var` will be deleted and set to `proto` which
2881          * is then filled with the previous definition and the parameter-names replaced.
2882          */
2883         if (!localblock) {
2884             /* Deal with end_sys_ vars */
2885             was_end = false;
2886             if (!strcmp(var->name, "end_sys_globals")) {
2887                 parser->crc_globals = parser->globals_count;
2888                 was_end = true;
2889             }
2890             else if (!strcmp(var->name, "end_sys_fields")) {
2891                 parser->crc_fields = parser->fields_count;
2892                 was_end = true;
2893             }
2894             if (was_end && var->expression.vtype == TYPE_FIELD) {
2895                 if (parsewarning(parser, WARN_END_SYS_FIELDS,
2896                                  "global '%s' hint should not be a field",
2897                                  parser_tokval(parser)))
2898                 {
2899                     retval = false;
2900                     goto cleanup;
2901                 }
2902             }
2903
2904             if (!nofields && var->expression.vtype == TYPE_FIELD)
2905             {
2906                 /* deal with field declarations */
2907                 old = parser_find_field(parser, var->name);
2908                 if (old) {
2909                     if (parsewarning(parser, WARN_FIELD_REDECLARED, "field `%s` already declared here: %s:%i",
2910                                      var->name, ast_ctx(old).file, (int)ast_ctx(old).line))
2911                     {
2912                         retval = false;
2913                         goto cleanup;
2914                     }
2915                     ast_delete(var);
2916                     var = NULL;
2917                     goto skipvar;
2918                     /*
2919                     parseerror(parser, "field `%s` already declared here: %s:%i",
2920                                var->name, ast_ctx(old).file, ast_ctx(old).line);
2921                     retval = false;
2922                     goto cleanup;
2923                     */
2924                 }
2925                 if (opts_standard == COMPILER_QCC &&
2926                     (old = parser_find_global(parser, var->name)))
2927                 {
2928                     parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
2929                     parseerror(parser, "field `%s` already declared here: %s:%i",
2930                                var->name, ast_ctx(old).file, ast_ctx(old).line);
2931                     retval = false;
2932                     goto cleanup;
2933                 }
2934             }
2935             else
2936             {
2937                 /* deal with other globals */
2938                 old = parser_find_global(parser, var->name);
2939                 if (old && var->expression.vtype == TYPE_FUNCTION && old->expression.vtype == TYPE_FUNCTION)
2940                 {
2941                     /* This is a function which had a prototype */
2942                     if (!ast_istype(old, ast_value)) {
2943                         parseerror(parser, "internal error: prototype is not an ast_value");
2944                         retval = false;
2945                         goto cleanup;
2946                     }
2947                     proto = (ast_value*)old;
2948                     if (!ast_compare_type((ast_expression*)proto, (ast_expression*)var)) {
2949                         parseerror(parser, "conflicting types for `%s`, previous declaration was here: %s:%i",
2950                                    proto->name,
2951                                    ast_ctx(proto).file, ast_ctx(proto).line);
2952                         retval = false;
2953                         goto cleanup;
2954                     }
2955                     /* we need the new parameter-names */
2956                     for (i = 0; i < proto->expression.params_count; ++i)
2957                         ast_value_set_name(proto->expression.params[i], var->expression.params[i]->name);
2958                     ast_delete(var);
2959                     var = proto;
2960                 }
2961                 else
2962                 {
2963                     /* other globals */
2964                     if (old) {
2965                         parseerror(parser, "global `%s` already declared here: %s:%i",
2966                                    var->name, ast_ctx(old).file, ast_ctx(old).line);
2967                         retval = false;
2968                         goto cleanup;
2969                     }
2970                     if (opts_standard == COMPILER_QCC &&
2971                         (old = parser_find_field(parser, var->name)))
2972                     {
2973                         parseerror(parser, "cannot declare a field and a global of the same name with -std=qcc");
2974                         parseerror(parser, "global `%s` already declared here: %s:%i",
2975                                    var->name, ast_ctx(old).file, ast_ctx(old).line);
2976                         retval = false;
2977                         goto cleanup;
2978                     }
2979                 }
2980             }
2981         }
2982         else /* it's not a global */
2983         {
2984             old = parser_find_local(parser, var->name, parser->blocklocal, &isparam);
2985             if (old && !isparam) {
2986                 parseerror(parser, "local `%s` already declared here: %s:%i",
2987                            var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
2988                 retval = false;
2989                 goto cleanup;
2990             }
2991             old = parser_find_local(parser, var->name, 0, &isparam);
2992             if (old && isparam) {
2993                 if (parsewarning(parser, WARN_LOCAL_SHADOWS,
2994                                  "local `%s` is shadowing a parameter", var->name))
2995                 {
2996                     parseerror(parser, "local `%s` already declared here: %s:%i",
2997                                var->name, ast_ctx(old).file, (int)ast_ctx(old).line);
2998                     retval = false;
2999                     goto cleanup;
3000                 }
3001                 if (opts_standard != COMPILER_GMQCC) {
3002                     ast_delete(var);
3003                     var = NULL;
3004                     goto skipvar;
3005                 }
3006             }
3007         }
3008
3009         /* Part 2:
3010          * Create the global/local, and deal with vector types.
3011          */
3012         if (!proto) {
3013             if (var->expression.vtype == TYPE_VECTOR)
3014                 isvector = true;
3015             else if (var->expression.vtype == TYPE_FIELD &&
3016                      var->expression.next->expression.vtype == TYPE_VECTOR)
3017                 isvector = true;
3018
3019             if (isvector) {
3020                 if (!create_vector_members(parser, var, ve)) {
3021                     retval = false;
3022                     goto cleanup;
3023                 }
3024             }
3025
3026             varent.name = util_strdup(var->name);
3027             varent.var  = (ast_expression*)var;
3028
3029             if (!localblock) {
3030                 /* deal with global variables, fields, functions */
3031                 if (!nofields && var->expression.vtype == TYPE_FIELD) {
3032                     if (!(retval = parser_t_fields_add(parser, varent)))
3033                         goto cleanup;
3034                     if (isvector) {
3035                         for (i = 0; i < 3; ++i) {
3036                             if (!(retval = parser_t_fields_add(parser, ve[i])))
3037                                 break;
3038                         }
3039                         if (!retval) {
3040                             parser->fields_count -= i+1;
3041                             goto cleanup;
3042                         }
3043                     }
3044                 }
3045                 else {
3046                     if (!(retval = parser_t_globals_add(parser, varent)))
3047                         goto cleanup;
3048                     if (isvector) {
3049                         for (i = 0; i < 3; ++i) {
3050                             if (!(retval = parser_t_globals_add(parser, ve[i])))
3051                                 break;
3052                         }
3053                         if (!retval) {
3054                             parser->globals_count -= i+1;
3055                             goto cleanup;
3056                         }
3057                     }
3058                 }
3059             } else {
3060                 if (!(retval = parser_t_locals_add(parser, varent)))
3061                     goto cleanup;
3062                 if (!(retval = ast_block_locals_add(localblock, var))) {
3063                     parser->locals_count--;
3064                     goto cleanup;
3065                 }
3066                 if (isvector) {
3067                     for (i = 0; i < 3; ++i) {
3068                         if (!(retval = parser_t_locals_add(parser, ve[i])))
3069                             break;
3070                         if (!(retval = ast_block_collect(localblock, ve[i].var)))
3071                             break;
3072                         ve[i].var = NULL; /* from here it's being collected in the block */
3073                     }
3074                     if (!retval) {
3075                         parser->locals_count -= i+1;
3076                         localblock->locals_count--;
3077                         goto cleanup;
3078                     }
3079                 }
3080             }
3081
3082             varent.name = NULL;
3083             ve[0].name = ve[1].name = ve[2].name = NULL;
3084             ve[0].var  = ve[1].var  = ve[2].var  = NULL;
3085             cleanvar = false;
3086         }
3087         /* Part 2.2
3088          * deal with arrays
3089          */
3090         if (var->expression.vtype == TYPE_ARRAY) {
3091             char          name[1024];
3092             snprintf(name, sizeof(name), "%s::SET", var->name);
3093             if (!parser_create_array_setter(parser, var, name))
3094                 goto cleanup;
3095             snprintf(name, sizeof(name), "%s::GET", var->name);
3096             if (!parser_create_array_getter(parser, var, name))
3097                 goto cleanup;
3098         }
3099
3100 skipvar:
3101         if (parser->tok == ';') {
3102             ast_delete(basetype);
3103             if (!parser_next(parser)) {
3104                 parseerror(parser, "error after variable declaration");
3105                 return false;
3106             }
3107             return true;
3108         }
3109
3110         if (parser->tok == ',')
3111             goto another;
3112
3113         if (!var || (!localblock && !nofields && basetype->expression.vtype == TYPE_FIELD)) {
3114             parseerror(parser, "missing comma or semicolon while parsing variables");
3115             break;
3116         }
3117
3118         if (localblock && opts_standard == COMPILER_QCC) {
3119             if (parsewarning(parser, WARN_LOCAL_CONSTANTS,
3120                              "initializing expression turns variable `%s` into a constant in this standard",
3121                              var->name) )
3122             {
3123                 break;
3124             }
3125         }
3126
3127         if (parser->tok != '{') {
3128             if (parser->tok != '=') {
3129                 parseerror(parser, "missing semicolon or initializer");
3130                 break;
3131             }
3132
3133             if (!parser_next(parser)) {
3134                 parseerror(parser, "error parsing initializer");
3135                 break;
3136             }
3137         }
3138         else if (opts_standard == COMPILER_QCC) {
3139             parseerror(parser, "expected '=' before function body in this standard");
3140         }
3141
3142         if (parser->tok == '#') {
3143             ast_function *func;
3144
3145             if (localblock) {
3146                 parseerror(parser, "cannot declare builtins within functions");
3147                 break;
3148             }
3149             if (var->expression.vtype != TYPE_FUNCTION) {
3150                 parseerror(parser, "unexpected builtin number, '%s' is not a function", var->name);
3151                 break;
3152             }
3153             if (!parser_next(parser)) {
3154                 parseerror(parser, "expected builtin number");
3155                 break;
3156             }
3157             if (parser->tok != TOKEN_INTCONST) {
3158                 parseerror(parser, "builtin number must be an integer constant");
3159                 break;
3160             }
3161             if (parser_token(parser)->constval.i <= 0) {
3162                 parseerror(parser, "builtin number must be an integer greater than zero");
3163                 break;
3164             }
3165
3166             func = ast_function_new(ast_ctx(var), var->name, var);
3167             if (!func) {
3168                 parseerror(parser, "failed to allocate function for `%s`", var->name);
3169                 break;
3170             }
3171             if (!parser_t_functions_add(parser, func)) {
3172                 parseerror(parser, "failed to allocate slot for function `%s`", var->name);
3173                 ast_function_delete(func);
3174                 var->constval.vfunc = NULL;
3175                 break;
3176             }
3177
3178             func->builtin = -parser_token(parser)->constval.i;
3179
3180             if (!parser_next(parser)) {
3181                 parseerror(parser, "expected comma or semicolon");
3182                 ast_function_delete(func);
3183                 var->constval.vfunc = NULL;
3184                 break;
3185             }
3186         }
3187         else if (parser->tok == '{' || parser->tok == '[')
3188         {
3189             if (localblock) {
3190                 parseerror(parser, "cannot declare functions within functions");
3191                 break;
3192             }
3193
3194             if (!parse_function_body(parser, var))
3195                 break;
3196             ast_delete(basetype);
3197             return true;
3198         } else {
3199             ast_expression *cexp;
3200             ast_value      *cval;
3201
3202             cexp = parse_expression_leave(parser, true);
3203             if (!cexp)
3204                 break;
3205
3206             if (!localblock) {
3207                 cval = (ast_value*)cexp;
3208                 if (!ast_istype(cval, ast_value) || !cval->isconst)
3209                     parseerror(parser, "cannot initialize a global constant variable with a non-constant expression");
3210                 else
3211                 {
3212                     var->isconst = true;
3213                     if (cval->expression.vtype == TYPE_STRING)
3214                         var->constval.vstring = parser_strdup(cval->constval.vstring);
3215                     else
3216                         memcpy(&var->constval, &cval->constval, sizeof(var->constval));
3217                     ast_unref(cval);
3218                 }
3219             } else {
3220                 shunt sy;
3221                 MEM_VECTOR_INIT(&sy, out);
3222                 MEM_VECTOR_INIT(&sy, ops);
3223                 if (!shunt_out_add(&sy, syexp(ast_ctx(var), (ast_expression*)var)) ||
3224                     !shunt_out_add(&sy, syexp(ast_ctx(cexp), (ast_expression*)cexp)) ||
3225                     !shunt_ops_add(&sy, syop(ast_ctx(var), parser->assign_op)))
3226                 {
3227                     parseerror(parser, "internal error: failed to prepare initializer");
3228                     ast_unref(cexp);
3229                 }
3230                 else if (!parser_sy_pop(parser, &sy))
3231                     ast_unref(cexp);
3232                 else {
3233                     if (sy.out_count != 1 && sy.ops_count != 0)
3234                         parseerror(parser, "internal error: leaked operands");
3235                     else if (!ast_block_exprs_add(localblock, (ast_expression*)sy.out[0].out)) {
3236                         parseerror(parser, "failed to create intializing expression");
3237                         ast_unref(sy.out[0].out);
3238                         ast_unref(cexp);
3239                     }
3240                 }
3241                 MEM_VECTOR_CLEAR(&sy, out);
3242                 MEM_VECTOR_CLEAR(&sy, ops);
3243             }
3244         }
3245
3246 another:
3247         if (parser->tok == ',') {
3248             if (!parser_next(parser)) {
3249                 parseerror(parser, "expected another variable");
3250                 break;
3251             }
3252
3253             if (parser->tok != TOKEN_IDENT) {
3254                 parseerror(parser, "expected another variable");
3255                 break;
3256             }
3257             var = ast_value_copy(basetype);
3258             cleanvar = true;
3259             ast_value_set_name(var, parser_tokval(parser));
3260             if (!parser_next(parser)) {
3261                 parseerror(parser, "error parsing variable declaration");
3262                 break;
3263             }
3264             continue;
3265         }
3266
3267         if (parser->tok != ';') {
3268             parseerror(parser, "missing semicolon after variables");
3269             break;
3270         }
3271
3272         if (!parser_next(parser)) {
3273             parseerror(parser, "parse error after variable declaration");
3274             break;
3275         }
3276
3277         ast_delete(basetype);
3278         return true;
3279     }
3280
3281     if (cleanvar && var)
3282         ast_delete(var);
3283     ast_delete(basetype);
3284     return false;
3285
3286 cleanup:
3287     ast_delete(basetype);
3288     if (cleanvar && var)
3289         ast_delete(var);
3290     if (varent.name) mem_d(varent.name);
3291     if (ve[0].name)  mem_d(ve[0].name);
3292     if (ve[1].name)  mem_d(ve[1].name);
3293     if (ve[2].name)  mem_d(ve[2].name);
3294     if (ve[0].var)   mem_d(ve[0].var);
3295     if (ve[1].var)   mem_d(ve[1].var);
3296     if (ve[2].var)   mem_d(ve[2].var);
3297     return retval;
3298 }
3299
3300 static bool parser_global_statement(parser_t *parser)
3301 {
3302     if (parser->tok == TOKEN_TYPENAME || parser->tok == '.')
3303     {
3304         return parse_variable(parser, NULL, false);
3305     }
3306     else if (parser->tok == TOKEN_KEYWORD)
3307     {
3308         /* handle 'var' and 'const' */
3309         if (!strcmp(parser_tokval(parser), "var")) {
3310             if (!parser_next(parser)) {
3311                 parseerror(parser, "expected variable declaration after 'var'");
3312                 return false;
3313             }
3314             return parse_variable(parser, NULL, true);
3315         }
3316         return false;
3317     }
3318     else if (parser->tok == '$')
3319     {
3320         if (!parser_next(parser)) {
3321             parseerror(parser, "parse error");
3322             return false;
3323         }
3324     }
3325     else
3326     {
3327         parseerror(parser, "unexpected token: %s", parser->lex->tok.value);
3328         return false;
3329     }
3330     return true;
3331 }
3332
3333 static parser_t *parser;
3334
3335 bool parser_init()
3336 {
3337     size_t i;
3338     parser = (parser_t*)mem_a(sizeof(parser_t));
3339     if (!parser)
3340         return false;
3341
3342     memset(parser, 0, sizeof(*parser));
3343
3344     for (i = 0; i < operator_count; ++i) {
3345         if (operators[i].id == opid1('=')) {
3346             parser->assign_op = operators+i;
3347             break;
3348         }
3349     }
3350     if (!parser->assign_op) {
3351         printf("internal error: initializing parser: failed to find assign operator\n");
3352         mem_d(parser);
3353         return false;
3354     }
3355     return true;
3356 }
3357
3358 bool parser_compile(const char *filename)
3359 {
3360     parser->lex = lex_open(filename);
3361     if (!parser->lex) {
3362         printf("failed to open file \"%s\"\n", filename);
3363         return false;
3364     }
3365
3366     /* initial lexer/parser state */
3367     parser->lex->flags.noops = true;
3368
3369     if (parser_next(parser))
3370     {
3371         while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
3372         {
3373             if (!parser_global_statement(parser)) {
3374                 if (parser->tok == TOKEN_EOF)
3375                     parseerror(parser, "unexpected eof");
3376                 else if (!parser->errors)
3377                     parseerror(parser, "there have been errors, bailing out");
3378                 lex_close(parser->lex);
3379                 parser->lex = NULL;
3380                 return false;
3381             }
3382         }
3383     } else {
3384         parseerror(parser, "parse error");
3385         lex_close(parser->lex);
3386         parser->lex = NULL;
3387         return false;
3388     }
3389
3390     lex_close(parser->lex);
3391     parser->lex = NULL;
3392
3393     return !parser->errors;
3394 }
3395
3396 void parser_cleanup()
3397 {
3398     size_t i;
3399     for (i = 0; i < parser->functions_count; ++i) {
3400         ast_delete(parser->functions[i]);
3401     }
3402     for (i = 0; i < parser->imm_vector_count; ++i) {
3403         ast_delete(parser->imm_vector[i]);
3404     }
3405     for (i = 0; i < parser->imm_string_count; ++i) {
3406         ast_delete(parser->imm_string[i]);
3407     }
3408     for (i = 0; i < parser->imm_float_count; ++i) {
3409         ast_delete(parser->imm_float[i]);
3410     }
3411     for (i = 0; i < parser->fields_count; ++i) {
3412         ast_delete(parser->fields[i].var);
3413         mem_d(parser->fields[i].name);
3414     }
3415     for (i = 0; i < parser->globals_count; ++i) {
3416         ast_delete(parser->globals[i].var);
3417         mem_d(parser->globals[i].name);
3418     }
3419     MEM_VECTOR_CLEAR(parser, functions);
3420     MEM_VECTOR_CLEAR(parser, imm_vector);
3421     MEM_VECTOR_CLEAR(parser, imm_string);
3422     MEM_VECTOR_CLEAR(parser, imm_float);
3423     MEM_VECTOR_CLEAR(parser, globals);
3424     MEM_VECTOR_CLEAR(parser, fields);
3425     MEM_VECTOR_CLEAR(parser, locals);
3426
3427     mem_d(parser);
3428 }
3429
3430 static uint16_t progdefs_crc_sum(uint16_t old, const char *str)
3431 {
3432     return util_crc16(old, str, strlen(str));
3433 }
3434
3435 static void progdefs_crc_file(const char *str)
3436 {
3437     /* write to progdefs.h here */
3438 }
3439
3440 static uint16_t progdefs_crc_both(uint16_t old, const char *str)
3441 {
3442     old = progdefs_crc_sum(old, str);
3443     progdefs_crc_file(str);
3444     return old;
3445 }
3446
3447 static void generate_checksum(parser_t *parser)
3448 {
3449     uint16_t crc = 0xFFFF;
3450     size_t i;
3451
3452         crc = progdefs_crc_both(crc, "\n/* file generated by qcc, do not modify */\n\ntypedef struct\n{");
3453         crc = progdefs_crc_sum(crc, "\tint\tpad[28];\n");
3454         /*
3455         progdefs_crc_file("\tint\tpad;\n");
3456         progdefs_crc_file("\tint\tofs_return[3];\n");
3457         progdefs_crc_file("\tint\tofs_parm0[3];\n");
3458         progdefs_crc_file("\tint\tofs_parm1[3];\n");
3459         progdefs_crc_file("\tint\tofs_parm2[3];\n");
3460         progdefs_crc_file("\tint\tofs_parm3[3];\n");
3461         progdefs_crc_file("\tint\tofs_parm4[3];\n");
3462         progdefs_crc_file("\tint\tofs_parm5[3];\n");
3463         progdefs_crc_file("\tint\tofs_parm6[3];\n");
3464         progdefs_crc_file("\tint\tofs_parm7[3];\n");
3465         */
3466         for (i = 0; i < parser->crc_globals; ++i) {
3467             if (!ast_istype(parser->globals[i].var, ast_value))
3468                 continue;
3469             switch (parser->globals[i].var->expression.vtype) {
3470                 case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
3471                 case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
3472                 case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
3473                 case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
3474                 default:
3475                     crc = progdefs_crc_both(crc, "\tint\t");
3476                     break;
3477             }
3478             crc = progdefs_crc_both(crc, parser->globals[i].name);
3479             crc = progdefs_crc_both(crc, ";\n");
3480         }
3481         crc = progdefs_crc_both(crc, "} globalvars_t;\n\ntypedef struct\n{\n");
3482         for (i = 0; i < parser->crc_fields; ++i) {
3483             if (!ast_istype(parser->fields[i].var, ast_value))
3484                 continue;
3485             switch (parser->fields[i].var->expression.next->expression.vtype) {
3486                 case TYPE_FLOAT:    crc = progdefs_crc_both(crc, "\tfloat\t"); break;
3487                 case TYPE_VECTOR:   crc = progdefs_crc_both(crc, "\tvec3_t\t"); break;
3488                 case TYPE_STRING:   crc = progdefs_crc_both(crc, "\tstring_t\t"); break;
3489                 case TYPE_FUNCTION: crc = progdefs_crc_both(crc, "\tfunc_t\t"); break;
3490                 default:
3491                     crc = progdefs_crc_both(crc, "\tint\t");
3492                     break;
3493             }
3494             crc = progdefs_crc_both(crc, parser->fields[i].name);
3495             crc = progdefs_crc_both(crc, ";\n");
3496         }
3497         crc = progdefs_crc_both(crc, "} entvars_t;\n\n");
3498
3499         code_crc = crc;
3500 }
3501
3502 bool parser_finish(const char *output)
3503 {
3504     size_t i;
3505     ir_builder *ir;
3506     bool retval = true;
3507
3508     if (!parser->errors)
3509     {
3510         ir = ir_builder_new("gmqcc_out");
3511         if (!ir) {
3512             printf("failed to allocate builder\n");
3513             return false;
3514         }
3515
3516         for (i = 0; i < parser->fields_count; ++i) {
3517             ast_value *field;
3518             bool isconst;
3519             if (!ast_istype(parser->fields[i].var, ast_value))
3520                 continue;
3521             field = (ast_value*)parser->fields[i].var;
3522             isconst = field->isconst;
3523             field->isconst = false;
3524             if (!ast_global_codegen((ast_value*)field, ir, true)) {
3525                 printf("failed to generate field %s\n", field->name);
3526                 ir_builder_delete(ir);
3527                 return false;
3528             }
3529             if (isconst) {
3530                 ir_value *ifld;
3531                 ast_expression *subtype;
3532                 field->isconst = true;
3533                 subtype = field->expression.next;
3534                 ifld = ir_builder_create_field(ir, field->name, subtype->expression.vtype);
3535                 if (subtype->expression.vtype == TYPE_FIELD)
3536                     ifld->fieldtype = subtype->expression.next->expression.vtype;
3537                 else if (subtype->expression.vtype == TYPE_FUNCTION)
3538                     ifld->outtype = subtype->expression.next->expression.vtype;
3539                 (void)!ir_value_set_field(field->ir_v, ifld);
3540             }
3541         }
3542         for (i = 0; i < parser->globals_count; ++i) {
3543             ast_value *asvalue;
3544             if (!ast_istype(parser->globals[i].var, ast_value))
3545                 continue;
3546             asvalue = (ast_value*)(parser->globals[i].var);
3547             if (!asvalue->uses && !asvalue->isconst && asvalue->expression.vtype != TYPE_FUNCTION) {
3548                 if (strcmp(asvalue->name, "end_sys_globals") &&
3549                     strcmp(asvalue->name, "end_sys_fields"))
3550                 {
3551                     retval = retval && !genwarning(ast_ctx(asvalue), WARN_UNUSED_VARIABLE,
3552                                                    "unused global: `%s`", asvalue->name);
3553                 }
3554             }
3555             if (!ast_global_codegen(asvalue, ir, false)) {
3556                 printf("failed to generate global %s\n", parser->globals[i].name);
3557                 ir_builder_delete(ir);
3558                 return false;
3559             }
3560         }
3561         for (i = 0; i < parser->imm_float_count; ++i) {
3562             if (!ast_global_codegen(parser->imm_float[i], ir, false)) {
3563                 printf("failed to generate global %s\n", parser->imm_float[i]->name);
3564                 ir_builder_delete(ir);
3565                 return false;
3566             }
3567         }
3568         for (i = 0; i < parser->imm_string_count; ++i) {
3569             if (!ast_global_codegen(parser->imm_string[i], ir, false)) {
3570                 printf("failed to generate global %s\n", parser->imm_string[i]->name);
3571                 ir_builder_delete(ir);
3572                 return false;
3573             }
3574         }
3575         for (i = 0; i < parser->imm_vector_count; ++i) {
3576             if (!ast_global_codegen(parser->imm_vector[i], ir, false)) {
3577                 printf("failed to generate global %s\n", parser->imm_vector[i]->name);
3578                 ir_builder_delete(ir);
3579                 return false;
3580             }
3581         }
3582         for (i = 0; i < parser->globals_count; ++i) {
3583             ast_value *asvalue;
3584             if (!ast_istype(parser->globals[i].var, ast_value))
3585                 continue;
3586             asvalue = (ast_value*)(parser->globals[i].var);
3587             if (asvalue->setter) {
3588                 if (!ast_global_codegen(asvalue->setter, ir, false) ||
3589                     !ast_function_codegen(asvalue->setter->constval.vfunc, ir) ||
3590                     !ir_function_finalize(asvalue->setter->constval.vfunc->ir_func))
3591                 {
3592                     printf("failed to generate setter for %s\n", parser->globals[i].name);
3593                     ir_builder_delete(ir);
3594                     return false;
3595                 }
3596             }
3597             if (asvalue->getter) {
3598                 if (!ast_global_codegen(asvalue->getter, ir, false) ||
3599                     !ast_function_codegen(asvalue->getter->constval.vfunc, ir) ||
3600                     !ir_function_finalize(asvalue->getter->constval.vfunc->ir_func))
3601                 {
3602                     printf("failed to generate getter for %s\n", parser->globals[i].name);
3603                     ir_builder_delete(ir);
3604                     return false;
3605                 }
3606             }
3607         }
3608         for (i = 0; i < parser->functions_count; ++i) {
3609             if (!ast_function_codegen(parser->functions[i], ir)) {
3610                 printf("failed to generate function %s\n", parser->functions[i]->name);
3611                 ir_builder_delete(ir);
3612                 return false;
3613             }
3614             if (!ir_function_finalize(parser->functions[i]->ir_func)) {
3615                 printf("failed to finalize function %s\n", parser->functions[i]->name);
3616                 ir_builder_delete(ir);
3617                 return false;
3618             }
3619         }
3620
3621         if (retval) {
3622             if (opts_dump)
3623                 ir_builder_dump(ir, printf);
3624
3625             generate_checksum(parser);
3626
3627             if (!ir_builder_generate(ir, output)) {
3628                 printf("*** failed to generate output file\n");
3629                 ir_builder_delete(ir);
3630                 return false;
3631             }
3632         }
3633
3634         ir_builder_delete(ir);
3635         return retval;
3636     }
3637
3638     printf("*** there were compile errors\n");
3639     return false;
3640 }