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