]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ir.c
code_alloc_field to allocate entityfield data, ir now has ir_builder_create_field...
[xonotic/gmqcc.git] / ir.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 <stdlib.h>
24 #include <string.h>
25 #include "gmqcc.h"
26 #include "ir.h"
27
28 /***********************************************************************
29  * Type sizes used at multiple points in the IR codegen
30  */
31
32 size_t type_sizeof[TYPE_COUNT] = {
33     1, /* TYPE_VOID     */
34     1, /* TYPE_STRING   */
35     1, /* TYPE_FLOAT    */
36     3, /* TYPE_VECTOR   */
37     1, /* TYPE_ENTITY   */
38     1, /* TYPE_FIELD    */
39     1, /* TYPE_FUNCTION */
40     1, /* TYPE_POINTER  */
41 #if 0
42     1, /* TYPE_INTEGER  */
43 #endif
44     3, /* TYPE_VARIANT  */
45 };
46
47 uint16_t type_store_instr[TYPE_COUNT] = {
48     INSTR_STORE_F, /* should use I when having integer support */
49     INSTR_STORE_S,
50     INSTR_STORE_F,
51     INSTR_STORE_V,
52     INSTR_STORE_ENT,
53     INSTR_STORE_FLD,
54     INSTR_STORE_FNC,
55     INSTR_STORE_ENT, /* should use I */
56 #if 0
57     INSTR_STORE_ENT, /* integer type */
58 #endif
59     INSTR_STORE_V, /* variant, should never be accessed */
60 };
61
62 uint16_t type_storep_instr[TYPE_COUNT] = {
63     INSTR_STOREP_F, /* should use I when having integer support */
64     INSTR_STOREP_S,
65     INSTR_STOREP_F,
66     INSTR_STOREP_V,
67     INSTR_STOREP_ENT,
68     INSTR_STOREP_FLD,
69     INSTR_STOREP_FNC,
70     INSTR_STOREP_ENT, /* should use I */
71 #if 0
72     INSTR_STOREP_ENT, /* integer type */
73 #endif
74     INSTR_STOREP_V, /* variant, should never be accessed */
75 };
76
77 MEM_VEC_FUNCTIONS(ir_value_vector, ir_value*, v)
78
79 /***********************************************************************
80  *IR Builder
81  */
82
83 ir_builder* ir_builder_new(const char *modulename)
84 {
85     ir_builder* self;
86
87     self = (ir_builder*)mem_a(sizeof(*self));
88     if (!self)
89         return NULL;
90
91     MEM_VECTOR_INIT(self, functions);
92     MEM_VECTOR_INIT(self, globals);
93     MEM_VECTOR_INIT(self, fields);
94     self->name = NULL;
95     if (!ir_builder_set_name(self, modulename)) {
96         mem_d(self);
97         return NULL;
98     }
99
100     /* globals which always exist */
101
102     /* for now we give it a vector size */
103     ir_builder_create_global(self, "OFS_RETURN", TYPE_VARIANT);
104
105     return self;
106 }
107
108 MEM_VEC_FUNCTIONS(ir_builder, ir_value*, globals)
109 MEM_VEC_FUNCTIONS(ir_builder, ir_value*, fields)
110 MEM_VEC_FUNCTIONS(ir_builder, ir_function*, functions)
111
112 void ir_builder_delete(ir_builder* self)
113 {
114     size_t i;
115     mem_d((void*)self->name);
116     for (i = 0; i != self->functions_count; ++i) {
117         ir_function_delete(self->functions[i]);
118     }
119     MEM_VECTOR_CLEAR(self, functions);
120     for (i = 0; i != self->globals_count; ++i) {
121         ir_value_delete(self->globals[i]);
122     }
123     MEM_VECTOR_CLEAR(self, fields);
124     for (i = 0; i != self->fields_count; ++i) {
125         ir_value_delete(self->fields[i]);
126     }
127     MEM_VECTOR_CLEAR(self, fields);
128     mem_d(self);
129 }
130
131 bool ir_builder_set_name(ir_builder *self, const char *name)
132 {
133     if (self->name)
134         mem_d((void*)self->name);
135     self->name = util_strdup(name);
136     return !!self->name;
137 }
138
139 ir_function* ir_builder_get_function(ir_builder *self, const char *name)
140 {
141     size_t i;
142     for (i = 0; i < self->functions_count; ++i) {
143         if (!strcmp(name, self->functions[i]->name))
144             return self->functions[i];
145     }
146     return NULL;
147 }
148
149 ir_function* ir_builder_create_function(ir_builder *self, const char *name, int outtype)
150 {
151     ir_function *fn = ir_builder_get_function(self, name);
152     if (fn) {
153         return NULL;
154     }
155
156     fn = ir_function_new(self, outtype);
157     if (!ir_function_set_name(fn, name) ||
158         !ir_builder_functions_add(self, fn) )
159     {
160         ir_function_delete(fn);
161         return NULL;
162     }
163
164     fn->value = ir_builder_create_global(self, fn->name, TYPE_FUNCTION);
165     if (!fn->value) {
166         ir_function_delete(fn);
167         return NULL;
168     }
169
170     fn->value->isconst = true;
171     fn->value->outtype = outtype;
172     fn->value->constval.vfunc = fn;
173     fn->value->context = fn->context;
174
175     return fn;
176 }
177
178 ir_value* ir_builder_get_global(ir_builder *self, const char *name)
179 {
180     size_t i;
181     for (i = 0; i < self->globals_count; ++i) {
182         if (!strcmp(self->globals[i]->name, name))
183             return self->globals[i];
184     }
185     return NULL;
186 }
187
188 ir_value* ir_builder_create_global(ir_builder *self, const char *name, int vtype)
189 {
190     ir_value *ve = ir_builder_get_global(self, name);
191     if (ve) {
192         return NULL;
193     }
194
195     ve = ir_value_var(name, store_global, vtype);
196     if (!ir_builder_globals_add(self, ve)) {
197         ir_value_delete(ve);
198         return NULL;
199     }
200     return ve;
201 }
202
203 ir_value* ir_builder_get_field(ir_builder *self, const char *name)
204 {
205     size_t i;
206     for (i = 0; i < self->fields_count; ++i) {
207         if (!strcmp(self->fields[i]->name, name))
208             return self->fields[i];
209     }
210     return NULL;
211 }
212
213
214 ir_value* ir_builder_create_field(ir_builder *self, const char *name, int vtype)
215 {
216     ir_value *ve = ir_builder_get_field(self, name);
217     if (ve) {
218         return NULL;
219     }
220
221     ve = ir_value_var(name, store_global, TYPE_FIELD);
222     ve->fieldtype = vtype;
223     if (!ir_builder_fields_add(self, ve)) {
224         ir_value_delete(ve);
225         return NULL;
226     }
227     return ve;
228 }
229
230 /***********************************************************************
231  *IR Function
232  */
233
234 bool ir_function_naive_phi(ir_function*);
235 void ir_function_enumerate(ir_function*);
236 bool ir_function_calculate_liferanges(ir_function*);
237 bool ir_function_allocate_locals(ir_function*);
238
239 ir_function* ir_function_new(ir_builder* owner, int outtype)
240 {
241     ir_function *self;
242     self = (ir_function*)mem_a(sizeof(*self));
243
244     if (!self)
245         return NULL;
246
247     self->name = NULL;
248     if (!ir_function_set_name(self, "<@unnamed>")) {
249         mem_d(self);
250         return NULL;
251     }
252     self->owner = owner;
253     self->context.file = "<@no context>";
254     self->context.line = 0;
255     self->outtype = outtype;
256     self->value = NULL;
257     self->builtin = 0;
258     MEM_VECTOR_INIT(self, params);
259     MEM_VECTOR_INIT(self, blocks);
260     MEM_VECTOR_INIT(self, values);
261     MEM_VECTOR_INIT(self, locals);
262
263     self->run_id = 0;
264     return self;
265 }
266 MEM_VEC_FUNCTIONS(ir_function, ir_value*, values)
267 MEM_VEC_FUNCTIONS(ir_function, ir_block*, blocks)
268 MEM_VEC_FUNCTIONS(ir_function, ir_value*, locals)
269 MEM_VEC_FUNCTIONS(ir_function, int,       params)
270
271 bool ir_function_set_name(ir_function *self, const char *name)
272 {
273     if (self->name)
274         mem_d((void*)self->name);
275     self->name = util_strdup(name);
276     return !!self->name;
277 }
278
279 void ir_function_delete(ir_function *self)
280 {
281     size_t i;
282     mem_d((void*)self->name);
283
284     for (i = 0; i != self->blocks_count; ++i)
285         ir_block_delete(self->blocks[i]);
286     MEM_VECTOR_CLEAR(self, blocks);
287
288     MEM_VECTOR_CLEAR(self, params);
289
290     for (i = 0; i != self->values_count; ++i)
291         ir_value_delete(self->values[i]);
292     MEM_VECTOR_CLEAR(self, values);
293
294     for (i = 0; i != self->locals_count; ++i)
295         ir_value_delete(self->locals[i]);
296     MEM_VECTOR_CLEAR(self, locals);
297
298     /* self->value is deleted by the builder */
299
300     mem_d(self);
301 }
302
303 bool GMQCC_WARN ir_function_collect_value(ir_function *self, ir_value *v)
304 {
305     return ir_function_values_add(self, v);
306 }
307
308 ir_block* ir_function_create_block(ir_function *self, const char *label)
309 {
310     ir_block* bn = ir_block_new(self, label);
311     memcpy(&bn->context, &self->context, sizeof(self->context));
312     if (!ir_function_blocks_add(self, bn)) {
313         ir_block_delete(bn);
314         return NULL;
315     }
316     return bn;
317 }
318
319 bool ir_function_finalize(ir_function *self)
320 {
321     if (self->builtin)
322         return true;
323
324     if (!ir_function_naive_phi(self))
325         return false;
326
327     ir_function_enumerate(self);
328
329     if (!ir_function_calculate_liferanges(self))
330         return false;
331
332     if (!ir_function_allocate_locals(self))
333         return false;
334     return true;
335 }
336
337 ir_value* ir_function_get_local(ir_function *self, const char *name)
338 {
339     size_t i;
340     for (i = 0; i < self->locals_count; ++i) {
341         if (!strcmp(self->locals[i]->name, name))
342             return self->locals[i];
343     }
344     return NULL;
345 }
346
347 ir_value* ir_function_create_local(ir_function *self, const char *name, int vtype, bool param)
348 {
349     ir_value *ve = ir_function_get_local(self, name);
350     if (ve) {
351         return NULL;
352     }
353
354     if (param &&
355         self->locals_count &&
356         self->locals[self->locals_count-1]->store != store_param) {
357         printf("cannot add parameters after adding locals\n");
358         return NULL;
359     }
360
361     ve = ir_value_var(name, (param ? store_param : store_local), vtype);
362     if (!ir_function_locals_add(self, ve)) {
363         ir_value_delete(ve);
364         return NULL;
365     }
366     return ve;
367 }
368
369 /***********************************************************************
370  *IR Block
371  */
372
373 ir_block* ir_block_new(ir_function* owner, const char *name)
374 {
375     ir_block *self;
376     self = (ir_block*)mem_a(sizeof(*self));
377     if (!self)
378         return NULL;
379
380     memset(self, 0, sizeof(*self));
381
382     self->label = NULL;
383     if (!ir_block_set_label(self, name)) {
384         mem_d(self);
385         return NULL;
386     }
387     self->owner = owner;
388     self->context.file = "<@no context>";
389     self->context.line = 0;
390     self->final = false;
391     MEM_VECTOR_INIT(self, instr);
392     MEM_VECTOR_INIT(self, entries);
393     MEM_VECTOR_INIT(self, exits);
394
395     self->eid = 0;
396     self->is_return = false;
397     self->run_id = 0;
398     MEM_VECTOR_INIT(self, living);
399
400     self->generated = false;
401
402     return self;
403 }
404 MEM_VEC_FUNCTIONS(ir_block, ir_instr*, instr)
405 MEM_VEC_FUNCTIONS_ALL(ir_block, ir_block*, entries)
406 MEM_VEC_FUNCTIONS_ALL(ir_block, ir_block*, exits)
407 MEM_VEC_FUNCTIONS_ALL(ir_block, ir_value*, living)
408
409 void ir_block_delete(ir_block* self)
410 {
411     size_t i;
412     mem_d(self->label);
413     for (i = 0; i != self->instr_count; ++i)
414         ir_instr_delete(self->instr[i]);
415     MEM_VECTOR_CLEAR(self, instr);
416     MEM_VECTOR_CLEAR(self, entries);
417     MEM_VECTOR_CLEAR(self, exits);
418     MEM_VECTOR_CLEAR(self, living);
419     mem_d(self);
420 }
421
422 bool ir_block_set_label(ir_block *self, const char *name)
423 {
424     if (self->label)
425         mem_d((void*)self->label);
426     self->label = util_strdup(name);
427     return !!self->label;
428 }
429
430 /***********************************************************************
431  *IR Instructions
432  */
433
434 ir_instr* ir_instr_new(ir_block* owner, int op)
435 {
436     ir_instr *self;
437     self = (ir_instr*)mem_a(sizeof(*self));
438     if (!self)
439         return NULL;
440
441     self->owner = owner;
442     self->context.file = "<@no context>";
443     self->context.line = 0;
444     self->opcode = op;
445     self->_ops[0] = NULL;
446     self->_ops[1] = NULL;
447     self->_ops[2] = NULL;
448     self->bops[0] = NULL;
449     self->bops[1] = NULL;
450     MEM_VECTOR_INIT(self, phi);
451     MEM_VECTOR_INIT(self, params);
452
453     self->eid = 0;
454     return self;
455 }
456 MEM_VEC_FUNCTIONS(ir_instr, ir_phi_entry_t, phi)
457 MEM_VEC_FUNCTIONS(ir_instr, ir_value*, params)
458
459 void ir_instr_delete(ir_instr *self)
460 {
461     size_t i;
462     /* The following calls can only delete from
463      * vectors, we still want to delete this instruction
464      * so ignore the return value. Since with the warn_unused_result attribute
465      * gcc doesn't care about an explicit: (void)foo(); to ignore the result,
466      * I have to improvise here and use if(foo());
467      */
468     for (i = 0; i < self->phi_count; ++i) {
469         size_t idx;
470         if (ir_value_writes_find(self->phi[i].value, self, &idx))
471             if (ir_value_writes_remove(self->phi[i].value, idx)) GMQCC_SUPPRESS_EMPTY_BODY;
472         if (ir_value_reads_find(self->phi[i].value, self, &idx))
473             if (ir_value_reads_remove (self->phi[i].value, idx)) GMQCC_SUPPRESS_EMPTY_BODY;
474     }
475     MEM_VECTOR_CLEAR(self, phi);
476     for (i = 0; i < self->params_count; ++i) {
477         size_t idx;
478         if (ir_value_writes_find(self->params[i], self, &idx))
479             if (ir_value_writes_remove(self->params[i], idx)) GMQCC_SUPPRESS_EMPTY_BODY;
480         if (ir_value_reads_find(self->params[i], self, &idx))
481             if (ir_value_reads_remove (self->params[i], idx)) GMQCC_SUPPRESS_EMPTY_BODY;
482     }
483     MEM_VECTOR_CLEAR(self, params);
484     if (ir_instr_op(self, 0, NULL, false)) GMQCC_SUPPRESS_EMPTY_BODY;
485     if (ir_instr_op(self, 1, NULL, false)) GMQCC_SUPPRESS_EMPTY_BODY;
486     if (ir_instr_op(self, 2, NULL, false)) GMQCC_SUPPRESS_EMPTY_BODY;
487     mem_d(self);
488 }
489
490 bool ir_instr_op(ir_instr *self, int op, ir_value *v, bool writing)
491 {
492     if (self->_ops[op]) {
493         size_t idx;
494         if (writing && ir_value_writes_find(self->_ops[op], self, &idx))
495         {
496             if (!ir_value_writes_remove(self->_ops[op], idx))
497                 return false;
498         }
499         else if (ir_value_reads_find(self->_ops[op], self, &idx))
500         {
501             if (!ir_value_reads_remove(self->_ops[op], idx))
502                 return false;
503         }
504     }
505     if (v) {
506         if (writing) {
507             if (!ir_value_writes_add(v, self))
508                 return false;
509         } else {
510             if (!ir_value_reads_add(v, self))
511                 return false;
512         }
513     }
514     self->_ops[op] = v;
515     return true;
516 }
517
518 /***********************************************************************
519  *IR Value
520  */
521
522 ir_value* ir_value_var(const char *name, int storetype, int vtype)
523 {
524     ir_value *self;
525     self = (ir_value*)mem_a(sizeof(*self));
526     self->vtype = vtype;
527     self->fieldtype = TYPE_VOID;
528     self->outtype = TYPE_VOID;
529     self->store = storetype;
530     MEM_VECTOR_INIT(self, reads);
531     MEM_VECTOR_INIT(self, writes);
532     self->isconst = false;
533     self->context.file = "<@no context>";
534     self->context.line = 0;
535     self->name = NULL;
536     ir_value_set_name(self, name);
537
538     memset(&self->constval, 0, sizeof(self->constval));
539     memset(&self->code,     0, sizeof(self->code));
540
541     MEM_VECTOR_INIT(self, life);
542     return self;
543 }
544 MEM_VEC_FUNCTIONS(ir_value, ir_life_entry_t, life)
545 MEM_VEC_FUNCTIONS_ALL(ir_value, ir_instr*, reads)
546 MEM_VEC_FUNCTIONS_ALL(ir_value, ir_instr*, writes)
547
548 ir_value* ir_value_out(ir_function *owner, const char *name, int storetype, int vtype)
549 {
550     ir_value *v = ir_value_var(name, storetype, vtype);
551     if (!v)
552         return NULL;
553     if (!ir_function_collect_value(owner, v))
554     {
555         ir_value_delete(v);
556         return NULL;
557     }
558     return v;
559 }
560
561 void ir_value_delete(ir_value* self)
562 {
563     if (self->name)
564         mem_d((void*)self->name);
565     if (self->isconst)
566     {
567         if (self->vtype == TYPE_STRING)
568             mem_d((void*)self->constval.vstring);
569     }
570     MEM_VECTOR_CLEAR(self, reads);
571     MEM_VECTOR_CLEAR(self, writes);
572     MEM_VECTOR_CLEAR(self, life);
573     mem_d(self);
574 }
575
576 void ir_value_set_name(ir_value *self, const char *name)
577 {
578     if (self->name)
579         mem_d((void*)self->name);
580     self->name = util_strdup(name);
581 }
582
583 bool ir_value_set_float(ir_value *self, float f)
584 {
585     if (self->vtype != TYPE_FLOAT)
586         return false;
587     self->constval.vfloat = f;
588     self->isconst = true;
589     return true;
590 }
591
592 bool ir_value_set_func(ir_value *self, int f)
593 {
594     if (self->vtype != TYPE_FUNCTION)
595         return false;
596     self->constval.vint = f;
597     self->isconst = true;
598     return true;
599 }
600
601 bool ir_value_set_vector(ir_value *self, vector v)
602 {
603     if (self->vtype != TYPE_VECTOR)
604         return false;
605     self->constval.vvec = v;
606     self->isconst = true;
607     return true;
608 }
609
610 bool ir_value_set_string(ir_value *self, const char *str)
611 {
612     if (self->vtype != TYPE_STRING)
613         return false;
614     self->constval.vstring = util_strdup(str);
615     self->isconst = true;
616     return true;
617 }
618
619 #if 0
620 bool ir_value_set_int(ir_value *self, int i)
621 {
622     if (self->vtype != TYPE_INTEGER)
623         return false;
624     self->constval.vint = i;
625     self->isconst = true;
626     return true;
627 }
628 #endif
629
630 bool ir_value_lives(ir_value *self, size_t at)
631 {
632     size_t i;
633     for (i = 0; i < self->life_count; ++i)
634     {
635         ir_life_entry_t *life = &self->life[i];
636         if (life->start <= at && at <= life->end)
637             return true;
638         if (life->start > at) /* since it's ordered */
639             return false;
640     }
641     return false;
642 }
643
644 bool ir_value_life_insert(ir_value *self, size_t idx, ir_life_entry_t e)
645 {
646     size_t k;
647     if (!ir_value_life_add(self, e)) /* naive... */
648         return false;
649     for (k = self->life_count-1; k > idx; --k)
650         self->life[k] = self->life[k-1];
651     self->life[idx] = e;
652     return true;
653 }
654
655 bool ir_value_life_merge(ir_value *self, size_t s)
656 {
657     size_t i;
658     ir_life_entry_t *life = NULL;
659     ir_life_entry_t *before = NULL;
660     ir_life_entry_t new_entry;
661
662     /* Find the first range >= s */
663     for (i = 0; i < self->life_count; ++i)
664     {
665         before = life;
666         life = &self->life[i];
667         if (life->start > s)
668             break;
669     }
670     /* nothing found? append */
671     if (i == self->life_count) {
672         ir_life_entry_t e;
673         if (life && life->end+1 == s)
674         {
675             /* previous life range can be merged in */
676             life->end++;
677             return true;
678         }
679         if (life && life->end >= s)
680             return false;
681         e.start = e.end = s;
682         if (!ir_value_life_add(self, e))
683             return false; /* failing */
684         return true;
685     }
686     /* found */
687     if (before)
688     {
689         if (before->end + 1 == s &&
690             life->start - 1 == s)
691         {
692             /* merge */
693             before->end = life->end;
694             if (!ir_value_life_remove(self, i))
695                 return false; /* failing */
696             return true;
697         }
698         if (before->end + 1 == s)
699         {
700             /* extend before */
701             before->end++;
702             return true;
703         }
704         /* already contained */
705         if (before->end >= s)
706             return false;
707     }
708     /* extend */
709     if (life->start - 1 == s)
710     {
711         life->start--;
712         return true;
713     }
714     /* insert a new entry */
715     new_entry.start = new_entry.end = s;
716     return ir_value_life_insert(self, i, new_entry);
717 }
718
719 bool ir_value_life_merge_into(ir_value *self, const ir_value *other)
720 {
721     size_t i, myi;
722
723     if (!other->life_count)
724         return true;
725
726     if (!self->life_count) {
727         for (i = 0; i < other->life_count; ++i) {
728             if (!ir_value_life_add(self, other->life[i]))
729                 return false;
730         }
731         return true;
732     }
733
734     myi = 0;
735     for (i = 0; i < other->life_count; ++i)
736     {
737         const ir_life_entry_t *life = &other->life[i];
738         while (true)
739         {
740             ir_life_entry_t *entry = &self->life[myi];
741
742             if (life->end+1 < entry->start)
743             {
744                 /* adding an interval before entry */
745                 if (!ir_value_life_insert(self, myi, *life))
746                     return false;
747                 ++myi;
748                 break;
749             }
750
751             if (life->start <  entry->start &&
752                 life->end   >= entry->start)
753             {
754                 /* starts earlier and overlaps */
755                 entry->start = life->start;
756             }
757
758             if (life->end     >  entry->end &&
759                 life->start-1 <= entry->end)
760             {
761                 /* ends later and overlaps */
762                 entry->end = life->end;
763             }
764
765             /* see if our change combines it with the next ranges */
766             while (myi+1 < self->life_count &&
767                    entry->end+1 >= self->life[1+myi].start)
768             {
769                 /* overlaps with (myi+1) */
770                 if (entry->end < self->life[1+myi].end)
771                     entry->end = self->life[1+myi].end;
772                 if (!ir_value_life_remove(self, myi+1))
773                     return false;
774                 entry = &self->life[myi];
775             }
776
777             /* see if we're after the entry */
778             if (life->start > entry->end)
779             {
780                 ++myi;
781                 /* append if we're at the end */
782                 if (myi >= self->life_count) {
783                     if (!ir_value_life_add(self, *life))
784                         return false;
785                     break;
786                 }
787                 /* otherweise check the next range */
788                 continue;
789             }
790             break;
791         }
792     }
793     return true;
794 }
795
796 bool ir_values_overlap(const ir_value *a, const ir_value *b)
797 {
798     /* For any life entry in A see if it overlaps with
799      * any life entry in B.
800      * Note that the life entries are orderes, so we can make a
801      * more efficient algorithm there than naively translating the
802      * statement above.
803      */
804
805     ir_life_entry_t *la, *lb, *enda, *endb;
806
807     /* first of all, if either has no life range, they cannot clash */
808     if (!a->life_count || !b->life_count)
809         return false;
810
811     la = a->life;
812     lb = b->life;
813     enda = la + a->life_count;
814     endb = lb + b->life_count;
815     while (true)
816     {
817         /* check if the entries overlap, for that,
818          * both must start before the other one ends.
819          */
820 #if defined(LIFE_RANGE_WITHOUT_LAST_READ)
821         if (la->start <= lb->end &&
822             lb->start <= la->end)
823 #else
824         if (la->start <  lb->end &&
825             lb->start <  la->end)
826 #endif
827         {
828             return true;
829         }
830
831         /* entries are ordered
832          * one entry is earlier than the other
833          * that earlier entry will be moved forward
834          */
835         if (la->start < lb->start)
836         {
837             /* order: A B, move A forward
838              * check if we hit the end with A
839              */
840             if (++la == enda)
841                 break;
842         }
843         else if (lb->start < la->start)
844         {
845             /* order: B A, move B forward
846              * check if we hit the end with B
847              */
848             if (++lb == endb)
849                 break;
850         }
851     }
852     return false;
853 }
854
855 /***********************************************************************
856  *IR main operations
857  */
858
859 bool ir_block_create_store_op(ir_block *self, int op, ir_value *target, ir_value *what)
860 {
861     if (target->store == store_value) {
862         fprintf(stderr, "cannot store to an SSA value\n");
863         fprintf(stderr, "trying to store: %s <- %s\n", target->name, what->name);
864         return false;
865     } else {
866         ir_instr *in = ir_instr_new(self, op);
867         if (!in)
868             return false;
869         if (!ir_instr_op(in, 0, target, true) ||
870             !ir_instr_op(in, 1, what, false)  ||
871             !ir_block_instr_add(self, in) )
872         {
873             return false;
874         }
875         return true;
876     }
877 }
878
879 bool ir_block_create_store(ir_block *self, ir_value *target, ir_value *what)
880 {
881     int op = 0;
882     int vtype;
883     if (target->vtype == TYPE_VARIANT)
884         vtype = what->vtype;
885     else
886         vtype = target->vtype;
887
888 #if 0
889     if      (vtype == TYPE_FLOAT   && what->vtype == TYPE_INTEGER)
890         op = INSTR_CONV_ITOF;
891     else if (vtype == TYPE_INTEGER && what->vtype == TYPE_FLOAT)
892         op = INSTR_CONV_FTOI;
893 #endif
894         op = type_store_instr[vtype];
895
896     return ir_block_create_store_op(self, op, target, what);
897 }
898
899 bool ir_block_create_storep(ir_block *self, ir_value *target, ir_value *what)
900 {
901     int op = 0;
902     int vtype;
903
904     if (target->vtype != TYPE_POINTER)
905         return false;
906
907     /* storing using pointer - target is a pointer, type must be
908      * inferred from source
909      */
910     vtype = what->vtype;
911
912     op = type_storep_instr[vtype];
913
914     return ir_block_create_store_op(self, op, target, what);
915 }
916
917 bool ir_block_create_return(ir_block *self, ir_value *v)
918 {
919     ir_instr *in;
920     if (self->final) {
921         fprintf(stderr, "block already ended (%s)\n", self->label);
922         return false;
923     }
924     self->final = true;
925     self->is_return = true;
926     in = ir_instr_new(self, INSTR_RETURN);
927     if (!in)
928         return false;
929
930     if (!ir_instr_op(in, 0, v, false) ||
931         !ir_block_instr_add(self, in) )
932     {
933         return false;
934     }
935     return true;
936 }
937
938 bool ir_block_create_if(ir_block *self, ir_value *v,
939                         ir_block *ontrue, ir_block *onfalse)
940 {
941     ir_instr *in;
942     if (self->final) {
943         fprintf(stderr, "block already ended (%s)\n", self->label);
944         return false;
945     }
946     self->final = true;
947     /*in = ir_instr_new(self, (v->vtype == TYPE_STRING ? INSTR_IF_S : INSTR_IF_F));*/
948     in = ir_instr_new(self, VINSTR_COND);
949     if (!in)
950         return false;
951
952     if (!ir_instr_op(in, 0, v, false)) {
953         ir_instr_delete(in);
954         return false;
955     }
956
957     in->bops[0] = ontrue;
958     in->bops[1] = onfalse;
959
960     if (!ir_block_instr_add(self, in))
961         return false;
962
963     if (!ir_block_exits_add(self, ontrue)    ||
964         !ir_block_exits_add(self, onfalse)   ||
965         !ir_block_entries_add(ontrue, self)  ||
966         !ir_block_entries_add(onfalse, self) )
967     {
968         return false;
969     }
970     return true;
971 }
972
973 bool ir_block_create_jump(ir_block *self, ir_block *to)
974 {
975     ir_instr *in;
976     if (self->final) {
977         fprintf(stderr, "block already ended (%s)\n", self->label);
978         return false;
979     }
980     self->final = true;
981     in = ir_instr_new(self, VINSTR_JUMP);
982     if (!in)
983         return false;
984
985     in->bops[0] = to;
986     if (!ir_block_instr_add(self, in))
987         return false;
988
989     if (!ir_block_exits_add(self, to) ||
990         !ir_block_entries_add(to, self) )
991     {
992         return false;
993     }
994     return true;
995 }
996
997 bool ir_block_create_goto(ir_block *self, ir_block *to)
998 {
999     ir_instr *in;
1000     if (self->final) {
1001         fprintf(stderr, "block already ended (%s)\n", self->label);
1002         return false;
1003     }
1004     self->final = true;
1005     in = ir_instr_new(self, INSTR_GOTO);
1006     if (!in)
1007         return false;
1008
1009     in->bops[0] = to;
1010     if (!ir_block_instr_add(self, in))
1011         return false;
1012
1013     if (!ir_block_exits_add(self, to) ||
1014         !ir_block_entries_add(to, self) )
1015     {
1016         return false;
1017     }
1018     return true;
1019 }
1020
1021 ir_instr* ir_block_create_phi(ir_block *self, const char *label, int ot)
1022 {
1023     ir_value *out;
1024     ir_instr *in;
1025     in = ir_instr_new(self, VINSTR_PHI);
1026     if (!in)
1027         return NULL;
1028     out = ir_value_out(self->owner, label, store_value, ot);
1029     if (!out) {
1030         ir_instr_delete(in);
1031         return NULL;
1032     }
1033     if (!ir_instr_op(in, 0, out, true)) {
1034         ir_instr_delete(in);
1035         ir_value_delete(out);
1036         return NULL;
1037     }
1038     if (!ir_block_instr_add(self, in)) {
1039         ir_instr_delete(in);
1040         ir_value_delete(out);
1041         return NULL;
1042     }
1043     return in;
1044 }
1045
1046 ir_value* ir_phi_value(ir_instr *self)
1047 {
1048     return self->_ops[0];
1049 }
1050
1051 bool ir_phi_add(ir_instr* self, ir_block *b, ir_value *v)
1052 {
1053     ir_phi_entry_t pe;
1054
1055     if (!ir_block_entries_find(self->owner, b, NULL)) {
1056         /* Must not be possible to cause this, otherwise the AST
1057          * is doing something wrong.
1058          */
1059         fprintf(stderr, "Invalid entry block for PHI\n");
1060         abort();
1061     }
1062
1063     pe.value = v;
1064     pe.from = b;
1065     if (!ir_value_reads_add(v, self))
1066         return false;
1067     return ir_instr_phi_add(self, pe);
1068 }
1069
1070 /* call related code */
1071 ir_instr* ir_block_create_call(ir_block *self, const char *label, ir_value *func)
1072 {
1073     ir_value *out;
1074     ir_instr *in;
1075     in = ir_instr_new(self, INSTR_CALL0);
1076     if (!in)
1077         return NULL;
1078     out = ir_value_out(self->owner, label, store_return, func->outtype);
1079     if (!out) {
1080         ir_instr_delete(in);
1081         return NULL;
1082     }
1083     if (!ir_instr_op(in, 0, out, true) ||
1084         !ir_instr_op(in, 1, func, false) ||
1085         !ir_block_instr_add(self, in))
1086     {
1087         ir_instr_delete(in);
1088         ir_value_delete(out);
1089         return NULL;
1090     }
1091     return in;
1092 }
1093
1094 ir_value* ir_call_value(ir_instr *self)
1095 {
1096     return self->_ops[0];
1097 }
1098
1099 bool ir_call_param(ir_instr* self, ir_value *v)
1100 {
1101     if (!ir_instr_params_add(self, v))
1102         return false;
1103     if (!ir_value_reads_add(v, self)) {
1104         if (!ir_instr_params_remove(self, self->params_count-1))
1105             GMQCC_SUPPRESS_EMPTY_BODY;
1106         return false;
1107     }
1108     return true;
1109 }
1110
1111 /* binary op related code */
1112
1113 ir_value* ir_block_create_binop(ir_block *self,
1114                                 const char *label, int opcode,
1115                                 ir_value *left, ir_value *right)
1116 {
1117     int ot = TYPE_VOID;
1118     switch (opcode) {
1119         case INSTR_ADD_F:
1120         case INSTR_SUB_F:
1121         case INSTR_DIV_F:
1122         case INSTR_MUL_F:
1123         case INSTR_MUL_V:
1124         case INSTR_AND:
1125         case INSTR_OR:
1126 #if 0
1127         case INSTR_AND_I:
1128         case INSTR_AND_IF:
1129         case INSTR_AND_FI:
1130         case INSTR_OR_I:
1131         case INSTR_OR_IF:
1132         case INSTR_OR_FI:
1133 #endif
1134         case INSTR_BITAND:
1135         case INSTR_BITOR:
1136 #if 0
1137         case INSTR_SUB_S: /* -- offset of string as float */
1138         case INSTR_MUL_IF:
1139         case INSTR_MUL_FI:
1140         case INSTR_DIV_IF:
1141         case INSTR_DIV_FI:
1142         case INSTR_BITOR_IF:
1143         case INSTR_BITOR_FI:
1144         case INSTR_BITAND_FI:
1145         case INSTR_BITAND_IF:
1146         case INSTR_EQ_I:
1147         case INSTR_NE_I:
1148 #endif
1149             ot = TYPE_FLOAT;
1150             break;
1151 #if 0
1152         case INSTR_ADD_I:
1153         case INSTR_ADD_IF:
1154         case INSTR_ADD_FI:
1155         case INSTR_SUB_I:
1156         case INSTR_SUB_FI:
1157         case INSTR_SUB_IF:
1158         case INSTR_MUL_I:
1159         case INSTR_DIV_I:
1160         case INSTR_BITAND_I:
1161         case INSTR_BITOR_I:
1162         case INSTR_XOR_I:
1163         case INSTR_RSHIFT_I:
1164         case INSTR_LSHIFT_I:
1165             ot = TYPE_INTEGER;
1166             break;
1167 #endif
1168         case INSTR_ADD_V:
1169         case INSTR_SUB_V:
1170         case INSTR_MUL_VF:
1171         case INSTR_MUL_FV:
1172 #if 0
1173         case INSTR_DIV_VF:
1174         case INSTR_MUL_IV:
1175         case INSTR_MUL_VI:
1176 #endif
1177             ot = TYPE_VECTOR;
1178             break;
1179 #if 0
1180         case INSTR_ADD_SF:
1181             ot = TYPE_POINTER;
1182             break;
1183 #endif
1184         default:
1185             /* ranges: */
1186             /* boolean operations result in floats */
1187             if (opcode >= INSTR_EQ_F && opcode <= INSTR_GT)
1188                 ot = TYPE_FLOAT;
1189             else if (opcode >= INSTR_LE && opcode <= INSTR_GT)
1190                 ot = TYPE_FLOAT;
1191 #if 0
1192             else if (opcode >= INSTR_LE_I && opcode <= INSTR_EQ_FI)
1193                 ot = TYPE_FLOAT;
1194 #endif
1195             break;
1196     };
1197     if (ot == TYPE_VOID) {
1198         /* The AST or parser were supposed to check this! */
1199         return NULL;
1200     }
1201
1202     return ir_block_create_general_instr(self, label, opcode, left, right, ot);
1203 }
1204
1205 ir_value* ir_block_create_unary(ir_block *self,
1206                                 const char *label, int opcode,
1207                                 ir_value *operand)
1208 {
1209     int ot = TYPE_FLOAT;
1210     switch (opcode) {
1211         case INSTR_NOT_F:
1212         case INSTR_NOT_V:
1213         case INSTR_NOT_S:
1214         case INSTR_NOT_ENT:
1215         case INSTR_NOT_FNC:
1216 #if 0
1217         case INSTR_NOT_I:
1218 #endif
1219             ot = TYPE_FLOAT;
1220             break;
1221         /* QC doesn't have other unary operations. We expect extensions to fill
1222          * the above list, otherwise we assume out-type = in-type, eg for an
1223          * unary minus
1224          */
1225         default:
1226             ot = operand->vtype;
1227             break;
1228     };
1229     if (ot == TYPE_VOID) {
1230         /* The AST or parser were supposed to check this! */
1231         return NULL;
1232     }
1233
1234     /* let's use the general instruction creator and pass NULL for OPB */
1235     return ir_block_create_general_instr(self, label, opcode, operand, NULL, ot);
1236 }
1237
1238 ir_value* ir_block_create_general_instr(ir_block *self, const char *label,
1239                                         int op, ir_value *a, ir_value *b, int outype)
1240 {
1241     ir_instr *instr;
1242     ir_value *out;
1243
1244     out = ir_value_out(self->owner, label, store_value, outype);
1245     if (!out)
1246         return NULL;
1247
1248     instr = ir_instr_new(self, op);
1249     if (!instr) {
1250         ir_value_delete(out);
1251         return NULL;
1252     }
1253
1254     if (!ir_instr_op(instr, 0, out, true) ||
1255         !ir_instr_op(instr, 1, a, false) ||
1256         !ir_instr_op(instr, 2, b, false) )
1257     {
1258         goto on_error;
1259     }
1260
1261     if (!ir_block_instr_add(self, instr))
1262         goto on_error;
1263
1264     return out;
1265 on_error:
1266     ir_instr_delete(instr);
1267     ir_value_delete(out);
1268     return NULL;
1269 }
1270
1271 ir_value* ir_block_create_fieldaddress(ir_block *self, const char *label, ir_value *ent, ir_value *field)
1272 {
1273     /* Support for various pointer types todo if so desired */
1274     if (ent->vtype != TYPE_ENTITY)
1275         return NULL;
1276
1277     if (field->vtype != TYPE_FIELD)
1278         return NULL;
1279
1280     return ir_block_create_general_instr(self, label, INSTR_ADDRESS, ent, field, TYPE_POINTER);
1281 }
1282
1283 ir_value* ir_block_create_load_from_ent(ir_block *self, const char *label, ir_value *ent, ir_value *field, int outype)
1284 {
1285     int op;
1286     if (ent->vtype != TYPE_ENTITY)
1287         return NULL;
1288
1289     /* at some point we could redirect for TYPE_POINTER... but that could lead to carelessness */
1290     if (field->vtype != TYPE_FIELD)
1291         return NULL;
1292
1293     switch (outype)
1294     {
1295         case TYPE_FLOAT:   op = INSTR_LOAD_F;   break;
1296         case TYPE_VECTOR:  op = INSTR_LOAD_V;   break;
1297         case TYPE_STRING:  op = INSTR_LOAD_S;   break;
1298         case TYPE_FIELD:   op = INSTR_LOAD_FLD; break;
1299         case TYPE_ENTITY:  op = INSTR_LOAD_ENT; break;
1300 #if 0
1301         case TYPE_POINTER: op = INSTR_LOAD_I;   break;
1302         case TYPE_INTEGER: op = INSTR_LOAD_I;   break;
1303 #endif
1304         default:
1305             return NULL;
1306     }
1307
1308     return ir_block_create_general_instr(self, label, op, ent, field, outype);
1309 }
1310
1311 ir_value* ir_block_create_add(ir_block *self,
1312                               const char *label,
1313                               ir_value *left, ir_value *right)
1314 {
1315     int op = 0;
1316     int l = left->vtype;
1317     int r = right->vtype;
1318     if (l == r) {
1319         switch (l) {
1320             default:
1321                 return NULL;
1322             case TYPE_FLOAT:
1323                 op = INSTR_ADD_F;
1324                 break;
1325 #if 0
1326             case TYPE_INTEGER:
1327                 op = INSTR_ADD_I;
1328                 break;
1329 #endif
1330             case TYPE_VECTOR:
1331                 op = INSTR_ADD_V;
1332                 break;
1333         }
1334     } else {
1335 #if 0
1336         if ( (l == TYPE_FLOAT && r == TYPE_INTEGER) )
1337             op = INSTR_ADD_FI;
1338         else if ( (l == TYPE_INTEGER && r == TYPE_FLOAT) )
1339             op = INSTR_ADD_IF;
1340         else
1341 #endif
1342             return NULL;
1343     }
1344     return ir_block_create_binop(self, label, op, left, right);
1345 }
1346
1347 ir_value* ir_block_create_sub(ir_block *self,
1348                               const char *label,
1349                               ir_value *left, ir_value *right)
1350 {
1351     int op = 0;
1352     int l = left->vtype;
1353     int r = right->vtype;
1354     if (l == r) {
1355
1356         switch (l) {
1357             default:
1358                 return NULL;
1359             case TYPE_FLOAT:
1360                 op = INSTR_SUB_F;
1361                 break;
1362 #if 0
1363             case TYPE_INTEGER:
1364                 op = INSTR_SUB_I;
1365                 break;
1366 #endif
1367             case TYPE_VECTOR:
1368                 op = INSTR_SUB_V;
1369                 break;
1370         }
1371     } else {
1372 #if 0
1373         if ( (l == TYPE_FLOAT && r == TYPE_INTEGER) )
1374             op = INSTR_SUB_FI;
1375         else if ( (l == TYPE_INTEGER && r == TYPE_FLOAT) )
1376             op = INSTR_SUB_IF;
1377         else
1378 #endif
1379             return NULL;
1380     }
1381     return ir_block_create_binop(self, label, op, left, right);
1382 }
1383
1384 ir_value* ir_block_create_mul(ir_block *self,
1385                               const char *label,
1386                               ir_value *left, ir_value *right)
1387 {
1388     int op = 0;
1389     int l = left->vtype;
1390     int r = right->vtype;
1391     if (l == r) {
1392
1393         switch (l) {
1394             default:
1395                 return NULL;
1396             case TYPE_FLOAT:
1397                 op = INSTR_MUL_F;
1398                 break;
1399 #if 0
1400             case TYPE_INTEGER:
1401                 op = INSTR_MUL_I;
1402                 break;
1403 #endif
1404             case TYPE_VECTOR:
1405                 op = INSTR_MUL_V;
1406                 break;
1407         }
1408     } else {
1409         if ( (l == TYPE_VECTOR && r == TYPE_FLOAT) )
1410             op = INSTR_MUL_VF;
1411         else if ( (l == TYPE_FLOAT && r == TYPE_VECTOR) )
1412             op = INSTR_MUL_FV;
1413 #if 0
1414         else if ( (l == TYPE_VECTOR && r == TYPE_INTEGER) )
1415             op = INSTR_MUL_VI;
1416         else if ( (l == TYPE_INTEGER && r == TYPE_VECTOR) )
1417             op = INSTR_MUL_IV;
1418         else if ( (l == TYPE_FLOAT && r == TYPE_INTEGER) )
1419             op = INSTR_MUL_FI;
1420         else if ( (l == TYPE_INTEGER && r == TYPE_FLOAT) )
1421             op = INSTR_MUL_IF;
1422 #endif
1423         else
1424             return NULL;
1425     }
1426     return ir_block_create_binop(self, label, op, left, right);
1427 }
1428
1429 ir_value* ir_block_create_div(ir_block *self,
1430                               const char *label,
1431                               ir_value *left, ir_value *right)
1432 {
1433     int op = 0;
1434     int l = left->vtype;
1435     int r = right->vtype;
1436     if (l == r) {
1437
1438         switch (l) {
1439             default:
1440                 return NULL;
1441             case TYPE_FLOAT:
1442                 op = INSTR_DIV_F;
1443                 break;
1444 #if 0
1445             case TYPE_INTEGER:
1446                 op = INSTR_DIV_I;
1447                 break;
1448 #endif
1449         }
1450     } else {
1451 #if 0
1452         if ( (l == TYPE_VECTOR && r == TYPE_FLOAT) )
1453             op = INSTR_DIV_VF;
1454         else if ( (l == TYPE_FLOAT && r == TYPE_INTEGER) )
1455             op = INSTR_DIV_FI;
1456         else if ( (l == TYPE_INTEGER && r == TYPE_FLOAT) )
1457             op = INSTR_DIV_IF;
1458         else
1459 #endif
1460             return NULL;
1461     }
1462     return ir_block_create_binop(self, label, op, left, right);
1463 }
1464
1465 /* PHI resolving breaks the SSA, and must thus be the last
1466  * step before life-range calculation.
1467  */
1468
1469 static bool ir_block_naive_phi(ir_block *self);
1470 bool ir_function_naive_phi(ir_function *self)
1471 {
1472     size_t i;
1473
1474     for (i = 0; i < self->blocks_count; ++i)
1475     {
1476         if (!ir_block_naive_phi(self->blocks[i]))
1477             return false;
1478     }
1479     return true;
1480 }
1481
1482 static bool ir_naive_phi_emit_store(ir_block *block, size_t iid, ir_value *old, ir_value *what)
1483 {
1484     ir_instr *instr;
1485     size_t i;
1486
1487     /* create a store */
1488     if (!ir_block_create_store(block, old, what))
1489         return false;
1490
1491     /* we now move it up */
1492     instr = block->instr[block->instr_count-1];
1493     for (i = block->instr_count; i > iid; --i)
1494         block->instr[i] = block->instr[i-1];
1495     block->instr[i] = instr;
1496
1497     return true;
1498 }
1499
1500 static bool ir_block_naive_phi(ir_block *self)
1501 {
1502     size_t i, p, w;
1503     /* FIXME: optionally, create_phi can add the phis
1504      * to a list so we don't need to loop through blocks
1505      * - anyway: "don't optimize YET"
1506      */
1507     for (i = 0; i < self->instr_count; ++i)
1508     {
1509         ir_instr *instr = self->instr[i];
1510         if (instr->opcode != VINSTR_PHI)
1511             continue;
1512
1513         if (!ir_block_instr_remove(self, i))
1514             return false;
1515         --i; /* NOTE: i+1 below */
1516
1517         for (p = 0; p < instr->phi_count; ++p)
1518         {
1519             ir_value *v = instr->phi[p].value;
1520             for (w = 0; w < v->writes_count; ++w) {
1521                 ir_value *old;
1522
1523                 if (!v->writes[w]->_ops[0])
1524                     continue;
1525
1526                 /* When the write was to a global, we have to emit a mov */
1527                 old = v->writes[w]->_ops[0];
1528
1529                 /* The original instruction now writes to the PHI target local */
1530                 if (v->writes[w]->_ops[0] == v)
1531                     v->writes[w]->_ops[0] = instr->_ops[0];
1532
1533                 if (old->store != store_value && old->store != store_local && old->store != store_param)
1534                 {
1535                     /* If it originally wrote to a global we need to store the value
1536                      * there as welli
1537                      */
1538                     if (!ir_naive_phi_emit_store(self, i+1, old, v))
1539                         return false;
1540                     if (i+1 < self->instr_count)
1541                         instr = self->instr[i+1];
1542                     else
1543                         instr = NULL;
1544                     /* In case I forget and access instr later, it'll be NULL
1545                      * when it's a problem, to make sure we crash, rather than accessing
1546                      * invalid data.
1547                      */
1548                 }
1549                 else
1550                 {
1551                     /* If it didn't, we can replace all reads by the phi target now. */
1552                     size_t r;
1553                     for (r = 0; r < old->reads_count; ++r)
1554                     {
1555                         size_t op;
1556                         ir_instr *ri = old->reads[r];
1557                         for (op = 0; op < ri->phi_count; ++op) {
1558                             if (ri->phi[op].value == old)
1559                                 ri->phi[op].value = v;
1560                         }
1561                         for (op = 0; op < 3; ++op) {
1562                             if (ri->_ops[op] == old)
1563                                 ri->_ops[op] = v;
1564                         }
1565                     }
1566                 }
1567             }
1568         }
1569         ir_instr_delete(instr);
1570     }
1571     return true;
1572 }
1573
1574 /***********************************************************************
1575  *IR Temp allocation code
1576  * Propagating value life ranges by walking through the function backwards
1577  * until no more changes are made.
1578  * In theory this should happen once more than once for every nested loop
1579  * level.
1580  * Though this implementation might run an additional time for if nests.
1581  */
1582
1583 typedef struct
1584 {
1585     ir_value* *v;
1586     size_t    v_count;
1587     size_t    v_alloc;
1588 } new_reads_t;
1589 MEM_VEC_FUNCTIONS_ALL(new_reads_t, ir_value*, v)
1590
1591 /* Enumerate instructions used by value's life-ranges
1592  */
1593 static void ir_block_enumerate(ir_block *self, size_t *_eid)
1594 {
1595     size_t i;
1596     size_t eid = *_eid;
1597     for (i = 0; i < self->instr_count; ++i)
1598     {
1599         self->instr[i]->eid = eid++;
1600     }
1601     *_eid = eid;
1602 }
1603
1604 /* Enumerate blocks and instructions.
1605  * The block-enumeration is unordered!
1606  * We do not really use the block enumreation, however
1607  * the instruction enumeration is important for life-ranges.
1608  */
1609 void ir_function_enumerate(ir_function *self)
1610 {
1611     size_t i;
1612     size_t instruction_id = 0;
1613     for (i = 0; i < self->blocks_count; ++i)
1614     {
1615         self->blocks[i]->eid = i;
1616         self->blocks[i]->run_id = 0;
1617         ir_block_enumerate(self->blocks[i], &instruction_id);
1618     }
1619 }
1620
1621 static bool ir_block_life_propagate(ir_block *b, ir_block *prev, bool *changed);
1622 bool ir_function_calculate_liferanges(ir_function *self)
1623 {
1624     size_t i;
1625     bool changed;
1626
1627     do {
1628         self->run_id++;
1629         changed = false;
1630         for (i = 0; i != self->blocks_count; ++i)
1631         {
1632             if (self->blocks[i]->is_return)
1633             {
1634                 if (!ir_block_life_propagate(self->blocks[i], NULL, &changed))
1635                     return false;
1636             }
1637         }
1638     } while (changed);
1639     return true;
1640 }
1641
1642 /* Local-value allocator
1643  * After finishing creating the liferange of all values used in a function
1644  * we can allocate their global-positions.
1645  * This is the counterpart to register-allocation in register machines.
1646  */
1647 typedef struct {
1648     MEM_VECTOR_MAKE(ir_value*, locals);
1649     MEM_VECTOR_MAKE(size_t,    sizes);
1650     MEM_VECTOR_MAKE(size_t,    positions);
1651 } function_allocator;
1652 MEM_VEC_FUNCTIONS(function_allocator, ir_value*, locals)
1653 MEM_VEC_FUNCTIONS(function_allocator, size_t,    sizes)
1654 MEM_VEC_FUNCTIONS(function_allocator, size_t,    positions)
1655
1656 static bool function_allocator_alloc(function_allocator *alloc, const ir_value *var)
1657 {
1658     ir_value *slot;
1659     size_t vsize = type_sizeof[var->vtype];
1660
1661     slot = ir_value_var("reg", store_global, var->vtype);
1662     if (!slot)
1663         return false;
1664
1665     if (!ir_value_life_merge_into(slot, var))
1666         goto localerror;
1667
1668     if (!function_allocator_locals_add(alloc, slot))
1669         goto localerror;
1670
1671     if (!function_allocator_sizes_add(alloc, vsize))
1672         goto localerror;
1673
1674     return true;
1675
1676 localerror:
1677     ir_value_delete(slot);
1678     return false;
1679 }
1680
1681 bool ir_function_allocate_locals(ir_function *self)
1682 {
1683     size_t i, a;
1684     bool   retval = true;
1685     size_t pos;
1686
1687     ir_value *slot;
1688     const ir_value *v;
1689
1690     function_allocator alloc;
1691
1692     if (!self->locals_count)
1693         return true;
1694
1695     MEM_VECTOR_INIT(&alloc, locals);
1696     MEM_VECTOR_INIT(&alloc, sizes);
1697     MEM_VECTOR_INIT(&alloc, positions);
1698
1699     for (i = 0; i < self->locals_count; ++i)
1700     {
1701         if (!function_allocator_alloc(&alloc, self->locals[i]))
1702             goto error;
1703     }
1704
1705     /* Allocate a slot for any value that still exists */
1706     for (i = 0; i < self->values_count; ++i)
1707     {
1708         v = self->values[i];
1709
1710         if (!v->life_count)
1711             continue;
1712
1713         for (a = 0; a < alloc.locals_count; ++a)
1714         {
1715             slot = alloc.locals[a];
1716
1717             if (ir_values_overlap(v, slot))
1718                 continue;
1719
1720             if (!ir_value_life_merge_into(slot, v))
1721                 goto error;
1722
1723             /* adjust size for this slot */
1724             if (alloc.sizes[a] < type_sizeof[v->vtype])
1725                 alloc.sizes[a] = type_sizeof[v->vtype];
1726
1727             self->values[i]->code.local = a;
1728             break;
1729         }
1730         if (a >= alloc.locals_count) {
1731             self->values[i]->code.local = alloc.locals_count;
1732             if (!function_allocator_alloc(&alloc, v))
1733                 goto error;
1734         }
1735     }
1736
1737     /* Adjust slot positions based on sizes */
1738     if (!function_allocator_positions_add(&alloc, 0))
1739         goto error;
1740
1741     if (alloc.sizes_count)
1742         pos = alloc.positions[0] + alloc.sizes[0];
1743     else
1744         pos = 0;
1745     for (i = 1; i < alloc.sizes_count; ++i)
1746     {
1747         pos = alloc.positions[i-1] + alloc.sizes[i-1];
1748         if (!function_allocator_positions_add(&alloc, pos))
1749             goto error;
1750     }
1751
1752     self->allocated_locals = pos + alloc.sizes[alloc.sizes_count-1];
1753
1754     /* Take over the actual slot positions */
1755     for (i = 0; i < self->values_count; ++i)
1756         self->values[i]->code.local = alloc.positions[self->values[i]->code.local];
1757
1758     goto cleanup;
1759
1760 error:
1761     retval = false;
1762 cleanup:
1763     for (i = 0; i < alloc.locals_count; ++i)
1764         ir_value_delete(alloc.locals[i]);
1765     MEM_VECTOR_CLEAR(&alloc, locals);
1766     MEM_VECTOR_CLEAR(&alloc, sizes);
1767     MEM_VECTOR_CLEAR(&alloc, positions);
1768     return retval;
1769 }
1770
1771 /* Get information about which operand
1772  * is read from, or written to.
1773  */
1774 static void ir_op_read_write(int op, size_t *read, size_t *write)
1775 {
1776     switch (op)
1777     {
1778     case VINSTR_JUMP:
1779     case INSTR_GOTO:
1780         *write = 0;
1781         *read = 0;
1782         break;
1783     case INSTR_IF:
1784     case INSTR_IFNOT:
1785 #if 0
1786     case INSTR_IF_S:
1787     case INSTR_IFNOT_S:
1788 #endif
1789     case INSTR_RETURN:
1790     case VINSTR_COND:
1791         *write = 0;
1792         *read = 1;
1793         break;
1794     default:
1795         *write = 1;
1796         *read = 6;
1797         break;
1798     };
1799 }
1800
1801 static bool ir_block_living_add_instr(ir_block *self, size_t eid)
1802 {
1803     size_t i;
1804     bool changed = false;
1805     bool tempbool;
1806     for (i = 0; i != self->living_count; ++i)
1807     {
1808         tempbool = ir_value_life_merge(self->living[i], eid);
1809         /* debug
1810         if (tempbool)
1811             fprintf(stderr, "block_living_add_instr() value instruction added %s: %i\n", self->living[i]->_name, (int)eid);
1812         */
1813         changed = changed || tempbool;
1814     }
1815     return changed;
1816 }
1817
1818 static bool ir_block_life_prop_previous(ir_block* self, ir_block *prev, bool *changed)
1819 {
1820     size_t i;
1821     /* values which have been read in a previous iteration are now
1822      * in the "living" array even if the previous block doesn't use them.
1823      * So we have to remove whatever does not exist in the previous block.
1824      * They will be re-added on-read, but the liferange merge won't cause
1825      * a change.
1826      */
1827     for (i = 0; i < self->living_count; ++i)
1828     {
1829         if (!ir_block_living_find(prev, self->living[i], NULL)) {
1830             if (!ir_block_living_remove(self, i))
1831                 return false;
1832             --i;
1833         }
1834     }
1835
1836     /* Whatever the previous block still has in its living set
1837      * must now be added to ours as well.
1838      */
1839     for (i = 0; i < prev->living_count; ++i)
1840     {
1841         if (ir_block_living_find(self, prev->living[i], NULL))
1842             continue;
1843         if (!ir_block_living_add(self, prev->living[i]))
1844             return false;
1845         /*
1846         printf("%s got from prev: %s\n", self->label, prev->living[i]->_name);
1847         */
1848     }
1849     return true;
1850 }
1851
1852 static bool ir_block_life_propagate(ir_block *self, ir_block *prev, bool *changed)
1853 {
1854     ir_instr *instr;
1855     ir_value *value;
1856     bool  tempbool;
1857     size_t i, o, p;
1858     /* bitmasks which operands are read from or written to */
1859     size_t read, write;
1860 #if defined(LIFE_RANGE_WITHOUT_LAST_READ)
1861     size_t rd;
1862     new_reads_t new_reads;
1863 #endif
1864     char dbg_ind[16] = { '#', '0' };
1865     (void)dbg_ind;
1866
1867 #if defined(LIFE_RANGE_WITHOUT_LAST_READ)
1868     MEM_VECTOR_INIT(&new_reads, v);
1869 #endif
1870
1871     if (prev)
1872     {
1873         if (!ir_block_life_prop_previous(self, prev, changed))
1874             return false;
1875     }
1876
1877     i = self->instr_count;
1878     while (i)
1879     { --i;
1880         instr = self->instr[i];
1881
1882         /* PHI operands are always read operands */
1883         for (p = 0; p < instr->phi_count; ++p)
1884         {
1885             value = instr->phi[p].value;
1886 #if ! defined(LIFE_RANGE_WITHOUT_LAST_READ)
1887             if (!ir_block_living_find(self, value, NULL) &&
1888                 !ir_block_living_add(self, value))
1889             {
1890                 goto on_error;
1891             }
1892 #else
1893             if (!new_reads_t_v_find(&new_reads, value, NULL))
1894             {
1895                 if (!new_reads_t_v_add(&new_reads, value))
1896                     goto on_error;
1897             }
1898 #endif
1899         }
1900
1901         /* See which operands are read and write operands */
1902         ir_op_read_write(instr->opcode, &read, &write);
1903
1904         /* Go through the 3 main operands */
1905         for (o = 0; o < 3; ++o)
1906         {
1907             if (!instr->_ops[o]) /* no such operand */
1908                 continue;
1909
1910             value = instr->_ops[o];
1911
1912             /* We only care about locals */
1913             /* we also calculate parameter liferanges so that locals
1914              * can take up parameter slots */
1915             if (value->store != store_value &&
1916                 value->store != store_local &&
1917                 value->store != store_param)
1918                 continue;
1919
1920             /* read operands */
1921             if (read & (1<<o))
1922             {
1923 #if ! defined(LIFE_RANGE_WITHOUT_LAST_READ)
1924                 if (!ir_block_living_find(self, value, NULL) &&
1925                     !ir_block_living_add(self, value))
1926                 {
1927                     goto on_error;
1928                 }
1929 #else
1930                 /* fprintf(stderr, "read: %s\n", value->_name); */
1931                 if (!new_reads_t_v_find(&new_reads, value, NULL))
1932                 {
1933                     if (!new_reads_t_v_add(&new_reads, value))
1934                         goto on_error;
1935                 }
1936 #endif
1937             }
1938
1939             /* write operands */
1940             /* When we write to a local, we consider it "dead" for the
1941              * remaining upper part of the function, since in SSA a value
1942              * can only be written once (== created)
1943              */
1944             if (write & (1<<o))
1945             {
1946                 size_t idx;
1947                 bool in_living = ir_block_living_find(self, value, &idx);
1948 #if defined(LIFE_RANGE_WITHOUT_LAST_READ)
1949                 size_t readidx;
1950                 bool in_reads = new_reads_t_v_find(&new_reads, value, &readidx);
1951                 if (!in_living && !in_reads)
1952 #else
1953                 if (!in_living)
1954 #endif
1955                 {
1956                     /* If the value isn't alive it hasn't been read before... */
1957                     /* TODO: See if the warning can be emitted during parsing or AST processing
1958                      * otherwise have warning printed here.
1959                      * IF printing a warning here: include filecontext_t,
1960                      * and make sure it's only printed once
1961                      * since this function is run multiple times.
1962                      */
1963                     /* For now: debug info: */
1964                     fprintf(stderr, "Value only written %s\n", value->name);
1965                     tempbool = ir_value_life_merge(value, instr->eid);
1966                     *changed = *changed || tempbool;
1967                     /*
1968                     ir_instr_dump(instr, dbg_ind, printf);
1969                     abort();
1970                     */
1971                 } else {
1972                     /* since 'living' won't contain it
1973                      * anymore, merge the value, since
1974                      * (A) doesn't.
1975                      */
1976                     tempbool = ir_value_life_merge(value, instr->eid);
1977                     /*
1978                     if (tempbool)
1979                         fprintf(stderr, "value added id %s %i\n", value->name, (int)instr->eid);
1980                     */
1981                     *changed = *changed || tempbool;
1982                     /* Then remove */
1983 #if ! defined(LIFE_RANGE_WITHOUT_LAST_READ)
1984                     if (!ir_block_living_remove(self, idx))
1985                         goto on_error;
1986 #else
1987                     if (in_reads)
1988                     {
1989                         if (!new_reads_t_v_remove(&new_reads, readidx))
1990                             goto on_error;
1991                     }
1992 #endif
1993                 }
1994             }
1995         }
1996         /* (A) */
1997         tempbool = ir_block_living_add_instr(self, instr->eid);
1998         /*fprintf(stderr, "living added values\n");*/
1999         *changed = *changed || tempbool;
2000
2001 #if defined(LIFE_RANGE_WITHOUT_LAST_READ)
2002         /* new reads: */
2003         for (rd = 0; rd < new_reads.v_count; ++rd)
2004         {
2005             if (!ir_block_living_find(self, new_reads.v[rd], NULL)) {
2006                 if (!ir_block_living_add(self, new_reads.v[rd]))
2007                     goto on_error;
2008             }
2009             if (!i && !self->entries_count) {
2010                 /* fix the top */
2011                 *changed = *changed || ir_value_life_merge(new_reads.v[rd], instr->eid);
2012             }
2013         }
2014         MEM_VECTOR_CLEAR(&new_reads, v);
2015 #endif
2016     }
2017
2018     if (self->run_id == self->owner->run_id)
2019         return true;
2020
2021     self->run_id = self->owner->run_id;
2022
2023     for (i = 0; i < self->entries_count; ++i)
2024     {
2025         ir_block *entry = self->entries[i];
2026         ir_block_life_propagate(entry, self, changed);
2027     }
2028
2029     return true;
2030 on_error:
2031 #if defined(LIFE_RANGE_WITHOUT_LAST_READ)
2032     MEM_VECTOR_CLEAR(&new_reads, v);
2033 #endif
2034     return false;
2035 }
2036
2037 /***********************************************************************
2038  *IR Code-Generation
2039  *
2040  * Since the IR has the convention of putting 'write' operands
2041  * at the beginning, we have to rotate the operands of instructions
2042  * properly in order to generate valid QCVM code.
2043  *
2044  * Having destinations at a fixed position is more convenient. In QC
2045  * this is *mostly* OPC,  but FTE adds at least 2 instructions which
2046  * read from from OPA,  and store to OPB rather than OPC.   Which is
2047  * partially the reason why the implementation of these instructions
2048  * in darkplaces has been delayed for so long.
2049  *
2050  * Breaking conventions is annoying...
2051  */
2052 static bool ir_builder_gen_global(ir_builder *self, ir_value *global);
2053
2054 static bool gen_global_field(ir_value *global)
2055 {
2056     if (global->isconst)
2057     {
2058         ir_value *fld = global->constval.vpointer;
2059         if (!fld) {
2060             printf("Invalid field constant with no field: %s\n", global->name);
2061             return false;
2062         }
2063
2064         /* Now, in this case, a relocation would be impossible to code
2065          * since it looks like this:
2066          * .vector v = origin;     <- parse error, wtf is 'origin'?
2067          * .vector origin;
2068          *
2069          * But we will need a general relocation support later anyway
2070          * for functions... might as well support that here.
2071          */
2072         if (!fld->code.globaladdr) {
2073             printf("FIXME: Relocation support\n");
2074             return false;
2075         }
2076
2077         /* copy the field's value */
2078         global->code.globaladdr = code_globals_add(code_globals_data[fld->code.globaladdr]);
2079     }
2080     else
2081     {
2082         global->code.globaladdr = code_globals_add(0);
2083     }
2084     if (global->code.globaladdr < 0)
2085         return false;
2086     return true;
2087 }
2088
2089 static bool gen_global_pointer(ir_value *global)
2090 {
2091     if (global->isconst)
2092     {
2093         ir_value *target = global->constval.vpointer;
2094         if (!target) {
2095             printf("Invalid pointer constant: %s\n", global->name);
2096             /* NULL pointers are pointing to the NULL constant, which also
2097              * sits at address 0, but still has an ir_value for itself.
2098              */
2099             return false;
2100         }
2101
2102         /* Here, relocations ARE possible - in fteqcc-enhanced-qc:
2103          * void() foo; <- proto
2104          * void() *fooptr = &foo;
2105          * void() foo = { code }
2106          */
2107         if (!target->code.globaladdr) {
2108             /* FIXME: Check for the constant nullptr ir_value!
2109              * because then code.globaladdr being 0 is valid.
2110              */
2111             printf("FIXME: Relocation support\n");
2112             return false;
2113         }
2114
2115         global->code.globaladdr = code_globals_add(target->code.globaladdr);
2116     }
2117     else
2118     {
2119         global->code.globaladdr = code_globals_add(0);
2120     }
2121     if (global->code.globaladdr < 0)
2122         return false;
2123     return true;
2124 }
2125
2126 static bool gen_blocks_recursive(ir_function *func, ir_block *block)
2127 {
2128     prog_section_statement stmt;
2129     ir_instr *instr;
2130     ir_block *target;
2131     ir_block *ontrue;
2132     ir_block *onfalse;
2133     size_t    stidx;
2134     size_t    i;
2135
2136 tailcall:
2137     block->generated = true;
2138     block->code_start = code_statements_elements;
2139     for (i = 0; i < block->instr_count; ++i)
2140     {
2141         instr = block->instr[i];
2142
2143         if (instr->opcode == VINSTR_PHI) {
2144             printf("cannot generate virtual instruction (phi)\n");
2145             return false;
2146         }
2147
2148         if (instr->opcode == VINSTR_JUMP) {
2149             target = instr->bops[0];
2150             /* for uncoditional jumps, if the target hasn't been generated
2151              * yet, we generate them right here.
2152              */
2153             if (!target->generated) {
2154                 block = target;
2155                 goto tailcall;
2156             }
2157
2158             /* otherwise we generate a jump instruction */
2159             stmt.opcode = INSTR_GOTO;
2160             stmt.o1.s1 = (target->code_start) - code_statements_elements;
2161             stmt.o2.s1 = 0;
2162             stmt.o3.s1 = 0;
2163             if (code_statements_add(stmt) < 0)
2164                 return false;
2165
2166             /* no further instructions can be in this block */
2167             return true;
2168         }
2169
2170         if (instr->opcode == VINSTR_COND) {
2171             ontrue  = instr->bops[0];
2172             onfalse = instr->bops[1];
2173             /* TODO: have the AST signal which block should
2174              * come first: eg. optimize IFs without ELSE...
2175              */
2176
2177             stmt.o1.u1 = instr->_ops[0]->code.globaladdr;
2178             stmt.o2.u1 = 0;
2179             stmt.o3.s1 = 0;
2180
2181             if (ontrue->generated) {
2182                 stmt.opcode = INSTR_IF;
2183                 stmt.o2.s1 = (ontrue->code_start-1) - code_statements_elements;
2184                 if (code_statements_add(stmt) < 0)
2185                     return false;
2186             }
2187             if (onfalse->generated) {
2188                 stmt.opcode = INSTR_IFNOT;
2189                 stmt.o2.s1 = (onfalse->code_start-1) - code_statements_elements;
2190                 if (code_statements_add(stmt) < 0)
2191                     return false;
2192             }
2193             if (!ontrue->generated) {
2194                 if (onfalse->generated) {
2195                     block = ontrue;
2196                     goto tailcall;
2197                 }
2198             }
2199             if (!onfalse->generated) {
2200                 if (ontrue->generated) {
2201                     block = onfalse;
2202                     goto tailcall;
2203                 }
2204             }
2205             /* neither ontrue nor onfalse exist */
2206             stmt.opcode = INSTR_IFNOT;
2207             stidx = code_statements_elements;
2208             if (code_statements_add(stmt) < 0)
2209                 return false;
2210             /* on false we jump, so add ontrue-path */
2211             if (!gen_blocks_recursive(func, ontrue))
2212                 return false;
2213             /* fixup the jump address */
2214             code_statements_data[stidx].o2.s1 = code_statements_elements - stidx;
2215             /* generate onfalse path */
2216             if (onfalse->generated) {
2217                 /* fixup the jump address */
2218                 code_statements_data[stidx].o2.s1 = (onfalse->code_start) - (stidx);
2219                 /* may have been generated in the previous recursive call */
2220                 stmt.opcode = INSTR_GOTO;
2221                 stmt.o1.s1 = (onfalse->code_start) - code_statements_elements;
2222                 stmt.o2.s1 = 0;
2223                 stmt.o3.s1 = 0;
2224                 return (code_statements_add(stmt) >= 0);
2225             }
2226             /* if not, generate now */
2227             block = onfalse;
2228             goto tailcall;
2229         }
2230
2231         if (instr->opcode >= INSTR_CALL0 && instr->opcode <= INSTR_CALL8) {
2232             /* Trivial call translation:
2233              * copy all params to OFS_PARM*
2234              * if the output's storetype is not store_return,
2235              * add append a STORE instruction!
2236              *
2237              * NOTES on how to do it better without much trouble:
2238              * -) The liferanges!
2239              *      Simply check the liferange of all parameters for
2240              *      other CALLs. For each param with no CALL in its
2241              *      liferange, we can store it in an OFS_PARM at
2242              *      generation already. This would even include later
2243              *      reuse.... probably... :)
2244              */
2245             size_t p;
2246             ir_value *retvalue;
2247
2248             for (p = 0; p < instr->params_count; ++p)
2249             {
2250                 ir_value *param = instr->params[p];
2251
2252                 stmt.opcode = INSTR_STORE_F;
2253                 stmt.o3.u1 = 0;
2254
2255                 stmt.opcode = type_store_instr[param->vtype];
2256                 stmt.o1.u1 = param->code.globaladdr;
2257                 stmt.o2.u1 = OFS_PARM0 + 3 * p;
2258                 if (code_statements_add(stmt) < 0)
2259                     return false;
2260             }
2261             stmt.opcode = INSTR_CALL0 + instr->params_count;
2262             if (stmt.opcode > INSTR_CALL8)
2263                 stmt.opcode = INSTR_CALL8;
2264             stmt.o1.u1 = instr->_ops[1]->code.globaladdr;
2265             stmt.o2.u1 = 0;
2266             stmt.o3.u1 = 0;
2267             if (code_statements_add(stmt) < 0)
2268                 return false;
2269
2270             retvalue = instr->_ops[0];
2271             if (retvalue && retvalue->store != store_return && retvalue->life_count)
2272             {
2273                 /* not to be kept in OFS_RETURN */
2274                 stmt.opcode = type_store_instr[retvalue->vtype];
2275                 stmt.o1.u1 = OFS_RETURN;
2276                 stmt.o2.u1 = retvalue->code.globaladdr;
2277                 stmt.o3.u1 = 0;
2278                 if (code_statements_add(stmt) < 0)
2279                     return false;
2280             }
2281             continue;
2282         }
2283
2284         if (instr->opcode == INSTR_STATE) {
2285             printf("TODO: state instruction\n");
2286             return false;
2287         }
2288
2289         stmt.opcode = instr->opcode;
2290         stmt.o1.u1 = 0;
2291         stmt.o2.u1 = 0;
2292         stmt.o3.u1 = 0;
2293
2294         /* This is the general order of operands */
2295         if (instr->_ops[0])
2296             stmt.o3.u1 = instr->_ops[0]->code.globaladdr;
2297
2298         if (instr->_ops[1])
2299             stmt.o1.u1 = instr->_ops[1]->code.globaladdr;
2300
2301         if (instr->_ops[2])
2302             stmt.o2.u1 = instr->_ops[2]->code.globaladdr;
2303
2304         if (stmt.opcode == INSTR_RETURN || stmt.opcode == INSTR_DONE)
2305         {
2306             stmt.o1.u1 = stmt.o3.u1;
2307             stmt.o3.u1 = 0;
2308         }
2309         else if (stmt.opcode >= INSTR_STORE_F &&
2310                  stmt.opcode <= INSTR_STORE_FNC)
2311         {
2312             /* 2-operand instructions with A -> B */
2313             stmt.o2.u1 = stmt.o3.u1;
2314             stmt.o3.u1 = 0;
2315         }
2316
2317         if (code_statements_add(stmt) < 0)
2318             return false;
2319     }
2320     return true;
2321 }
2322
2323 static bool gen_function_code(ir_function *self)
2324 {
2325     ir_block *block;
2326     prog_section_statement stmt;
2327
2328     /* Starting from entry point, we generate blocks "as they come"
2329      * for now. Dead blocks will not be translated obviously.
2330      */
2331     if (!self->blocks_count) {
2332         printf("Function '%s' declared without body.\n", self->name);
2333         return false;
2334     }
2335
2336     block = self->blocks[0];
2337     if (block->generated)
2338         return true;
2339
2340     if (!gen_blocks_recursive(self, block)) {
2341         printf("failed to generate blocks for '%s'\n", self->name);
2342         return false;
2343     }
2344
2345     /* otherwise code_write crashes since it debug-prints functions until AINSTR_END */
2346     stmt.opcode = AINSTR_END;
2347     stmt.o1.u1 = 0;
2348     stmt.o2.u1 = 0;
2349     stmt.o3.u1 = 0;
2350     if (code_statements_add(stmt) < 0)
2351         return false;
2352     return true;
2353 }
2354
2355 static bool gen_global_function(ir_builder *ir, ir_value *global)
2356 {
2357     prog_section_function fun;
2358     ir_function          *irfun;
2359
2360     size_t i;
2361     size_t local_var_end;
2362
2363     if (!global->isconst || (!global->constval.vfunc))
2364     {
2365         printf("Invalid state of function-global: not constant: %s\n", global->name);
2366         return false;
2367     }
2368
2369     irfun = global->constval.vfunc;
2370
2371     fun.name    = global->code.name;
2372     fun.file    = code_cachedstring(global->context.file);
2373     fun.profile = 0; /* always 0 */
2374     fun.nargs   = irfun->params_count;
2375
2376     for (i = 0;i < 8; ++i) {
2377         if (i >= fun.nargs)
2378             fun.argsize[i] = 0;
2379         else
2380             fun.argsize[i] = type_sizeof[irfun->params[i]];
2381     }
2382
2383     fun.firstlocal = code_globals_elements;
2384     fun.locals     = irfun->allocated_locals + irfun->locals_count;
2385
2386     local_var_end = 0;
2387     for (i = 0; i < irfun->locals_count; ++i) {
2388         if (!ir_builder_gen_global(ir, irfun->locals[i])) {
2389             printf("Failed to generate global %s\n", irfun->locals[i]->name);
2390             return false;
2391         }
2392     }
2393     if (irfun->locals_count) {
2394         ir_value *last = irfun->locals[irfun->locals_count-1];
2395         local_var_end = last->code.globaladdr;
2396         local_var_end += type_sizeof[last->vtype];
2397     }
2398     for (i = 0; i < irfun->values_count; ++i)
2399     {
2400         /* generate code.globaladdr for ssa values */
2401         ir_value *v = irfun->values[i];
2402         v->code.globaladdr = local_var_end + v->code.local;
2403     }
2404     for (i = 0; i < irfun->locals_count; ++i) {
2405         /* fill the locals with zeros */
2406         code_globals_add(0);
2407     }
2408
2409     if (irfun->builtin)
2410         fun.entry = irfun->builtin;
2411     else {
2412         fun.entry = code_statements_elements;
2413         if (!gen_function_code(irfun)) {
2414             printf("Failed to generate code for function %s\n", irfun->name);
2415             return false;
2416         }
2417     }
2418
2419     return (code_functions_add(fun) >= 0);
2420 }
2421
2422 static bool ir_builder_gen_global(ir_builder *self, ir_value *global)
2423 {
2424     size_t           i;
2425     int32_t         *iptr;
2426     prog_section_def def;
2427
2428     def.type   = global->vtype;
2429     def.offset = code_globals_elements;
2430     def.name   = global->code.name       = code_genstring(global->name);
2431
2432     switch (global->vtype)
2433     {
2434     case TYPE_POINTER:
2435         if (code_defs_add(def) < 0)
2436             return false;
2437         return gen_global_pointer(global);
2438     case TYPE_FIELD:
2439         if (code_defs_add(def) < 0)
2440             return false;
2441         return gen_global_field(global);
2442     case TYPE_ENTITY:
2443         /* fall through */
2444     case TYPE_FLOAT:
2445     {
2446         if (code_defs_add(def) < 0)
2447             return false;
2448
2449         if (global->isconst) {
2450             iptr = (int32_t*)&global->constval.vfloat;
2451             global->code.globaladdr = code_globals_add(*iptr);
2452         } else
2453             global->code.globaladdr = code_globals_add(0);
2454
2455         return global->code.globaladdr >= 0;
2456     }
2457     case TYPE_STRING:
2458     {
2459         if (code_defs_add(def) < 0)
2460             return false;
2461         if (global->isconst)
2462             global->code.globaladdr = code_globals_add(code_cachedstring(global->constval.vstring));
2463         else
2464             global->code.globaladdr = code_globals_add(0);
2465         return global->code.globaladdr >= 0;
2466     }
2467     case TYPE_VECTOR:
2468     {
2469         size_t d;
2470         if (code_defs_add(def) < 0)
2471             return false;
2472
2473         if (global->isconst) {
2474             iptr = (int32_t*)&global->constval.vvec;
2475             global->code.globaladdr = code_globals_add(iptr[0]);
2476             if (global->code.globaladdr < 0)
2477                 return false;
2478             for (d = 1; d < type_sizeof[global->vtype]; ++d)
2479             {
2480                 if (code_globals_add(iptr[d]) < 0)
2481                     return false;
2482             }
2483         } else {
2484             global->code.globaladdr = code_globals_add(0);
2485             if (global->code.globaladdr < 0)
2486                 return false;
2487             for (d = 1; d < type_sizeof[global->vtype]; ++d)
2488             {
2489                 if (code_globals_add(0) < 0)
2490                     return false;
2491             }
2492         }
2493         return global->code.globaladdr >= 0;
2494     }
2495     case TYPE_FUNCTION:
2496         if (code_defs_add(def) < 0)
2497             return false;
2498         global->code.globaladdr = code_globals_elements;
2499         code_globals_add(code_functions_elements);
2500         return gen_global_function(self, global);
2501     case TYPE_VARIANT:
2502         /* assume biggest type */
2503             global->code.globaladdr = code_globals_add(0);
2504             for (i = 1; i < type_sizeof[TYPE_VARIANT]; ++i)
2505                 code_globals_add(0);
2506             return true;
2507     default:
2508         /* refuse to create 'void' type or any other fancy business. */
2509         printf("Invalid type for global variable %s\n", global->name);
2510         return false;
2511     }
2512 }
2513
2514 static bool ir_builder_gen_field(ir_builder *self, ir_value *field)
2515 {
2516     prog_section_def def;
2517     prog_section_field fld;
2518
2519     def.type   = field->vtype;
2520     def.offset = code_globals_elements;
2521     def.name   = field->code.name = code_genstring(field->name);
2522
2523     if (code_defs_add(def) < 0)
2524         return false;
2525
2526     fld.name = def.name;
2527     fld.offset = code_fields_elements;
2528     fld.type = field->fieldtype;
2529
2530     if (fld.type == TYPE_VOID) {
2531         printf("field is missing a type: %s - don't know its size\n", field->name);
2532         return false;
2533     }
2534
2535     if (code_fields_add(fld) < 0)
2536         return false;
2537
2538     if (!code_globals_add(code_alloc_field(type_sizeof[field->fieldtype])))
2539         return false;
2540
2541     field->code.globaladdr = code_globals_add(fld.offset);
2542     return field->code.globaladdr >= 0;
2543 }
2544
2545 bool ir_builder_generate(ir_builder *self, const char *filename)
2546 {
2547     size_t i;
2548
2549     code_init();
2550
2551     for (i = 0; i < self->fields_count; ++i)
2552     {
2553         if (!ir_builder_gen_field(self, self->fields[i])) {
2554             return false;
2555         }
2556     }
2557
2558     for (i = 0; i < self->globals_count; ++i)
2559     {
2560         if (!ir_builder_gen_global(self, self->globals[i])) {
2561             return false;
2562         }
2563     }
2564
2565     printf("writing '%s'...\n", filename);
2566     return code_write(filename);
2567 }
2568
2569 /***********************************************************************
2570  *IR DEBUG Dump functions...
2571  */
2572
2573 #define IND_BUFSZ 1024
2574
2575 const char *qc_opname(int op)
2576 {
2577     if (op < 0) return "<INVALID>";
2578     if (op < ( sizeof(asm_instr) / sizeof(asm_instr[0]) ))
2579         return asm_instr[op].m;
2580     switch (op) {
2581         case VINSTR_PHI:  return "PHI";
2582         case VINSTR_JUMP: return "JUMP";
2583         case VINSTR_COND: return "COND";
2584         default:          return "<UNK>";
2585     }
2586 }
2587
2588 void ir_builder_dump(ir_builder *b, int (*oprintf)(const char*, ...))
2589 {
2590         size_t i;
2591         char indent[IND_BUFSZ];
2592         indent[0] = '\t';
2593         indent[1] = 0;
2594
2595         oprintf("module %s\n", b->name);
2596         for (i = 0; i < b->globals_count; ++i)
2597         {
2598                 oprintf("global ");
2599                 if (b->globals[i]->isconst)
2600                         oprintf("%s = ", b->globals[i]->name);
2601                 ir_value_dump(b->globals[i], oprintf);
2602                 oprintf("\n");
2603         }
2604         for (i = 0; i < b->functions_count; ++i)
2605                 ir_function_dump(b->functions[i], indent, oprintf);
2606         oprintf("endmodule %s\n", b->name);
2607 }
2608
2609 void ir_function_dump(ir_function *f, char *ind,
2610                       int (*oprintf)(const char*, ...))
2611 {
2612         size_t i;
2613         if (f->builtin != 0) {
2614             oprintf("%sfunction %s = builtin %i\n", ind, f->name, -f->builtin);
2615             return;
2616         }
2617         oprintf("%sfunction %s\n", ind, f->name);
2618         strncat(ind, "\t", IND_BUFSZ);
2619         if (f->locals_count)
2620         {
2621                 oprintf("%s%i locals:\n", ind, (int)f->locals_count);
2622                 for (i = 0; i < f->locals_count; ++i) {
2623                         oprintf("%s\t", ind);
2624                         ir_value_dump(f->locals[i], oprintf);
2625                         oprintf("\n");
2626                 }
2627         }
2628         if (f->blocks_count)
2629         {
2630                 oprintf("%slife passes (check): %i\n", ind, (int)f->run_id);
2631                 for (i = 0; i < f->blocks_count; ++i) {
2632                     if (f->blocks[i]->run_id != f->run_id) {
2633                         oprintf("%slife pass check fail! %i != %i\n", ind, (int)f->blocks[i]->run_id, (int)f->run_id);
2634                     }
2635                         ir_block_dump(f->blocks[i], ind, oprintf);
2636                 }
2637
2638         }
2639         ind[strlen(ind)-1] = 0;
2640         oprintf("%sendfunction %s\n", ind, f->name);
2641 }
2642
2643 void ir_block_dump(ir_block* b, char *ind,
2644                    int (*oprintf)(const char*, ...))
2645 {
2646         size_t i;
2647         oprintf("%s:%s\n", ind, b->label);
2648         strncat(ind, "\t", IND_BUFSZ);
2649
2650         for (i = 0; i < b->instr_count; ++i)
2651                 ir_instr_dump(b->instr[i], ind, oprintf);
2652         ind[strlen(ind)-1] = 0;
2653 }
2654
2655 void dump_phi(ir_instr *in, char *ind,
2656               int (*oprintf)(const char*, ...))
2657 {
2658         size_t i;
2659         oprintf("%s <- phi ", in->_ops[0]->name);
2660         for (i = 0; i < in->phi_count; ++i)
2661         {
2662                 oprintf("([%s] : %s) ", in->phi[i].from->label,
2663                                         in->phi[i].value->name);
2664         }
2665         oprintf("\n");
2666 }
2667
2668 void ir_instr_dump(ir_instr *in, char *ind,
2669                        int (*oprintf)(const char*, ...))
2670 {
2671         size_t i;
2672         const char *comma = NULL;
2673
2674         oprintf("%s (%i) ", ind, (int)in->eid);
2675
2676         if (in->opcode == VINSTR_PHI) {
2677                 dump_phi(in, ind, oprintf);
2678                 return;
2679         }
2680
2681         strncat(ind, "\t", IND_BUFSZ);
2682
2683         if (in->_ops[0] && (in->_ops[1] || in->_ops[2])) {
2684                 ir_value_dump(in->_ops[0], oprintf);
2685                 if (in->_ops[1] || in->_ops[2])
2686                         oprintf(" <- ");
2687         }
2688         oprintf("%s\t", qc_opname(in->opcode));
2689         if (in->_ops[0] && !(in->_ops[1] || in->_ops[2])) {
2690                 ir_value_dump(in->_ops[0], oprintf);
2691                 comma = ",\t";
2692         }
2693         else
2694         {
2695                 for (i = 1; i != 3; ++i) {
2696                         if (in->_ops[i]) {
2697                                 if (comma)
2698                                         oprintf(comma);
2699                                 ir_value_dump(in->_ops[i], oprintf);
2700                                 comma = ",\t";
2701                         }
2702                 }
2703         }
2704         if (in->bops[0]) {
2705                 if (comma)
2706                         oprintf(comma);
2707                 oprintf("[%s]", in->bops[0]->label);
2708                 comma = ",\t";
2709         }
2710         if (in->bops[1])
2711                 oprintf("%s[%s]", comma, in->bops[1]->label);
2712         oprintf("\n");
2713         ind[strlen(ind)-1] = 0;
2714 }
2715
2716 void ir_value_dump(ir_value* v, int (*oprintf)(const char*, ...))
2717 {
2718         if (v->isconst) {
2719                 switch (v->vtype) {
2720                         case TYPE_VOID:
2721                                 oprintf("(void)");
2722                                 break;
2723                         case TYPE_FLOAT:
2724                                 oprintf("%g", v->constval.vfloat);
2725                                 break;
2726                         case TYPE_VECTOR:
2727                                 oprintf("'%g %g %g'",
2728                                         v->constval.vvec.x,
2729                                         v->constval.vvec.y,
2730                                         v->constval.vvec.z);
2731                                 break;
2732                         case TYPE_ENTITY:
2733                                 oprintf("(entity)");
2734                                 break;
2735                         case TYPE_STRING:
2736                                 oprintf("\"%s\"", v->constval.vstring);
2737                                 break;
2738 #if 0
2739                         case TYPE_INTEGER:
2740                                 oprintf("%i", v->constval.vint);
2741                                 break;
2742 #endif
2743                         case TYPE_POINTER:
2744                                 oprintf("&%s",
2745                                         v->constval.vpointer->name);
2746                                 break;
2747                 }
2748         } else {
2749                 oprintf("%s", v->name);
2750         }
2751 }
2752
2753 void ir_value_dump_life(ir_value *self, int (*oprintf)(const char*,...))
2754 {
2755         size_t i;
2756         oprintf("Life of %s:\n", self->name);
2757         for (i = 0; i < self->life_count; ++i)
2758         {
2759                 oprintf(" + [%i, %i]\n", self->life[i].start, self->life[i].end);
2760         }
2761 }