don't fail on missing erturn value
[cparser] / ast2firm.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #include <assert.h>
23 #include <string.h>
24 #include <stdbool.h>
25
26 #include <libfirm/firm.h>
27 #include <libfirm/adt/obst.h>
28
29 #include "ast2firm.h"
30
31 #include "adt/error.h"
32 #include "adt/array.h"
33 #include "symbol_t.h"
34 #include "token_t.h"
35 #include "type_t.h"
36 #include "ast_t.h"
37 #include "parser.h"
38 #include "diagnostic.h"
39 #include "lang_features.h"
40 #include "types.h"
41 #include "warning.h"
42 #include "entitymap_t.h"
43 #include "driver/firm_opt.h"
44 #include "driver/firm_cmdline.h"
45
46 #define MAGIC_DEFAULT_PN_NUMBER     (long) -314159265
47
48 /* some idents needed for name mangling */
49 static ident *id_underscore;
50 static ident *id_imp;
51
52 static ir_type *ir_type_const_char;
53 static ir_type *ir_type_wchar_t;
54 static ir_type *ir_type_void;
55 static ir_type *ir_type_int;
56
57 static type_t *type_const_char;
58
59 static int       next_value_number_function;
60 static ir_node  *continue_label;
61 static ir_node  *break_label;
62 static ir_node  *current_switch_cond;
63 static bool      saw_default_label;
64 static ir_node **imature_blocks;
65 static bool constant_folding;
66
67 static const declaration_t *current_function_decl;
68 static ir_node             *current_function_name;
69 static ir_node             *current_funcsig;
70
71 static entitymap_t  entitymap;
72
73 static struct obstack asm_obst;
74
75 typedef enum declaration_kind_t {
76         DECLARATION_KIND_UNKNOWN,
77         DECLARATION_KIND_FUNCTION,
78         DECLARATION_KIND_VARIABLE_LENGTH_ARRAY,
79         DECLARATION_KIND_GLOBAL_VARIABLE,
80         DECLARATION_KIND_LOCAL_VARIABLE,
81         DECLARATION_KIND_LOCAL_VARIABLE_ENTITY,
82         DECLARATION_KIND_COMPOUND_MEMBER,
83         DECLARATION_KIND_LABEL_BLOCK,
84         DECLARATION_KIND_ENUM_ENTRY,
85         DECLARATION_KIND_COMPOUND_TYPE_INCOMPLETE,
86         DECLARATION_KIND_COMPOUND_TYPE_COMPLETE,
87         DECLARATION_KIND_TYPE
88 } declaration_kind_t;
89
90 static ir_type *get_ir_type(type_t *type);
91 static ir_type *get_ir_type_incomplete(type_t *type);
92 static int count_decls_in_stmts(const statement_t *stmt);
93
94 ir_node *uninitialized_local_var(ir_graph *irg, ir_mode *mode, int pos)
95 {
96         const declaration_t *declaration = get_irg_loc_description(irg, pos);
97
98         warningf(&declaration->source_position,
99                  "variable '%#T' might be used uninitialized",
100                  declaration->type, declaration->symbol);
101         return new_r_Unknown(irg, mode);
102 }
103
104 unsigned dbg_snprint(char *buf, unsigned len, const dbg_info *dbg)
105 {
106         const source_position_t *pos = (const source_position_t*) dbg;
107         if(pos == NULL)
108                 return 0;
109         return (unsigned) snprintf(buf, len, "%s:%u", pos->input_name,
110                                    pos->linenr);
111 }
112
113 const char *dbg_retrieve(const dbg_info *dbg, unsigned *line)
114 {
115         const source_position_t *pos = (const source_position_t*) dbg;
116         if(pos == NULL)
117                 return NULL;
118         if(line != NULL)
119                 *line = pos->linenr;
120         return pos->input_name;
121 }
122
123 static dbg_info *get_dbg_info(const source_position_t *pos)
124 {
125         return (dbg_info*) pos;
126 }
127
128 static ir_mode *_atomic_modes[ATOMIC_TYPE_LAST+1];
129
130 static ir_mode *mode_int, *mode_uint;
131
132 static ir_node *_expression_to_firm(const expression_t *expression);
133 static ir_node *expression_to_firm(const expression_t *expression);
134 static inline ir_mode *get_ir_mode(type_t *type);
135 static void create_local_declaration(declaration_t *declaration);
136
137 static ir_mode *init_atomic_ir_mode(atomic_type_kind_t kind)
138 {
139         unsigned flags = get_atomic_type_flags(kind);
140         unsigned size  = get_atomic_type_size(kind);
141         if( (flags & (ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_FLOAT))
142                         && !(flags & ATOMIC_TYPE_FLAG_COMPLEX)) {
143                 char            name[64];
144                 ir_mode_sort    sort;
145                 unsigned        bit_size     = size * 8;
146                 bool            is_signed    = (flags & ATOMIC_TYPE_FLAG_SIGNED) != 0;
147                 ir_mode_arithmetic arithmetic;
148                 unsigned        modulo_shift;
149
150                 if(flags & ATOMIC_TYPE_FLAG_INTEGER) {
151                         assert(! (flags & ATOMIC_TYPE_FLAG_FLOAT));
152                         snprintf(name, sizeof(name), "i%s%d", is_signed?"":"u", bit_size);
153                         sort         = irms_int_number;
154                         arithmetic   = irma_twos_complement;
155                         modulo_shift = bit_size < machine_size ? machine_size : bit_size;
156                 } else {
157                         assert(flags & ATOMIC_TYPE_FLAG_FLOAT);
158                         snprintf(name, sizeof(name), "f%d", bit_size);
159                         sort         = irms_float_number;
160                         arithmetic   = irma_ieee754;
161                         modulo_shift = 0;
162                 }
163                 return new_ir_mode(name, sort, bit_size, is_signed, arithmetic,
164                                    modulo_shift);
165         }
166
167         return NULL;
168 }
169
170 /**
171  * Initialises the atomic modes depending on the machine size.
172  */
173 static void init_atomic_modes(void)
174 {
175         for(int i = 0; i <= ATOMIC_TYPE_LAST; ++i) {
176                 _atomic_modes[i] = init_atomic_ir_mode((atomic_type_kind_t) i);
177         }
178         mode_int  = _atomic_modes[ATOMIC_TYPE_INT];
179         mode_uint = _atomic_modes[ATOMIC_TYPE_UINT];
180
181         /* there's no real void type in firm */
182         _atomic_modes[ATOMIC_TYPE_VOID] = mode_int;
183
184         /* initialize pointer modes */
185         char            name[64];
186         ir_mode_sort    sort         = irms_reference;
187         unsigned        bit_size     = machine_size;
188         bool            is_signed    = 0;
189         ir_mode_arithmetic arithmetic   = irma_twos_complement;
190         unsigned        modulo_shift
191                 = bit_size < machine_size ? machine_size : bit_size;
192
193         snprintf(name, sizeof(name), "p%d", machine_size);
194         ir_mode *ptr_mode = new_ir_mode(name, sort, bit_size, is_signed, arithmetic,
195                                         modulo_shift);
196
197         set_reference_mode_signed_eq(ptr_mode, _atomic_modes[get_intptr_kind()]);
198         set_reference_mode_unsigned_eq(ptr_mode, _atomic_modes[get_uintptr_kind()]);
199
200         /* Hmm, pointers should be machine size */
201         set_modeP_data(ptr_mode);
202         set_modeP_code(ptr_mode);
203 }
204
205 static unsigned get_compound_type_size(compound_type_t *type)
206 {
207         ir_type *irtype = get_ir_type((type_t*) type);
208         return get_type_size_bytes(irtype);
209 }
210
211 static unsigned get_array_type_size(array_type_t *type)
212 {
213         assert(!type->is_vla);
214         ir_type *irtype = get_ir_type((type_t*) type);
215         return get_type_size_bytes(irtype);
216 }
217
218
219 static unsigned get_type_size_const(type_t *type)
220 {
221         type = skip_typeref(type);
222
223         switch(type->kind) {
224         case TYPE_ERROR:
225                 panic("error type occurred");
226         case TYPE_ATOMIC:
227                 return get_atomic_type_size(type->atomic.akind);
228         case TYPE_COMPLEX:
229                 return 2 * get_atomic_type_size(type->complex.akind);
230         case TYPE_IMAGINARY:
231                 return get_atomic_type_size(type->imaginary.akind);
232         case TYPE_ENUM:
233                 return get_mode_size_bytes(mode_int);
234         case TYPE_COMPOUND_UNION:
235         case TYPE_COMPOUND_STRUCT:
236                 return get_compound_type_size(&type->compound);
237         case TYPE_FUNCTION:
238                 /* just a pointer to the function */
239                 return get_mode_size_bytes(mode_P_code);
240         case TYPE_POINTER:
241                 return get_mode_size_bytes(mode_P_data);
242         case TYPE_ARRAY:
243                 return get_array_type_size(&type->array);
244         case TYPE_BUILTIN:
245                 return get_type_size_const(type->builtin.real_type);
246         case TYPE_BITFIELD:
247                 panic("type size of bitfield request");
248         case TYPE_TYPEDEF:
249         case TYPE_TYPEOF:
250         case TYPE_INVALID:
251                 break;
252         }
253         panic("Trying to determine size of invalid type");
254 }
255
256 static ir_node *get_type_size(type_t *type)
257 {
258         type = skip_typeref(type);
259
260         if(is_type_array(type) && type->array.is_vla) {
261                 ir_node *size_node = type->array.size_node;
262                 if(size_node == NULL) {
263                         size_node = expression_to_firm(type->array.size_expression);
264                         assert(!is_Const(size_node));
265                         type->array.size_node = size_node;
266                 }
267
268                 ir_node *elem_size = get_type_size(type->array.element_type);
269                 ir_mode *mode      = get_irn_mode(size_node);
270                 ir_node *real_size = new_d_Mul(NULL, size_node, elem_size, mode);
271                 return real_size;
272         }
273
274         ir_mode *mode = get_ir_mode(type_size_t);
275         symconst_symbol sym;
276         sym.type_p = get_ir_type(type);
277         return new_SymConst(mode, sym, symconst_type_size);
278 }
279
280 static unsigned count_parameters(const function_type_t *function_type)
281 {
282         unsigned count = 0;
283
284         function_parameter_t *parameter = function_type->parameters;
285         for ( ; parameter != NULL; parameter = parameter->next) {
286                 ++count;
287         }
288
289         return count;
290 }
291
292 /**
293  * Creates a Firm type for an atomic type
294  */
295 static ir_type *create_atomic_type(const atomic_type_t *type)
296 {
297         dbg_info           *dbgi      = get_dbg_info(&type->base.source_position);
298         atomic_type_kind_t  kind      = type->akind;
299         ir_mode            *mode      = _atomic_modes[kind];
300         ident              *id        = get_mode_ident(mode);
301         ir_type            *irtype    = new_d_type_primitive(id, mode, dbgi);
302
303         set_type_alignment_bytes(irtype, type->base.alignment);
304
305         return irtype;
306 }
307
308 /**
309  * Creates a Firm type for a complex type
310  */
311 static ir_type *create_complex_type(const complex_type_t *type)
312 {
313         dbg_info           *dbgi      = get_dbg_info(&type->base.source_position);
314         atomic_type_kind_t  kind      = type->akind;
315         ir_mode            *mode      = _atomic_modes[kind];
316         ident              *id        = get_mode_ident(mode);
317
318         (void) id;
319         (void) dbgi;
320
321         /* FIXME: finish the array */
322         return NULL;
323 }
324
325 /**
326  * Creates a Firm type for an imaginary type
327  */
328 static ir_type *create_imaginary_type(const imaginary_type_t *type)
329 {
330         dbg_info           *dbgi      = get_dbg_info(&type->base.source_position);
331         atomic_type_kind_t  kind      = type->akind;
332         ir_mode            *mode      = _atomic_modes[kind];
333         ident              *id        = get_mode_ident(mode);
334         ir_type            *irtype    = new_d_type_primitive(id, mode, dbgi);
335
336         set_type_alignment_bytes(irtype, type->base.alignment);
337
338         return irtype;
339 }
340
341 static ir_type *create_method_type(const function_type_t *function_type)
342 {
343         type_t  *return_type  = function_type->return_type;
344
345         ident   *id           = id_unique("functiontype.%u");
346         int      n_parameters = count_parameters(function_type);
347         int      n_results    = return_type == type_void ? 0 : 1;
348         dbg_info *dbgi        = get_dbg_info(&function_type->base.source_position);
349         ir_type *irtype       = new_d_type_method(id, n_parameters, n_results, dbgi);
350
351         if (return_type != type_void) {
352                 ir_type *restype = get_ir_type(return_type);
353                 set_method_res_type(irtype, 0, restype);
354         }
355
356         function_parameter_t *parameter = function_type->parameters;
357         int                   n         = 0;
358         for ( ; parameter != NULL; parameter = parameter->next) {
359                 ir_type *p_irtype = get_ir_type(parameter->type);
360                 set_method_param_type(irtype, n, p_irtype);
361                 ++n;
362         }
363
364         if (function_type->variadic || function_type->unspecified_parameters) {
365                 set_method_variadicity(irtype, variadicity_variadic);
366         }
367
368         return irtype;
369 }
370
371 static ir_type *create_pointer_type(pointer_type_t *type)
372 {
373         type_t   *points_to    = type->points_to;
374         ir_type  *ir_points_to = get_ir_type_incomplete(points_to);
375         dbg_info *dbgi         = get_dbg_info(&type->base.source_position);
376         ir_type  *ir_type      = new_d_type_pointer(id_unique("pointer.%u"),
377                                                     ir_points_to, mode_P_data, dbgi);
378
379         return ir_type;
380 }
381
382 static ir_type *create_array_type(array_type_t *type)
383 {
384         type_t  *element_type    = type->element_type;
385         ir_type *ir_element_type = get_ir_type(element_type);
386
387         ident    *id      = id_unique("array.%u");
388         dbg_info *dbgi    = get_dbg_info(&type->base.source_position);
389         ir_type  *ir_type = new_d_type_array(id, 1, ir_element_type, dbgi);
390
391         const int align = get_type_alignment_bytes(ir_element_type);
392         set_type_alignment_bytes(ir_type, align);
393
394         if(type->size_constant) {
395                 int n_elements = type->size;
396
397                 set_array_bounds_int(ir_type, 0, 0, n_elements);
398
399                 size_t elemsize = get_type_size_bytes(ir_element_type);
400                 if(elemsize % align > 0) {
401                         elemsize += align - (elemsize % align);
402                 }
403                 set_type_size_bytes(ir_type, n_elements * elemsize);
404         } else {
405                 set_array_lower_bound_int(ir_type, 0, 0);
406         }
407         set_type_state(ir_type, layout_fixed);
408
409         return ir_type;
410 }
411
412 /**
413  * Return the signed integer type of size bits.
414  *
415  * @param size   the size
416  */
417 static ir_type *get_signed_int_type_for_bit_size(ir_type *base_tp,
418                                                  unsigned size)
419 {
420         static ir_mode *s_modes[64 + 1] = {NULL, };
421         ir_type *res;
422         ir_mode *mode;
423
424         if (size <= 0 || size > 64)
425                 return NULL;
426
427         mode = s_modes[size];
428         if (mode == NULL) {
429                 char name[32];
430
431                 snprintf(name, sizeof(name), "bf_I%u", size);
432                 mode = new_ir_mode(name, irms_int_number, size, 1, irma_twos_complement,
433                                    size <= 32 ? 32 : size );
434                 s_modes[size] = mode;
435         }
436
437         char name[32];
438         snprintf(name, sizeof(name), "I%u", size);
439         ident *id = new_id_from_str(name);
440         dbg_info *dbgi = get_dbg_info(&builtin_source_position);
441         res = new_d_type_primitive(mangle_u(get_type_ident(base_tp), id), mode, dbgi);
442         set_primitive_base_type(res, base_tp);
443
444         return res;
445 }
446
447 /**
448  * Return the unsigned integer type of size bits.
449  *
450  * @param size   the size
451  */
452 static ir_type *get_unsigned_int_type_for_bit_size(ir_type *base_tp,
453                                                    unsigned size)
454 {
455         static ir_mode *u_modes[64 + 1] = {NULL, };
456         ir_type *res;
457         ir_mode *mode;
458
459         if (size <= 0 || size > 64)
460                 return NULL;
461
462         mode = u_modes[size];
463         if (mode == NULL) {
464                 char name[32];
465
466                 snprintf(name, sizeof(name), "bf_U%u", size);
467                 mode = new_ir_mode(name, irms_int_number, size, 0, irma_twos_complement,
468                                    size <= 32 ? 32 : size );
469                 u_modes[size] = mode;
470         }
471
472         char name[32];
473
474         snprintf(name, sizeof(name), "U%u", size);
475         ident *id = new_id_from_str(name);
476         dbg_info *dbgi = get_dbg_info(&builtin_source_position);
477         res = new_d_type_primitive(mangle_u(get_type_ident(base_tp), id), mode, dbgi);
478         set_primitive_base_type(res, base_tp);
479
480         return res;
481 }
482
483 static ir_type *create_bitfield_type(bitfield_type_t *const type)
484 {
485         type_t *base = skip_typeref(type->base_type);
486         assert(base->kind == TYPE_ATOMIC);
487         ir_type *irbase = get_ir_type(base);
488
489         unsigned size = fold_constant(type->size);
490
491         assert(!is_type_float(base));
492         if(is_type_signed(base)) {
493                 return get_signed_int_type_for_bit_size(irbase, size);
494         } else {
495                 return get_unsigned_int_type_for_bit_size(irbase, size);
496         }
497 }
498
499 #define INVALID_TYPE ((ir_type_ptr)-1)
500
501 enum {
502         COMPOUND_IS_STRUCT = false,
503         COMPOUND_IS_UNION  = true
504 };
505
506 /**
507  * Construct firm type from ast struct type.
508  *
509  * As anonymous inner structs get flattened to a single firm type, we might get
510  * irtype, outer_offset and out_align passed (they represent the position of
511  * the anonymous inner struct inside the resulting firm struct)
512  */
513 static ir_type *create_compound_type(compound_type_t *type, ir_type *irtype,
514                                      size_t *outer_offset, size_t *outer_align,
515                                      bool incomplete, bool is_union)
516 {
517         declaration_t      *declaration = type->declaration;
518         declaration_kind_t  kind        = (declaration_kind_t)declaration->declaration_kind;
519
520         if(kind == DECLARATION_KIND_COMPOUND_TYPE_COMPLETE
521                         || (kind == DECLARATION_KIND_COMPOUND_TYPE_INCOMPLETE
522                                 && incomplete))
523                 return declaration->v.irtype;
524
525         size_t align_all  = 1;
526         size_t offset     = 0;
527         size_t bit_offset = 0;
528         size_t size       = 0;
529
530         if(irtype == NULL) {
531                 symbol_t *symbol = declaration->symbol;
532                 ident    *id;
533                 if(symbol != NULL) {
534                         id = new_id_from_str(symbol->string);
535                 } else {
536                         if (is_union) {
537                                 id = id_unique("__anonymous_union.%u");
538                         } else {
539                                 id = id_unique("__anonymous_struct.%u");
540                         }
541                 }
542                 dbg_info *dbgi  = get_dbg_info(&type->base.source_position);
543
544                 if (is_union) {
545                         irtype = new_d_type_union(id, dbgi);
546                 } else {
547                         irtype = new_d_type_struct(id, dbgi);
548                 }
549
550                 declaration->declaration_kind
551                         = DECLARATION_KIND_COMPOUND_TYPE_INCOMPLETE;
552                 declaration->v.irtype         = irtype;
553                 //type->base.firm_type          = irtype;
554         } else {
555                 offset    = *outer_offset;
556                 align_all = *outer_align;
557         }
558
559         if(incomplete)
560                 return irtype;
561
562         declaration->declaration_kind = DECLARATION_KIND_COMPOUND_TYPE_COMPLETE;
563
564         declaration_t *entry = declaration->scope.declarations;
565         for( ; entry != NULL; entry = entry->next) {
566                 if(entry->namespc != NAMESPACE_NORMAL)
567                         continue;
568
569                 size_t prev_offset = offset;
570
571                 symbol_t *symbol     = entry->symbol;
572                 type_t   *entry_type = skip_typeref(entry->type);
573                 dbg_info *dbgi       = get_dbg_info(&entry->source_position);
574
575                 ident    *ident;
576                 if(symbol != NULL) {
577                         ident = new_id_from_str(symbol->string);
578                 } else {
579                         if(entry_type->kind == TYPE_COMPOUND_STRUCT) {
580                                 create_compound_type(&entry_type->compound, irtype, &offset,
581                                                      &align_all, false, COMPOUND_IS_STRUCT);
582                                 goto finished_member;
583                         } else if(entry_type->kind == TYPE_COMPOUND_UNION) {
584                                 create_compound_type(&entry_type->compound, irtype, &offset,
585                                                      &align_all, false, COMPOUND_IS_UNION);
586                                 goto finished_member;
587                         } else {
588                                 assert(entry_type->kind == TYPE_BITFIELD);
589                         }
590                         ident = id_unique("anon.%u");
591                 }
592
593                 ir_type *base_irtype;
594                 if(entry_type->kind == TYPE_BITFIELD) {
595                         base_irtype = get_ir_type(entry_type->bitfield.base_type);
596                 } else {
597                         base_irtype = get_ir_type(entry_type);
598                 }
599
600                 size_t entry_alignment = get_type_alignment_bytes(base_irtype);
601                 size_t misalign        = offset % entry_alignment;
602
603                 ir_type   *entry_irtype = get_ir_type(entry_type);
604                 ir_entity *entity = new_d_entity(irtype, ident, entry_irtype, dbgi);
605
606                 size_t base;
607                 size_t bits_remainder;
608                 if(entry_type->kind == TYPE_BITFIELD) {
609                         size_t size_bits      = fold_constant(entry_type->bitfield.size);
610                         size_t rest_size_bits = (entry_alignment - misalign)*8 - bit_offset;
611
612                         if(size_bits > rest_size_bits) {
613                                 /* start a new bucket */
614                                 offset     += entry_alignment - misalign;
615                                 bit_offset  = 0;
616
617                                 base           = offset;
618                                 bits_remainder = 0;
619                         } else {
620                                 /* put into current bucket */
621                                 base           = offset - misalign;
622                                 bits_remainder = misalign * 8 + bit_offset;
623                         }
624
625                         offset     += size_bits / 8;
626                         bit_offset  = bit_offset + (size_bits % 8);
627                 } else {
628                         size_t entry_size = get_type_size_bytes(base_irtype);
629                         if(misalign > 0 || bit_offset > 0)
630                                 offset += entry_alignment - misalign;
631
632                         base           = offset;
633                         bits_remainder = 0;
634                         offset        += entry_size;
635                         bit_offset     = 0;
636                 }
637
638                 if(entry_alignment > align_all) {
639                         if(entry_alignment % align_all != 0) {
640                                 panic("uneven alignments not supported yet");
641                         }
642                         align_all = entry_alignment;
643                 }
644
645                 set_entity_offset(entity, base);
646                 set_entity_offset_bits_remainder(entity,
647                                                  (unsigned char) bits_remainder);
648                 //add_struct_member(irtype, entity);
649                 entry->declaration_kind = DECLARATION_KIND_COMPOUND_MEMBER;
650                 assert(entry->v.entity == NULL);
651                 entry->v.entity         = entity;
652
653 finished_member:
654                 if (is_union) {
655                         size_t entry_size = offset - prev_offset;
656                         if (entry_size > size) {
657                                 size = entry_size;
658                         }
659                         offset     = 0;
660                         bit_offset = 0;
661                 }
662         }
663
664         if (!is_union) {
665                 size = offset;
666         }
667
668         size_t misalign = offset % align_all;
669         if(misalign > 0 || bit_offset > 0) {
670                 size += align_all - misalign;
671         }
672
673         if(outer_offset != NULL) {
674                 if (!is_union) {
675                         *outer_offset = offset;
676                 } else {
677                         *outer_offset += size;
678                 }
679
680                 if (align_all > *outer_align) {
681                         if(align_all % *outer_align != 0) {
682                                 panic("uneven alignments not supported yet");
683                         }
684                         *outer_align = align_all;
685                 }
686         } else {
687                 set_type_alignment_bytes(irtype, align_all);
688                 set_type_size_bytes(irtype, size);
689                 set_type_state(irtype, layout_fixed);
690         }
691
692         return irtype;
693 }
694
695 static ir_type *create_enum_type(enum_type_t *const type)
696 {
697         type->base.firm_type = ir_type_int;
698
699         ir_mode *const mode    = mode_int;
700         tarval  *const one     = get_mode_one(mode);
701         tarval  *      tv_next = get_tarval_null(mode);
702
703         bool constant_folding_old = constant_folding;
704         constant_folding = true;
705
706         declaration_t *declaration = type->declaration->next;
707         for (; declaration != NULL; declaration = declaration->next) {
708                 if (declaration->storage_class != STORAGE_CLASS_ENUM_ENTRY)
709                         break;
710
711                 declaration->declaration_kind = DECLARATION_KIND_ENUM_ENTRY;
712
713                 expression_t *const init = declaration->init.enum_value;
714                 if (init != NULL) {
715                         ir_node *const cnst = expression_to_firm(init);
716                         if (!is_Const(cnst)) {
717                                 panic("couldn't fold constant");
718                         }
719                         tv_next = get_Const_tarval(cnst);
720                 }
721                 declaration->v.enum_val = tv_next;
722                 tv_next = tarval_add(tv_next, one);
723         }
724
725         constant_folding = constant_folding_old;
726
727         return ir_type_int;
728 }
729
730 static ir_type *get_ir_type_incomplete(type_t *type)
731 {
732         assert(type != NULL);
733         type = skip_typeref(type);
734
735         if (type->base.firm_type != NULL) {
736                 assert(type->base.firm_type != INVALID_TYPE);
737                 return type->base.firm_type;
738         }
739
740         switch (type->kind) {
741         case TYPE_COMPOUND_STRUCT:
742                 return create_compound_type(&type->compound, NULL, NULL, NULL,
743                                             true, COMPOUND_IS_STRUCT);
744                 break;
745         case TYPE_COMPOUND_UNION:
746                 return create_compound_type(&type->compound, NULL, NULL, NULL,
747                                             true, COMPOUND_IS_UNION);
748         default:
749                 return get_ir_type(type);
750         }
751 }
752
753 static ir_type *get_ir_type(type_t *type)
754 {
755         assert(type != NULL);
756
757         type = skip_typeref(type);
758
759         if (type->base.firm_type != NULL) {
760                 assert(type->base.firm_type != INVALID_TYPE);
761                 return type->base.firm_type;
762         }
763
764         ir_type *firm_type = NULL;
765         switch (type->kind) {
766         case TYPE_ERROR:
767                 panic("error type occurred");
768         case TYPE_ATOMIC:
769                 firm_type = create_atomic_type(&type->atomic);
770                 break;
771         case TYPE_COMPLEX:
772                 firm_type = create_complex_type(&type->complex);
773                 break;
774         case TYPE_IMAGINARY:
775                 firm_type = create_imaginary_type(&type->imaginary);
776                 break;
777         case TYPE_FUNCTION:
778                 firm_type = create_method_type(&type->function);
779                 break;
780         case TYPE_POINTER:
781                 firm_type = create_pointer_type(&type->pointer);
782                 break;
783         case TYPE_ARRAY:
784                 firm_type = create_array_type(&type->array);
785                 break;
786         case TYPE_COMPOUND_STRUCT:
787                 firm_type = create_compound_type(&type->compound, NULL, NULL, NULL,
788                                                  false, COMPOUND_IS_STRUCT);
789                 break;
790         case TYPE_COMPOUND_UNION:
791                 firm_type = create_compound_type(&type->compound, NULL, NULL, NULL,
792                                                  false, COMPOUND_IS_UNION);
793                 break;
794         case TYPE_ENUM:
795                 firm_type = create_enum_type(&type->enumt);
796                 break;
797         case TYPE_BUILTIN:
798                 firm_type = get_ir_type(type->builtin.real_type);
799                 break;
800         case TYPE_BITFIELD:
801                 firm_type = create_bitfield_type(&type->bitfield);
802                 break;
803
804         case TYPE_TYPEOF:
805         case TYPE_TYPEDEF:
806         case TYPE_INVALID:
807                 break;
808         }
809         if(firm_type == NULL)
810                 panic("unknown type found");
811
812         type->base.firm_type = firm_type;
813         return firm_type;
814 }
815
816 static inline ir_mode *get_ir_mode(type_t *type)
817 {
818         ir_type *irtype = get_ir_type(type);
819
820         /* firm doesn't report a mode for arrays somehow... */
821         if(is_Array_type(irtype)) {
822                 return mode_P_data;
823         }
824
825         ir_mode *mode = get_type_mode(irtype);
826         assert(mode != NULL);
827         return mode;
828 }
829
830 /** Names of the runtime functions. */
831 static const struct {
832         int        id;           /**< the rts id */
833         int        n_res;        /**< number of return values */
834         const char *name;        /**< the name of the rts function */
835         int        n_params;     /**< number of parameters */
836         unsigned   flags;        /**< language flags */
837 } rts_data[] = {
838         { rts_debugbreak, 0, "__debugbreak", 0, _MS },
839         { rts_abort,      0, "abort",        0, _C89 },
840         { rts_alloca,     1, "alloca",       1, _ALL },
841         { rts_abs,        1, "abs",          1, _C89 },
842         { rts_labs,       1, "labs",         1, _C89 },
843         { rts_llabs,      1, "llabs",        1, _C99 },
844         { rts_imaxabs,    1, "imaxabs",      1, _C99 },
845
846         { rts_fabs,       1, "fabs",         1, _C89 },
847         { rts_sqrt,       1, "sqrt",         1, _C89 },
848         { rts_cbrt,       1, "cbrt",         1, _C99 },
849         { rts_exp,        1, "exp",          1, _C89 },
850         { rts_exp2,       1, "exp2",         1, _C89 },
851         { rts_exp10,      1, "exp10",        1, _GNUC },
852         { rts_log,        1, "log",          1, _C89 },
853         { rts_log2,       1, "log2",         1, _C89 },
854         { rts_log10,      1, "log10",        1, _C89 },
855         { rts_pow,        1, "pow",          2, _C89 },
856         { rts_sin,        1, "sin",          1, _C89 },
857         { rts_cos,        1, "cos",          1, _C89 },
858         { rts_tan,        1, "tan",          1, _C89 },
859         { rts_asin,       1, "asin",         1, _C89 },
860         { rts_acos,       1, "acos",         1, _C89 },
861         { rts_atan,       1, "atan",         1, _C89 },
862         { rts_sinh,       1, "sinh",         1, _C89 },
863         { rts_cosh,       1, "cosh",         1, _C89 },
864         { rts_tanh,       1, "tanh",         1, _C89 },
865
866         { rts_fabsf,      1, "fabsf",        1, _C99 },
867         { rts_sqrtf,      1, "sqrtf",        1, _C99 },
868         { rts_cbrtf,      1, "cbrtf",        1, _C99 },
869         { rts_expf,       1, "expf",         1, _C99 },
870         { rts_exp2f,      1, "exp2f",        1, _C99 },
871         { rts_exp10f,     1, "exp10f",       1, _GNUC },
872         { rts_logf,       1, "logf",         1, _C99 },
873         { rts_log2f,      1, "log2f",        1, _C99 },
874         { rts_log10f,     1, "log10f",       1, _C99 },
875         { rts_powf,       1, "powf",         2, _C99 },
876         { rts_sinf,       1, "sinf",         1, _C99 },
877         { rts_cosf,       1, "cosf",         1, _C99 },
878         { rts_tanf,       1, "tanf",         1, _C99 },
879         { rts_asinf,      1, "asinf",        1, _C99 },
880         { rts_acosf,      1, "acosf",        1, _C99 },
881         { rts_atanf,      1, "atanf",        1, _C99 },
882         { rts_sinhf,      1, "sinhf",        1, _C99 },
883         { rts_coshf,      1, "coshf",        1, _C99 },
884         { rts_tanhf,      1, "tanhf",        1, _C99 },
885
886         { rts_fabsl,      1, "fabsl",        1, _C99 },
887         { rts_sqrtl,      1, "sqrtl",        1, _C99 },
888         { rts_cbrtl,      1, "cbrtl",        1, _C99 },
889         { rts_expl,       1, "expl",         1, _C99 },
890         { rts_exp2l,      1, "exp2l",        1, _C99 },
891         { rts_exp10l,     1, "exp10l",       1, _GNUC },
892         { rts_logl,       1, "logl",         1, _C99 },
893         { rts_log2l,      1, "log2l",        1, _C99 },
894         { rts_log10l,     1, "log10l",       1, _C99 },
895         { rts_powl,       1, "powl",         2, _C99 },
896         { rts_sinl,       1, "sinl",         1, _C99 },
897         { rts_cosl,       1, "cosl",         1, _C99 },
898         { rts_tanl,       1, "tanl",         1, _C99 },
899         { rts_asinl,      1, "asinl",        1, _C99 },
900         { rts_acosl,      1, "acosl",        1, _C99 },
901         { rts_atanl,      1, "atanl",        1, _C99 },
902         { rts_sinhl,      1, "sinhl",        1, _C99 },
903         { rts_coshl,      1, "coshl",        1, _C99 },
904         { rts_tanhl,      1, "tanhl",        1, _C99 },
905
906         { rts_memcpy,     1, "memcpy",       3, _C89 },  /* HMM, man say its C99 */
907         { rts_memset,     1, "memset",       3, _C89 },  /* HMM, man say its C99 */
908         { rts_strcmp,     1, "strcmp",       2, _C89 },
909         { rts_strncmp,    1, "strncmp",      3, _C89 }
910 };
911
912 static ident *rts_idents[sizeof(rts_data) / sizeof(rts_data[0])];
913
914 /**
915  * Mangles an entity linker (ld) name for win32 usage.
916  *
917  * @param ent          the entity to be mangled
918  * @param declaration  the declaration
919  */
920 static ident *create_ld_ident_win32(ir_entity *ent, declaration_t *declaration)
921 {
922         ident *id;
923
924         if (is_Method_type(get_entity_type(ent)))
925                 id = decorate_win32_c_fkt(ent, get_entity_ident(ent));
926         else {
927                 /* always add an underscore in win32 */
928                 id = mangle(id_underscore, get_entity_ident(ent));
929         }
930
931         decl_modifiers_t decl_modifiers = declaration->decl_modifiers;
932         if (decl_modifiers & DM_DLLIMPORT) {
933                 /* add prefix for imported symbols */
934                 id = mangle(id_imp, id);
935         }
936         return id;
937 }
938
939 /**
940  * Mangles an entity linker (ld) name for Linux ELF usage.
941  *
942  * @param ent          the entity to be mangled
943  * @param declaration  the declaration
944  */
945 static ident *create_ld_ident_linux_elf(ir_entity *entity,
946                                         declaration_t *declaration)
947 {
948         (void) declaration;
949         return get_entity_ident(entity);
950 }
951
952 /**
953  * Mangles an entity linker (ld) name for Mach-O usage.
954  *
955  * @param ent          the entity to be mangled
956  * @param declaration  the declaration
957  */
958 static ident *create_ld_ident_macho(ir_entity *ent, declaration_t *declaration)
959 {
960         (void) declaration;
961         ident *id = mangle(id_underscore, get_entity_ident(ent));
962         return id;
963 }
964
965 typedef ident* (*create_ld_ident_func)(ir_entity *entity,
966                                        declaration_t *declaration);
967 create_ld_ident_func  create_ld_ident = create_ld_ident_linux_elf;
968
969 /**
970  * Creates an entity representing a function.
971  *
972  * @param declaration  the function declaration
973  */
974 static ir_entity *get_function_entity(declaration_t *declaration)
975 {
976         if(declaration->declaration_kind == DECLARATION_KIND_FUNCTION)
977                 return declaration->v.entity;
978         assert(declaration->declaration_kind == DECLARATION_KIND_UNKNOWN);
979
980         symbol_t *symbol = declaration->symbol;
981         ident    *id     = new_id_from_str(symbol->string);
982
983         ir_type  *global_type    = get_glob_type();
984         ir_type  *ir_type_method = get_ir_type(declaration->type);
985         assert(is_Method_type(ir_type_method));
986
987         /* already an entity defined? */
988         ir_entity *entity = entitymap_get(&entitymap, symbol);
989         if (entity != NULL) {
990                 if (get_entity_visibility(entity) == visibility_external_allocated
991                                 && declaration->init.statement != NULL) {
992                         set_entity_visibility(entity, visibility_external_visible);
993                 }
994                 goto entity_created;
995         }
996
997         dbg_info *const dbgi = get_dbg_info(&declaration->source_position);
998         entity               = new_d_entity(global_type, id, ir_type_method, dbgi);
999         set_entity_ld_ident(entity, create_ld_ident(entity, declaration));
1000         if (declaration->storage_class == STORAGE_CLASS_STATIC &&
1001                 declaration->init.statement == NULL) {
1002                 /* this entity was declared, but never defined */
1003                 set_entity_peculiarity(entity, peculiarity_description);
1004         }
1005         if (declaration->storage_class == STORAGE_CLASS_STATIC
1006                         || declaration->is_inline) {
1007                 set_entity_visibility(entity, visibility_local);
1008         } else if (declaration->init.statement != NULL) {
1009                 set_entity_visibility(entity, visibility_external_visible);
1010         } else {
1011                 set_entity_visibility(entity, visibility_external_allocated);
1012         }
1013         set_entity_allocation(entity, allocation_static);
1014
1015         /* We should check for file scope here, but as long as we compile C only
1016            this is not needed. */
1017         if (! firm_opt.freestanding) {
1018                 /* check for a known runtime function */
1019                 for (size_t i = 0; i < sizeof(rts_data) / sizeof(rts_data[0]); ++i) {
1020                         if (id != rts_idents[i])
1021                                 continue;
1022
1023                         /* ignore those rts functions not necessary needed for current mode */
1024                         if ((c_mode & rts_data[i].flags) == 0)
1025                                 continue;
1026                         assert(rts_entities[rts_data[i].id] == NULL);
1027                         rts_entities[rts_data[i].id] = entity;
1028                 }
1029         }
1030
1031         entitymap_insert(&entitymap, symbol, entity);
1032
1033 entity_created:
1034         declaration->declaration_kind = DECLARATION_KIND_FUNCTION;
1035         declaration->v.entity         = entity;
1036
1037         return entity;
1038 }
1039
1040 /**
1041  * Creates a Const node representing a constant.
1042  */
1043 static ir_node *const_to_firm(const const_expression_t *cnst)
1044 {
1045         dbg_info *dbgi = get_dbg_info(&cnst->base.source_position);
1046         ir_mode  *mode = get_ir_mode(cnst->base.type);
1047
1048         char    buf[128];
1049         tarval *tv;
1050         size_t  len;
1051         if(mode_is_float(mode)) {
1052                 tv = new_tarval_from_double(cnst->v.float_value, mode);
1053         } else {
1054                 if(mode_is_signed(mode)) {
1055                         len = snprintf(buf, sizeof(buf), "%lld", cnst->v.int_value);
1056                 } else {
1057                         len = snprintf(buf, sizeof(buf), "%llu",
1058                                        (unsigned long long) cnst->v.int_value);
1059                 }
1060                 tv = new_tarval_from_str(buf, len, mode);
1061         }
1062
1063         return new_d_Const(dbgi, mode, tv);
1064 }
1065
1066 /**
1067  * Creates a Const node representing a character constant.
1068  */
1069 static ir_node *character_constant_to_firm(const const_expression_t *cnst)
1070 {
1071         dbg_info *dbgi = get_dbg_info(&cnst->base.source_position);
1072         ir_mode  *mode = get_ir_mode(cnst->base.type);
1073
1074         long long int v = 0;
1075         for (size_t i = 0; i < cnst->v.character.size; ++i) {
1076                 if (char_is_signed) {
1077                         v = (v << 8) | ((signed char)cnst->v.character.begin[i]);
1078                 } else {
1079                         v = (v << 8) | ((unsigned char)cnst->v.character.begin[i]);
1080                 }
1081         }
1082         char    buf[128];
1083         size_t  len = snprintf(buf, sizeof(buf), "%lld", v);
1084         tarval *tv = new_tarval_from_str(buf, len, mode);
1085
1086         return new_d_Const(dbgi, mode, tv);
1087 }
1088
1089 /**
1090  * Creates a Const node representing a wide character constant.
1091  */
1092 static ir_node *wide_character_constant_to_firm(const const_expression_t *cnst)
1093 {
1094         dbg_info *dbgi = get_dbg_info(&cnst->base.source_position);
1095         ir_mode  *mode = get_ir_mode(cnst->base.type);
1096
1097         long long int v = cnst->v.wide_character.begin[0];
1098
1099         char    buf[128];
1100         size_t  len = snprintf(buf, sizeof(buf), "%lld", v);
1101         tarval *tv = new_tarval_from_str(buf, len, mode);
1102
1103         return new_d_Const(dbgi, mode, tv);
1104 }
1105
1106 /**
1107  * Creates a SymConst for a given entity.
1108  *
1109  * @param dbgi    debug info
1110  * @param mode    the (reference) mode for the SymConst
1111  * @param entity  the entity
1112  */
1113 static ir_node *create_symconst(dbg_info *dbgi, ir_mode *mode,
1114                               ir_entity *entity)
1115 {
1116         assert(entity != NULL);
1117         union symconst_symbol sym;
1118         sym.entity_p = entity;
1119         return new_d_SymConst(dbgi, mode, sym, symconst_addr_ent);
1120 }
1121
1122 /**
1123  * Creates a SymConst node representing a string constant.
1124  *
1125  * @param src_pos    the source position of the string constant
1126  * @param id_prefix  a prefix for the name of the generated string constant
1127  * @param value      the value of the string constant
1128  */
1129 static ir_node *string_to_firm(const source_position_t *const src_pos,
1130                                const char *const id_prefix,
1131                                const string_t *const value)
1132 {
1133         ir_type  *const global_type = get_glob_type();
1134         dbg_info *const dbgi        = get_dbg_info(src_pos);
1135         ir_type  *const type        = new_d_type_array(id_unique("strtype.%u"), 1,
1136                                                        ir_type_const_char, dbgi);
1137
1138         ident     *const id     = id_unique(id_prefix);
1139         ir_entity *const entity = new_d_entity(global_type, id, type, dbgi);
1140         set_entity_ld_ident(entity, id);
1141         set_entity_variability(entity, variability_constant);
1142         set_entity_allocation(entity, allocation_static);
1143
1144         ir_type *const elem_type = ir_type_const_char;
1145         ir_mode *const mode      = get_type_mode(elem_type);
1146
1147         const char* const string = value->begin;
1148         const size_t      slen   = value->size;
1149
1150         set_array_lower_bound_int(type, 0, 0);
1151         set_array_upper_bound_int(type, 0, slen);
1152         set_type_size_bytes(type, slen);
1153         set_type_state(type, layout_fixed);
1154
1155         tarval **const tvs = xmalloc(slen * sizeof(tvs[0]));
1156         for(size_t i = 0; i < slen; ++i) {
1157                 tvs[i] = new_tarval_from_long(string[i], mode);
1158         }
1159
1160         set_array_entity_values(entity, tvs, slen);
1161         free(tvs);
1162
1163         return create_symconst(dbgi, mode_P_data, entity);
1164 }
1165
1166 /**
1167  * Creates a SymConst node representing a string literal.
1168  *
1169  * @param literal   the string literal
1170  */
1171 static ir_node *string_literal_to_firm(
1172                 const string_literal_expression_t* literal)
1173 {
1174         return string_to_firm(&literal->base.source_position, "Lstr.%u",
1175                               &literal->value);
1176 }
1177
1178 /**
1179  * Creates a SymConst node representing a wide string literal.
1180  *
1181  * @param literal   the wide string literal
1182  */
1183 static ir_node *wide_string_literal_to_firm(
1184         const wide_string_literal_expression_t* const literal)
1185 {
1186         ir_type *const global_type = get_glob_type();
1187         ir_type *const elem_type   = ir_type_wchar_t;
1188         dbg_info *const dbgi       = get_dbg_info(&literal->base.source_position);
1189         ir_type *const type        = new_d_type_array(id_unique("strtype.%u"), 1,
1190                                                     elem_type, dbgi);
1191
1192         ident     *const id     = id_unique("Lstr.%u");
1193         ir_entity *const entity = new_d_entity(global_type, id, type, dbgi);
1194         set_entity_ld_ident(entity, id);
1195         set_entity_variability(entity, variability_constant);
1196         set_entity_allocation(entity, allocation_static);
1197
1198         ir_mode *const mode      = get_type_mode(elem_type);
1199
1200         const wchar_rep_t *const string = literal->value.begin;
1201         const size_t             slen   = literal->value.size;
1202
1203         set_array_lower_bound_int(type, 0, 0);
1204         set_array_upper_bound_int(type, 0, slen);
1205         set_type_size_bytes(type, slen);
1206         set_type_state(type, layout_fixed);
1207
1208         tarval **const tvs = xmalloc(slen * sizeof(tvs[0]));
1209         for(size_t i = 0; i < slen; ++i) {
1210                 tvs[i] = new_tarval_from_long(string[i], mode);
1211         }
1212
1213         set_array_entity_values(entity, tvs, slen);
1214         free(tvs);
1215
1216         return create_symconst(dbgi, mode_P_data, entity);
1217 }
1218
1219 static ir_node *deref_address(dbg_info *const dbgi, type_t *const type,
1220                                       ir_node *const addr)
1221 {
1222         ir_type *irtype = get_ir_type(type);
1223         if (is_compound_type(irtype)
1224                         || is_Method_type(irtype)
1225                         || is_Array_type(irtype)) {
1226                 return addr;
1227         }
1228
1229         ir_mode *const mode     = get_type_mode(irtype);
1230         ir_node *const memory   = get_store();
1231         ir_node *const load     = new_d_Load(dbgi, memory, addr, mode);
1232         ir_node *const load_mem = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
1233         ir_node *const load_res = new_d_Proj(dbgi, load, mode,   pn_Load_res);
1234
1235         if(type->base.qualifiers & TYPE_QUALIFIER_VOLATILE) {
1236                 set_Load_volatility(load, volatility_is_volatile);
1237         }
1238
1239         set_store(load_mem);
1240         return load_res;
1241 }
1242
1243 /**
1244  * Creates a strict Conv if neccessary.
1245  */
1246 static ir_node *do_strict_conv(dbg_info *dbgi, ir_node *node)
1247 {
1248         ir_mode *mode = get_irn_mode(node);
1249
1250         if (!(get_irg_fp_model(current_ir_graph) & fp_explicit_rounding))
1251                 return node;
1252         if (!mode_is_float(mode))
1253                 return node;
1254
1255         /* check if there is already a Conv */
1256         if (is_Conv(node)) {
1257                 /* convert it into a strict Conv */
1258                 set_Conv_strict(node, 1);
1259                 return node;
1260         }
1261
1262         /* otherwise create a new one */
1263         return new_d_strictConv(dbgi, node, mode);
1264 }
1265
1266 static ir_node *get_global_var_address(dbg_info *const dbgi,
1267                                        const declaration_t *const decl)
1268 {
1269         assert(decl->declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
1270
1271         ir_entity *const entity = decl->v.entity;
1272         switch ((storage_class_tag_t)decl->storage_class) {
1273                 case STORAGE_CLASS_THREAD:
1274                 case STORAGE_CLASS_THREAD_EXTERN:
1275                 case STORAGE_CLASS_THREAD_STATIC: {
1276                         ir_node *const no_mem = new_NoMem();
1277                         ir_node *const tls    = get_irg_tls(current_ir_graph);
1278                         return new_d_simpleSel(dbgi, no_mem, tls, entity);
1279                 }
1280
1281                 default:
1282                         return create_symconst(dbgi, mode_P_data, entity);
1283         }
1284 }
1285
1286 /**
1287  * Returns the correct base address depending on whether it is a parameter or a
1288  * normal local variable.
1289  */
1290 static ir_node *get_local_frame(ir_entity *const ent)
1291 {
1292         ir_graph      *const irg   = current_ir_graph;
1293         const ir_type *const owner = get_entity_owner(ent);
1294         if (owner == get_irg_frame_type(irg)) {
1295                 return get_irg_frame(irg);
1296         } else {
1297                 assert(owner == get_method_value_param_type(get_entity_type(get_irg_entity(irg))));
1298                 return get_irg_value_param_base(irg);
1299         }
1300 }
1301
1302 static ir_node *create_conv(dbg_info *dbgi, ir_node *value, ir_mode *dest_mode)
1303 {
1304         ir_mode *value_mode = get_irn_mode(value);
1305
1306         if (value_mode == dest_mode || is_Bad(value))
1307                 return value;
1308
1309         if(dest_mode == mode_b) {
1310                 ir_node *zero = new_Const(value_mode, get_mode_null(value_mode));
1311                 ir_node *cmp  = new_d_Cmp(dbgi, value, zero);
1312                 ir_node *proj = new_d_Proj(dbgi, cmp, mode_b, pn_Cmp_Lg);
1313                 return proj;
1314         }
1315
1316         return new_d_Conv(dbgi, value, dest_mode);
1317 }
1318
1319 static ir_node *reference_expression_to_firm(const reference_expression_t *ref)
1320 {
1321         dbg_info      *dbgi        = get_dbg_info(&ref->base.source_position);
1322         declaration_t *declaration = ref->declaration;
1323         type_t        *type        = skip_typeref(declaration->type);
1324
1325         /* make sure the type is constructed */
1326         (void) get_ir_type(type);
1327
1328         switch((declaration_kind_t) declaration->declaration_kind) {
1329         case DECLARATION_KIND_TYPE:
1330         case DECLARATION_KIND_UNKNOWN:
1331                 break;
1332
1333         case DECLARATION_KIND_ENUM_ENTRY: {
1334                 ir_mode *const mode = get_ir_mode(type);
1335                 return new_Const(mode, declaration->v.enum_val);
1336         }
1337
1338         case DECLARATION_KIND_LOCAL_VARIABLE: {
1339                 ir_mode *const mode = get_ir_mode(type);
1340                 return get_value(declaration->v.value_number, mode);
1341         }
1342         case DECLARATION_KIND_FUNCTION: {
1343                 ir_mode *const mode = get_ir_mode(type);
1344                 return create_symconst(dbgi, mode, declaration->v.entity);
1345         }
1346         case DECLARATION_KIND_GLOBAL_VARIABLE: {
1347                 ir_node *const addr   = get_global_var_address(dbgi, declaration);
1348                 return deref_address(dbgi, declaration->type, addr);
1349         }
1350
1351         case DECLARATION_KIND_LOCAL_VARIABLE_ENTITY: {
1352                 ir_entity *entity = declaration->v.entity;
1353                 ir_node   *frame  = get_local_frame(entity);
1354                 ir_node   *sel    = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
1355                 return deref_address(dbgi, declaration->type, sel);
1356         }
1357
1358         case DECLARATION_KIND_VARIABLE_LENGTH_ARRAY:
1359                 return declaration->v.vla_base;
1360
1361         case DECLARATION_KIND_COMPOUND_TYPE_INCOMPLETE:
1362         case DECLARATION_KIND_COMPOUND_TYPE_COMPLETE:
1363         case DECLARATION_KIND_COMPOUND_MEMBER:
1364         case DECLARATION_KIND_LABEL_BLOCK:
1365                 panic("not implemented reference type");
1366         }
1367
1368         panic("reference to declaration with unknown type found");
1369 }
1370
1371 static ir_node *reference_addr(const reference_expression_t *ref)
1372 {
1373         dbg_info      *dbgi        = get_dbg_info(&ref->base.source_position);
1374         declaration_t *declaration = ref->declaration;
1375
1376         switch((declaration_kind_t) declaration->declaration_kind) {
1377         case DECLARATION_KIND_TYPE:
1378         case DECLARATION_KIND_UNKNOWN:
1379                 break;
1380         case DECLARATION_KIND_LOCAL_VARIABLE:
1381                 /* you can store to a local variable (so we don't panic but return NULL
1382                  * as an indicator for no real address) */
1383                 return NULL;
1384         case DECLARATION_KIND_FUNCTION: {
1385                 type_t *const  type = skip_typeref(ref->base.type);
1386                 ir_mode *const mode = get_ir_mode(type);
1387                 return create_symconst(dbgi, mode, declaration->v.entity);
1388         }
1389         case DECLARATION_KIND_GLOBAL_VARIABLE: {
1390                 ir_node *const addr = get_global_var_address(dbgi, declaration);
1391                 return addr;
1392         }
1393         case DECLARATION_KIND_LOCAL_VARIABLE_ENTITY: {
1394                 ir_entity *entity = declaration->v.entity;
1395                 ir_node   *frame  = get_local_frame(entity);
1396                 ir_node   *sel    = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
1397
1398                 return sel;
1399         }
1400
1401         case DECLARATION_KIND_VARIABLE_LENGTH_ARRAY:
1402                 return declaration->v.vla_base;
1403
1404         case DECLARATION_KIND_ENUM_ENTRY:
1405                 panic("trying to reference enum entry");
1406
1407         case DECLARATION_KIND_COMPOUND_TYPE_INCOMPLETE:
1408         case DECLARATION_KIND_COMPOUND_TYPE_COMPLETE:
1409         case DECLARATION_KIND_COMPOUND_MEMBER:
1410         case DECLARATION_KIND_LABEL_BLOCK:
1411                 panic("not implemented reference type");
1412         }
1413
1414         panic("reference to declaration with unknown type found");
1415 }
1416
1417 /**
1418  * Transform calls to builtin functions.
1419  */
1420 static ir_node *process_builtin_call(const call_expression_t *call)
1421 {
1422         dbg_info *dbgi = get_dbg_info(&call->base.source_position);
1423
1424         assert(call->function->kind == EXPR_BUILTIN_SYMBOL);
1425         builtin_symbol_expression_t *builtin = &call->function->builtin_symbol;
1426
1427         type_t *type = skip_typeref(builtin->base.type);
1428         assert(is_type_pointer(type));
1429
1430         type_t   *function_type = skip_typeref(type->pointer.points_to);
1431         symbol_t *symbol        = builtin->symbol;
1432
1433         switch(symbol->ID) {
1434         case T___builtin_alloca: {
1435                 if(call->arguments == NULL || call->arguments->next != NULL) {
1436                         panic("invalid number of parameters on __builtin_alloca");
1437                 }
1438                 expression_t *argument = call->arguments->expression;
1439                 ir_node      *size     = expression_to_firm(argument);
1440
1441                 ir_node *store  = get_store();
1442                 ir_node *alloca = new_d_Alloc(dbgi, store, size, firm_unknown_type,
1443                                               stack_alloc);
1444                 ir_node *proj_m = new_Proj(alloca, mode_M, pn_Alloc_M);
1445                 set_store(proj_m);
1446                 ir_node *res    = new_Proj(alloca, mode_P_data, pn_Alloc_res);
1447
1448                 return res;
1449         }
1450         case T___builtin_huge_val: {
1451                 ir_mode *mode = get_ir_mode(function_type->function.return_type);
1452                 tarval  *tv   = get_mode_infinite(mode);
1453                 ir_node *res  = new_d_Const(dbgi, mode, tv);
1454                 return   res;
1455         }
1456         case T___builtin_nan:
1457         case T___builtin_nanf:
1458         case T___builtin_nand: {
1459                 /* Ignore string for now... */
1460                 assert(is_type_function(function_type));
1461                 ir_mode *mode = get_ir_mode(function_type->function.return_type);
1462                 tarval  *tv   = get_mode_NAN(mode);
1463                 ir_node *res  = new_d_Const(dbgi, mode, tv);
1464                 return res;
1465         }
1466         case T___builtin_va_end:
1467                 return NULL;
1468         default:
1469                 panic("Unsupported builtin found\n");
1470         }
1471 }
1472
1473 /**
1474  * Transform a call expression.
1475  * Handles some special cases, like alloca() calls, which must be resolved BEFORE the inlines runs.
1476  * Inlining routines calling alloca() is dangerous, 176.gcc for instance might allocate 2GB instead of
1477  * 256 MB if alloca is not handled right...
1478  */
1479 static ir_node *call_expression_to_firm(const call_expression_t *call)
1480 {
1481         dbg_info *dbgi  = get_dbg_info(&call->base.source_position);
1482         assert(get_cur_block() != NULL);
1483
1484         expression_t *function = call->function;
1485         if(function->kind == EXPR_BUILTIN_SYMBOL) {
1486                 return process_builtin_call(call);
1487         }
1488         if(function->kind == EXPR_REFERENCE) {
1489                 const reference_expression_t *ref = &function->reference;
1490                 declaration_t *declaration = ref->declaration;
1491
1492                 if((declaration_kind_t)declaration->declaration_kind == DECLARATION_KIND_FUNCTION) {
1493                         if (declaration->v.entity == rts_entities[rts_alloca]) {
1494                                 /* handle alloca() call */
1495                                 expression_t *argument = call->arguments->expression;
1496                                 ir_node      *size     = expression_to_firm(argument);
1497
1498                                 size = create_conv(dbgi, size, get_ir_mode(type_size_t));
1499
1500                                 ir_node *store  = get_store();
1501                                 dbg_info *dbgi  = get_dbg_info(&call->base.source_position);
1502                                 ir_node *alloca = new_d_Alloc(dbgi, store, size, firm_unknown_type,
1503                                               stack_alloc);
1504                                 ir_node *proj_m = new_Proj(alloca, mode_M, pn_Alloc_M);
1505                                 set_store(proj_m);
1506                                 ir_node *res    = new_Proj(alloca, mode_P_data, pn_Alloc_res);
1507
1508                                 return res;
1509                         }
1510                 }
1511         }
1512         ir_node *callee = expression_to_firm(function);
1513
1514         type_t *type = skip_typeref(function->base.type);
1515         assert(is_type_pointer(type));
1516         pointer_type_t *pointer_type = &type->pointer;
1517         type_t         *points_to    = skip_typeref(pointer_type->points_to);
1518         assert(is_type_function(points_to));
1519         function_type_t *function_type = &points_to->function;
1520
1521         int      n_parameters = 0;
1522         ir_type *ir_method_type  = get_ir_type((type_t*) function_type);
1523         ir_type *new_method_type = NULL;
1524         if(function_type->variadic || function_type->unspecified_parameters) {
1525                 const call_argument_t *argument = call->arguments;
1526                 for( ; argument != NULL; argument = argument->next) {
1527                         ++n_parameters;
1528                 }
1529
1530                 /* we need to construct a new method type matching the call
1531                  * arguments... */
1532                 int n_res       = get_method_n_ress(ir_method_type);
1533                 dbg_info *dbgi  = get_dbg_info(&call->base.source_position);
1534                 new_method_type = new_d_type_method(id_unique("calltype.%u"),
1535                                                     n_parameters, n_res, dbgi);
1536                 set_method_calling_convention(new_method_type,
1537                                get_method_calling_convention(ir_method_type));
1538                 set_method_additional_properties(new_method_type,
1539                                get_method_additional_properties(ir_method_type));
1540                 set_method_variadicity(new_method_type,
1541                                        get_method_variadicity(ir_method_type));
1542
1543                 for(int i = 0; i < n_res; ++i) {
1544                         set_method_res_type(new_method_type, i,
1545                                             get_method_res_type(ir_method_type, i));
1546                 }
1547                 argument = call->arguments;
1548                 for(int i = 0; i < n_parameters; ++i, argument = argument->next) {
1549                         expression_t *expression = argument->expression;
1550                         ir_type      *irtype     = get_ir_type(expression->base.type);
1551                         set_method_param_type(new_method_type, i, irtype);
1552                 }
1553                 ir_method_type = new_method_type;
1554         } else {
1555                 n_parameters = get_method_n_params(ir_method_type);
1556         }
1557
1558         ir_node *in[n_parameters];
1559
1560         const call_argument_t *argument = call->arguments;
1561         for(int n = 0; n < n_parameters; ++n) {
1562                 expression_t *expression = argument->expression;
1563                 ir_node      *arg_node   = expression_to_firm(expression);
1564
1565                 arg_node = do_strict_conv(dbgi, arg_node);
1566
1567                 in[n] = arg_node;
1568
1569                 argument = argument->next;
1570         }
1571
1572         ir_node  *store = get_store();
1573         ir_node  *node  = new_d_Call(dbgi, store, callee, n_parameters, in,
1574                                      ir_method_type);
1575         ir_node  *mem   = new_d_Proj(dbgi, node, mode_M, pn_Call_M_regular);
1576         set_store(mem);
1577
1578         type_t  *return_type = skip_typeref(function_type->return_type);
1579         ir_node *result      = NULL;
1580
1581         if(!is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
1582                 ir_mode *mode;
1583                 if(is_type_scalar(return_type)) {
1584                         mode = get_ir_mode(return_type);
1585                 } else {
1586                         mode = mode_P_data;
1587                 }
1588                 ir_node *resproj = new_d_Proj(dbgi, node, mode_T, pn_Call_T_result);
1589                 result           = new_d_Proj(dbgi, resproj, mode, 0);
1590         }
1591
1592         return result;
1593 }
1594
1595 static void statement_to_firm(statement_t *statement);
1596 static ir_node *compound_statement_to_firm(compound_statement_t *compound);
1597
1598 static ir_node *expression_to_addr(const expression_t *expression);
1599 static void create_condition_evaluation(const expression_t *expression,
1600                                         ir_node *true_block,
1601                                         ir_node *false_block);
1602
1603 static void assign_value(dbg_info *dbgi, ir_node *addr, type_t *type,
1604                          ir_node *value)
1605 {
1606         value = do_strict_conv(dbgi, value);
1607
1608         ir_node *memory = get_store();
1609
1610         if(is_type_scalar(type)) {
1611                 ir_node  *store     = new_d_Store(dbgi, memory, addr, value);
1612                 ir_node  *store_mem = new_d_Proj(dbgi, store, mode_M, pn_Store_M);
1613                 if(type->base.qualifiers & TYPE_QUALIFIER_VOLATILE)
1614                         set_Store_volatility(store, volatility_is_volatile);
1615                 set_store(store_mem);
1616         } else {
1617                 ir_type *irtype    = get_ir_type(type);
1618                 ir_node *copyb     = new_d_CopyB(dbgi, memory, addr, value, irtype);
1619                 ir_node *copyb_mem = new_Proj(copyb, mode_M, pn_CopyB_M_regular);
1620                 set_store(copyb_mem);
1621         }
1622 }
1623
1624 static tarval *create_bitfield_mask(ir_mode *mode, int offset, int size)
1625 {
1626         tarval *all_one   = get_mode_all_one(mode);
1627         int     mode_size = get_mode_size_bits(mode);
1628
1629         assert(offset >= 0 && size >= 0);
1630         assert(offset + size <= mode_size);
1631         if(size == mode_size) {
1632                 return all_one;
1633         }
1634
1635         long    shiftr    = get_mode_size_bits(mode) - size;
1636         long    shiftl    = offset;
1637         tarval *tv_shiftr = new_tarval_from_long(shiftr, mode_uint);
1638         tarval *tv_shiftl = new_tarval_from_long(shiftl, mode_uint);
1639         tarval *mask0     = tarval_shr(all_one, tv_shiftr);
1640         tarval *mask1     = tarval_shl(mask0, tv_shiftl);
1641
1642         return mask1;
1643 }
1644
1645 static void bitfield_store_to_firm(const select_expression_t *expression,
1646                                    ir_node *addr, ir_node *value)
1647 {
1648         type_t       *type   = expression->base.type;
1649         ir_mode      *mode   = get_ir_mode(type);
1650
1651         assert(get_irn_mode(value) == mode || is_Bad(value));
1652
1653         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
1654
1655         /* kill upper bits of value and shift to right position */
1656         ir_entity *entity       = expression->compound_entry->v.entity;
1657         int        bitoffset    = get_entity_offset_bits_remainder(entity);
1658         ir_type   *entity_type  = get_entity_type(entity);
1659         int        bitsize      = get_mode_size_bits(get_type_mode(entity_type));
1660
1661         tarval  *mask            = create_bitfield_mask(mode, 0, bitsize);
1662         ir_node *mask_node       = new_d_Const(dbgi, mode, mask);
1663         ir_node *value_masked    = new_d_And(dbgi, value, mask_node, mode);
1664         tarval  *shiftl          = new_tarval_from_long(bitoffset, mode_uint);
1665         ir_node *shiftcount      = new_d_Const(dbgi, mode_uint, shiftl);
1666         ir_node *value_maskshift = new_d_Shl(dbgi, value_masked, shiftcount, mode);
1667
1668         /* load current value */
1669         ir_node  *mem             = get_store();
1670         ir_node  *load            = new_d_Load(dbgi, mem, addr, mode);
1671         ir_node  *load_mem        = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
1672         ir_node  *load_res        = new_d_Proj(dbgi, load, mode, pn_Load_res);
1673         tarval   *shift_mask      = create_bitfield_mask(mode, bitoffset, bitsize);
1674         tarval   *inv_mask        = tarval_not(shift_mask);
1675         ir_node  *inv_mask_node   = new_d_Const(dbgi, mode, inv_mask);
1676         ir_node  *load_res_masked = new_d_And(dbgi, load_res, inv_mask_node, mode);
1677
1678         /* construct new value and store */
1679         ir_node *new_val   = new_d_Or(dbgi, load_res_masked, value_maskshift, mode);
1680         ir_node *store     = new_d_Store(dbgi, load_mem, addr, new_val);
1681         ir_node *store_mem = new_d_Proj(dbgi, store, mode_M, pn_Store_M);
1682         set_store(store_mem);
1683
1684         if(type->base.qualifiers & TYPE_QUALIFIER_VOLATILE) {
1685                 set_Load_volatility(load, volatility_is_volatile);
1686                 set_Store_volatility(store, volatility_is_volatile);
1687         }
1688 }
1689
1690 static ir_node *bitfield_extract_to_firm(const select_expression_t *expression,
1691                 ir_node *addr)
1692 {
1693         dbg_info *dbgi     = get_dbg_info(&expression->base.source_position);
1694         type_t   *type     = expression->base.type;
1695         ir_mode  *mode     = get_ir_mode(type);
1696         ir_node  *mem      = get_store();
1697         ir_node  *load     = new_d_Load(dbgi, mem, addr, mode);
1698         ir_node  *load_mem = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
1699         ir_node  *load_res = new_d_Proj(dbgi, load, mode, pn_Load_res);
1700
1701         load_res           = create_conv(dbgi, load_res, mode_int);
1702
1703         set_store(load_mem);
1704
1705         /* kill upper bits */
1706         ir_entity *entity       = expression->compound_entry->v.entity;
1707         int        bitoffset    = get_entity_offset_bits_remainder(entity);
1708         ir_type   *entity_type  = get_entity_type(entity);
1709         int        bitsize      = get_mode_size_bits(get_type_mode(entity_type));
1710         long       shift_bitsl  = machine_size - bitoffset - bitsize;
1711         assert(shift_bitsl >= 0);
1712         tarval    *tvl          = new_tarval_from_long(shift_bitsl, mode_uint);
1713         ir_node   *countl       = new_d_Const(dbgi, mode_uint, tvl);
1714         ir_node   *shiftl       = new_d_Shl(dbgi, load_res, countl, mode_int);
1715
1716         long       shift_bitsr  = bitoffset + shift_bitsl;
1717         assert(shift_bitsr <= (long) machine_size);
1718         tarval    *tvr          = new_tarval_from_long(shift_bitsr, mode_uint);
1719         ir_node   *countr       = new_d_Const(dbgi, mode_uint, tvr);
1720         ir_node   *shiftr;
1721         if(mode_is_signed(mode)) {
1722                 shiftr = new_d_Shrs(dbgi, shiftl, countr, mode_int);
1723         } else {
1724                 shiftr = new_d_Shr(dbgi, shiftl, countr, mode_int);
1725         }
1726
1727         return create_conv(dbgi, shiftr, mode);
1728 }
1729
1730 static void set_value_for_expression_addr(const expression_t *expression,
1731                                           ir_node *value, ir_node *addr)
1732 {
1733         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
1734         value          = do_strict_conv(dbgi, value);
1735
1736         if (expression->kind == EXPR_REFERENCE) {
1737                 const reference_expression_t *ref = &expression->reference;
1738
1739                 declaration_t *declaration = ref->declaration;
1740                 assert(declaration->declaration_kind != DECLARATION_KIND_UNKNOWN);
1741                 if (declaration->declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE) {
1742                         set_value(declaration->v.value_number, value);
1743                         return;
1744                 }
1745         }
1746
1747         if (addr == NULL)
1748                 addr = expression_to_addr(expression);
1749
1750         type_t *type = skip_typeref(expression->base.type);
1751
1752         if (expression->kind == EXPR_SELECT) {
1753                 const select_expression_t *select = &expression->select;
1754
1755                 declaration_t *declaration = select->compound_entry;
1756                 if (declaration->type->kind == TYPE_BITFIELD) {
1757                         bitfield_store_to_firm(select, addr, value);
1758                         return;
1759                 }
1760         }
1761
1762         assign_value(dbgi, addr, type, value);
1763 }
1764
1765 static void set_value_for_expression(const expression_t *expression,
1766                                      ir_node *value)
1767 {
1768         set_value_for_expression_addr(expression, value, NULL);
1769 }
1770
1771 static ir_node *get_value_from_lvalue(const expression_t *expression,
1772                                       ir_node *addr)
1773 {
1774         if (expression->kind == EXPR_REFERENCE) {
1775                 const reference_expression_t *ref = &expression->reference;
1776
1777                 declaration_t *declaration = ref->declaration;
1778                 assert(declaration->declaration_kind != DECLARATION_KIND_UNKNOWN);
1779                 if (declaration->declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE) {
1780                         assert(addr == NULL);
1781                         ir_mode *mode = get_ir_mode(expression->base.type);
1782                         return get_value(declaration->v.value_number, mode);
1783                 }
1784         }
1785
1786         assert(addr != NULL);
1787         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
1788
1789         ir_node *value;
1790         if (expression->kind == EXPR_SELECT &&
1791             expression->select.compound_entry->type->kind == TYPE_BITFIELD){
1792                 value = bitfield_extract_to_firm(&expression->select, addr);
1793         } else {
1794                 value = deref_address(dbgi, expression->base.type, addr);
1795         }
1796
1797         return value;
1798 }
1799
1800
1801 static ir_node *create_incdec(const unary_expression_t *expression)
1802 {
1803         dbg_info *const     dbgi = get_dbg_info(&expression->base.source_position);
1804         const expression_t *value_expr = expression->value;
1805         ir_node            *addr       = expression_to_addr(value_expr);
1806         ir_node            *value      = get_value_from_lvalue(value_expr, addr);
1807
1808         type_t  *type = skip_typeref(expression->base.type);
1809         ir_mode *mode = get_ir_mode(expression->base.type);
1810
1811         ir_node *offset;
1812         if(is_type_pointer(type)) {
1813                 pointer_type_t *pointer_type = &type->pointer;
1814                 offset                       = get_type_size(pointer_type->points_to);
1815         } else {
1816                 assert(is_type_arithmetic(type));
1817                 offset = new_Const(mode, get_mode_one(mode));
1818         }
1819
1820         ir_node *result;
1821         ir_node *store_value;
1822         switch(expression->base.kind) {
1823         case EXPR_UNARY_POSTFIX_INCREMENT:
1824                 result      = value;
1825                 store_value = new_d_Add(dbgi, value, offset, mode);
1826                 break;
1827         case EXPR_UNARY_POSTFIX_DECREMENT:
1828                 result      = value;
1829                 store_value = new_d_Sub(dbgi, value, offset, mode);
1830                 break;
1831         case EXPR_UNARY_PREFIX_INCREMENT:
1832                 result      = new_d_Add(dbgi, value, offset, mode);
1833                 store_value = result;
1834                 break;
1835         case EXPR_UNARY_PREFIX_DECREMENT:
1836                 result      = new_d_Sub(dbgi, value, offset, mode);
1837                 store_value = result;
1838                 break;
1839         default:
1840                 panic("no incdec expr in create_incdec");
1841         }
1842
1843         set_value_for_expression_addr(value_expr, store_value, addr);
1844
1845         return result;
1846 }
1847
1848 static bool is_local_variable(expression_t *expression)
1849 {
1850         if (expression->kind != EXPR_REFERENCE)
1851                 return false;
1852         reference_expression_t *ref_expr    = &expression->reference;
1853         declaration_t          *declaration = ref_expr->declaration;
1854         return declaration->declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE;
1855 }
1856
1857 static pn_Cmp get_pnc(const expression_kind_t kind, type_t *const type)
1858 {
1859         switch(kind) {
1860         case EXPR_BINARY_EQUAL:         return pn_Cmp_Eq;
1861         case EXPR_BINARY_ISLESSGREATER: return pn_Cmp_Lg;
1862         case EXPR_BINARY_NOTEQUAL:
1863                 return is_type_float(skip_typeref(type)) ? pn_Cmp_Ne : pn_Cmp_Lg;
1864         case EXPR_BINARY_ISLESS:
1865         case EXPR_BINARY_LESS:          return pn_Cmp_Lt;
1866         case EXPR_BINARY_ISLESSEQUAL:
1867         case EXPR_BINARY_LESSEQUAL:     return pn_Cmp_Le;
1868         case EXPR_BINARY_ISGREATER:
1869         case EXPR_BINARY_GREATER:       return pn_Cmp_Gt;
1870         case EXPR_BINARY_ISGREATEREQUAL:
1871         case EXPR_BINARY_GREATEREQUAL:  return pn_Cmp_Ge;
1872         case EXPR_BINARY_ISUNORDERED:   return pn_Cmp_Uo;
1873
1874         default:
1875                 break;
1876         }
1877         panic("trying to get pn_Cmp from non-comparison binexpr type");
1878 }
1879
1880 /**
1881  * Handle the assume optimizer hint: check if a Confirm
1882  * node can be created.
1883  *
1884  * @param dbi    debug info
1885  * @param expr   the IL assume expression
1886  *
1887  * we support here only some simple cases:
1888  *  - var rel const
1889  *  - const rel val
1890  *  - var rel var
1891  */
1892 static ir_node *handle_assume_compare(dbg_info *dbi,
1893                                       const binary_expression_t *expression)
1894 {
1895         expression_t  *op1 = expression->left;
1896         expression_t  *op2 = expression->right;
1897         declaration_t *var2, *var = NULL;
1898         ir_node       *res = NULL;
1899         pn_Cmp         cmp_val;
1900
1901         cmp_val = get_pnc(expression->base.kind, op1->base.type);
1902
1903         if (is_local_variable(op1) && is_local_variable(op2)) {
1904         var  = op1->reference.declaration;
1905             var2 = op2->reference.declaration;
1906
1907                 type_t  *const type = skip_typeref(var->type);
1908                 ir_mode *const mode = get_ir_mode(type);
1909
1910                 ir_node *const irn1 = get_value(var->v.value_number, mode);
1911                 ir_node *const irn2 = get_value(var2->v.value_number, mode);
1912
1913                 res = new_d_Confirm(dbi, irn2, irn1, get_inversed_pnc(cmp_val));
1914                 set_value(var2->v.value_number, res);
1915
1916                 res = new_d_Confirm(dbi, irn1, irn2, cmp_val);
1917                 set_value(var->v.value_number, res);
1918
1919                 return res;
1920         }
1921
1922         expression_t *con;
1923         if (is_local_variable(op1) && is_constant_expression(op2)) {
1924                 var = op1->reference.declaration;
1925                 con = op2;
1926         } else if (is_constant_expression(op1) && is_local_variable(op2)) {
1927                 cmp_val = get_inversed_pnc(cmp_val);
1928                 var = op2->reference.declaration;
1929                 con = op1;
1930         }
1931
1932         if (var != NULL) {
1933                 type_t  *const type = skip_typeref(var->type);
1934                 ir_mode *const mode = get_ir_mode(type);
1935
1936                 res = get_value(var->v.value_number, mode);
1937                 res = new_d_Confirm(dbi, res, expression_to_firm(con), cmp_val);
1938                 set_value(var->v.value_number, res);
1939         }
1940         return res;
1941 }
1942
1943 /**
1944  * Handle the assume optimizer hint.
1945  *
1946  * @param dbi    debug info
1947  * @param expr   the IL assume expression
1948  */
1949 static ir_node *handle_assume(dbg_info *dbi, const expression_t *expression) {
1950         switch(expression->kind) {
1951         case EXPR_BINARY_EQUAL:
1952         case EXPR_BINARY_NOTEQUAL:
1953         case EXPR_BINARY_LESS:
1954         case EXPR_BINARY_LESSEQUAL:
1955         case EXPR_BINARY_GREATER:
1956         case EXPR_BINARY_GREATEREQUAL:
1957                 return handle_assume_compare(dbi, &expression->binary);
1958         default:
1959                 return NULL;
1960         }
1961 }
1962
1963 static ir_node *unary_expression_to_firm(const unary_expression_t *expression)
1964 {
1965         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
1966         type_t   *type = skip_typeref(expression->base.type);
1967
1968         if(expression->base.kind == EXPR_UNARY_TAKE_ADDRESS)
1969                 return expression_to_addr(expression->value);
1970
1971         const expression_t *value = expression->value;
1972
1973         switch(expression->base.kind) {
1974         case EXPR_UNARY_NEGATE: {
1975                 ir_node *value_node = expression_to_firm(value);
1976                 ir_mode *mode = get_ir_mode(type);
1977                 return new_d_Minus(dbgi, value_node, mode);
1978         }
1979         case EXPR_UNARY_PLUS:
1980                 return expression_to_firm(value);
1981         case EXPR_UNARY_BITWISE_NEGATE: {
1982                 ir_node *value_node = expression_to_firm(value);
1983                 ir_mode *mode = get_ir_mode(type);
1984                 return new_d_Not(dbgi, value_node, mode);
1985         }
1986         case EXPR_UNARY_NOT: {
1987                 ir_node *value_node = _expression_to_firm(value);
1988                 value_node          = create_conv(dbgi, value_node, mode_b);
1989                 ir_node *res        = new_d_Not(dbgi, value_node, mode_b);
1990                 return res;
1991         }
1992         case EXPR_UNARY_DEREFERENCE: {
1993                 ir_node *value_node = expression_to_firm(value);
1994                 type_t  *value_type = skip_typeref(value->base.type);
1995                 assert(is_type_pointer(value_type));
1996                 type_t  *points_to  = value_type->pointer.points_to;
1997                 return deref_address(dbgi, points_to, value_node);
1998         }
1999         case EXPR_UNARY_POSTFIX_INCREMENT:
2000         case EXPR_UNARY_POSTFIX_DECREMENT:
2001         case EXPR_UNARY_PREFIX_INCREMENT:
2002         case EXPR_UNARY_PREFIX_DECREMENT:
2003                 return create_incdec(expression);
2004         case EXPR_UNARY_CAST: {
2005                 ir_node *value_node = expression_to_firm(value);
2006                 if(is_type_scalar(type)) {
2007                         ir_mode *mode = get_ir_mode(type);
2008                         ir_node *node = create_conv(dbgi, value_node, mode);
2009                         node = do_strict_conv(dbgi, node);
2010                         return node;
2011                 } else {
2012                         /* make sure firm type is constructed */
2013                         (void) get_ir_type(type);
2014                         return value_node;
2015                 }
2016         }
2017         case EXPR_UNARY_CAST_IMPLICIT: {
2018                 ir_node *value_node = expression_to_firm(value);
2019                 if(is_type_scalar(type)) {
2020                         ir_mode *mode = get_ir_mode(type);
2021                         return create_conv(dbgi, value_node, mode);
2022                 } else {
2023                         return value_node;
2024                 }
2025         }
2026         case EXPR_UNARY_ASSUME:
2027                 if(firm_opt.confirm)
2028                         return handle_assume(dbgi, value);
2029                 else
2030                         return NULL;
2031
2032         default:
2033                 break;
2034         }
2035         panic("invalid UNEXPR type found");
2036 }
2037
2038 /**
2039  * produces a 0/1 depending of the value of a mode_b node
2040  */
2041 static ir_node *produce_condition_result(const expression_t *expression,
2042                                          dbg_info *dbgi)
2043 {
2044         ir_mode *mode      = get_ir_mode(expression->base.type);
2045         ir_node *cur_block = get_cur_block();
2046
2047         ir_node *one_block = new_immBlock();
2048         ir_node *one       = new_Const(mode, get_mode_one(mode));
2049         ir_node *jmp_one   = new_d_Jmp(dbgi);
2050
2051         ir_node *zero_block = new_immBlock();
2052         ir_node *zero       = new_Const(mode, get_mode_null(mode));
2053         ir_node *jmp_zero   = new_d_Jmp(dbgi);
2054
2055         set_cur_block(cur_block);
2056         create_condition_evaluation(expression, one_block, zero_block);
2057         mature_immBlock(one_block);
2058         mature_immBlock(zero_block);
2059
2060         ir_node *common_block = new_immBlock();
2061         add_immBlock_pred(common_block, jmp_one);
2062         add_immBlock_pred(common_block, jmp_zero);
2063         mature_immBlock(common_block);
2064
2065         ir_node *in[2] = { one, zero };
2066         ir_node *val   = new_d_Phi(dbgi, 2, in, mode);
2067
2068         return val;
2069 }
2070
2071 static ir_node *adjust_for_pointer_arithmetic(dbg_info *dbgi,
2072                 ir_node *value, type_t *type)
2073 {
2074         pointer_type_t *const pointer_type = &type->pointer;
2075         type_t         *const points_to    = pointer_type->points_to;
2076         const unsigned        elem_size    = get_type_size_const(points_to);
2077
2078         assert(elem_size >= 1);
2079         if (elem_size == 1)
2080                 return value;
2081
2082         value = create_conv(dbgi, value, mode_int);
2083         ir_node *const cnst = new_Const_long(mode_int, (long)elem_size);
2084         ir_node *const mul  = new_d_Mul(dbgi, value, cnst, mode_int);
2085         return mul;
2086 }
2087
2088 static ir_node *create_op(dbg_info *dbgi, const binary_expression_t *expression,
2089                           ir_node *left, ir_node *right)
2090 {
2091         ir_mode  *mode;
2092         type_t   *type_left  = skip_typeref(expression->left->base.type);
2093         type_t   *type_right = skip_typeref(expression->right->base.type);
2094
2095         expression_kind_t kind = expression->base.kind;
2096
2097         switch (kind) {
2098         case EXPR_BINARY_SHIFTLEFT:
2099         case EXPR_BINARY_SHIFTRIGHT:
2100         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
2101         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
2102                 mode  = get_irn_mode(left);
2103                 right = create_conv(dbgi, right, mode_uint);
2104                 break;
2105
2106         case EXPR_BINARY_SUB:
2107                 if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
2108                         const pointer_type_t *const ptr_type = &type_left->pointer;
2109
2110                         mode = get_ir_mode(expression->base.type);
2111                         ir_node *const elem_size = get_type_size(ptr_type->points_to);
2112                         ir_node *const conv_size = new_d_Conv(dbgi, elem_size, mode);
2113                         ir_node *const sub       = new_d_Sub(dbgi, left, right, mode);
2114                         ir_node *const no_mem    = new_NoMem();
2115                         ir_node *const div       = new_d_DivRL(dbgi, no_mem, sub, conv_size,
2116                                                                                                    mode, op_pin_state_floats);
2117                         return new_d_Proj(dbgi, div, mode, pn_Div_res);
2118                 }
2119                 /* fallthrough */
2120         case EXPR_BINARY_SUB_ASSIGN:
2121                 if (is_type_pointer(type_left)) {
2122                         right = adjust_for_pointer_arithmetic(dbgi, right, type_left);
2123                         mode  = get_ir_mode(type_left);
2124                         break;
2125                 }
2126                 goto normal_node;
2127
2128         case EXPR_BINARY_ADD:
2129         case EXPR_BINARY_ADD_ASSIGN:
2130                 if (is_type_pointer(type_left)) {
2131                         right = adjust_for_pointer_arithmetic(dbgi, right, type_left);
2132                         mode  = get_ir_mode(type_left);
2133                         break;
2134                 } else if (is_type_pointer(type_right)) {
2135                         left  = adjust_for_pointer_arithmetic(dbgi, left, type_right);
2136                         mode  = get_ir_mode(type_right);
2137                         break;
2138                 }
2139                 goto normal_node;
2140
2141         default:
2142 normal_node:
2143                 mode = get_irn_mode(right);
2144                 left = create_conv(dbgi, left, mode);
2145                 break;
2146         }
2147
2148         switch (kind) {
2149         case EXPR_BINARY_ADD_ASSIGN:
2150         case EXPR_BINARY_ADD:
2151                 return new_d_Add(dbgi, left, right, mode);
2152         case EXPR_BINARY_SUB_ASSIGN:
2153         case EXPR_BINARY_SUB:
2154                 return new_d_Sub(dbgi, left, right, mode);
2155         case EXPR_BINARY_MUL_ASSIGN:
2156         case EXPR_BINARY_MUL:
2157                 return new_d_Mul(dbgi, left, right, mode);
2158         case EXPR_BINARY_BITWISE_AND:
2159         case EXPR_BINARY_BITWISE_AND_ASSIGN:
2160                 return new_d_And(dbgi, left, right, mode);
2161         case EXPR_BINARY_BITWISE_OR:
2162         case EXPR_BINARY_BITWISE_OR_ASSIGN:
2163                 return new_d_Or(dbgi, left, right, mode);
2164         case EXPR_BINARY_BITWISE_XOR:
2165         case EXPR_BINARY_BITWISE_XOR_ASSIGN:
2166                 return new_d_Eor(dbgi, left, right, mode);
2167         case EXPR_BINARY_SHIFTLEFT:
2168         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
2169                 return new_d_Shl(dbgi, left, right, mode);
2170         case EXPR_BINARY_SHIFTRIGHT:
2171         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
2172                 if (mode_is_signed(mode)) {
2173                         return new_d_Shrs(dbgi, left, right, mode);
2174                 } else {
2175                         return new_d_Shr(dbgi, left, right, mode);
2176                 }
2177         case EXPR_BINARY_DIV:
2178         case EXPR_BINARY_DIV_ASSIGN: {
2179                 ir_node *pin = new_Pin(new_NoMem());
2180                 ir_node *op;
2181                 ir_node *res;
2182                 if(mode_is_float(mode)) {
2183                         op  = new_d_Quot(dbgi, pin, left, right, mode, op_pin_state_floats);
2184                         res = new_d_Proj(dbgi, op, mode, pn_Quot_res);
2185                 } else {
2186                         op  = new_d_Div(dbgi, pin, left, right, mode, op_pin_state_floats);
2187                         res = new_d_Proj(dbgi, op, mode, pn_Div_res);
2188                 }
2189                 return res;
2190         }
2191         case EXPR_BINARY_MOD:
2192         case EXPR_BINARY_MOD_ASSIGN: {
2193                 ir_node *pin = new_Pin(new_NoMem());
2194                 assert(!mode_is_float(mode));
2195                 ir_node *op  = new_d_Mod(dbgi, pin, left, right, mode,
2196                                          op_pin_state_floats);
2197                 ir_node *res = new_d_Proj(dbgi, op, mode, pn_Mod_res);
2198                 return res;
2199         }
2200         default:
2201                 panic("unexpected expression kind");
2202         }
2203 }
2204
2205 static ir_node *create_lazy_op(const binary_expression_t *expression)
2206 {
2207         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
2208         type_t   *type = expression->base.type;
2209         ir_mode  *mode = get_ir_mode(type);
2210
2211         if(is_constant_expression(expression->left)) {
2212                 long val = fold_constant(expression->left);
2213                 expression_kind_t ekind = expression->base.kind;
2214                 if((ekind == EXPR_BINARY_LOGICAL_AND && val != 0)
2215                                 || (ekind == EXPR_BINARY_LOGICAL_OR && val == 0)) {
2216                         return expression_to_firm(expression->right);
2217                 } else {
2218                         assert((ekind == EXPR_BINARY_LOGICAL_AND && val == 0)
2219                                         || (ekind == EXPR_BINARY_LOGICAL_OR && val != 0));
2220                         return new_Const(mode, get_mode_one(mode));
2221                 }
2222         }
2223
2224         return produce_condition_result((const expression_t*) expression, dbgi);
2225 }
2226
2227 typedef ir_node * (*create_arithmetic_func)(dbg_info *dbgi, ir_node *left,
2228                                             ir_node *right, ir_mode *mode);
2229
2230 static ir_node *create_assign_binop(const binary_expression_t *expression)
2231 {
2232         dbg_info *const     dbgi = get_dbg_info(&expression->base.source_position);
2233         const expression_t *left_expr = expression->left;
2234         ir_mode            *left_mode = get_ir_mode(left_expr->base.type);
2235         ir_node            *left_addr = expression_to_addr(left_expr);
2236         ir_node            *left      = get_value_from_lvalue(left_expr, left_addr);
2237         ir_node            *right     = expression_to_firm(expression->right);
2238         ir_node            *result    = create_op(dbgi, expression, left, right);
2239
2240         result = create_conv(dbgi, result, left_mode);
2241         result = do_strict_conv(dbgi, result);
2242
2243         set_value_for_expression_addr(left_expr, result, left_addr);
2244
2245         return result;
2246 }
2247
2248 static ir_node *binary_expression_to_firm(const binary_expression_t *expression)
2249 {
2250         expression_kind_t kind = expression->base.kind;
2251
2252         switch(kind) {
2253         case EXPR_BINARY_EQUAL:
2254         case EXPR_BINARY_NOTEQUAL:
2255         case EXPR_BINARY_LESS:
2256         case EXPR_BINARY_LESSEQUAL:
2257         case EXPR_BINARY_GREATER:
2258         case EXPR_BINARY_GREATEREQUAL:
2259         case EXPR_BINARY_ISGREATER:
2260         case EXPR_BINARY_ISGREATEREQUAL:
2261         case EXPR_BINARY_ISLESS:
2262         case EXPR_BINARY_ISLESSEQUAL:
2263         case EXPR_BINARY_ISLESSGREATER:
2264         case EXPR_BINARY_ISUNORDERED: {
2265                 dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
2266                 ir_node *left  = expression_to_firm(expression->left);
2267                 ir_node *right = expression_to_firm(expression->right);
2268                 ir_node *cmp   = new_d_Cmp(dbgi, left, right);
2269                 long     pnc   = get_pnc(kind, expression->left->base.type);
2270                 ir_node *proj  = new_d_Proj(dbgi, cmp, mode_b, pnc);
2271                 return proj;
2272         }
2273         case EXPR_BINARY_ASSIGN: {
2274                 ir_node *addr  = expression_to_addr(expression->left);
2275                 ir_node *right = expression_to_firm(expression->right);
2276                 set_value_for_expression_addr(expression->left, right, addr);
2277
2278                 return right;
2279         }
2280         case EXPR_BINARY_ADD:
2281         case EXPR_BINARY_SUB:
2282         case EXPR_BINARY_MUL:
2283         case EXPR_BINARY_DIV:
2284         case EXPR_BINARY_MOD:
2285         case EXPR_BINARY_BITWISE_AND:
2286         case EXPR_BINARY_BITWISE_OR:
2287         case EXPR_BINARY_BITWISE_XOR:
2288         case EXPR_BINARY_SHIFTLEFT:
2289         case EXPR_BINARY_SHIFTRIGHT:
2290         {
2291                 dbg_info *dbgi  = get_dbg_info(&expression->base.source_position);
2292                 ir_node  *left  = expression_to_firm(expression->left);
2293                 ir_node  *right = expression_to_firm(expression->right);
2294                 return create_op(dbgi, expression, left, right);
2295         }
2296         case EXPR_BINARY_LOGICAL_AND:
2297         case EXPR_BINARY_LOGICAL_OR:
2298                 return create_lazy_op(expression);
2299         case EXPR_BINARY_COMMA:
2300                 /* create side effects of left side */
2301                 (void) expression_to_firm(expression->left);
2302                 return _expression_to_firm(expression->right);
2303
2304         case EXPR_BINARY_ADD_ASSIGN:
2305         case EXPR_BINARY_SUB_ASSIGN:
2306         case EXPR_BINARY_MUL_ASSIGN:
2307         case EXPR_BINARY_MOD_ASSIGN:
2308         case EXPR_BINARY_DIV_ASSIGN:
2309         case EXPR_BINARY_BITWISE_AND_ASSIGN:
2310         case EXPR_BINARY_BITWISE_OR_ASSIGN:
2311         case EXPR_BINARY_BITWISE_XOR_ASSIGN:
2312         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
2313         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
2314                 return create_assign_binop(expression);
2315         case EXPR_BINARY_BUILTIN_EXPECT:
2316                 return _expression_to_firm(expression->left);
2317         default:
2318                 panic("TODO binexpr type");
2319         }
2320 }
2321
2322 static ir_node *array_access_addr(const array_access_expression_t *expression)
2323 {
2324         dbg_info *dbgi      = get_dbg_info(&expression->base.source_position);
2325         ir_node  *base_addr = expression_to_firm(expression->array_ref);
2326         ir_node  *offset    = expression_to_firm(expression->index);
2327
2328         type_t  *offset_type = skip_typeref(expression->index->base.type);
2329         ir_mode *mode;
2330         if (is_type_signed(offset_type)) {
2331                 mode = get_ir_mode(type_ssize_t);
2332         } else {
2333                 mode = get_ir_mode(type_size_t);
2334         }
2335         offset = create_conv(dbgi, offset, mode);
2336
2337         type_t *ref_type = skip_typeref(expression->array_ref->base.type);
2338         assert(is_type_pointer(ref_type));
2339         pointer_type_t *pointer_type = &ref_type->pointer;
2340
2341         ir_node *elem_size_const = get_type_size(pointer_type->points_to);
2342         elem_size_const          = create_conv(dbgi, elem_size_const, mode);
2343         ir_node *real_offset     = new_d_Mul(dbgi, offset, elem_size_const,
2344                                              mode);
2345         ir_node *result          = new_d_Add(dbgi, base_addr, real_offset, mode_P_data);
2346
2347         return result;
2348 }
2349
2350 static ir_node *array_access_to_firm(
2351                 const array_access_expression_t *expression)
2352 {
2353         dbg_info *dbgi   = get_dbg_info(&expression->base.source_position);
2354         ir_node  *addr   = array_access_addr(expression);
2355         type_t   *type   = revert_automatic_type_conversion(
2356                         (const expression_t*) expression);
2357         type             = skip_typeref(type);
2358
2359         return deref_address(dbgi, type, addr);
2360 }
2361
2362 static long get_offsetof_offset(const offsetof_expression_t *expression)
2363 {
2364         type_t *orig_type = expression->type;
2365         long    offset    = 0;
2366
2367         designator_t *designator = expression->designator;
2368         for( ; designator != NULL; designator = designator->next) {
2369                 type_t *type = skip_typeref(orig_type);
2370                 /* be sure the type is constructed */
2371                 (void) get_ir_type(type);
2372
2373                 if(designator->symbol != NULL) {
2374                         assert(is_type_compound(type));
2375                         symbol_t *symbol = designator->symbol;
2376
2377                         declaration_t *declaration = type->compound.declaration;
2378                         declaration_t *iter        = declaration->scope.declarations;
2379                         for( ; iter != NULL; iter = iter->next) {
2380                                 if(iter->symbol == symbol) {
2381                                         break;
2382                                 }
2383                         }
2384                         assert(iter != NULL);
2385
2386                         assert(iter->declaration_kind == DECLARATION_KIND_COMPOUND_MEMBER);
2387                         offset += get_entity_offset(iter->v.entity);
2388
2389                         orig_type = iter->type;
2390                 } else {
2391                         expression_t *array_index = designator->array_index;
2392                         assert(designator->array_index != NULL);
2393                         assert(is_type_array(type));
2394                         assert(is_type_valid(array_index->base.type));
2395
2396                         long index         = fold_constant(array_index);
2397                         ir_type *arr_type  = get_ir_type(type);
2398                         ir_type *elem_type = get_array_element_type(arr_type);
2399                         long     elem_size = get_type_size_bytes(elem_type);
2400
2401                         offset += index * elem_size;
2402
2403                         orig_type = type->array.element_type;
2404                 }
2405         }
2406
2407         return offset;
2408 }
2409
2410 static ir_node *offsetof_to_firm(const offsetof_expression_t *expression)
2411 {
2412         ir_mode  *mode   = get_ir_mode(expression->base.type);
2413         long      offset = get_offsetof_offset(expression);
2414         tarval   *tv     = new_tarval_from_long(offset, mode);
2415         dbg_info *dbgi   = get_dbg_info(&expression->base.source_position);
2416
2417         return new_d_Const(dbgi, mode, tv);
2418 }
2419
2420 static void create_local_initializer(initializer_t *initializer, dbg_info *dbgi,
2421                                      ir_entity *entity, type_t *type);
2422
2423 static ir_node *compound_literal_to_firm(
2424                 const compound_literal_expression_t *expression)
2425 {
2426         type_t *type = expression->type;
2427
2428         /* create an entity on the stack */
2429         ir_type *frame_type = get_irg_frame_type(current_ir_graph);
2430
2431         ident     *const id     = id_unique("CompLit.%u");
2432         ir_type   *const irtype = get_ir_type(type);
2433         dbg_info  *const dbgi   = get_dbg_info(&expression->base.source_position);
2434         ir_entity *const entity = new_d_entity(frame_type, id, irtype, dbgi);
2435         set_entity_ld_ident(entity, id);
2436
2437         set_entity_variability(entity, variability_uninitialized);
2438
2439         /* create initialisation code */
2440         initializer_t *initializer = expression->initializer;
2441         create_local_initializer(initializer, dbgi, entity, type);
2442
2443         /* create a sel for the compound literal address */
2444         ir_node *frame = get_local_frame(entity);
2445         ir_node *sel   = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
2446         return sel;
2447 }
2448
2449 /**
2450  * Transform a sizeof expression into Firm code.
2451  */
2452 static ir_node *sizeof_to_firm(const typeprop_expression_t *expression)
2453 {
2454         type_t *type = expression->type;
2455         if(type == NULL) {
2456                 type = expression->tp_expression->base.type;
2457                 assert(type != NULL);
2458         }
2459
2460         type = skip_typeref(type);
2461         /* ยง 6.5.3.4 (2) if the type is a VLA, evaluate the expression. */
2462         if(is_type_array(type) && type->array.is_vla
2463                         && expression->tp_expression != NULL) {
2464                 expression_to_firm(expression->tp_expression);
2465         }
2466
2467         return get_type_size(type);
2468 }
2469
2470 /**
2471  * Transform an alignof expression into Firm code.
2472  */
2473 static ir_node *alignof_to_firm(const typeprop_expression_t *expression)
2474 {
2475         type_t *type = expression->type;
2476         if(type == NULL) {
2477                 /* beware: if expression is a variable reference, return the
2478                    alignment of the variable. */
2479                 const expression_t *tp_expression = expression->tp_expression;
2480                 const declaration_t *declaration = expr_is_variable(tp_expression);
2481                 if (declaration != NULL) {
2482                         /* TODO: get the alignment of this variable. */
2483                 }
2484                 type = tp_expression->base.type;
2485                 assert(type != NULL);
2486         }
2487
2488         ir_mode *const mode = get_ir_mode(expression->base.type);
2489         symconst_symbol sym;
2490         sym.type_p = get_ir_type(type);
2491         return new_SymConst(mode, sym, symconst_type_align);
2492 }
2493
2494 static void init_ir_types(void);
2495 long fold_constant(const expression_t *expression)
2496 {
2497         bool constant_folding_old = constant_folding;
2498         constant_folding = true;
2499
2500         init_ir_types();
2501
2502         assert(is_constant_expression(expression));
2503
2504         ir_graph *old_current_ir_graph = current_ir_graph;
2505         if(current_ir_graph == NULL) {
2506                 current_ir_graph = get_const_code_irg();
2507         }
2508
2509         ir_node *cnst = expression_to_firm(expression);
2510         current_ir_graph = old_current_ir_graph;
2511
2512         if(!is_Const(cnst)) {
2513                 panic("couldn't fold constant\n");
2514         }
2515
2516         tarval *tv = get_Const_tarval(cnst);
2517         if(!tarval_is_long(tv)) {
2518                 panic("result of constant folding is not integer\n");
2519         }
2520
2521         constant_folding = constant_folding_old;
2522
2523         return get_tarval_long(tv);
2524 }
2525
2526 static ir_node *conditional_to_firm(const conditional_expression_t *expression)
2527 {
2528         dbg_info *const dbgi = get_dbg_info(&expression->base.source_position);
2529
2530         /* first try to fold a constant condition */
2531         if(is_constant_expression(expression->condition)) {
2532                 long val = fold_constant(expression->condition);
2533                 if(val) {
2534                         return expression_to_firm(expression->true_expression);
2535                 } else {
2536                         return expression_to_firm(expression->false_expression);
2537                 }
2538         }
2539
2540         ir_node *cur_block   = get_cur_block();
2541
2542         /* create the true block */
2543         ir_node *true_block  = new_immBlock();
2544
2545         ir_node *true_val = expression_to_firm(expression->true_expression);
2546         ir_node *true_jmp = new_Jmp();
2547
2548         /* create the false block */
2549         ir_node *false_block = new_immBlock();
2550
2551         ir_node *false_val = expression_to_firm(expression->false_expression);
2552         ir_node *false_jmp = new_Jmp();
2553
2554         /* create the condition evaluation */
2555         set_cur_block(cur_block);
2556         create_condition_evaluation(expression->condition, true_block, false_block);
2557         mature_immBlock(true_block);
2558         mature_immBlock(false_block);
2559
2560         /* create the common block */
2561         ir_node *common_block = new_immBlock();
2562         add_immBlock_pred(common_block, true_jmp);
2563         add_immBlock_pred(common_block, false_jmp);
2564         mature_immBlock(common_block);
2565
2566         /* TODO improve static semantics, so either both or no values are NULL */
2567         if (true_val == NULL || false_val == NULL)
2568                 return NULL;
2569
2570         ir_node *in[2] = { true_val, false_val };
2571         ir_mode *mode  = get_irn_mode(true_val);
2572         assert(get_irn_mode(false_val) == mode);
2573         ir_node *val   = new_d_Phi(dbgi, 2, in, mode);
2574
2575         return val;
2576 }
2577
2578 /**
2579  * Returns an IR-node representing the address of a field.
2580  */
2581 static ir_node *select_addr(const select_expression_t *expression)
2582 {
2583         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
2584
2585         ir_node *compound_addr = expression_to_firm(expression->compound);
2586
2587         /* make sure the type is constructed */
2588         type_t *type = skip_typeref(expression->compound->base.type);
2589         if (is_type_pointer(type)) {
2590                 type = type->pointer.points_to;
2591         }
2592         (void) get_ir_type(type);
2593
2594         declaration_t *entry = expression->compound_entry;
2595         assert(entry->declaration_kind == DECLARATION_KIND_COMPOUND_MEMBER);
2596         ir_entity     *entity = entry->v.entity;
2597
2598         assert(entity != NULL);
2599
2600         ir_node *sel = new_d_simpleSel(dbgi, new_NoMem(), compound_addr, entity);
2601
2602         return sel;
2603 }
2604
2605 static ir_node *select_to_firm(const select_expression_t *expression)
2606 {
2607         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
2608         ir_node  *addr = select_addr(expression);
2609         type_t   *type = revert_automatic_type_conversion(
2610                         (const expression_t*) expression);
2611         type           = skip_typeref(type);
2612
2613         declaration_t *entry      = expression->compound_entry;
2614         type_t        *entry_type = skip_typeref(entry->type);
2615
2616         if (entry_type->kind == TYPE_BITFIELD) {
2617                 return bitfield_extract_to_firm(expression, addr);
2618         }
2619
2620         return deref_address(dbgi, type, addr);
2621 }
2622
2623 /* Values returned by __builtin_classify_type. */
2624 typedef enum gcc_type_class
2625 {
2626         no_type_class = -1,
2627         void_type_class,
2628         integer_type_class,
2629         char_type_class,
2630         enumeral_type_class,
2631         boolean_type_class,
2632         pointer_type_class,
2633         reference_type_class,
2634         offset_type_class,
2635         real_type_class,
2636         complex_type_class,
2637         function_type_class,
2638         method_type_class,
2639         record_type_class,
2640         union_type_class,
2641         array_type_class,
2642         string_type_class,
2643         set_type_class,
2644         file_type_class,
2645         lang_type_class
2646 } gcc_type_class;
2647
2648 static ir_node *classify_type_to_firm(const classify_type_expression_t *const expr)
2649 {
2650         const type_t *const type = skip_typeref(expr->type_expression->base.type);
2651
2652         gcc_type_class tc;
2653         switch (type->kind)
2654         {
2655                 case TYPE_ATOMIC: {
2656                         const atomic_type_t *const atomic_type = &type->atomic;
2657                         switch (atomic_type->akind) {
2658                                 /* should not be reached */
2659                                 case ATOMIC_TYPE_INVALID:
2660                                         tc = no_type_class;
2661                                         goto make_const;
2662
2663                                 /* gcc cannot do that */
2664                                 case ATOMIC_TYPE_VOID:
2665                                         tc = void_type_class;
2666                                         goto make_const;
2667
2668                                 case ATOMIC_TYPE_CHAR:      /* gcc handles this as integer */
2669                                 case ATOMIC_TYPE_SCHAR:     /* gcc handles this as integer */
2670                                 case ATOMIC_TYPE_UCHAR:     /* gcc handles this as integer */
2671                                 case ATOMIC_TYPE_SHORT:
2672                                 case ATOMIC_TYPE_USHORT:
2673                                 case ATOMIC_TYPE_INT:
2674                                 case ATOMIC_TYPE_UINT:
2675                                 case ATOMIC_TYPE_LONG:
2676                                 case ATOMIC_TYPE_ULONG:
2677                                 case ATOMIC_TYPE_LONGLONG:
2678                                 case ATOMIC_TYPE_ULONGLONG:
2679                                 case ATOMIC_TYPE_BOOL:      /* gcc handles this as integer */
2680                                         tc = integer_type_class;
2681                                         goto make_const;
2682
2683                                 case ATOMIC_TYPE_FLOAT:
2684                                 case ATOMIC_TYPE_DOUBLE:
2685                                 case ATOMIC_TYPE_LONG_DOUBLE:
2686                                         tc = real_type_class;
2687                                         goto make_const;
2688                         }
2689                         panic("Unexpected atomic type in classify_type_to_firm().");
2690                 }
2691
2692                 case TYPE_COMPLEX:         tc = complex_type_class; goto make_const;
2693                 case TYPE_IMAGINARY:       tc = complex_type_class; goto make_const;
2694                 case TYPE_BITFIELD:        tc = integer_type_class; goto make_const;
2695                 case TYPE_ARRAY:           /* gcc handles this as pointer */
2696                 case TYPE_FUNCTION:        /* gcc handles this as pointer */
2697                 case TYPE_POINTER:         tc = pointer_type_class; goto make_const;
2698                 case TYPE_COMPOUND_STRUCT: tc = record_type_class;  goto make_const;
2699                 case TYPE_COMPOUND_UNION:  tc = union_type_class;   goto make_const;
2700
2701                 /* gcc handles this as integer */
2702                 case TYPE_ENUM:            tc = integer_type_class; goto make_const;
2703
2704                 case TYPE_BUILTIN:
2705                 /* typedef/typeof should be skipped already */
2706                 case TYPE_TYPEDEF:
2707                 case TYPE_TYPEOF:
2708                 case TYPE_INVALID:
2709                 case TYPE_ERROR:
2710                         break;
2711         }
2712         panic("unexpected TYPE classify_type_to_firm().");
2713
2714 make_const: ;
2715         dbg_info *const dbgi = get_dbg_info(&expr->base.source_position);
2716         ir_mode  *const mode = mode_int;
2717         tarval   *const tv   = new_tarval_from_long(tc, mode);
2718         return new_d_Const(dbgi, mode, tv);
2719 }
2720
2721 static ir_node *function_name_to_firm(
2722                 const funcname_expression_t *const expr)
2723 {
2724         switch(expr->kind) {
2725         case FUNCNAME_FUNCTION:
2726         case FUNCNAME_PRETTY_FUNCTION:
2727         case FUNCNAME_FUNCDNAME:
2728                 if (current_function_name == NULL) {
2729                         const source_position_t *const src_pos = &expr->base.source_position;
2730                         const char *const name = current_function_decl->symbol->string;
2731                         const string_t string = { name, strlen(name) + 1 };
2732                         current_function_name = string_to_firm(src_pos, "__func__.%u", &string);
2733                 }
2734                 return current_function_name;
2735         case FUNCNAME_FUNCSIG:
2736                 if (current_funcsig == NULL) {
2737                         const source_position_t *const src_pos = &expr->base.source_position;
2738                         ir_entity *ent = get_irg_entity(current_ir_graph);
2739                         const char *const name = get_entity_ld_name(ent);
2740                         const string_t string = { name, strlen(name) + 1 };
2741                         current_funcsig = string_to_firm(src_pos, "__FUNCSIG__.%u", &string);
2742                 }
2743                 return current_funcsig;
2744         }
2745         panic("Unsupported function name");
2746 }
2747
2748 static ir_node *statement_expression_to_firm(const statement_expression_t *expr)
2749 {
2750         statement_t *statement = expr->statement;
2751
2752         assert(statement->kind == STATEMENT_COMPOUND);
2753         return compound_statement_to_firm(&statement->compound);
2754 }
2755
2756 static ir_node *va_start_expression_to_firm(
2757         const va_start_expression_t *const expr)
2758 {
2759         ir_type   *const method_type = get_ir_type(current_function_decl->type);
2760         int        const n           = get_method_n_params(method_type) - 1;
2761         ir_entity *const parm_ent    = get_method_value_param_ent(method_type, n);
2762         ir_node   *const arg_base    = get_irg_value_param_base(current_ir_graph);
2763         dbg_info  *const dbgi        = get_dbg_info(&expr->base.source_position);
2764         ir_node   *const no_mem      = new_NoMem();
2765         ir_node   *const arg_sel     =
2766                 new_d_simpleSel(dbgi, no_mem, arg_base, parm_ent);
2767
2768         ir_node   *const cnst        = get_type_size(expr->parameter->type);
2769         ir_node   *const add         = new_d_Add(dbgi, arg_sel, cnst, mode_P_data);
2770         set_value_for_expression(expr->ap, add);
2771
2772         return NULL;
2773 }
2774
2775 static ir_node *va_arg_expression_to_firm(const va_arg_expression_t *const expr)
2776 {
2777         type_t       *const type    = expr->base.type;
2778         expression_t *const ap_expr = expr->ap;
2779         ir_node      *const ap_addr = expression_to_addr(ap_expr);
2780         ir_node      *const ap      = get_value_from_lvalue(ap_expr, ap_addr);
2781         dbg_info     *const dbgi    = get_dbg_info(&expr->base.source_position);
2782         ir_node      *const res     = deref_address(dbgi, type, ap);
2783
2784         ir_node      *const cnst    = get_type_size(expr->base.type);
2785         ir_node      *const add     = new_d_Add(dbgi, ap, cnst, mode_P_data);
2786
2787         set_value_for_expression_addr(ap_expr, add, ap_addr);
2788
2789         return res;
2790 }
2791
2792 static ir_node *dereference_addr(const unary_expression_t *const expression)
2793 {
2794         assert(expression->base.kind == EXPR_UNARY_DEREFERENCE);
2795         return expression_to_firm(expression->value);
2796 }
2797
2798 /**
2799  * Returns a IR-node representing an lvalue of the given expression.
2800  */
2801 static ir_node *expression_to_addr(const expression_t *expression)
2802 {
2803         switch(expression->kind) {
2804         case EXPR_REFERENCE:
2805                 return reference_addr(&expression->reference);
2806         case EXPR_ARRAY_ACCESS:
2807                 return array_access_addr(&expression->array_access);
2808         case EXPR_SELECT:
2809                 return select_addr(&expression->select);
2810         case EXPR_CALL:
2811                 return call_expression_to_firm(&expression->call);
2812         case EXPR_UNARY_DEREFERENCE: {
2813                 return dereference_addr(&expression->unary);
2814         }
2815         default:
2816                 break;
2817         }
2818         panic("trying to get address of non-lvalue");
2819 }
2820
2821 static ir_node *builtin_constant_to_firm(
2822                 const builtin_constant_expression_t *expression)
2823 {
2824         ir_mode *mode = get_ir_mode(expression->base.type);
2825         long     v;
2826
2827         if (is_constant_expression(expression->value)) {
2828                 v = 1;
2829         } else {
2830                 v = 0;
2831         }
2832         return new_Const_long(mode, v);
2833 }
2834
2835 static ir_node *builtin_prefetch_to_firm(
2836                 const builtin_prefetch_expression_t *expression)
2837 {
2838         ir_node *adr = expression_to_firm(expression->adr);
2839         /* no Firm support for prefetch yet */
2840         (void) adr;
2841         return NULL;
2842 }
2843
2844 /**
2845  * creates firm nodes for an expression. The difference between this function
2846  * and expression_to_firm is, that this version might produce mode_b nodes
2847  * instead of mode_Is.
2848  */
2849 static ir_node *_expression_to_firm(const expression_t *expression)
2850 {
2851 #ifndef NDEBUG
2852         if (!constant_folding) {
2853                 assert(!expression->base.transformed);
2854                 ((expression_t*) expression)->base.transformed = true;
2855         }
2856 #endif
2857
2858         switch(expression->kind) {
2859         case EXPR_CHARACTER_CONSTANT:
2860                 return character_constant_to_firm(&expression->conste);
2861         case EXPR_WIDE_CHARACTER_CONSTANT:
2862                 return wide_character_constant_to_firm(&expression->conste);
2863         case EXPR_CONST:
2864                 return const_to_firm(&expression->conste);
2865         case EXPR_STRING_LITERAL:
2866                 return string_literal_to_firm(&expression->string);
2867         case EXPR_WIDE_STRING_LITERAL:
2868                 return wide_string_literal_to_firm(&expression->wide_string);
2869         case EXPR_REFERENCE:
2870                 return reference_expression_to_firm(&expression->reference);
2871         case EXPR_CALL:
2872                 return call_expression_to_firm(&expression->call);
2873         EXPR_UNARY_CASES
2874                 return unary_expression_to_firm(&expression->unary);
2875         EXPR_BINARY_CASES
2876                 return binary_expression_to_firm(&expression->binary);
2877         case EXPR_ARRAY_ACCESS:
2878                 return array_access_to_firm(&expression->array_access);
2879         case EXPR_SIZEOF:
2880                 return sizeof_to_firm(&expression->typeprop);
2881         case EXPR_ALIGNOF:
2882                 return alignof_to_firm(&expression->typeprop);
2883         case EXPR_CONDITIONAL:
2884                 return conditional_to_firm(&expression->conditional);
2885         case EXPR_SELECT:
2886                 return select_to_firm(&expression->select);
2887         case EXPR_CLASSIFY_TYPE:
2888                 return classify_type_to_firm(&expression->classify_type);
2889         case EXPR_FUNCNAME:
2890                 return function_name_to_firm(&expression->funcname);
2891         case EXPR_STATEMENT:
2892                 return statement_expression_to_firm(&expression->statement);
2893         case EXPR_VA_START:
2894                 return va_start_expression_to_firm(&expression->va_starte);
2895         case EXPR_VA_ARG:
2896                 return va_arg_expression_to_firm(&expression->va_arge);
2897         case EXPR_BUILTIN_SYMBOL:
2898                 panic("unimplemented expression found");
2899         case EXPR_BUILTIN_CONSTANT_P:
2900                 return builtin_constant_to_firm(&expression->builtin_constant);
2901         case EXPR_BUILTIN_PREFETCH:
2902                 return builtin_prefetch_to_firm(&expression->builtin_prefetch);
2903         case EXPR_OFFSETOF:
2904                 return offsetof_to_firm(&expression->offsetofe);
2905         case EXPR_COMPOUND_LITERAL:
2906                 return compound_literal_to_firm(&expression->compound_literal);
2907
2908         case EXPR_UNKNOWN:
2909         case EXPR_INVALID:
2910                 break;
2911         }
2912         panic("invalid expression found");
2913 }
2914
2915 static bool produces_mode_b(const expression_t *expression)
2916 {
2917         switch (expression->kind) {
2918         case EXPR_BINARY_EQUAL:
2919         case EXPR_BINARY_NOTEQUAL:
2920         case EXPR_BINARY_LESS:
2921         case EXPR_BINARY_LESSEQUAL:
2922         case EXPR_BINARY_GREATER:
2923         case EXPR_BINARY_GREATEREQUAL:
2924         case EXPR_BINARY_ISGREATER:
2925         case EXPR_BINARY_ISGREATEREQUAL:
2926         case EXPR_BINARY_ISLESS:
2927         case EXPR_BINARY_ISLESSEQUAL:
2928         case EXPR_BINARY_ISLESSGREATER:
2929         case EXPR_BINARY_ISUNORDERED:
2930         case EXPR_UNARY_NOT:
2931                 return true;
2932
2933         case EXPR_BINARY_BUILTIN_EXPECT:
2934                 return produces_mode_b(expression->binary.left);
2935         case EXPR_BINARY_COMMA:
2936                 return produces_mode_b(expression->binary.right);
2937
2938         default:
2939                 return false;
2940         }
2941 }
2942
2943 static ir_node *expression_to_firm(const expression_t *expression)
2944 {
2945         if (!produces_mode_b(expression)) {
2946                 ir_node *res = _expression_to_firm(expression);
2947                 assert(res == NULL || get_irn_mode(res) != mode_b);
2948                 return res;
2949         }
2950
2951         if (is_constant_expression(expression)) {
2952                 ir_node *res  = _expression_to_firm(expression);
2953                 ir_mode *mode = get_ir_mode(expression->base.type);
2954                 assert(is_Const(res));
2955                 if (is_Const_null(res)) {
2956                         return new_Const_long(mode, 0);
2957                 } else {
2958                         return new_Const_long(mode, 1);
2959                 }
2960         }
2961
2962         /* we have to produce a 0/1 from the mode_b expression */
2963         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
2964         return produce_condition_result(expression, dbgi);
2965 }
2966
2967 static ir_node *expression_to_modeb(const expression_t *expression)
2968 {
2969         ir_node *res = _expression_to_firm(expression);
2970         res          = create_conv(NULL, res, mode_b);
2971
2972         return res;
2973 }
2974
2975 /**
2976  * create a short-circuit expression evaluation that tries to construct
2977  * efficient control flow structures for &&, || and ! expressions
2978  */
2979 static void create_condition_evaluation(const expression_t *expression,
2980                                         ir_node *true_block,
2981                                         ir_node *false_block)
2982 {
2983         switch(expression->kind) {
2984         case EXPR_UNARY_NOT: {
2985                 const unary_expression_t *unary_expression = &expression->unary;
2986                 create_condition_evaluation(unary_expression->value, false_block,
2987                                             true_block);
2988                 return;
2989         }
2990         case EXPR_BINARY_LOGICAL_AND: {
2991                 const binary_expression_t *binary_expression = &expression->binary;
2992
2993                 ir_node *cur_block   = get_cur_block();
2994                 ir_node *extra_block = new_immBlock();
2995                 set_cur_block(cur_block);
2996                 create_condition_evaluation(binary_expression->left, extra_block,
2997                                             false_block);
2998                 mature_immBlock(extra_block);
2999                 set_cur_block(extra_block);
3000                 create_condition_evaluation(binary_expression->right, true_block,
3001                                             false_block);
3002                 return;
3003         }
3004         case EXPR_BINARY_LOGICAL_OR: {
3005                 const binary_expression_t *binary_expression = &expression->binary;
3006
3007                 ir_node *cur_block   = get_cur_block();
3008                 ir_node *extra_block = new_immBlock();
3009                 set_cur_block(cur_block);
3010                 create_condition_evaluation(binary_expression->left, true_block,
3011                                             extra_block);
3012                 mature_immBlock(extra_block);
3013                 set_cur_block(extra_block);
3014                 create_condition_evaluation(binary_expression->right, true_block,
3015                                             false_block);
3016                 return;
3017         }
3018         default:
3019                 break;
3020         }
3021
3022         dbg_info *dbgi       = get_dbg_info(&expression->base.source_position);
3023         ir_node  *condition  = expression_to_modeb(expression);
3024         ir_node  *cond       = new_d_Cond(dbgi, condition);
3025         ir_node  *true_proj  = new_d_Proj(dbgi, cond, mode_X, pn_Cond_true);
3026         ir_node  *false_proj = new_d_Proj(dbgi, cond, mode_X, pn_Cond_false);
3027
3028         /* set branch prediction info based on __builtin_expect */
3029         if(expression->kind == EXPR_BINARY_BUILTIN_EXPECT) {
3030                 long               cnst = fold_constant(expression->binary.right);
3031                 cond_jmp_predicate pred;
3032
3033                 if(cnst == 0) {
3034                         pred = COND_JMP_PRED_FALSE;
3035                 } else {
3036                         pred = COND_JMP_PRED_TRUE;
3037                 }
3038                 set_Cond_jmp_pred(cond, pred);
3039         }
3040
3041         add_immBlock_pred(true_block, true_proj);
3042         add_immBlock_pred(false_block, false_proj);
3043
3044         set_cur_block(NULL);
3045 }
3046
3047
3048
3049 static void create_declaration_entity(declaration_t *declaration,
3050                                       declaration_kind_t declaration_kind,
3051                                       ir_type *parent_type)
3052 {
3053         type_t    *const type   = skip_typeref(declaration->type);
3054         if (is_type_function(type)) {
3055                 (void) get_function_entity(declaration);
3056                 return;
3057         }
3058
3059         ident     *const id     = new_id_from_str(declaration->symbol->string);
3060         ir_type   *const irtype = get_ir_type(type);
3061         dbg_info  *const dbgi   = get_dbg_info(&declaration->source_position);
3062         ir_entity *const entity = new_d_entity(parent_type, id, irtype, dbgi);
3063
3064         declaration->declaration_kind = (unsigned char) declaration_kind;
3065         declaration->v.entity         = entity;
3066         set_entity_variability(entity, variability_uninitialized);
3067         set_entity_ld_ident(entity, create_ld_ident(entity, declaration));
3068         if(parent_type == get_tls_type())
3069                 set_entity_allocation(entity, allocation_automatic);
3070         else if(declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE)
3071                 set_entity_allocation(entity, allocation_static);
3072
3073         if(type->base.qualifiers & TYPE_QUALIFIER_VOLATILE) {
3074                 set_entity_volatility(entity, volatility_is_volatile);
3075         }
3076 }
3077
3078
3079 typedef struct type_path_entry_t type_path_entry_t;
3080 struct type_path_entry_t {
3081         type_t           *type;
3082         ir_initializer_t *initializer;
3083         size_t            index;
3084         declaration_t    *compound_entry;
3085 };
3086
3087 typedef struct type_path_t type_path_t;
3088 struct type_path_t {
3089         type_path_entry_t *path;
3090         type_t            *top_type;
3091         bool               invalid;
3092 };
3093
3094 static __attribute__((unused)) void debug_print_type_path(const type_path_t *path)
3095 {
3096         size_t len = ARR_LEN(path->path);
3097
3098         for(size_t i = 0; i < len; ++i) {
3099                 const type_path_entry_t *entry = & path->path[i];
3100
3101                 type_t *type = skip_typeref(entry->type);
3102                 if(is_type_compound(type)) {
3103                         fprintf(stderr, ".%s", entry->compound_entry->symbol->string);
3104                 } else if(is_type_array(type)) {
3105                         fprintf(stderr, "[%zd]", entry->index);
3106                 } else {
3107                         fprintf(stderr, "-INVALID-");
3108                 }
3109         }
3110         fprintf(stderr, "  (");
3111         print_type(path->top_type);
3112         fprintf(stderr, ")");
3113 }
3114
3115 static type_path_entry_t *get_type_path_top(const type_path_t *path)
3116 {
3117         size_t len = ARR_LEN(path->path);
3118         assert(len > 0);
3119         return & path->path[len-1];
3120 }
3121
3122 static type_path_entry_t *append_to_type_path(type_path_t *path)
3123 {
3124         size_t len = ARR_LEN(path->path);
3125         ARR_RESIZE(type_path_entry_t, path->path, len+1);
3126
3127         type_path_entry_t *result = & path->path[len];
3128         memset(result, 0, sizeof(result[0]));
3129         return result;
3130 }
3131
3132 static size_t get_compound_size(const compound_type_t *type)
3133 {
3134         declaration_t *declaration = type->declaration;
3135         declaration_t *member      = declaration->scope.declarations;
3136         size_t         size        = 0;
3137         for( ; member != NULL; member = member->next) {
3138                 ++size;
3139         }
3140         /* TODO: cache results? */
3141
3142         return size;
3143 }
3144
3145 static ir_initializer_t *get_initializer_entry(type_path_t *path)
3146 {
3147         type_t *orig_top_type = path->top_type;
3148         type_t *top_type      = skip_typeref(orig_top_type);
3149
3150         assert(is_type_compound(top_type) || is_type_array(top_type));
3151
3152         if(ARR_LEN(path->path) == 0) {
3153                 return NULL;
3154         } else {
3155                 type_path_entry_t *top         = get_type_path_top(path);
3156                 ir_initializer_t  *initializer = top->initializer;
3157                 return get_initializer_compound_value(initializer, top->index);
3158         }
3159 }
3160
3161 static void descend_into_subtype(type_path_t *path)
3162 {
3163         type_t *orig_top_type = path->top_type;
3164         type_t *top_type      = skip_typeref(orig_top_type);
3165
3166         assert(is_type_compound(top_type) || is_type_array(top_type));
3167
3168         ir_initializer_t *initializer = get_initializer_entry(path);
3169
3170         type_path_entry_t *top = append_to_type_path(path);
3171         top->type              = top_type;
3172
3173         size_t len;
3174
3175         if(is_type_compound(top_type)) {
3176                 declaration_t *declaration = top_type->compound.declaration;
3177                 declaration_t *entry       = declaration->scope.declarations;
3178
3179                 top->compound_entry = entry;
3180                 top->index          = 0;
3181                 len                 = get_compound_size(&top_type->compound);
3182                 if(entry != NULL)
3183                         path->top_type = entry->type;
3184         } else {
3185                 assert(is_type_array(top_type));
3186                 assert(top_type->array.size > 0);
3187
3188                 top->index     = 0;
3189                 path->top_type = top_type->array.element_type;
3190                 len            = top_type->array.size;
3191         }
3192         if(initializer == NULL
3193                         || get_initializer_kind(initializer) == IR_INITIALIZER_NULL) {
3194                 initializer = create_initializer_compound(len);
3195                 /* we have to set the entry at the 2nd latest path entry... */
3196                 size_t path_len = ARR_LEN(path->path);
3197                 assert(path_len >= 1);
3198                 if(path_len > 1) {
3199                         type_path_entry_t *entry        = & path->path[path_len-2];
3200                         ir_initializer_t  *tinitializer = entry->initializer;
3201                         set_initializer_compound_value(tinitializer, entry->index,
3202                                                        initializer);
3203                 }
3204         }
3205         top->initializer = initializer;
3206 }
3207
3208 static void ascend_from_subtype(type_path_t *path)
3209 {
3210         type_path_entry_t *top = get_type_path_top(path);
3211
3212         path->top_type = top->type;
3213
3214         size_t len = ARR_LEN(path->path);
3215         ARR_RESIZE(type_path_entry_t, path->path, len-1);
3216 }
3217
3218 static void walk_designator(type_path_t *path, const designator_t *designator)
3219 {
3220         /* designators start at current object type */
3221         ARR_RESIZE(type_path_entry_t, path->path, 1);
3222
3223         for( ; designator != NULL; designator = designator->next) {
3224                 type_path_entry_t *top         = get_type_path_top(path);
3225                 type_t            *orig_type   = top->type;
3226                 type_t            *type        = skip_typeref(orig_type);
3227
3228                 if(designator->symbol != NULL) {
3229                         assert(is_type_compound(type));
3230                         size_t    index  = 0;
3231                         symbol_t *symbol = designator->symbol;
3232
3233                         declaration_t *declaration = type->compound.declaration;
3234                         declaration_t *iter        = declaration->scope.declarations;
3235                         for( ; iter != NULL; iter = iter->next, ++index) {
3236                                 if(iter->symbol == symbol) {
3237                                         break;
3238                                 }
3239                         }
3240                         assert(iter != NULL);
3241
3242                         top->type           = orig_type;
3243                         top->compound_entry = iter;
3244                         top->index          = index;
3245                         orig_type           = iter->type;
3246                 } else {
3247                         expression_t *array_index = designator->array_index;
3248                         assert(designator->array_index != NULL);
3249                         assert(is_type_array(type));
3250                         assert(is_type_valid(array_index->base.type));
3251
3252                         long index = fold_constant(array_index);
3253                         assert(index >= 0);
3254 #ifndef NDEBUG
3255                         if(type->array.size_constant == 1) {
3256                                 long array_size = type->array.size;
3257                                 assert(index < array_size);
3258                         }
3259 #endif
3260
3261                         top->type  = orig_type;
3262                         top->index = (size_t) index;
3263                         orig_type  = type->array.element_type;
3264                 }
3265                 path->top_type = orig_type;
3266
3267                 if(designator->next != NULL) {
3268                         descend_into_subtype(path);
3269                 }
3270         }
3271
3272         path->invalid  = false;
3273 }
3274
3275 static void advance_current_object(type_path_t *path)
3276 {
3277         if(path->invalid) {
3278                 /* TODO: handle this... */
3279                 panic("invalid initializer in ast2firm (excessive elements)");
3280                 return;
3281         }
3282
3283         type_path_entry_t *top = get_type_path_top(path);
3284
3285         type_t *type = skip_typeref(top->type);
3286         if(is_type_union(type)) {
3287                 top->compound_entry = NULL;
3288         } else if(is_type_struct(type)) {
3289                 declaration_t *entry = top->compound_entry;
3290
3291                 top->index++;
3292                 entry               = entry->next;
3293                 top->compound_entry = entry;
3294                 if(entry != NULL) {
3295                         path->top_type = entry->type;
3296                         return;
3297                 }
3298         } else {
3299                 assert(is_type_array(type));
3300
3301                 top->index++;
3302                 if(!type->array.size_constant || top->index < type->array.size) {
3303                         return;
3304                 }
3305         }
3306
3307         /* we're past the last member of the current sub-aggregate, try if we
3308          * can ascend in the type hierarchy and continue with another subobject */
3309         size_t len = ARR_LEN(path->path);
3310
3311         if(len > 1) {
3312                 ascend_from_subtype(path);
3313                 advance_current_object(path);
3314         } else {
3315                 path->invalid = true;
3316         }
3317 }
3318
3319
3320 static ir_initializer_t *create_ir_initializer(
3321                 const initializer_t *initializer, type_t *type);
3322
3323 static ir_initializer_t *create_ir_initializer_value(
3324                 const initializer_value_t *initializer)
3325 {
3326         if (is_type_compound(initializer->value->base.type)) {
3327                 panic("initializer creation for compounds not implemented yet");
3328         }
3329         ir_node *value = expression_to_firm(initializer->value);
3330         return create_initializer_const(value);
3331 }
3332
3333 static ir_initializer_t *create_ir_initializer_list(
3334                 const initializer_list_t *initializer, type_t *type)
3335 {
3336         type_path_t path;
3337         memset(&path, 0, sizeof(path));
3338         path.top_type = type;
3339         path.path     = NEW_ARR_F(type_path_entry_t, 0);
3340
3341         descend_into_subtype(&path);
3342
3343         for(size_t i = 0; i < initializer->len; ++i) {
3344                 const initializer_t *sub_initializer = initializer->initializers[i];
3345
3346                 if(sub_initializer->kind == INITIALIZER_DESIGNATOR) {
3347                         walk_designator(&path, sub_initializer->designator.designator);
3348                         continue;
3349                 }
3350
3351                 if(sub_initializer->kind == INITIALIZER_VALUE) {
3352                         /* we might have to descend into types until we're at a scalar
3353                          * type */
3354                         while(true) {
3355                                 type_t *orig_top_type = path.top_type;
3356                                 type_t *top_type      = skip_typeref(orig_top_type);
3357
3358                                 if(is_type_scalar(top_type))
3359                                         break;
3360                                 descend_into_subtype(&path);
3361                         }
3362                 }
3363
3364                 ir_initializer_t *sub_irinitializer
3365                         = create_ir_initializer(sub_initializer, path.top_type);
3366
3367                 size_t path_len = ARR_LEN(path.path);
3368                 assert(path_len >= 1);
3369                 type_path_entry_t *entry        = & path.path[path_len-1];
3370                 ir_initializer_t  *tinitializer = entry->initializer;
3371                 set_initializer_compound_value(tinitializer, entry->index,
3372                                                sub_irinitializer);
3373
3374                 advance_current_object(&path);
3375         }
3376
3377         assert(ARR_LEN(path.path) >= 1);
3378         ir_initializer_t *result = path.path[0].initializer;
3379         DEL_ARR_F(path.path);
3380
3381         return result;
3382 }
3383
3384 static ir_initializer_t *create_ir_initializer_string(
3385                 const initializer_string_t *initializer, type_t *type)
3386 {
3387         type = skip_typeref(type);
3388
3389         size_t            string_len    = initializer->string.size;
3390         assert(type->kind == TYPE_ARRAY && type->array.size_constant);
3391         size_t            len           = type->array.size;
3392         ir_initializer_t *irinitializer = create_initializer_compound(len);
3393
3394         const char *string = initializer->string.begin;
3395         ir_mode    *mode   = get_type_mode(ir_type_const_char);
3396
3397         for(size_t i = 0; i < len; ++i) {
3398                 char c = 0;
3399                 if(i < string_len)
3400                         c = string[i];
3401
3402                 tarval           *tv = new_tarval_from_long(c, mode);
3403                 ir_initializer_t *char_initializer = create_initializer_tarval(tv);
3404
3405                 set_initializer_compound_value(irinitializer, i, char_initializer);
3406         }
3407
3408         return irinitializer;
3409 }
3410
3411 static ir_initializer_t *create_ir_initializer_wide_string(
3412                 const initializer_wide_string_t *initializer, type_t *type)
3413 {
3414         size_t            string_len    = initializer->string.size;
3415         assert(type->kind == TYPE_ARRAY && type->array.size_constant);
3416         size_t            len           = type->array.size;
3417         ir_initializer_t *irinitializer = create_initializer_compound(len);
3418
3419         const wchar_rep_t *string = initializer->string.begin;
3420         ir_mode           *mode   = get_type_mode(ir_type_wchar_t);
3421
3422         for(size_t i = 0; i < len; ++i) {
3423                 wchar_rep_t c = 0;
3424                 if(i < string_len) {
3425                         c = string[i];
3426                 }
3427                 tarval *tv = new_tarval_from_long(c, mode);
3428                 ir_initializer_t *char_initializer = create_initializer_tarval(tv);
3429
3430                 set_initializer_compound_value(irinitializer, i, char_initializer);
3431         }
3432
3433         return irinitializer;
3434 }
3435
3436 static ir_initializer_t *create_ir_initializer(
3437                 const initializer_t *initializer, type_t *type)
3438 {
3439         switch(initializer->kind) {
3440                 case INITIALIZER_STRING:
3441                         return create_ir_initializer_string(&initializer->string, type);
3442
3443                 case INITIALIZER_WIDE_STRING:
3444                         return create_ir_initializer_wide_string(&initializer->wide_string,
3445                                                                  type);
3446
3447                 case INITIALIZER_LIST:
3448                         return create_ir_initializer_list(&initializer->list, type);
3449
3450                 case INITIALIZER_VALUE:
3451                         return create_ir_initializer_value(&initializer->value);
3452
3453                 case INITIALIZER_DESIGNATOR:
3454                         panic("unexpected designator initializer found");
3455         }
3456         panic("unknown initializer");
3457 }
3458
3459 static void create_dynamic_null_initializer(ir_type *type, dbg_info *dbgi,
3460                 ir_node *base_addr)
3461 {
3462         if (is_atomic_type(type)) {
3463                 ir_mode *mode = get_type_mode(type);
3464                 tarval  *zero = get_mode_null(mode);
3465                 ir_node *cnst = new_d_Const(dbgi, mode, zero);
3466
3467                 /* TODO: bitfields */
3468                 ir_node *mem    = get_store();
3469                 ir_node *store  = new_d_Store(dbgi, mem, base_addr, cnst);
3470                 ir_node *proj_m = new_Proj(store, mode_M, pn_Store_M);
3471                 set_store(proj_m);
3472         } else {
3473                 assert(is_compound_type(type));
3474
3475                 int n_members;
3476                 if(is_Array_type(type)) {
3477                         assert(has_array_upper_bound(type, 0));
3478                         n_members = get_array_upper_bound_int(type, 0);
3479                 } else {
3480                         n_members = get_compound_n_members(type);
3481                 }
3482
3483                 for(int i = 0; i < n_members; ++i) {
3484                         ir_node *addr;
3485                         ir_type *irtype;
3486                         if(is_Array_type(type)) {
3487                                 ir_entity *entity   = get_array_element_entity(type);
3488                                 tarval    *index_tv = new_tarval_from_long(i, mode_uint);
3489                                 ir_node   *cnst     = new_d_Const(dbgi, mode_uint, index_tv);
3490                                 ir_node   *in[1]    = { cnst };
3491                                 irtype = get_array_element_type(type);
3492                                 addr   = new_d_Sel(dbgi, new_NoMem(), base_addr, 1, in, entity);
3493                         } else {
3494                                 ir_entity *member = get_compound_member(type, i);
3495
3496                                 irtype = get_entity_type(member);
3497                                 addr   = new_d_simpleSel(dbgi, new_NoMem(), base_addr, member);
3498                         }
3499
3500                         create_dynamic_null_initializer(irtype, dbgi, addr);
3501                 }
3502         }
3503 }
3504
3505 static void create_dynamic_initializer_sub(ir_initializer_t *initializer,
3506                 ir_type *type, dbg_info *dbgi, ir_node *base_addr)
3507 {
3508         switch(get_initializer_kind(initializer)) {
3509         case IR_INITIALIZER_NULL: {
3510                 create_dynamic_null_initializer(type, dbgi, base_addr);
3511                 return;
3512         }
3513         case IR_INITIALIZER_CONST: {
3514                 ir_node *node = get_initializer_const_value(initializer);
3515                 ir_mode *mode = get_irn_mode(node);
3516                 assert(get_type_mode(type) == mode);
3517
3518                 /* TODO: bitfields... */
3519                 ir_node *mem    = get_store();
3520                 ir_node *store  = new_d_Store(dbgi, mem, base_addr, node);
3521                 ir_node *proj_m = new_Proj(store, mode_M, pn_Store_M);
3522                 set_store(proj_m);
3523                 return;
3524         }
3525         case IR_INITIALIZER_TARVAL: {
3526                 tarval  *tv   = get_initializer_tarval_value(initializer);
3527                 ir_mode *mode = get_tarval_mode(tv);
3528                 ir_node *cnst = new_d_Const(dbgi, mode, tv);
3529                 assert(get_type_mode(type) == mode);
3530
3531                 /* TODO: bitfields... */
3532                 ir_node *mem    = get_store();
3533                 ir_node *store  = new_d_Store(dbgi, mem, base_addr, cnst);
3534                 ir_node *proj_m = new_Proj(store, mode_M, pn_Store_M);
3535                 set_store(proj_m);
3536                 return;
3537         }
3538         case IR_INITIALIZER_COMPOUND: {
3539                 assert(is_compound_type(type));
3540                 int n_members;
3541                 if(is_Array_type(type)) {
3542                         assert(has_array_upper_bound(type, 0));
3543                         n_members = get_array_upper_bound_int(type, 0);
3544                 } else {
3545                         n_members = get_compound_n_members(type);
3546                 }
3547
3548                 if(get_initializer_compound_n_entries(initializer)
3549                                 != (unsigned) n_members)
3550                         panic("initializer doesn't match compound type");
3551
3552                 for(int i = 0; i < n_members; ++i) {
3553                         ir_node *addr;
3554                         ir_type *irtype;
3555                         if(is_Array_type(type)) {
3556                                 ir_entity *entity   = get_array_element_entity(type);
3557                                 tarval    *index_tv = new_tarval_from_long(i, mode_uint);
3558                                 ir_node   *cnst     = new_d_Const(dbgi, mode_uint, index_tv);
3559                                 ir_node   *in[1]    = { cnst };
3560                                 irtype = get_array_element_type(type);
3561                                 addr   = new_d_Sel(dbgi, new_NoMem(), base_addr, 1, in, entity);
3562                         } else {
3563                                 ir_entity *member = get_compound_member(type, i);
3564
3565                                 irtype = get_entity_type(member);
3566                                 addr   = new_d_simpleSel(dbgi, new_NoMem(), base_addr, member);
3567                         }
3568
3569                         ir_initializer_t *sub_init
3570                                 = get_initializer_compound_value(initializer, i);
3571
3572                         create_dynamic_initializer_sub(sub_init, irtype, dbgi, addr);
3573                 }
3574                 return;
3575         }
3576         }
3577
3578         panic("invalid IR_INITIALIZER found");
3579 }
3580
3581 static void create_dynamic_initializer(ir_initializer_t *initializer,
3582                 dbg_info *dbgi, ir_entity *entity)
3583 {
3584         ir_node *frame     = get_local_frame(entity);
3585         ir_node *base_addr = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
3586         ir_type *type      = get_entity_type(entity);
3587
3588         create_dynamic_initializer_sub(initializer, type, dbgi, base_addr);
3589 }
3590
3591 static void create_local_initializer(initializer_t *initializer, dbg_info *dbgi,
3592                                      ir_entity *entity, type_t *type)
3593 {
3594         ir_node *memory = get_store();
3595         ir_node *nomem  = new_NoMem();
3596         ir_node *frame  = get_irg_frame(current_ir_graph);
3597         ir_node *addr   = new_d_simpleSel(dbgi, nomem, frame, entity);
3598
3599         if(initializer->kind == INITIALIZER_VALUE) {
3600                 initializer_value_t *initializer_value = &initializer->value;
3601
3602                 ir_node *value = expression_to_firm(initializer_value->value);
3603                 type = skip_typeref(type);
3604                 assign_value(dbgi, addr, type, value);
3605                 return;
3606         }
3607
3608         if(!is_constant_initializer(initializer)) {
3609                 ir_initializer_t *irinitializer
3610                         = create_ir_initializer(initializer, type);
3611
3612                 create_dynamic_initializer(irinitializer, dbgi, entity);
3613                 return;
3614         }
3615
3616         /* create the ir_initializer */
3617         ir_graph *const old_current_ir_graph = current_ir_graph;
3618         current_ir_graph = get_const_code_irg();
3619
3620         ir_initializer_t *irinitializer = create_ir_initializer(initializer, type);
3621
3622         assert(current_ir_graph == get_const_code_irg());
3623         current_ir_graph = old_current_ir_graph;
3624
3625         /* create a "template" entity which is copied to the entity on the stack */
3626         ident     *const id          = id_unique("initializer.%u");
3627         ir_type   *const irtype      = get_ir_type(type);
3628         ir_type   *const global_type = get_glob_type();
3629         ir_entity *const init_entity = new_d_entity(global_type, id, irtype, dbgi);
3630         set_entity_ld_ident(init_entity, id);
3631
3632         set_entity_variability(init_entity, variability_initialized);
3633         set_entity_visibility(init_entity, visibility_local);
3634         set_entity_allocation(init_entity, allocation_static);
3635
3636         set_entity_initializer(init_entity, irinitializer);
3637
3638         ir_node *const src_addr = create_symconst(dbgi, mode_P_data, init_entity);
3639         ir_node *const copyb    = new_d_CopyB(dbgi, memory, addr, src_addr, irtype);
3640
3641         ir_node *const copyb_mem = new_Proj(copyb, mode_M, pn_CopyB_M_regular);
3642         set_store(copyb_mem);
3643 }
3644
3645 static void create_initializer_local_variable_entity(declaration_t *declaration)
3646 {
3647         initializer_t *initializer = declaration->init.initializer;
3648         dbg_info      *dbgi        = get_dbg_info(&declaration->source_position);
3649         ir_entity     *entity      = declaration->v.entity;
3650         type_t        *type        = declaration->type;
3651         create_local_initializer(initializer, dbgi, entity, type);
3652 }
3653
3654 static void create_declaration_initializer(declaration_t *declaration)
3655 {
3656         initializer_t *initializer = declaration->init.initializer;
3657         if(initializer == NULL)
3658                 return;
3659
3660         declaration_kind_t declaration_kind
3661                 = (declaration_kind_t) declaration->declaration_kind;
3662         if(declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE_ENTITY) {
3663                 create_initializer_local_variable_entity(declaration);
3664                 return;
3665         }
3666
3667         if(initializer->kind == INITIALIZER_VALUE) {
3668                 initializer_value_t *initializer_value = &initializer->value;
3669                 dbg_info            *dbgi
3670                         = get_dbg_info(&declaration->source_position);
3671
3672                 ir_node *value = expression_to_firm(initializer_value->value);
3673                 value = do_strict_conv(dbgi, value);
3674
3675                 if(declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE) {
3676                         set_value(declaration->v.value_number, value);
3677                 } else {
3678                         assert(declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
3679
3680                         ir_entity *entity = declaration->v.entity;
3681
3682                         set_entity_variability(entity, variability_initialized);
3683                         set_atomic_ent_value(entity, value);
3684                 }
3685         } else {
3686                 assert(declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE_ENTITY
3687                                 || declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
3688
3689                 ir_entity        *entity        = declaration->v.entity;
3690                 ir_initializer_t *irinitializer
3691                         = create_ir_initializer(initializer, declaration->type);
3692
3693                 set_entity_variability(entity, variability_initialized);
3694                 set_entity_initializer(entity, irinitializer);
3695         }
3696 }
3697
3698 static void create_variable_length_array(declaration_t *declaration)
3699 {
3700         dbg_info *dbgi      = get_dbg_info(&declaration->source_position);
3701         type_t   *type      = declaration->type;
3702         ir_node  *mem       = get_store();
3703         ir_type  *el_type   = get_ir_type(type->array.element_type);
3704
3705         /* make sure size_node is calculated */
3706         get_type_size(type);
3707         ir_node  *elems = type->array.size_node;
3708         ir_node  *alloc = new_d_Alloc(dbgi, mem, elems, el_type, stack_alloc);
3709
3710         ir_node  *proj_m = new_d_Proj(dbgi, alloc, mode_M, pn_Alloc_M);
3711         ir_node  *addr   = new_d_Proj(dbgi, alloc, mode_P_data, pn_Alloc_res);
3712         set_store(proj_m);
3713
3714         /* initializers are not allowed for VLAs */
3715         assert(declaration->init.initializer == NULL);
3716
3717         declaration->declaration_kind = DECLARATION_KIND_VARIABLE_LENGTH_ARRAY;
3718         declaration->v.vla_base       = addr;
3719
3720         /* TODO: record VLA somewhere so we create the free node when we leave
3721          * it's scope */
3722 }
3723
3724 /**
3725  * Creates a Firm local variable from a declaration.
3726  */
3727 static void create_local_variable(declaration_t *declaration)
3728 {
3729         assert(declaration->declaration_kind == DECLARATION_KIND_UNKNOWN);
3730
3731         bool needs_entity = declaration->address_taken;
3732         type_t *type = skip_typeref(declaration->type);
3733
3734         /* is it a variable length array? */
3735         if(is_type_array(type) && !type->array.size_constant) {
3736                 create_variable_length_array(declaration);
3737                 return;
3738         } else if(is_type_array(type) || is_type_compound(type)) {
3739                 needs_entity = true;
3740         } else if(type->base.qualifiers & TYPE_QUALIFIER_VOLATILE) {
3741                 needs_entity = true;
3742         }
3743
3744         if(needs_entity) {
3745                 ir_type *frame_type = get_irg_frame_type(current_ir_graph);
3746                 create_declaration_entity(declaration,
3747                                           DECLARATION_KIND_LOCAL_VARIABLE_ENTITY,
3748                                           frame_type);
3749         } else {
3750                 declaration->declaration_kind = DECLARATION_KIND_LOCAL_VARIABLE;
3751                 declaration->v.value_number   = next_value_number_function;
3752                 set_irg_loc_description(current_ir_graph, next_value_number_function, declaration);
3753                 ++next_value_number_function;
3754         }
3755 }
3756
3757 static void create_local_static_variable(declaration_t *declaration)
3758 {
3759         assert(declaration->declaration_kind == DECLARATION_KIND_UNKNOWN);
3760
3761         type_t    *const type        = skip_typeref(declaration->type);
3762         ir_type   *const global_type = get_glob_type();
3763         ir_type   *const irtype      = get_ir_type(type);
3764         dbg_info  *const dbgi        = get_dbg_info(&declaration->source_position);
3765
3766         size_t l = strlen(declaration->symbol->string);
3767         char   buf[l + sizeof(".%u")];
3768         snprintf(buf, sizeof(buf), "%s.%%u", declaration->symbol->string);
3769         ident     *const id = id_unique(buf);
3770
3771         ir_entity *const entity      = new_d_entity(global_type, id, irtype, dbgi);
3772
3773         if(type->base.qualifiers & TYPE_QUALIFIER_VOLATILE) {
3774                 set_entity_volatility(entity, volatility_is_volatile);
3775         }
3776
3777         declaration->declaration_kind = DECLARATION_KIND_GLOBAL_VARIABLE;
3778         declaration->v.entity         = entity;
3779         set_entity_ld_ident(entity, create_ld_ident(entity, declaration));
3780         set_entity_variability(entity, variability_uninitialized);
3781         set_entity_visibility(entity, visibility_local);
3782         set_entity_allocation(entity, allocation_static);
3783
3784         ir_graph *const old_current_ir_graph = current_ir_graph;
3785         current_ir_graph = get_const_code_irg();
3786
3787         create_declaration_initializer(declaration);
3788
3789         assert(current_ir_graph == get_const_code_irg());
3790         current_ir_graph = old_current_ir_graph;
3791 }
3792
3793
3794
3795 static void return_statement_to_firm(return_statement_t *statement)
3796 {
3797         if(get_cur_block() == NULL)
3798                 return;
3799
3800         dbg_info *dbgi        = get_dbg_info(&statement->base.source_position);
3801         ir_type  *func_irtype = get_ir_type(current_function_decl->type);
3802
3803
3804         ir_node *in[1];
3805         int      in_len;
3806         if(get_method_n_ress(func_irtype) > 0) {
3807                 ir_type *res_type = get_method_res_type(func_irtype, 0);
3808
3809                 if(statement->value != NULL) {
3810                         ir_node *node = expression_to_firm(statement->value);
3811                         node  = do_strict_conv(dbgi, node);
3812                         in[0] = node;
3813                 } else {
3814                         ir_mode *mode;
3815                         if(is_compound_type(res_type)) {
3816                                 mode = mode_P_data;
3817                         } else {
3818                                 mode = get_type_mode(res_type);
3819                         }
3820                         in[0] = new_Unknown(mode);
3821                 }
3822                 in_len = 1;
3823         } else {
3824                 /* build return_value for its side effects */
3825                 if(statement->value != NULL) {
3826                         expression_to_firm(statement->value);
3827                 }
3828                 in_len = 0;
3829         }
3830
3831         ir_node  *store = get_store();
3832         ir_node  *ret   = new_d_Return(dbgi, store, in_len, in);
3833
3834         ir_node *end_block = get_irg_end_block(current_ir_graph);
3835         add_immBlock_pred(end_block, ret);
3836
3837         set_cur_block(NULL);
3838 }
3839
3840 static ir_node *expression_statement_to_firm(expression_statement_t *statement)
3841 {
3842         if(get_cur_block() == NULL)
3843                 return NULL;
3844
3845         return expression_to_firm(statement->expression);
3846 }
3847
3848 static ir_node *compound_statement_to_firm(compound_statement_t *compound)
3849 {
3850         declaration_t *declaration = compound->scope.declarations;
3851         for( ; declaration != NULL; declaration = declaration->next) {
3852                 create_local_declaration(declaration);
3853         }
3854
3855         ir_node     *result    = NULL;
3856         statement_t *statement = compound->statements;
3857         for( ; statement != NULL; statement = statement->base.next) {
3858                 if(statement->base.next == NULL
3859                                 && statement->kind == STATEMENT_EXPRESSION) {
3860                         result = expression_statement_to_firm(
3861                                         &statement->expression);
3862                         break;
3863                 }
3864                 statement_to_firm(statement);
3865         }
3866
3867         return result;
3868 }
3869
3870 static void create_global_variable(declaration_t *declaration)
3871 {
3872         ir_visibility  vis;
3873         ir_type       *var_type;
3874         switch ((storage_class_tag_t)declaration->storage_class) {
3875                 case STORAGE_CLASS_STATIC:
3876                         vis = visibility_local;
3877                         goto global_var;
3878
3879                 case STORAGE_CLASS_EXTERN:
3880                         vis = visibility_external_allocated;
3881                         goto global_var;
3882
3883                 case STORAGE_CLASS_NONE:
3884                         vis = visibility_external_visible;
3885                         goto global_var;
3886
3887                 case STORAGE_CLASS_THREAD:
3888                         vis = visibility_external_visible;
3889                         goto tls_var;
3890
3891                 case STORAGE_CLASS_THREAD_EXTERN:
3892                         vis = visibility_external_allocated;
3893                         goto tls_var;
3894
3895                 case STORAGE_CLASS_THREAD_STATIC:
3896                         vis = visibility_local;
3897                         goto tls_var;
3898
3899 tls_var:
3900                         var_type = get_tls_type();
3901                         goto create_var;
3902
3903 global_var:
3904                         var_type = get_glob_type();
3905                         goto create_var;
3906
3907 create_var:
3908                         create_declaration_entity(declaration,
3909                                                   DECLARATION_KIND_GLOBAL_VARIABLE,
3910                                                   var_type);
3911                         if (!is_type_function(skip_typeref(declaration->type))) {
3912                                 set_entity_visibility(declaration->v.entity, vis);
3913                         }
3914
3915                         return;
3916
3917                 case STORAGE_CLASS_TYPEDEF:
3918                 case STORAGE_CLASS_AUTO:
3919                 case STORAGE_CLASS_REGISTER:
3920                 case STORAGE_CLASS_ENUM_ENTRY:
3921                         break;
3922         }
3923         panic("Invalid storage class for global variable");
3924 }
3925
3926 static void create_local_declaration(declaration_t *declaration)
3927 {
3928         if (declaration->namespc != NAMESPACE_NORMAL)
3929                 return;
3930         /* construct type */
3931         (void) get_ir_type(declaration->type);
3932         if (declaration->symbol == NULL) {
3933                 return;
3934         }
3935
3936         type_t *type = skip_typeref(declaration->type);
3937
3938         switch ((storage_class_tag_t) declaration->storage_class) {
3939         case STORAGE_CLASS_STATIC:
3940                 create_local_static_variable(declaration);
3941                 return;
3942         case STORAGE_CLASS_EXTERN:
3943                 create_global_variable(declaration);
3944                 create_declaration_initializer(declaration);
3945                 return;
3946         case STORAGE_CLASS_NONE:
3947         case STORAGE_CLASS_AUTO:
3948         case STORAGE_CLASS_REGISTER:
3949                 if(is_type_function(type)) {
3950                         if(declaration->init.statement != NULL) {
3951                                 panic("nested functions not supported yet");
3952                         } else {
3953                                 get_function_entity(declaration);
3954                         }
3955                 } else {
3956                         create_local_variable(declaration);
3957                 }
3958                 return;
3959         case STORAGE_CLASS_ENUM_ENTRY:
3960                 /* should already be handled */
3961                 assert(declaration->declaration_kind == DECLARATION_KIND_ENUM_ENTRY);
3962                 return;
3963         case STORAGE_CLASS_TYPEDEF:
3964                 declaration->declaration_kind = DECLARATION_KIND_TYPE;
3965                 return;
3966         case STORAGE_CLASS_THREAD:
3967         case STORAGE_CLASS_THREAD_EXTERN:
3968         case STORAGE_CLASS_THREAD_STATIC:
3969                 break;
3970         }
3971         panic("invalid storage class found");
3972 }
3973
3974 static void initialize_local_declaration(declaration_t *declaration)
3975 {
3976         if(declaration->symbol == NULL || declaration->namespc != NAMESPACE_NORMAL)
3977                 return;
3978
3979         switch ((declaration_kind_t) declaration->declaration_kind) {
3980         case DECLARATION_KIND_LOCAL_VARIABLE:
3981         case DECLARATION_KIND_LOCAL_VARIABLE_ENTITY:
3982                 create_declaration_initializer(declaration);
3983                 return;
3984
3985         case DECLARATION_KIND_LABEL_BLOCK:
3986         case DECLARATION_KIND_COMPOUND_MEMBER:
3987         case DECLARATION_KIND_GLOBAL_VARIABLE:
3988         case DECLARATION_KIND_VARIABLE_LENGTH_ARRAY:
3989         case DECLARATION_KIND_COMPOUND_TYPE_INCOMPLETE:
3990         case DECLARATION_KIND_COMPOUND_TYPE_COMPLETE:
3991         case DECLARATION_KIND_FUNCTION:
3992         case DECLARATION_KIND_TYPE:
3993         case DECLARATION_KIND_ENUM_ENTRY:
3994                 return;
3995
3996         case DECLARATION_KIND_UNKNOWN:
3997                 panic("can't initialize unknwon declaration");
3998         }
3999         panic("invalid declaration kind");
4000 }
4001
4002 static void declaration_statement_to_firm(declaration_statement_t *statement)
4003 {
4004         declaration_t *declaration = statement->declarations_begin;
4005         declaration_t *end         = statement->declarations_end->next;
4006         for( ; declaration != end; declaration = declaration->next) {
4007                 if(declaration->namespc != NAMESPACE_NORMAL)
4008                         continue;
4009                 initialize_local_declaration(declaration);
4010         }
4011 }
4012
4013 static void if_statement_to_firm(if_statement_t *statement)
4014 {
4015         ir_node *cur_block = get_cur_block();
4016
4017         ir_node *fallthrough_block = NULL;
4018
4019         /* the true (blocks) */
4020         ir_node *true_block = NULL;
4021         if (statement->true_statement != NULL) {
4022                 true_block = new_immBlock();
4023                 statement_to_firm(statement->true_statement);
4024                 if (get_cur_block() != NULL) {
4025                         ir_node *jmp = new_Jmp();
4026                         if (fallthrough_block == NULL)
4027                                 fallthrough_block = new_immBlock();
4028                         add_immBlock_pred(fallthrough_block, jmp);
4029                 }
4030         }
4031
4032         /* the false (blocks) */
4033         ir_node *false_block = NULL;
4034         if (statement->false_statement != NULL) {
4035                 false_block = new_immBlock();
4036
4037                 statement_to_firm(statement->false_statement);
4038                 if (get_cur_block() != NULL) {
4039                         ir_node *jmp = new_Jmp();
4040                         if (fallthrough_block == NULL)
4041                                 fallthrough_block = new_immBlock();
4042                         add_immBlock_pred(fallthrough_block, jmp);
4043                 }
4044         }
4045
4046         /* create the condition */
4047         if (cur_block != NULL) {
4048                 if (true_block == NULL || false_block == NULL) {
4049                         if (fallthrough_block == NULL)
4050                                 fallthrough_block = new_immBlock();
4051                         if (true_block == NULL)
4052                                 true_block = fallthrough_block;
4053                         if (false_block == NULL)
4054                                 false_block = fallthrough_block;
4055                 }
4056
4057                 set_cur_block(cur_block);
4058                 create_condition_evaluation(statement->condition, true_block,
4059                                             false_block);
4060         }
4061
4062         mature_immBlock(true_block);
4063         if (false_block != fallthrough_block) {
4064                 mature_immBlock(false_block);
4065         }
4066         if (fallthrough_block != NULL) {
4067                 mature_immBlock(fallthrough_block);
4068         }
4069
4070         set_cur_block(fallthrough_block);
4071 }
4072
4073 static void while_statement_to_firm(while_statement_t *statement)
4074 {
4075         ir_node *jmp = NULL;
4076         if(get_cur_block() != NULL) {
4077                 jmp = new_Jmp();
4078         }
4079
4080         /* create the header block */
4081         ir_node *header_block = new_immBlock();
4082         if(jmp != NULL) {
4083                 add_immBlock_pred(header_block, jmp);
4084         }
4085
4086         /* the false block */
4087         ir_node *false_block = new_immBlock();
4088
4089         /* the loop body */
4090         ir_node *body_block;
4091         if (statement->body != NULL) {
4092                 ir_node *old_continue_label = continue_label;
4093                 ir_node *old_break_label    = break_label;
4094                 continue_label              = header_block;
4095                 break_label                 = false_block;
4096
4097                 body_block = new_immBlock();
4098                 statement_to_firm(statement->body);
4099
4100                 assert(continue_label == header_block);
4101                 assert(break_label    == false_block);
4102                 continue_label = old_continue_label;
4103                 break_label    = old_break_label;
4104
4105                 if(get_cur_block() != NULL) {
4106                         jmp = new_Jmp();
4107                         add_immBlock_pred(header_block, jmp);
4108                 }
4109         } else {
4110                 body_block = header_block;
4111         }
4112
4113         /* create the condition */
4114         set_cur_block(header_block);
4115
4116         create_condition_evaluation(statement->condition, body_block, false_block);
4117         mature_immBlock(body_block);
4118         mature_immBlock(false_block);
4119         mature_immBlock(header_block);
4120
4121         set_cur_block(false_block);
4122 }
4123
4124 static void do_while_statement_to_firm(do_while_statement_t *statement)
4125 {
4126         ir_node *jmp = NULL;
4127         if(get_cur_block() != NULL) {
4128                 jmp = new_Jmp();
4129         }
4130
4131         /* create the header block */
4132         ir_node *header_block = new_immBlock();
4133
4134         /* the false block */
4135         ir_node *false_block = new_immBlock();
4136
4137         /* the loop body */
4138         ir_node *body_block = new_immBlock();
4139         if(jmp != NULL) {
4140                 add_immBlock_pred(body_block, jmp);
4141         }
4142
4143         if (statement->body != NULL) {
4144                 ir_node *old_continue_label = continue_label;
4145                 ir_node *old_break_label    = break_label;
4146                 continue_label              = header_block;
4147                 break_label                 = false_block;
4148
4149                 statement_to_firm(statement->body);
4150
4151                 assert(continue_label == header_block);
4152                 assert(break_label    == false_block);
4153                 continue_label = old_continue_label;
4154                 break_label    = old_break_label;
4155
4156                 if (get_cur_block() == NULL) {
4157                         mature_immBlock(header_block);
4158                         mature_immBlock(body_block);
4159                         mature_immBlock(false_block);
4160                         return;
4161                 }
4162         }
4163
4164         ir_node *body_jmp = new_Jmp();
4165         add_immBlock_pred(header_block, body_jmp);
4166         mature_immBlock(header_block);
4167
4168         /* create the condition */
4169         set_cur_block(header_block);
4170
4171         create_condition_evaluation(statement->condition, body_block, false_block);
4172         mature_immBlock(body_block);
4173         mature_immBlock(false_block);
4174         mature_immBlock(header_block);
4175
4176         set_cur_block(false_block);
4177 }
4178
4179 static void for_statement_to_firm(for_statement_t *statement)
4180 {
4181         ir_node *jmp = NULL;
4182
4183         /* create declarations */
4184         declaration_t *declaration = statement->scope.declarations;
4185         for( ; declaration != NULL; declaration = declaration->next) {
4186                 create_local_declaration(declaration);
4187         }
4188         declaration = statement->scope.declarations;
4189         for( ; declaration != NULL; declaration = declaration->next) {
4190                 initialize_local_declaration(declaration);
4191         }
4192
4193         if (get_cur_block() != NULL) {
4194                 if(statement->initialisation != NULL) {
4195                         expression_to_firm(statement->initialisation);
4196                 }
4197
4198                 jmp = new_Jmp();
4199         }
4200
4201
4202         /* create the step block */
4203         ir_node *const step_block = new_immBlock();
4204         if (statement->step != NULL) {
4205                 expression_to_firm(statement->step);
4206         }
4207         ir_node *const step_jmp = new_Jmp();
4208
4209         /* create the header block */
4210         ir_node *const header_block = new_immBlock();
4211         if (jmp != NULL) {
4212                 add_immBlock_pred(header_block, jmp);
4213         }
4214         add_immBlock_pred(header_block, step_jmp);
4215
4216         /* the false block */
4217         ir_node *const false_block = new_immBlock();
4218
4219         /* the loop body */
4220         ir_node * body_block;
4221         if (statement->body != NULL) {
4222                 ir_node *const old_continue_label = continue_label;
4223                 ir_node *const old_break_label    = break_label;
4224                 continue_label = step_block;
4225                 break_label    = false_block;
4226
4227                 body_block = new_immBlock();
4228                 statement_to_firm(statement->body);
4229
4230                 assert(continue_label == step_block);
4231                 assert(break_label    == false_block);
4232                 continue_label = old_continue_label;
4233                 break_label    = old_break_label;
4234
4235                 if (get_cur_block() != NULL) {
4236                         jmp = new_Jmp();
4237                         add_immBlock_pred(step_block, jmp);
4238                 }
4239         } else {
4240                 body_block = step_block;
4241         }
4242
4243         /* create the condition */
4244         set_cur_block(header_block);
4245         if (statement->condition != NULL) {
4246                 create_condition_evaluation(statement->condition, body_block,
4247                                             false_block);
4248         } else {
4249                 keep_alive(header_block);
4250                 jmp = new_Jmp();
4251                 add_immBlock_pred(body_block, jmp);
4252         }
4253
4254         mature_immBlock(body_block);
4255         mature_immBlock(false_block);
4256         mature_immBlock(step_block);
4257         mature_immBlock(header_block);
4258         mature_immBlock(false_block);
4259
4260         set_cur_block(false_block);
4261 }
4262
4263 static void create_jump_statement(const statement_t *statement,
4264                                   ir_node *target_block)
4265 {
4266         if(get_cur_block() == NULL)
4267                 return;
4268
4269         dbg_info *dbgi = get_dbg_info(&statement->base.source_position);
4270         ir_node  *jump = new_d_Jmp(dbgi);
4271         add_immBlock_pred(target_block, jump);
4272
4273         set_cur_block(NULL);
4274 }
4275
4276 static ir_node *get_break_label(void)
4277 {
4278         if (break_label == NULL) {
4279                 ir_node *cur_block = get_cur_block();
4280                 break_label = new_immBlock();
4281                 set_cur_block(cur_block);
4282         }
4283         return break_label;
4284 }
4285
4286 static void switch_statement_to_firm(const switch_statement_t *statement)
4287 {
4288         dbg_info *dbgi = get_dbg_info(&statement->base.source_position);
4289
4290         ir_node *expression  = expression_to_firm(statement->expression);
4291         ir_node *cond        = new_d_Cond(dbgi, expression);
4292
4293         set_cur_block(NULL);
4294
4295         ir_node *const old_switch_cond       = current_switch_cond;
4296         ir_node *const old_break_label       = break_label;
4297         const bool     old_saw_default_label = saw_default_label;
4298         saw_default_label                    = false;
4299         current_switch_cond                  = cond;
4300         break_label                          = NULL;
4301
4302         if (statement->body != NULL) {
4303                 statement_to_firm(statement->body);
4304         }
4305
4306         if (get_cur_block() != NULL) {
4307                 ir_node *jmp = new_Jmp();
4308                 add_immBlock_pred(get_break_label(), jmp);
4309         }
4310
4311         if (!saw_default_label) {
4312                 set_cur_block(get_nodes_block(cond));
4313                 ir_node *const proj = new_d_defaultProj(dbgi, cond,
4314                                                         MAGIC_DEFAULT_PN_NUMBER);
4315                 add_immBlock_pred(get_break_label(), proj);
4316         }
4317
4318         if (break_label != NULL) {
4319                 mature_immBlock(break_label);
4320         }
4321         set_cur_block(break_label);
4322
4323         assert(current_switch_cond == cond);
4324         current_switch_cond = old_switch_cond;
4325         break_label         = old_break_label;
4326         saw_default_label   = old_saw_default_label;
4327 }
4328
4329 static void case_label_to_firm(const case_label_statement_t *statement)
4330 {
4331         dbg_info *dbgi = get_dbg_info(&statement->base.source_position);
4332
4333         ir_node *const fallthrough = (get_cur_block() == NULL ? NULL : new_Jmp());
4334
4335         /* let's create a node and hope firm constant folding creates a Const
4336          * node... */
4337         ir_node *proj;
4338         ir_node *old_block = get_nodes_block(current_switch_cond);
4339         ir_node *block     = new_immBlock();
4340
4341         set_cur_block(old_block);
4342         if(statement->expression != NULL) {
4343                 long start_pn = fold_constant(statement->expression);
4344                 long end_pn = start_pn;
4345                 if (statement->end_range != NULL) {
4346                         end_pn = fold_constant(statement->end_range);
4347                 }
4348                 assert(start_pn <= end_pn);
4349                 /* create jumps for all cases in the given range */
4350                 for (long pn = start_pn; pn <= end_pn; ++pn) {
4351                         if(pn == MAGIC_DEFAULT_PN_NUMBER) {
4352                                 /* oops someone detected our cheating... */
4353                                 panic("magic default pn used");
4354                         }
4355                         proj = new_d_Proj(dbgi, current_switch_cond, mode_X, pn);
4356                         add_immBlock_pred(block, proj);
4357                 }
4358         } else {
4359                 saw_default_label = true;
4360                 proj = new_d_defaultProj(dbgi, current_switch_cond,
4361                                          MAGIC_DEFAULT_PN_NUMBER);
4362
4363                 add_immBlock_pred(block, proj);
4364         }
4365
4366         if (fallthrough != NULL) {
4367                 add_immBlock_pred(block, fallthrough);
4368         }
4369         mature_immBlock(block);
4370         set_cur_block(block);
4371
4372         if(statement->statement != NULL) {
4373                 statement_to_firm(statement->statement);
4374         }
4375 }
4376
4377 static ir_node *get_label_block(declaration_t *label)
4378 {
4379         assert(label->namespc == NAMESPACE_LABEL);
4380
4381         if(label->declaration_kind == DECLARATION_KIND_LABEL_BLOCK) {
4382                 return label->v.block;
4383         }
4384         assert(label->declaration_kind == DECLARATION_KIND_UNKNOWN);
4385
4386         ir_node *old_cur_block = get_cur_block();
4387         ir_node *block         = new_immBlock();
4388         set_cur_block(old_cur_block);
4389
4390         label->declaration_kind = DECLARATION_KIND_LABEL_BLOCK;
4391         label->v.block          = block;
4392
4393         ARR_APP1(ir_node *, imature_blocks, block);
4394
4395         return block;
4396 }
4397
4398 static void label_to_firm(const label_statement_t *statement)
4399 {
4400         ir_node *block = get_label_block(statement->label);
4401
4402         if(get_cur_block() != NULL) {
4403                 ir_node *jmp = new_Jmp();
4404                 add_immBlock_pred(block, jmp);
4405         }
4406
4407         set_cur_block(block);
4408         keep_alive(block);
4409
4410         if(statement->statement != NULL) {
4411                 statement_to_firm(statement->statement);
4412         }
4413 }
4414
4415 static void goto_to_firm(const goto_statement_t *statement)
4416 {
4417         if(get_cur_block() == NULL)
4418                 return;
4419
4420         ir_node *block = get_label_block(statement->label);
4421         ir_node *jmp   = new_Jmp();
4422         add_immBlock_pred(block, jmp);
4423
4424         set_cur_block(NULL);
4425 }
4426
4427 typedef enum modifier_t {
4428         ASM_MODIFIER_WRITE_ONLY   = 1 << 0,
4429         ASM_MODIFIER_READ_WRITE   = 1 << 1,
4430         ASM_MODIFIER_COMMUTATIVE  = 1 << 2,
4431         ASM_MODIFIER_EARLYCLOBBER = 1 << 3,
4432 } modifier_t;
4433
4434 static void asm_statement_to_firm(const asm_statement_t *statement)
4435 {
4436         (void) statement;
4437         fprintf(stderr, "WARNING asm not implemented yet!\n");
4438 #if 0
4439         bool needs_memory = false;
4440
4441         size_t         n_clobbers = 0;
4442         asm_clobber_t *clobber    = statement->clobbers;
4443         for( ; clobber != NULL; clobber = clobber->next) {
4444                 if(strcmp(clobber->clobber, "memory") == 0) {
4445                         needs_memory = true;
4446                         continue;
4447                 }
4448
4449                 ident *id = new_id_from_str(clobber->clobber);
4450                 obstack_ptr_grow(&asm_obst, id);
4451                 ++n_clobbers;
4452         }
4453         assert(obstack_object_size(&asm_obst) == n_clobbers * sizeof(ident*));
4454         ident **clobbers = NULL;
4455         if(n_clobbers > 0) {
4456                 clobbers = obstack_finish(&asm_obst);
4457         }
4458
4459         /* find and count input and output constraints */
4460         asm_constraint_t *constraint = statement->inputs;
4461         for( ; constraint != NULL; constraint = constraint->next) {
4462                 int  modifiers      = 0;
4463                 bool supports_memop = false;
4464                 for(const char *c = constraint->constraints; *c != 0; ++c) {
4465                         /* TODO: improve error messages */
4466                         switch(*c) {
4467                         case '?':
4468                         case '!':
4469                                 panic("multiple alternative assembler constraints not "
4470                                       "supported");
4471                         case 'm':
4472                         case 'o':
4473                         case 'V':
4474                         case '<':
4475                         case '>':
4476                         case 'X':
4477                                 supports_memop = true;
4478                                 obstack_1grow(&asm_obst, *c);
4479                                 break;
4480                         case '=':
4481                                 if(modifiers & ASM_MODIFIER_READ_WRITE)
4482                                         panic("inconsistent register constraints");
4483                                 modifiers |= ASM_MODIFIER_WRITE_ONLY;
4484                                 break;
4485                         case '+':
4486                                 if(modifiers & ASM_MODIFIER_WRITE_ONLY)
4487                                         panic("inconsistent register constraints");
4488                                 modifiers |= ASM_MODIFIER_READ_WRITE;
4489                                 break;
4490                         case '&':
4491                                 modifiers |= ASM_MODIFIER_EARLYCLOBBER;
4492                                 panic("early clobber assembler constraint not supported yet");
4493                                 break;
4494                         case '%':
4495                                 modifiers |= ASM_MODIFIER_COMMUTATIVE;
4496                                 panic("commutative assembler constraint not supported yet");
4497                                 break;
4498                         case '#':
4499                                 /* skip register preferences stuff... */
4500                                 while(*c != 0 && *c != ',')
4501                                         ++c;
4502                                 break;
4503                         case '*':
4504                                 /* skip register preferences stuff... */
4505                                 ++c;
4506                                 break;
4507                         default:
4508                                 obstack_1grow(&asm_obst, *c);
4509                                 break;
4510                         }
4511                 }
4512                 obstack_1grow(&asm_obst, '\0');
4513                 const char *constraint_string = obstack_finish(&asm_obst);
4514
4515                 needs_memory |= supports_memop;
4516                 if(supports_memop) {
4517
4518                 }
4519         }
4520 #endif
4521 }
4522
4523 static void     ms_try_statement_to_firm(ms_try_statement_t *statement) {
4524         statement_to_firm(statement->try_statement);
4525         warningf(&statement->base.source_position, "structured exception handling ignored");
4526 }
4527
4528 static void     leave_statement_to_firm(leave_statement_t *statement) {
4529         errorf(&statement->base.source_position, "__leave not supported yet");
4530 }
4531
4532 /**
4533  * Transform a statement.
4534  */
4535 static void statement_to_firm(statement_t *statement)
4536 {
4537 #ifndef NDEBUG
4538         assert(!statement->base.transformed);
4539         statement->base.transformed = true;
4540 #endif
4541
4542         switch(statement->kind) {
4543         case STATEMENT_INVALID:
4544                 panic("invalid statement found");
4545                 return;
4546         case STATEMENT_EMPTY:
4547                 /* nothing */
4548                 return;
4549         case STATEMENT_COMPOUND:
4550                 compound_statement_to_firm(&statement->compound);
4551                 return;
4552         case STATEMENT_RETURN:
4553                 return_statement_to_firm(&statement->returns);
4554                 return;
4555         case STATEMENT_EXPRESSION:
4556                 expression_statement_to_firm(&statement->expression);
4557                 return;
4558         case STATEMENT_IF:
4559                 if_statement_to_firm(&statement->ifs);
4560                 return;
4561         case STATEMENT_WHILE:
4562                 while_statement_to_firm(&statement->whiles);
4563                 return;
4564         case STATEMENT_DO_WHILE:
4565                 do_while_statement_to_firm(&statement->do_while);
4566                 return;
4567         case STATEMENT_DECLARATION:
4568                 declaration_statement_to_firm(&statement->declaration);
4569                 return;
4570         case STATEMENT_BREAK:
4571                 create_jump_statement(statement, get_break_label());
4572                 return;
4573         case STATEMENT_CONTINUE:
4574                 create_jump_statement(statement, continue_label);
4575                 return;
4576         case STATEMENT_SWITCH:
4577                 switch_statement_to_firm(&statement->switchs);
4578                 return;
4579         case STATEMENT_CASE_LABEL:
4580                 case_label_to_firm(&statement->case_label);
4581                 return;
4582         case STATEMENT_FOR:
4583                 for_statement_to_firm(&statement->fors);
4584                 return;
4585         case STATEMENT_LABEL:
4586                 label_to_firm(&statement->label);
4587                 return;
4588         case STATEMENT_GOTO:
4589                 goto_to_firm(&statement->gotos);
4590                 return;
4591         case STATEMENT_ASM:
4592                 asm_statement_to_firm(&statement->asms);
4593                 return;
4594         case STATEMENT_MS_TRY:
4595                 ms_try_statement_to_firm(&statement->ms_try);
4596                 return;
4597         case STATEMENT_LEAVE:
4598                 leave_statement_to_firm(&statement->leave);
4599                 return;
4600         }
4601         panic("Statement not implemented\n");
4602 }
4603
4604 static int count_decls_in_expression(const expression_t *expression);
4605
4606 static int count_local_declarations(const declaration_t *      decl,
4607                                     const declaration_t *const end)
4608 {
4609         int count = 0;
4610         for (; decl != end; decl = decl->next) {
4611                 if(decl->namespc != NAMESPACE_NORMAL)
4612                         continue;
4613                 const type_t *type = skip_typeref(decl->type);
4614                 if (!decl->address_taken && is_type_scalar(type))
4615                         ++count;
4616                 const initializer_t *initializer = decl->init.initializer;
4617                 /* FIXME: should walk initializer hierarchies... */
4618                 if(initializer != NULL && initializer->kind == INITIALIZER_VALUE) {
4619                         count += count_decls_in_expression(initializer->value.value);
4620                 }
4621         }
4622         return count;
4623 }
4624
4625 static int count_decls_in_expression(const expression_t *expression) {
4626         int count = 0;
4627
4628         if(expression == NULL)
4629                 return 0;
4630
4631         switch((expression_kind_t) expression->base.kind) {
4632         case EXPR_STATEMENT:
4633                 return count_decls_in_stmts(expression->statement.statement);
4634         EXPR_BINARY_CASES {
4635                 int count_left  = count_decls_in_expression(expression->binary.left);
4636                 int count_right = count_decls_in_expression(expression->binary.right);
4637                 return count_left + count_right;
4638         }
4639         EXPR_UNARY_CASES
4640                 return count_decls_in_expression(expression->unary.value);
4641         case EXPR_CALL: {
4642                 call_argument_t *argument = expression->call.arguments;
4643                 for( ; argument != NULL; argument = argument->next) {
4644                         count += count_decls_in_expression(argument->expression);
4645                 }
4646                 return count;
4647         }
4648
4649         case EXPR_UNKNOWN:
4650         case EXPR_INVALID:
4651                 panic("unexpected expression kind");
4652
4653         case EXPR_COMPOUND_LITERAL:
4654                 /* TODO... */
4655                 break;
4656
4657         case EXPR_CONDITIONAL:
4658                 count += count_decls_in_expression(expression->conditional.condition);
4659                 count += count_decls_in_expression(expression->conditional.true_expression);
4660                 count += count_decls_in_expression(expression->conditional.false_expression);
4661                 return count;
4662
4663         case EXPR_BUILTIN_PREFETCH:
4664                 count += count_decls_in_expression(expression->builtin_prefetch.adr);
4665                 count += count_decls_in_expression(expression->builtin_prefetch.rw);
4666                 count += count_decls_in_expression(expression->builtin_prefetch.locality);
4667                 return count;
4668
4669         case EXPR_BUILTIN_CONSTANT_P:
4670                 count += count_decls_in_expression(expression->builtin_constant.value);
4671                 return count;
4672
4673         case EXPR_SELECT:
4674                 count += count_decls_in_expression(expression->select.compound);
4675                 return count;
4676
4677         case EXPR_ARRAY_ACCESS:
4678                 count += count_decls_in_expression(expression->array_access.array_ref);
4679                 count += count_decls_in_expression(expression->array_access.index);
4680                 return count;
4681
4682         case EXPR_CLASSIFY_TYPE:
4683                 count += count_decls_in_expression(expression->classify_type.type_expression);
4684                 return count;
4685
4686         case EXPR_SIZEOF:
4687         case EXPR_ALIGNOF: {
4688                 expression_t *tp_expression = expression->typeprop.tp_expression;
4689                 if (tp_expression != NULL) {
4690                         count += count_decls_in_expression(tp_expression);
4691                 }
4692                 return count;
4693         }
4694
4695         case EXPR_OFFSETOF:
4696         case EXPR_REFERENCE:
4697         case EXPR_CONST:
4698         case EXPR_CHARACTER_CONSTANT:
4699         case EXPR_WIDE_CHARACTER_CONSTANT:
4700         case EXPR_STRING_LITERAL:
4701         case EXPR_WIDE_STRING_LITERAL:
4702         case EXPR_FUNCNAME:
4703         case EXPR_BUILTIN_SYMBOL:
4704         case EXPR_VA_START:
4705         case EXPR_VA_ARG:
4706                 break;
4707         }
4708
4709         /* TODO FIXME: finish/fix that firm patch that allows dynamic value numbers
4710          * (or implement all the missing expressions here/implement a walker)
4711          */
4712
4713         return 0;
4714 }
4715
4716 static int count_decls_in_stmts(const statement_t *stmt)
4717 {
4718         int count = 0;
4719         for (; stmt != NULL; stmt = stmt->base.next) {
4720                 switch (stmt->kind) {
4721                         case STATEMENT_EMPTY:
4722                                 break;
4723
4724                         case STATEMENT_DECLARATION: {
4725                                 const declaration_statement_t *const decl_stmt = &stmt->declaration;
4726                                 count += count_local_declarations(decl_stmt->declarations_begin,
4727                                                                   decl_stmt->declarations_end->next);
4728                                 break;
4729                         }
4730
4731                         case STATEMENT_COMPOUND: {
4732                                 const compound_statement_t *const comp =
4733                                         &stmt->compound;
4734                                 count += count_decls_in_stmts(comp->statements);
4735                                 break;
4736                         }
4737
4738                         case STATEMENT_IF: {
4739                                 const if_statement_t *const if_stmt = &stmt->ifs;
4740                                 count += count_decls_in_expression(if_stmt->condition);
4741                                 count += count_decls_in_stmts(if_stmt->true_statement);
4742                                 count += count_decls_in_stmts(if_stmt->false_statement);
4743                                 break;
4744                         }
4745
4746                         case STATEMENT_SWITCH: {
4747                                 const switch_statement_t *const switch_stmt = &stmt->switchs;
4748                                 count += count_decls_in_expression(switch_stmt->expression);
4749                                 count += count_decls_in_stmts(switch_stmt->body);
4750                                 break;
4751                         }
4752
4753                         case STATEMENT_LABEL: {
4754                                 const label_statement_t *const label_stmt = &stmt->label;
4755                                 if(label_stmt->statement != NULL) {
4756                                         count += count_decls_in_stmts(label_stmt->statement);
4757                                 }
4758                                 break;
4759                         }
4760
4761                         case STATEMENT_WHILE: {
4762                                 const while_statement_t *const while_stmt = &stmt->whiles;
4763                                 count += count_decls_in_expression(while_stmt->condition);
4764                                 count += count_decls_in_stmts(while_stmt->body);
4765                                 break;
4766                         }
4767
4768                         case STATEMENT_DO_WHILE: {
4769                                 const do_while_statement_t *const do_while_stmt = &stmt->do_while;
4770                                 count += count_decls_in_expression(do_while_stmt->condition);
4771                                 count += count_decls_in_stmts(do_while_stmt->body);
4772                                 break;
4773                         }
4774
4775                         case STATEMENT_FOR: {
4776                                 const for_statement_t *const for_stmt = &stmt->fors;
4777                                 count += count_local_declarations(for_stmt->scope.declarations, NULL);
4778                                 count += count_decls_in_expression(for_stmt->initialisation);
4779                                 count += count_decls_in_expression(for_stmt->condition);
4780                                 count += count_decls_in_expression(for_stmt->step);
4781                                 count += count_decls_in_stmts(for_stmt->body);
4782                                 break;
4783                         }
4784
4785                         case STATEMENT_CASE_LABEL: {
4786                                 const case_label_statement_t *label = &stmt->case_label;
4787                                 count += count_decls_in_expression(label->expression);
4788                                 if(label->statement != NULL) {
4789                                         count += count_decls_in_stmts(label->statement);
4790                                 }
4791                                 break;
4792                         }
4793
4794                         case STATEMENT_ASM:
4795                         case STATEMENT_BREAK:
4796                         case STATEMENT_CONTINUE:
4797                                 break;
4798
4799                         case STATEMENT_EXPRESSION: {
4800                                 const expression_statement_t *expr_stmt = &stmt->expression;
4801                                 count += count_decls_in_expression(expr_stmt->expression);
4802                                 break;
4803                         }
4804
4805                         case STATEMENT_GOTO:
4806                         case STATEMENT_LEAVE:
4807                         case STATEMENT_INVALID:
4808                                 break;
4809
4810                         case STATEMENT_RETURN: {
4811                                 const return_statement_t *ret_stmt = &stmt->returns;
4812                                 count += count_decls_in_expression(ret_stmt->value);
4813                                 break;
4814                         }
4815
4816                         case STATEMENT_MS_TRY: {
4817                                 const ms_try_statement_t *const try_stmt = &stmt->ms_try;
4818                                 count += count_decls_in_stmts(try_stmt->try_statement);
4819                                 if(try_stmt->except_expression != NULL)
4820                                         count += count_decls_in_expression(try_stmt->except_expression);
4821                                 count += count_decls_in_stmts(try_stmt->final_statement);
4822                                 break;
4823                         }
4824                 }
4825         }
4826         return count;
4827 }
4828
4829 static int get_function_n_local_vars(declaration_t *declaration)
4830 {
4831         int count = 0;
4832
4833         /* count parameters */
4834         count += count_local_declarations(declaration->scope.declarations, NULL);
4835
4836         /* count local variables declared in body */
4837         count += count_decls_in_stmts(declaration->init.statement);
4838
4839         return count;
4840 }
4841
4842 static void initialize_function_parameters(declaration_t *declaration)
4843 {
4844         ir_graph        *irg             = current_ir_graph;
4845         ir_node         *args            = get_irg_args(irg);
4846         ir_node         *start_block     = get_irg_start_block(irg);
4847         ir_type         *function_irtype = get_ir_type(declaration->type);
4848
4849         int            n         = 0;
4850         declaration_t *parameter = declaration->scope.declarations;
4851         for( ; parameter != NULL; parameter = parameter->next, ++n) {
4852                 assert(parameter->declaration_kind == DECLARATION_KIND_UNKNOWN);
4853                 type_t *type = skip_typeref(parameter->type);
4854
4855                 bool needs_entity = parameter->address_taken;
4856                 assert(!is_type_array(type));
4857                 if(is_type_compound(type)) {
4858                         needs_entity = true;
4859                 }
4860
4861                 if(needs_entity) {
4862                         ir_entity *entity = get_method_value_param_ent(function_irtype, n);
4863                         ident     *id     = new_id_from_str(parameter->symbol->string);
4864                         set_entity_ident(entity, id);
4865
4866                         parameter->declaration_kind
4867                                 = DECLARATION_KIND_LOCAL_VARIABLE_ENTITY;
4868                         parameter->v.entity = entity;
4869                         continue;
4870                 }
4871
4872                 ir_type *param_irtype = get_method_param_type(function_irtype, n);
4873                 ir_mode *param_mode   = get_type_mode(param_irtype);
4874
4875                 long     pn    = n;
4876                 ir_node *value = new_r_Proj(irg, start_block, args, param_mode, pn);
4877
4878                 ir_mode *mode = get_ir_mode(parameter->type);
4879                 value = create_conv(NULL, value, mode);
4880                 value = do_strict_conv(NULL, value);
4881
4882                 parameter->declaration_kind = DECLARATION_KIND_LOCAL_VARIABLE;
4883                 parameter->v.value_number   = next_value_number_function;
4884                 set_irg_loc_description(current_ir_graph, next_value_number_function, parameter);
4885                 ++next_value_number_function;
4886
4887                 set_value(parameter->v.value_number, value);
4888         }
4889 }
4890
4891 /**
4892  * Handle additional decl modifiers for IR-graphs
4893  *
4894  * @param irg            the IR-graph
4895  * @param dec_modifiers  additional modifiers
4896  */
4897 static void handle_decl_modifier_irg(ir_graph_ptr irg, decl_modifiers_t decl_modifiers)
4898 {
4899         if (decl_modifiers & DM_NORETURN) {
4900                 /* TRUE if the declaration includes the Microsoft
4901                    __declspec(noreturn) specifier. */
4902                 set_irg_additional_property(irg, mtp_property_noreturn);
4903         }
4904         if (decl_modifiers & DM_NOTHROW) {
4905                 /* TRUE if the declaration includes the Microsoft
4906                    __declspec(nothrow) specifier. */
4907                 set_irg_additional_property(irg, mtp_property_nothrow);
4908         }
4909         if (decl_modifiers & DM_NAKED) {
4910                 /* TRUE if the declaration includes the Microsoft
4911                    __declspec(naked) specifier. */
4912                 set_irg_additional_property(irg, mtp_property_naked);
4913         }
4914         if (decl_modifiers & DM_FORCEINLINE) {
4915                 /* TRUE if the declaration includes the
4916                    Microsoft __forceinline specifier. */
4917                 set_irg_inline_property(irg, irg_inline_forced);
4918         }
4919         if (decl_modifiers & DM_NOINLINE) {
4920                 /* TRUE if the declaration includes the Microsoft
4921                    __declspec(noinline) specifier. */
4922                 set_irg_inline_property(irg, irg_inline_forbidden);
4923         }
4924 }
4925
4926 /**
4927  * Create code for a function.
4928  */
4929 static void create_function(declaration_t *declaration)
4930 {
4931         ir_entity *function_entity = get_function_entity(declaration);
4932
4933         if(declaration->init.statement == NULL)
4934                 return;
4935
4936         current_function_decl = declaration;
4937         current_function_name = NULL;
4938         current_funcsig       = NULL;
4939
4940         assert(imature_blocks == NULL);
4941         imature_blocks = NEW_ARR_F(ir_node*, 0);
4942
4943         int       n_local_vars = get_function_n_local_vars(declaration);
4944         ir_graph *irg          = new_ir_graph(function_entity, n_local_vars);
4945
4946         set_irg_fp_model(irg, firm_opt.fp_model);
4947         tarval_enable_fp_ops((firm_opt.fp_model & fp_strict_algebraic) == 0);
4948         set_irn_dbg_info(get_irg_start_block(irg), get_entity_dbg_info(function_entity));
4949
4950         ir_node *first_block = get_cur_block();
4951
4952         /* set inline flags */
4953         if (declaration->is_inline)
4954                 set_irg_inline_property(irg, irg_inline_recomended);
4955         handle_decl_modifier_irg(irg, declaration->decl_modifiers);
4956
4957         next_value_number_function = 0;
4958         initialize_function_parameters(declaration);
4959
4960         statement_to_firm(declaration->init.statement);
4961
4962         ir_node *end_block = get_irg_end_block(irg);
4963
4964         /* do we have a return statement yet? */
4965         if(get_cur_block() != NULL) {
4966                 type_t *type = skip_typeref(declaration->type);
4967                 assert(is_type_function(type));
4968                 const function_type_t *func_type   = &type->function;
4969                 const type_t          *return_type
4970                         = skip_typeref(func_type->return_type);
4971
4972                 ir_node *ret;
4973                 if (is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
4974                         ret = new_Return(get_store(), 0, NULL);
4975                 } else {
4976                         ir_mode *mode;
4977                         if(is_type_scalar(return_type)) {
4978                                 mode = get_ir_mode(func_type->return_type);
4979                         } else {
4980                                 mode = mode_P_data;
4981                         }
4982
4983                         ir_node *in[1];
4984                         /* ยง5.1.2.2.3 main implicitly returns 0 */
4985                         if (strcmp(declaration->symbol->string, "main") == 0) {
4986                                 in[0] = new_Const(mode, get_mode_null(mode));
4987                         } else {
4988                                 in[0] = new_Unknown(mode);
4989                                 if(warning.return_type) {
4990                                         warningf(&declaration->source_position,
4991                                                 "missing return statement at end of non-void function '%Y'",
4992                                                 declaration->symbol);
4993                                 }
4994                         }
4995                         ret = new_Return(get_store(), 1, in);
4996                 }
4997                 add_immBlock_pred(end_block, ret);
4998         }
4999
5000         for(int i = 0; i < ARR_LEN(imature_blocks); ++i) {
5001                 mature_immBlock(imature_blocks[i]);
5002         }
5003         DEL_ARR_F(imature_blocks);
5004         imature_blocks = NULL;
5005
5006         mature_immBlock(first_block);
5007         mature_immBlock(end_block);
5008
5009         irg_finalize_cons(irg);
5010
5011         /* finalize the frame type */
5012         ir_type *frame_type = get_irg_frame_type(irg);
5013         int      n          = get_compound_n_members(frame_type);
5014         int      align_all  = 4;
5015         int      offset     = 0;
5016         for(int i = 0; i < n; ++i) {
5017                 ir_entity *entity      = get_compound_member(frame_type, i);
5018                 ir_type   *entity_type = get_entity_type(entity);
5019
5020                 int align = get_type_alignment_bytes(entity_type);
5021                 if(align > align_all)
5022                         align_all = align;
5023                 int misalign = 0;
5024                 if(align > 0) {
5025                         misalign  = offset % align;
5026                         if(misalign > 0) {
5027                                 offset += align - misalign;
5028                         }
5029                 }
5030
5031                 set_entity_offset(entity, offset);
5032                 offset += get_type_size_bytes(entity_type);
5033         }
5034         set_type_size_bytes(frame_type, offset);
5035         set_type_alignment_bytes(frame_type, align_all);
5036
5037         irg_vrfy(irg);
5038 }
5039
5040 static void scope_to_firm(scope_t *scope)
5041 {
5042         /* first pass: create declarations */
5043         declaration_t *declaration = scope->declarations;
5044         for( ; declaration != NULL; declaration = declaration->next) {
5045                 if(declaration->namespc != NAMESPACE_NORMAL)
5046                         continue;
5047                 if(declaration->storage_class == STORAGE_CLASS_ENUM_ENTRY
5048                                 || declaration->storage_class == STORAGE_CLASS_TYPEDEF)
5049                         continue;
5050                 if(declaration->symbol == NULL)
5051                         continue;
5052
5053                 type_t *type = skip_typeref(declaration->type);
5054                 if(is_type_function(type)) {
5055                         get_function_entity(declaration);
5056                 } else {
5057                         create_global_variable(declaration);
5058                 }
5059         }
5060
5061         /* second pass: create code/initializers */
5062         declaration = scope->declarations;
5063         for( ; declaration != NULL; declaration = declaration->next) {
5064                 if(declaration->namespc != NAMESPACE_NORMAL)
5065                         continue;
5066                 if(declaration->storage_class == STORAGE_CLASS_ENUM_ENTRY
5067                                 || declaration->storage_class == STORAGE_CLASS_TYPEDEF)
5068                         continue;
5069                 if(declaration->symbol == NULL)
5070                         continue;
5071
5072                 type_t *type = declaration->type;
5073                 if(type->kind == TYPE_FUNCTION) {
5074                         create_function(declaration);
5075                 } else {
5076                         assert(declaration->declaration_kind
5077                                         == DECLARATION_KIND_GLOBAL_VARIABLE);
5078                         current_ir_graph = get_const_code_irg();
5079                         create_declaration_initializer(declaration);
5080                 }
5081         }
5082 }
5083
5084 void init_ast2firm(void)
5085 {
5086         obstack_init(&asm_obst);
5087         init_atomic_modes();
5088
5089         id_underscore = new_id_from_chars("_", 1);
5090         id_imp        = new_id_from_chars("__imp_", 6);
5091
5092         /* OS option must be set to the backend */
5093         const char *s = "ia32-gasmode=linux";
5094         switch (firm_opt.os_support) {
5095         case OS_SUPPORT_MINGW:
5096                 create_ld_ident = create_ld_ident_win32;
5097                 s = "ia32-gasmode=mingw";
5098                 break;
5099         case OS_SUPPORT_LINUX:
5100                 create_ld_ident = create_ld_ident_linux_elf;
5101                 s = "ia32-gasmode=linux"; break;
5102                 break;
5103         case OS_SUPPORT_MACHO:
5104                 create_ld_ident = create_ld_ident_macho;
5105                 s = "ia32-gasmode=macho"; break;
5106                 break;
5107         }
5108         firm_be_option(s);
5109
5110         /* create idents for all known runtime functions */
5111         for (size_t i = 0; i < sizeof(rts_data) / sizeof(rts_data[0]); ++i) {
5112                 rts_idents[i] = new_id_from_str(rts_data[i].name);
5113         }
5114
5115         entitymap_init(&entitymap);
5116 }
5117
5118 static void init_ir_types(void)
5119 {
5120         static int ir_types_initialized = 0;
5121         if(ir_types_initialized)
5122                 return;
5123         ir_types_initialized = 1;
5124
5125         type_const_char = make_atomic_type(ATOMIC_TYPE_CHAR, TYPE_QUALIFIER_CONST);
5126         type_void       = make_atomic_type(ATOMIC_TYPE_VOID, TYPE_QUALIFIER_NONE);
5127         type_int        = make_atomic_type(ATOMIC_TYPE_INT,  TYPE_QUALIFIER_NONE);
5128
5129         ir_type_int        = get_ir_type(type_int);
5130         ir_type_const_char = get_ir_type(type_const_char);
5131         ir_type_wchar_t    = get_ir_type(type_wchar_t);
5132         ir_type_void       = get_ir_type(type_void);
5133 }
5134
5135 void exit_ast2firm(void)
5136 {
5137         entitymap_destroy(&entitymap);
5138         obstack_free(&asm_obst, NULL);
5139 }
5140
5141 void translation_unit_to_firm(translation_unit_t *unit)
5142 {
5143         /* just to be sure */
5144         continue_label      = NULL;
5145         break_label         = NULL;
5146         current_switch_cond = NULL;
5147
5148         init_ir_types();
5149
5150         scope_to_firm(&unit->scope);
5151 }