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