avoid construct 2 struct types for the same struct in firm
[cparser] / ast2firm.c
1 #include <config.h>
2
3 #define _GNU_SOURCE
4
5 #include <assert.h>
6 #include <string.h>
7 #include <stdbool.h>
8
9 #include <libfirm/firm.h>
10 #include <libfirm/adt/obst.h>
11
12 #include "ast2firm.h"
13
14 #include "adt/error.h"
15 #include "adt/array.h"
16 #include "token_t.h"
17 #include "type_t.h"
18 #include "ast_t.h"
19 #include "parser.h"
20 #include "diagnostic.h"
21 #include "lang_features.h"
22 #include "driver/firm_opt.h"
23 #include "driver/firm_cmdline.h"
24
25 #define MAGIC_DEFAULT_PN_NUMBER     (long) -314159265
26
27 static ir_type *ir_type_const_char;
28 static ir_type *ir_type_wchar_t;
29 static ir_type *ir_type_void;
30 static ir_type *ir_type_int;
31
32 static type_t *type_const_char;
33 static type_t *type_void;
34 static type_t *type_int;
35
36 static int       next_value_number_function;
37 static ir_node  *continue_label;
38 static ir_node  *break_label;
39 static ir_node  *current_switch_cond;
40 static bool      saw_default_label;
41 static ir_node **imature_blocks;
42
43 static const declaration_t *current_function_decl;
44 static ir_node             *current_function_name;
45
46 static struct obstack asm_obst;
47
48 typedef enum declaration_kind_t {
49         DECLARATION_KIND_UNKNOWN,
50         DECLARATION_KIND_FUNCTION,
51         DECLARATION_KIND_GLOBAL_VARIABLE,
52         DECLARATION_KIND_LOCAL_VARIABLE,
53         DECLARATION_KIND_LOCAL_VARIABLE_ENTITY,
54         DECLARATION_KIND_COMPOUND_MEMBER,
55         DECLARATION_KIND_LABEL_BLOCK,
56         DECLARATION_KIND_ENUM_ENTRY
57 } declaration_kind_t;
58
59 static ir_type *get_ir_type(type_t *type);
60 static int count_decls_in_stmts(const statement_t *stmt);
61
62 ir_node *uninitialized_local_var(ir_graph *irg, ir_mode *mode, int pos)
63 {
64         const declaration_t *declaration = get_irg_loc_description(irg, pos);
65
66         warningf(declaration->source_position, "variable '%#T' might be used uninitialized",
67                         declaration->type, declaration->symbol);
68         return new_r_Unknown(irg, mode);
69 }
70
71 unsigned dbg_snprint(char *buf, unsigned len, const dbg_info *dbg)
72 {
73         const source_position_t *pos = (const source_position_t*) dbg;
74         if(pos == NULL)
75                 return 0;
76         return (unsigned) snprintf(buf, len, "%s:%u", pos->input_name,
77                                    pos->linenr);
78 }
79
80 const char *dbg_retrieve(const dbg_info *dbg, unsigned *line)
81 {
82         const source_position_t *pos = (const source_position_t*) dbg;
83         if(pos == NULL)
84                 return NULL;
85         if(line != NULL)
86                 *line = pos->linenr;
87         return pos->input_name;
88 }
89
90 static dbg_info *get_dbg_info(const source_position_t *pos)
91 {
92         return (dbg_info*) pos;
93 }
94
95 static unsigned unique_id = 0;
96
97 static ident *unique_ident(const char *tag)
98 {
99         char buf[256];
100
101         snprintf(buf, sizeof(buf), "%s.%u", tag, unique_id);
102         unique_id++;
103         return new_id_from_str(buf);
104 }
105
106 /**
107  * Return the signed integer mode of size bytes.
108  *
109  * @param size   the size
110  */
111 static ir_mode *get_smode(unsigned size)
112 {
113         static ir_mode *s_modes[16 + 1] = {0, };
114         ir_mode *res;
115
116         if (size <= 0 || size > 16)
117                 return NULL;
118
119         res = s_modes[size];
120         if (res == NULL) {
121                 unsigned bits;
122         char name[32];
123
124         bits = size * 8;
125         snprintf(name, sizeof(name), "i%u", bits);
126         res = new_ir_mode(name, irms_int_number, bits, 1, irma_twos_complement,
127                                         bits <= machine_size ? machine_size : bits );
128
129                 s_modes[size] = res;
130         }
131         return res;
132 }
133
134 /**
135  * Return the unsigned integer mode of size bytes.
136  *
137  * @param size  the size
138  */
139 static ir_mode *get_umode(unsigned size)
140 {
141         static ir_mode *u_modes[16 + 1] = {0, };
142         ir_mode *res;
143
144         if (size <= 0 || size > 16)
145                 return NULL;
146
147         res = u_modes[size];
148         if (res == NULL) {
149                 unsigned bits;
150                 char name[32];
151
152                 bits = size * 8;
153                 snprintf(name, sizeof(name), "u%u", bits);
154                 res = new_ir_mode(name, irms_int_number, bits, 0, irma_twos_complement,
155                                                 bits <= machine_size ? machine_size : bits );
156
157                 u_modes[size] = res;
158         }
159         return res;
160 }
161
162 /**
163  * Return the pointer mode of size bytes.
164  *
165  * @param size  the size
166  */
167 static ir_mode *get_ptrmode(unsigned size, char *name)
168 {
169         static ir_mode *p_modes[16 + 1] = {0, };
170         ir_mode *res;
171
172         if (size <= 0 || size > 16)
173                 return NULL;
174
175         res = p_modes[size];
176         if (res == NULL) {
177                 unsigned bits;
178                 char buf[32];
179
180                 bits = size * 8;
181                 if (name == NULL) {
182                         snprintf(buf, sizeof(buf), "p%u", bits);
183                         name = buf;
184                 }
185                 res = new_ir_mode(name, irms_reference, bits, 0, irma_twos_complement,
186                                                 bits <= machine_size ? machine_size : bits);
187
188                 p_modes[size] = res;
189
190                 set_reference_mode_signed_eq(res, get_smode(size));
191                 set_reference_mode_unsigned_eq(res, get_umode(size));
192         }
193         return res;
194 }
195
196 static ir_mode *_atomic_modes[ATOMIC_TYPE_LAST];
197
198 static ir_mode *mode_int, *mode_uint;
199
200 /**
201  * Initialises the atomic modes depending on the machine size.
202  */
203 static void init_atomic_modes(void) {
204         unsigned int_size   = machine_size < 32 ? 2 : 4;
205         unsigned long_size  = machine_size < 64 ? 4 : 8;
206         unsigned llong_size = machine_size < 32 ? 4 : 8;
207
208         /* firm has no real void... */
209         _atomic_modes[ATOMIC_TYPE_VOID]        = mode_T;
210         _atomic_modes[ATOMIC_TYPE_CHAR]        = char_is_signed ? get_smode(1) : get_umode(1);
211         _atomic_modes[ATOMIC_TYPE_SCHAR]       = get_smode(1);
212         _atomic_modes[ATOMIC_TYPE_UCHAR]       = get_umode(1);
213         _atomic_modes[ATOMIC_TYPE_SHORT]       = get_smode(2);
214         _atomic_modes[ATOMIC_TYPE_USHORT]      = get_umode(2);
215         _atomic_modes[ATOMIC_TYPE_INT]         = get_smode(int_size);
216         _atomic_modes[ATOMIC_TYPE_UINT]        = get_umode(int_size);
217         _atomic_modes[ATOMIC_TYPE_LONG]        = get_smode(long_size);
218         _atomic_modes[ATOMIC_TYPE_ULONG]       = get_umode(long_size);
219         _atomic_modes[ATOMIC_TYPE_LONGLONG]    = get_smode(llong_size);
220         _atomic_modes[ATOMIC_TYPE_ULONGLONG]   = get_umode(llong_size);
221         _atomic_modes[ATOMIC_TYPE_FLOAT]       = mode_F;
222         _atomic_modes[ATOMIC_TYPE_DOUBLE]      = mode_D;
223         _atomic_modes[ATOMIC_TYPE_LONG_DOUBLE] = mode_E;
224         _atomic_modes[ATOMIC_TYPE_BOOL]        = get_umode(int_size);
225
226 #ifdef PROVIDE_COMPLEX
227         _atomic_modes[ATOMIC_TYPE_BOOL]                  = _atomic_modes[ATOMIC_TYPE_INT];
228         _atomic_modes[ATOMIC_TYPE_FLOAT_IMAGINARY]       = _atomic_modes[ATOMIC_TYPE_FLOAT];
229         _atomic_modes[ATOMIC_TYPE_DOUBLE_IMAGINARY]      = _atomic_modes[ATOMIC_TYPE_DOUBLE];
230         _atomic_modes[ATOMIC_TYPE_LONG_DOUBLE_IMAGINARY] = _atomic_modes[ATOMIC_TYPE_LONG_DOUBLE];
231 #endif
232
233         /* Hmm, pointers should be machine size */
234         set_modeP_data(get_ptrmode(machine_size >> 3, NULL));
235         set_modeP_code(get_ptrmode(machine_size >> 3, NULL));
236
237         mode_int  = _atomic_modes[ATOMIC_TYPE_INT];
238         mode_uint = _atomic_modes[ATOMIC_TYPE_UINT];
239 }
240
241 static ir_mode *get_atomic_mode(const atomic_type_t* atomic_type)
242 {
243         ir_mode *res = NULL;
244         if ((unsigned)atomic_type->akind < (unsigned)ATOMIC_TYPE_LAST)
245                 res = _atomic_modes[(unsigned)atomic_type->akind];
246         if (res == NULL)
247                 panic("Encountered unknown atomic type");
248         return res;
249 }
250
251 static unsigned get_type_size(type_t *type);
252
253 static unsigned get_atomic_type_size(const atomic_type_t *type)
254 {
255         switch(type->akind) {
256         case ATOMIC_TYPE_CHAR:
257         case ATOMIC_TYPE_SCHAR:
258         case ATOMIC_TYPE_UCHAR:
259                 return 1;
260
261         case ATOMIC_TYPE_SHORT:
262         case ATOMIC_TYPE_USHORT:
263                 return 2;
264
265         case ATOMIC_TYPE_BOOL:
266         case ATOMIC_TYPE_INT:
267         case ATOMIC_TYPE_UINT:
268                 return machine_size >> 3;
269
270         case ATOMIC_TYPE_LONG:
271         case ATOMIC_TYPE_ULONG:
272                 return machine_size > 16 ? machine_size >> 3 : 4;
273
274         case ATOMIC_TYPE_LONGLONG:
275         case ATOMIC_TYPE_ULONGLONG:
276                 return machine_size > 16 ? 8 : 4;
277
278         case ATOMIC_TYPE_FLOAT:
279                 return 4;
280
281         case ATOMIC_TYPE_DOUBLE:
282                 return 8;
283
284         case ATOMIC_TYPE_LONG_DOUBLE:
285                 return 12;
286
287         case ATOMIC_TYPE_VOID:
288                 return 1;
289
290         case ATOMIC_TYPE_INVALID:
291         case ATOMIC_TYPE_LAST:
292                 break;
293         }
294         panic("Trying to determine size of invalid atomic type");
295 }
296
297 static unsigned get_compound_type_size(compound_type_t *type)
298 {
299         ir_type *irtype = get_ir_type((type_t*) type);
300         return get_type_size_bytes(irtype);
301 }
302
303 static unsigned get_array_type_size(array_type_t *type)
304 {
305         ir_type *irtype = get_ir_type((type_t*) type);
306         return get_type_size_bytes(irtype);
307 }
308
309
310 static unsigned get_type_size(type_t *type)
311 {
312         type = skip_typeref(type);
313
314         switch(type->kind) {
315         case TYPE_ERROR:
316                 panic("error type occured");
317         case TYPE_ATOMIC:
318                 return get_atomic_type_size(&type->atomic);
319         case TYPE_ENUM:
320                 return get_mode_size_bytes(mode_int);
321         case TYPE_COMPOUND_UNION:
322         case TYPE_COMPOUND_STRUCT:
323                 return get_compound_type_size(&type->compound);
324         case TYPE_FUNCTION:
325                 /* just a pointer to the function */
326                 return get_mode_size_bytes(mode_P_code);
327         case TYPE_POINTER:
328                 return get_mode_size_bytes(mode_P_data);
329         case TYPE_ARRAY:
330                 return get_array_type_size(&type->array);
331         case TYPE_BUILTIN:
332                 return get_type_size(type->builtin.real_type);
333         case TYPE_BITFIELD:
334                 panic("type size of bitfield request");
335         case TYPE_TYPEDEF:
336         case TYPE_TYPEOF:
337         case TYPE_INVALID:
338                 break;
339         }
340         panic("Trying to determine size of invalid type");
341 }
342
343 static unsigned count_parameters(const function_type_t *function_type)
344 {
345         unsigned count = 0;
346
347         function_parameter_t *parameter = function_type->parameters;
348         for ( ; parameter != NULL; parameter = parameter->next) {
349                 ++count;
350         }
351
352         return count;
353 }
354
355
356
357
358 static long fold_constant(const expression_t *expression);
359
360 static ir_type *create_atomic_type(const atomic_type_t *type)
361 {
362         dbg_info *dbgi  = get_dbg_info(&type->type.source_position);
363         ir_mode *mode   = get_atomic_mode(type);
364         ident   *id     = get_mode_ident(mode);
365         ir_type *irtype = new_d_type_primitive(id, mode, dbgi);
366
367         if(type->akind == ATOMIC_TYPE_LONG_DOUBLE
368                         || type->akind == ATOMIC_TYPE_DOUBLE) {
369                 set_type_alignment_bytes(irtype, 4);
370         }
371
372         return irtype;
373 }
374
375 static ir_type *create_method_type(const function_type_t *function_type)
376 {
377         type_t  *return_type  = function_type->return_type;
378
379         ident   *id           = unique_ident("functiontype");
380         int      n_parameters = count_parameters(function_type);
381         int      n_results    = return_type == type_void ? 0 : 1;
382         dbg_info *dbgi        = get_dbg_info(&function_type->type.source_position);
383         ir_type *irtype       = new_d_type_method(id, n_parameters, n_results, dbgi);
384
385         if(return_type != type_void) {
386                 ir_type *restype = get_ir_type(return_type);
387                 set_method_res_type(irtype, 0, restype);
388         }
389
390         function_parameter_t *parameter = function_type->parameters;
391         int                   n         = 0;
392         for( ; parameter != NULL; parameter = parameter->next) {
393                 ir_type *p_irtype = get_ir_type(parameter->type);
394                 set_method_param_type(irtype, n, p_irtype);
395                 ++n;
396         }
397
398         if(function_type->variadic || function_type->unspecified_parameters) {
399                 set_method_variadicity(irtype, variadicity_variadic);
400         }
401
402         return irtype;
403 }
404
405 static ir_type *create_pointer_type(pointer_type_t *type)
406 {
407         type_t  *points_to = type->points_to;
408         ir_type *ir_points_to;
409         /* Avoid endless recursion if the points_to type contains this poiner type
410          * again (might be a struct). We therefore first create a void* pointer
411          * and then set the real points_to type
412          */
413         dbg_info *dbgi   = get_dbg_info(&type->type.source_position);
414         ir_type *ir_type = new_d_type_pointer(unique_ident("pointer"),
415                                             ir_type_void, mode_P_data, dbgi);
416         type->type.firm_type  = ir_type;
417
418         ir_points_to = get_ir_type(points_to);
419         set_pointer_points_to_type(ir_type, ir_points_to);
420
421         return ir_type;
422 }
423
424 static ir_type *create_array_type(array_type_t *type)
425 {
426         type_t  *element_type    = type->element_type;
427         ir_type *ir_element_type = get_ir_type(element_type);
428
429         ident   *id      = unique_ident("array");
430         dbg_info *dbgi   = get_dbg_info(&type->type.source_position);
431         ir_type *ir_type = new_d_type_array(id, 1, ir_element_type, dbgi);
432
433         if(type->size != NULL) {
434                 int n_elements = fold_constant(type->size);
435
436                 set_array_bounds_int(ir_type, 0, 0, n_elements);
437
438                 size_t elemsize = get_type_size_bytes(ir_element_type);
439                 int align = get_type_alignment_bytes(ir_element_type);
440                 if(elemsize % align > 0) {
441                         elemsize += align - (elemsize % align);
442                 }
443                 set_type_size_bytes(ir_type, n_elements * elemsize);
444                 set_type_alignment_bytes(ir_type, align);
445                 set_type_state(ir_type, layout_fixed);
446         } else {
447                 set_array_lower_bound_int(ir_type, 0, 0);
448         }
449
450         return ir_type;
451 }
452
453 /**
454  * Return the signed integer type of size bits.
455  *
456  * @param size   the size
457  */
458 static ir_type *get_signed_int_type_for_bit_size(ir_type *base_tp,
459                                                  unsigned size)
460 {
461         static ir_mode *s_modes[64 + 1] = {NULL, };
462         ir_type *res;
463         ir_mode *mode;
464
465         if (size <= 0 || size > 64)
466                 return NULL;
467
468         mode = s_modes[size];
469         if (mode == NULL) {
470                 char name[32];
471
472                 snprintf(name, sizeof(name), "bf_I%u", size);
473                 mode = new_ir_mode(name, irms_int_number, size, 1, irma_twos_complement,
474                                    size <= 32 ? 32 : size );
475                 s_modes[size] = mode;
476         }
477
478         char name[32];
479         snprintf(name, sizeof(name), "I%u", size);
480         ident *id = new_id_from_str(name);
481         dbg_info *dbgi = get_dbg_info(&builtin_source_position);
482         res = new_d_type_primitive(mangle_u(get_type_ident(base_tp), id), mode, dbgi);
483         set_primitive_base_type(res, base_tp);
484
485         return res;
486 }
487
488 /**
489  * Return the unsigned integer type of size bits.
490  *
491  * @param size   the size
492  */
493 static ir_type *get_unsigned_int_type_for_bit_size(ir_type *base_tp,
494                                                    unsigned size)
495 {
496         static ir_mode *u_modes[64 + 1] = {NULL, };
497         ir_type *res;
498         ir_mode *mode;
499
500         if (size <= 0 || size > 64)
501                 return NULL;
502
503         mode = u_modes[size];
504         if (mode == NULL) {
505                 char name[32];
506
507                 snprintf(name, sizeof(name), "bf_U%u", size);
508                 mode = new_ir_mode(name, irms_int_number, size, 0, irma_twos_complement,
509                                    size <= 32 ? 32 : size );
510                 u_modes[size] = mode;
511         }
512
513         char name[32];
514
515         snprintf(name, sizeof(name), "U%u", size);
516         ident *id = new_id_from_str(name);
517         dbg_info *dbgi = get_dbg_info(&builtin_source_position);
518         res = new_d_type_primitive(mangle_u(get_type_ident(base_tp), id), mode, dbgi);
519         set_primitive_base_type(res, base_tp);
520
521         return res;
522 }
523
524 static ir_type *create_bitfield_type(bitfield_type_t *const type)
525 {
526         type_t *base = skip_typeref(type->base);
527         assert(base->kind == TYPE_ATOMIC);
528         ir_type *irbase = get_ir_type(base);
529
530         unsigned size = fold_constant(type->size);
531
532         assert(!is_type_float(base));
533         if(is_type_signed(base)) {
534                 return get_signed_int_type_for_bit_size(irbase, size);
535         } else {
536                 return get_unsigned_int_type_for_bit_size(irbase, size);
537         }
538 }
539
540 #define INVALID_TYPE ((ir_type_ptr)-1)
541
542 static ir_type *create_struct_type(compound_type_t *type)
543 {
544         declaration_t *declaration = type->declaration;
545         if(declaration->v.irtype != NULL) {
546                 return declaration->v.irtype;
547         }
548
549         symbol_t *symbol = declaration->symbol;
550         ident    *id;
551         if(symbol != NULL) {
552                 id = unique_ident(symbol->string);
553         } else {
554                 id = unique_ident("__anonymous_struct");
555         }
556         dbg_info *dbgi  = get_dbg_info(&type->type.source_position);
557         ir_type *irtype = new_d_type_struct(id, dbgi);
558
559         type->type.firm_type = irtype;
560
561         size_t align_all  = 1;
562         size_t offset     = 0;
563         size_t bit_offset = 0;
564         declaration_t *entry = declaration->scope.declarations;
565         for( ; entry != NULL; entry = entry->next) {
566                 if(entry->namespc != NAMESPACE_NORMAL)
567                         continue;
568
569                 type_t  *entry_type  = skip_typeref(entry->type);
570                 ir_type *base_irtype;
571                 if(entry_type->kind == TYPE_BITFIELD) {
572                         base_irtype = get_ir_type(entry_type->bitfield.base);
573                 } else {
574                         base_irtype = get_ir_type(entry_type);
575                 }
576
577                 size_t entry_alignment = get_type_alignment_bytes(base_irtype);
578                 size_t misalign        = offset % entry_alignment;
579
580                 dbg_info  *dbgi   = get_dbg_info(&entry->source_position);
581                 ir_entity *entity = NULL;
582                 if(entry->symbol != NULL) {
583                         ident   *ident        = new_id_from_str(entry->symbol->string);
584                         ir_type *entry_irtype = get_ir_type(entry_type);
585                         entity = new_d_entity(irtype, ident, entry_irtype, dbgi);
586                 } else {
587                         /* only bitfields are allowed to be anonymous */
588                         assert(entry_type->kind == TYPE_BITFIELD);
589                 }
590
591                 size_t base;
592                 size_t bits_remainder;
593                 if(entry_type->kind == TYPE_BITFIELD) {
594                         size_t size_bits      = fold_constant(entry_type->bitfield.size);
595                         size_t rest_size_bits = (entry_alignment - misalign)*8 - bit_offset;
596
597                         if(size_bits > rest_size_bits) {
598                                 /* start a new bucket */
599                                 offset     += entry_alignment - misalign;
600                                 bit_offset  = 0;
601
602                                 base           = offset;
603                                 bits_remainder = 0;
604                         } else {
605                                 /* put into current bucket */
606                                 base           = offset - misalign;
607                                 bits_remainder = misalign * 8 + bit_offset;
608                         }
609
610                         offset     += size_bits / 8;
611                         bit_offset  = bit_offset + (size_bits % 8);
612                 } else {
613                         size_t entry_size = get_type_size_bytes(base_irtype);
614                         if(misalign > 0 || bit_offset > 0)
615                                 offset += entry_alignment - misalign;
616
617                         base           = offset;
618                         bits_remainder = 0;
619                         offset        += entry_size;
620                         bit_offset     = 0;
621                 }
622
623                 if(entry_alignment > align_all) {
624                         if(entry_alignment % align_all != 0) {
625                                 panic("uneven alignments not supported yet");
626                         }
627                         align_all = entry_alignment;
628                 }
629
630                 if(entity != NULL) {
631                         set_entity_offset(entity, base);
632                         set_entity_offset_bits_remainder(entity,
633                                                          (unsigned char) bits_remainder);
634                         add_struct_member(irtype, entity);
635                         entry->declaration_kind = DECLARATION_KIND_COMPOUND_MEMBER;
636                         assert(entry->v.entity == NULL);
637                         entry->v.entity         = entity;
638                 }
639         }
640
641         size_t misalign = offset % align_all;
642         if(misalign > 0 || bit_offset > 0) {
643                 offset += align_all - misalign;
644         }
645         set_type_alignment_bytes(irtype, align_all);
646         set_type_size_bytes(irtype, offset);
647         set_type_state(irtype, layout_fixed);
648
649         declaration->v.irtype = irtype;
650
651         return irtype;
652 }
653
654 static ir_type *create_union_type(compound_type_t *type)
655 {
656         declaration_t *declaration = type->declaration;
657         if(declaration->v.irtype != NULL) {
658                 return declaration->v.irtype;
659         }
660
661         symbol_t      *symbol      = declaration->symbol;
662         ident         *id;
663         if(symbol != NULL) {
664                 id = unique_ident(symbol->string);
665         } else {
666                 id = unique_ident("__anonymous_union");
667         }
668         dbg_info *dbgi  = get_dbg_info(&type->type.source_position);
669         ir_type *irtype = new_d_type_union(id, dbgi);
670
671         type->type.firm_type = irtype;
672
673         int align_all = 1;
674         int size      = 0;
675         declaration_t *entry = declaration->scope.declarations;
676         for( ; entry != NULL; entry = entry->next) {
677                 if(entry->namespc != NAMESPACE_NORMAL)
678                         continue;
679
680                 ident   *ident         = new_id_from_str(entry->symbol->string);
681                 ir_type *entry_ir_type = get_ir_type(entry->type);
682
683                 int entry_size      = get_type_size_bytes(entry_ir_type);
684                 int entry_alignment = get_type_alignment_bytes(entry_ir_type);
685
686                 dbg_info  *const dbgi   = get_dbg_info(&entry->source_position);
687                 ir_entity *const entity = new_d_entity(irtype, ident, entry_ir_type,
688                                                        dbgi);
689                 add_union_member(irtype, entity);
690                 set_entity_offset(entity, 0);
691                 entry->declaration_kind = DECLARATION_KIND_COMPOUND_MEMBER;
692                 assert(entry->v.entity == NULL);
693                 entry->v.entity         = entity;
694
695                 if(entry_size > size) {
696                         size = entry_size;
697                 }
698                 if(entry_alignment > align_all) {
699                         if(entry_alignment % align_all != 0) {
700                                 panic("Uneven alignments not supported yet");
701                         }
702                         align_all = entry_alignment;
703                 }
704         }
705
706         set_type_alignment_bytes(irtype, align_all);
707         set_type_size_bytes(irtype, size);
708         set_type_state(irtype, layout_fixed);
709
710         declaration->v.irtype = irtype;
711
712         return irtype;
713 }
714
715 static ir_node *expression_to_firm(const expression_t *expression);
716 static inline ir_mode *get_ir_mode(type_t *type);
717
718 static ir_type *create_enum_type(enum_type_t *const type)
719 {
720         type->type.firm_type = ir_type_int;
721
722         ir_mode *const mode    = get_ir_mode((type_t*) type);
723         tarval  *const one     = get_mode_one(mode);
724         tarval  *      tv_next = get_tarval_null(mode);
725
726         declaration_t *declaration = type->declaration->next;
727         for (; declaration != NULL; declaration = declaration->next) {
728                 if (declaration->storage_class != STORAGE_CLASS_ENUM_ENTRY)
729                         break;
730
731                 declaration->declaration_kind = DECLARATION_KIND_ENUM_ENTRY;
732
733                 expression_t *const init = declaration->init.enum_value;
734                 if (init != NULL) {
735                         ir_node *const cnst = expression_to_firm(init);
736                         if (!is_Const(cnst)) {
737                                 panic("couldn't fold constant");
738                         }
739                         tv_next = get_Const_tarval(cnst);
740                 }
741                 declaration->v.enum_val = tv_next;
742                 tv_next = tarval_add(tv_next, one);
743         }
744
745         return ir_type_int;
746 }
747
748 static ir_type *get_ir_type(type_t *type)
749 {
750         assert(type != NULL);
751
752         type = skip_typeref(type);
753
754         if(type->base.firm_type != NULL) {
755                 assert(type->base.firm_type != INVALID_TYPE);
756                 return type->base.firm_type;
757         }
758
759         ir_type *firm_type = NULL;
760         switch(type->kind) {
761         case TYPE_ERROR:
762                 panic("error type occured");
763         case TYPE_ATOMIC:
764                 firm_type = create_atomic_type(&type->atomic);
765                 break;
766         case TYPE_FUNCTION:
767                 firm_type = create_method_type(&type->function);
768                 break;
769         case TYPE_POINTER:
770                 firm_type = create_pointer_type(&type->pointer);
771                 break;
772         case TYPE_ARRAY:
773                 firm_type = create_array_type(&type->array);
774                 break;
775         case TYPE_COMPOUND_STRUCT:
776                 firm_type = create_struct_type(&type->compound);
777                 break;
778         case TYPE_COMPOUND_UNION:
779                 firm_type = create_union_type(&type->compound);
780                 break;
781         case TYPE_ENUM:
782                 firm_type = create_enum_type(&type->enumt);
783                 break;
784         case TYPE_BUILTIN:
785                 firm_type = get_ir_type(type->builtin.real_type);
786                 break;
787         case TYPE_BITFIELD:
788                 firm_type = create_bitfield_type(&type->bitfield);
789                 break;
790
791         case TYPE_TYPEOF:
792         case TYPE_TYPEDEF:
793         case TYPE_INVALID:
794                 break;
795         }
796         if(firm_type == NULL)
797                 panic("unknown type found");
798
799         type->base.firm_type = firm_type;
800         return firm_type;
801 }
802
803 static inline ir_mode *get_ir_mode(type_t *type)
804 {
805         ir_type *irtype = get_ir_type(type);
806
807         /* firm doesn't report a mode for arrays somehow... */
808         if(is_Array_type(irtype)) {
809                 return mode_P_data;
810         }
811
812         ir_mode *mode = get_type_mode(irtype);
813         assert(mode != NULL);
814         return mode;
815 }
816
817 static ident *predef_idents[rts_max];
818
819 /** Names of the runtime functions. */
820 static const struct {
821         int        id;           /**< the rts id */
822         int        n_res;        /**< number of return values */
823         const char *name;        /**< the name of the rts function */
824         int        n_params;     /**< number of parameters */
825         unsigned   flags;        /**< language flags */
826 } rts_data[] = {
827         { rts_debugbreak, 0, "__debugbreak", 0, _MS },
828         { rts_abort,      0, "abort",        0, _C89 },
829         { rts_abs,        1, "abs",          1, _C89 },
830         { rts_labs,       1, "labs",         1, _C89 },
831         { rts_llabs,      1, "llabs",        1, _C99 },
832         { rts_imaxabs,    1, "imaxabs",      1, _C99 },
833
834         { rts_fabs,       1, "fabs",         1, _C89 },
835         { rts_sqrt,       1, "sqrt",         1, _C89 },
836         { rts_cbrt,       1, "cbrt",         1, _C99 },
837         { rts_exp,        1, "exp",          1, _C89 },
838         { rts_exp2,       1, "exp2",         1, _C89 },
839         { rts_exp10,      1, "exp10",        1, _GNUC },
840         { rts_log,        1, "log",          1, _C89 },
841         { rts_log2,       1, "log2",         1, _C89 },
842         { rts_log10,      1, "log10",        1, _C89 },
843         { rts_pow,        1, "pow",          2, _C89 },
844         { rts_sin,        1, "sin",          1, _C89 },
845         { rts_cos,        1, "cos",          1, _C89 },
846         { rts_tan,        1, "tan",          1, _C89 },
847         { rts_asin,       1, "asin",         1, _C89 },
848         { rts_acos,       1, "acos",         1, _C89 },
849         { rts_atan,       1, "atan",         1, _C89 },
850         { rts_sinh,       1, "sinh",         1, _C89 },
851         { rts_cosh,       1, "cosh",         1, _C89 },
852         { rts_tanh,       1, "tanh",         1, _C89 },
853
854         { rts_fabsf,      1, "fabsf",        1, _C99 },
855         { rts_sqrtf,      1, "sqrtf",        1, _C99 },
856         { rts_cbrtf,      1, "cbrtf",        1, _C99 },
857         { rts_expf,       1, "expf",         1, _C99 },
858         { rts_exp2f,      1, "exp2f",        1, _C99 },
859         { rts_exp10f,     1, "exp10f",       1, _GNUC },
860         { rts_logf,       1, "logf",         1, _C99 },
861         { rts_log2f,      1, "log2f",        1, _C99 },
862         { rts_log10f,     1, "log10f",       1, _C99 },
863         { rts_powf,       1, "powf",         2, _C99 },
864         { rts_sinf,       1, "sinf",         1, _C99 },
865         { rts_cosf,       1, "cosf",         1, _C99 },
866         { rts_tanf,       1, "tanf",         1, _C99 },
867         { rts_asinf,      1, "asinf",        1, _C99 },
868         { rts_acosf,      1, "acosf",        1, _C99 },
869         { rts_atanf,      1, "atanf",        1, _C99 },
870         { rts_sinhf,      1, "sinhf",        1, _C99 },
871         { rts_coshf,      1, "coshf",        1, _C99 },
872         { rts_tanhf,      1, "tanhf",        1, _C99 },
873
874         { rts_fabsl,      1, "fabsl",        1, _C99 },
875         { rts_sqrtl,      1, "sqrtl",        1, _C99 },
876         { rts_cbrtl,      1, "cbrtl",        1, _C99 },
877         { rts_expl,       1, "expl",         1, _C99 },
878         { rts_exp2l,      1, "exp2l",        1, _C99 },
879         { rts_exp10l,     1, "exp10l",       1, _GNUC },
880         { rts_logl,       1, "logl",         1, _C99 },
881         { rts_log2l,      1, "log2l",        1, _C99 },
882         { rts_log10l,     1, "log10l",       1, _C99 },
883         { rts_powl,       1, "powl",         2, _C99 },
884         { rts_sinl,       1, "sinl",         1, _C99 },
885         { rts_cosl,       1, "cosl",         1, _C99 },
886         { rts_tanl,       1, "tanl",         1, _C99 },
887         { rts_asinl,      1, "asinl",        1, _C99 },
888         { rts_acosl,      1, "acosl",        1, _C99 },
889         { rts_atanl,      1, "atanl",        1, _C99 },
890         { rts_sinhl,      1, "sinhl",        1, _C99 },
891         { rts_coshl,      1, "coshl",        1, _C99 },
892         { rts_tanhl,      1, "tanhl",        1, _C99 },
893
894         { rts_memcpy,     1, "memcpy",       3, _C89 },  /* HMM, man say its C99 */
895         { rts_memset,     1, "memset",       3, _C89 },  /* HMM, man say its C99 */
896         { rts_strcmp,     1, "strcmp",       2, _C89 },
897         { rts_strncmp,    1, "strncmp",      3, _C89 }
898 };
899
900 static ir_entity* get_function_entity(declaration_t *declaration)
901 {
902         if(declaration->declaration_kind == DECLARATION_KIND_FUNCTION)
903                 return declaration->v.entity;
904         assert(declaration->declaration_kind == DECLARATION_KIND_UNKNOWN);
905
906         symbol_t *symbol = declaration->symbol;
907         ident    *id     = new_id_from_str(symbol->string);
908
909         ir_type  *global_type    = get_glob_type();
910         ir_type  *ir_type_method = get_ir_type(declaration->type);
911         assert(is_Method_type(ir_type_method));
912
913         dbg_info  *const dbgi   = get_dbg_info(&declaration->source_position);
914         ir_entity *const entity = new_d_entity(global_type, id, ir_type_method, dbgi);
915         set_entity_ld_ident(entity, id);
916         if(declaration->storage_class == STORAGE_CLASS_STATIC
917                         || declaration->is_inline) {
918                 set_entity_visibility(entity, visibility_local);
919         } else if(declaration->init.statement != NULL) {
920                 set_entity_visibility(entity, visibility_external_visible);
921         } else {
922                 set_entity_visibility(entity, visibility_external_allocated);
923
924                 /* We should check for file scope here, but as long as we compile C only
925                    this is not needed. */
926                 int    n_params = get_method_n_params(ir_type_method);
927                 int    n_res    = get_method_n_ress(ir_type_method);
928                 int    i;
929
930                 if (n_params == 0 && n_res == 0 && id == predef_idents[rts_abort]) {
931                         /* found abort(), store for later */
932                         //abort_ent = ent;
933                         //abort_tp  = ftype;
934                 } else {
935                         if (! firm_opt.freestanding) {
936                                 /* check for a known runtime function */
937                                 for (i = 0; i < rts_max; ++i) {
938                                         /* ignore those rts functions not necessary needed for current mode */
939                                         if ((c_mode & rts_data[i].flags) == 0)
940                                                 continue;
941                                         if (n_params == rts_data[i].n_params && n_res == rts_data[i].n_res &&
942                                                 id == predef_idents[rts_data[i].id])
943                                                 rts_entities[rts_data[i].id] = entity;
944                                 }
945                         }
946                 }
947         }
948         set_entity_allocation(entity, allocation_static);
949
950         declaration->declaration_kind = DECLARATION_KIND_FUNCTION;
951         declaration->v.entity         = entity;
952
953         return entity;
954 }
955
956 static ir_node *const_to_firm(const const_expression_t *cnst)
957 {
958         dbg_info *dbgi = get_dbg_info(&cnst->base.source_position);
959         ir_mode  *mode = get_ir_mode(cnst->base.type);
960
961         char    buf[128];
962         tarval *tv;
963         size_t  len;
964         if(mode_is_float(mode)) {
965                 tv = new_tarval_from_double(cnst->v.float_value, mode);
966         } else {
967                 if(mode_is_signed(mode)) {
968                         len = snprintf(buf, sizeof(buf), "%lld", cnst->v.int_value);
969                 } else {
970                         len = snprintf(buf, sizeof(buf), "%llu",
971                                        (unsigned long long) cnst->v.int_value);
972                 }
973                 tv = new_tarval_from_str(buf, len, mode);
974         }
975
976         return new_d_Const(dbgi, mode, tv);
977 }
978
979 static ir_node *create_symconst(dbg_info *dbgi, ir_mode *mode,
980                                 ir_entity *entity)
981 {
982         assert(entity != NULL);
983         union symconst_symbol sym;
984         sym.entity_p = entity;
985         return new_d_SymConst(dbgi, mode, sym, symconst_addr_ent);
986 }
987
988 static ir_node *string_to_firm(const source_position_t *const src_pos,
989                                const char *const id_prefix,
990                                const string_t *const value)
991 {
992         ir_type *const global_type = get_glob_type();
993         dbg_info *const dbgi       = get_dbg_info(src_pos);
994         ir_type *const type        = new_d_type_array(unique_ident("strtype"), 1,
995                                                     ir_type_const_char, dbgi);
996
997         ident     *const id     = unique_ident(id_prefix);
998         ir_entity *const entity = new_d_entity(global_type, id, type, dbgi);
999         set_entity_ld_ident(entity, id);
1000         set_entity_variability(entity, variability_constant);
1001         set_entity_allocation(entity, allocation_static);
1002
1003         ir_type *const elem_type = ir_type_const_char;
1004         ir_mode *const mode      = get_type_mode(elem_type);
1005
1006         const char* const string = value->begin;
1007         const size_t      slen   = value->size;
1008
1009         set_array_lower_bound_int(type, 0, 0);
1010         set_array_upper_bound_int(type, 0, slen);
1011         set_type_size_bytes(type, slen);
1012         set_type_state(type, layout_fixed);
1013
1014         tarval **const tvs = xmalloc(slen * sizeof(tvs[0]));
1015         for(size_t i = 0; i < slen; ++i) {
1016                 tvs[i] = new_tarval_from_long(string[i], mode);
1017         }
1018
1019         set_array_entity_values(entity, tvs, slen);
1020         free(tvs);
1021
1022         return create_symconst(dbgi, mode_P_data, entity);
1023 }
1024
1025 static ir_node *string_literal_to_firm(
1026                 const string_literal_expression_t* literal)
1027 {
1028         return string_to_firm(&literal->base.source_position, "Lstr",
1029                               &literal->value);
1030 }
1031
1032 static ir_node *wide_string_literal_to_firm(
1033         const wide_string_literal_expression_t* const literal)
1034 {
1035         ir_type *const global_type = get_glob_type();
1036         ir_type *const elem_type   = ir_type_wchar_t;
1037         dbg_info *const dbgi       = get_dbg_info(&literal->base.source_position);
1038         ir_type *const type        = new_d_type_array(unique_ident("strtype"), 1,
1039                                                     elem_type, dbgi);
1040
1041         ident     *const id     = unique_ident("Lstr");
1042         ir_entity *const entity = new_d_entity(global_type, id, type, dbgi);
1043         set_entity_ld_ident(entity, id);
1044         set_entity_variability(entity, variability_constant);
1045         set_entity_allocation(entity, allocation_static);
1046
1047         ir_mode *const mode      = get_type_mode(elem_type);
1048
1049         const wchar_rep_t *const string = literal->value.begin;
1050         const size_t             slen   = literal->value.size;
1051
1052         set_array_lower_bound_int(type, 0, 0);
1053         set_array_upper_bound_int(type, 0, slen);
1054         set_type_size_bytes(type, slen);
1055         set_type_state(type, layout_fixed);
1056
1057         tarval **const tvs = xmalloc(slen * sizeof(tvs[0]));
1058         for(size_t i = 0; i < slen; ++i) {
1059                 tvs[i] = new_tarval_from_long(string[i], mode);
1060         }
1061
1062         set_array_entity_values(entity, tvs, slen);
1063         free(tvs);
1064
1065         return create_symconst(dbgi, mode_P_data, entity);
1066 }
1067
1068 static ir_node *deref_address(ir_type *const irtype, ir_node *const addr,
1069                               dbg_info *const dbgi)
1070 {
1071         if (is_compound_type(irtype) ||
1072                         is_Method_type(irtype)   ||
1073                         is_Array_type(irtype)) {
1074                 return addr;
1075         }
1076
1077         ir_mode *const mode     = get_type_mode(irtype);
1078         ir_node *const memory   = get_store();
1079         ir_node *const load     = new_d_Load(dbgi, memory, addr, mode);
1080         ir_node *const load_mem = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
1081         ir_node *const load_res = new_d_Proj(dbgi, load, mode,   pn_Load_res);
1082         set_store(load_mem);
1083         return load_res;
1084 }
1085
1086 static ir_node *do_strict_conv(dbg_info *dbgi, ir_node *node)
1087 {
1088         ir_mode *mode = get_irn_mode(node);
1089
1090         if(!(get_irg_fp_model(current_ir_graph) & fp_explicit_rounding))
1091                 return node;
1092         if(!mode_is_float(mode))
1093                 return node;
1094
1095         /* check if there is already a Conv */
1096         if (get_irn_op(node) == op_Conv) {
1097                 /* convert it into a strict Conv */
1098                 set_Conv_strict(node, 1);
1099                 return node;
1100         }
1101
1102         /* otherwise create a new one */
1103         return new_d_strictConv(dbgi, node, mode);
1104 }
1105
1106 static ir_node *get_global_var_address(dbg_info *const dbgi,
1107                                        const declaration_t *const decl)
1108 {
1109         assert(decl->declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
1110
1111         ir_entity *const entity = decl->v.entity;
1112         switch ((storage_class_tag_t)decl->storage_class) {
1113                 case STORAGE_CLASS_THREAD:
1114                 case STORAGE_CLASS_THREAD_EXTERN:
1115                 case STORAGE_CLASS_THREAD_STATIC: {
1116                         ir_node *const no_mem = new_NoMem();
1117                         ir_node *const tls    = get_irg_tls(current_ir_graph);
1118                         return new_d_simpleSel(dbgi, no_mem, tls, entity);
1119                 }
1120
1121                 default:
1122                         return create_symconst(dbgi, mode_P_data, entity);
1123         }
1124 }
1125
1126 /* Returns the correct base address depending on whether it is a parameter or a
1127  * normal local variable */
1128 static ir_node *get_local_frame(ir_entity *const ent)
1129 {
1130         ir_graph      *const irg   = current_ir_graph;
1131         const ir_type *const owner = get_entity_owner(ent);
1132         if (owner == get_irg_frame_type(irg)) {
1133                 return get_irg_frame(irg);
1134         } else {
1135                 assert(owner == get_method_value_param_type(get_entity_type(get_irg_entity(irg))));
1136                 return get_irg_value_param_base(irg);
1137         }
1138 }
1139
1140 static ir_node *reference_expression_to_firm(const reference_expression_t *ref)
1141 {
1142         dbg_info      *dbgi        = get_dbg_info(&ref->base.source_position);
1143         declaration_t *declaration = ref->declaration;
1144         type_t        *type        = skip_typeref(declaration->type);
1145
1146         switch((declaration_kind_t) declaration->declaration_kind) {
1147         case DECLARATION_KIND_UNKNOWN:
1148                 if (declaration->storage_class != STORAGE_CLASS_ENUM_ENTRY) {
1149                         break;
1150                 }
1151                 get_ir_type(type);
1152                 /* FALLTHROUGH */
1153
1154         case DECLARATION_KIND_ENUM_ENTRY: {
1155                 ir_mode *const mode = get_ir_mode(type);
1156                 return new_Const(mode, declaration->v.enum_val);
1157         }
1158
1159         case DECLARATION_KIND_LOCAL_VARIABLE: {
1160                 ir_mode *const mode = get_ir_mode(type);
1161                 return get_value(declaration->v.value_number, mode);
1162         }
1163         case DECLARATION_KIND_FUNCTION: {
1164                 ir_mode *const mode = get_ir_mode(type);
1165                 return create_symconst(dbgi, mode, declaration->v.entity);
1166         }
1167         case DECLARATION_KIND_GLOBAL_VARIABLE: {
1168                 ir_node *const addr   = get_global_var_address(dbgi, declaration);
1169                 ir_type *const irtype = get_entity_type(declaration->v.entity);
1170                 return deref_address(irtype, addr, dbgi);
1171         }
1172
1173         case DECLARATION_KIND_LOCAL_VARIABLE_ENTITY: {
1174                 ir_entity *entity = declaration->v.entity;
1175                 ir_node   *frame  = get_local_frame(entity);
1176                 ir_node   *sel    = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
1177                 ir_type   *irtype = get_entity_type(entity);
1178                 return deref_address(irtype, sel, dbgi);
1179         }
1180
1181         case DECLARATION_KIND_COMPOUND_MEMBER:
1182         case DECLARATION_KIND_LABEL_BLOCK:
1183                 panic("not implemented reference type");
1184         }
1185
1186         panic("reference to declaration with unknown type found");
1187 }
1188
1189 static ir_node *reference_addr(const reference_expression_t *ref)
1190 {
1191         dbg_info      *dbgi        = get_dbg_info(&ref->base.source_position);
1192         declaration_t *declaration = ref->declaration;
1193
1194         switch((declaration_kind_t) declaration->declaration_kind) {
1195         case DECLARATION_KIND_UNKNOWN:
1196                 break;
1197         case DECLARATION_KIND_LOCAL_VARIABLE:
1198                 panic("local variable without entity has no address");
1199         case DECLARATION_KIND_FUNCTION: {
1200                 type_t *const  type = skip_typeref(ref->base.type);
1201                 ir_mode *const mode = get_ir_mode(type);
1202                 return create_symconst(dbgi, mode, declaration->v.entity);
1203         }
1204         case DECLARATION_KIND_GLOBAL_VARIABLE: {
1205                 ir_node *const addr = get_global_var_address(dbgi, declaration);
1206                 return addr;
1207         }
1208         case DECLARATION_KIND_LOCAL_VARIABLE_ENTITY: {
1209                 ir_entity *entity = declaration->v.entity;
1210                 ir_node   *frame  = get_local_frame(entity);
1211                 ir_node   *sel    = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
1212
1213                 return sel;
1214         }
1215
1216         case DECLARATION_KIND_ENUM_ENTRY:
1217                 panic("trying to reference enum entry");
1218
1219         case DECLARATION_KIND_COMPOUND_MEMBER:
1220         case DECLARATION_KIND_LABEL_BLOCK:
1221                 panic("not implemented reference type");
1222         }
1223
1224         panic("reference to declaration with unknown type found");
1225 }
1226
1227 static ir_node *process_builtin_call(const call_expression_t *call)
1228 {
1229         dbg_info *dbgi = get_dbg_info(&call->base.source_position);
1230
1231         assert(call->function->kind == EXPR_BUILTIN_SYMBOL);
1232         builtin_symbol_expression_t *builtin = &call->function->builtin_symbol;
1233
1234         type_t *type = skip_typeref(builtin->base.type);
1235         assert(is_type_pointer(type));
1236
1237         type_t   *function_type = skip_typeref(type->pointer.points_to);
1238         symbol_t *symbol        = builtin->symbol;
1239
1240         switch(symbol->ID) {
1241         case T___builtin_alloca: {
1242                 if(call->arguments == NULL || call->arguments->next != NULL) {
1243                         panic("invalid number of parameters on __builtin_alloca");
1244                 }
1245                 expression_t *argument = call->arguments->expression;
1246                 ir_node      *size     = expression_to_firm(argument);
1247
1248                 ir_node *store  = get_store();
1249                 ir_node *alloca = new_d_Alloc(dbgi, store, size, firm_unknown_type,
1250                                               stack_alloc);
1251                 ir_node *proj_m = new_Proj(alloca, mode_M, pn_Alloc_M);
1252                 set_store(proj_m);
1253                 ir_node *res    = new_Proj(alloca, mode_P_data, pn_Alloc_res);
1254
1255                 return res;
1256         }
1257         case T___builtin_nan:
1258         case T___builtin_nanf:
1259         case T___builtin_nand: {
1260                 /* Ignore string for now... */
1261                 assert(is_type_function(function_type));
1262                 ir_mode *mode = get_ir_mode(function_type->function.return_type);
1263                 tarval  *tv   = get_mode_NAN(mode);
1264                 ir_node *res  = new_d_Const(dbgi, mode, tv);
1265                 return res;
1266         }
1267         case T___builtin_va_end:
1268                 return NULL;
1269         default:
1270                 panic("Unsupported builtin found\n");
1271         }
1272 }
1273
1274 static ir_node *call_expression_to_firm(const call_expression_t *call)
1275 {
1276         assert(get_cur_block() != NULL);
1277
1278         expression_t *function = call->function;
1279         if(function->kind == EXPR_BUILTIN_SYMBOL) {
1280                 return process_builtin_call(call);
1281         }
1282         ir_node *callee = expression_to_firm(function);
1283
1284         type_t *type = skip_typeref(function->base.type);
1285         assert(is_type_pointer(type));
1286         pointer_type_t *pointer_type = &type->pointer;
1287         type_t         *points_to    = skip_typeref(pointer_type->points_to);
1288         assert(is_type_function(points_to));
1289         function_type_t *function_type = &points_to->function;
1290
1291         int              n_parameters = 0;
1292         call_argument_t *argument     = call->arguments;
1293         for( ; argument != NULL; argument = argument->next) {
1294                 ++n_parameters;
1295         }
1296
1297         dbg_info *dbgi  = get_dbg_info(&call->base.source_position);
1298
1299         ir_type *ir_method_type  = get_ir_type((type_t*) function_type);
1300         ir_type *new_method_type = NULL;
1301         if(function_type->variadic || function_type->unspecified_parameters) {
1302                 /* we need to construct a new method type matching the call
1303                  * arguments... */
1304                 int n_res       = get_method_n_ress(ir_method_type);
1305                 dbg_info *dbgi  = get_dbg_info(&call->base.source_position);
1306                 new_method_type = new_d_type_method(unique_ident("calltype"),
1307                                                   n_parameters, n_res, dbgi);
1308                 set_method_calling_convention(new_method_type,
1309                                get_method_calling_convention(ir_method_type));
1310                 set_method_additional_properties(new_method_type,
1311                                get_method_additional_properties(ir_method_type));
1312
1313                 for(int i = 0; i < n_res; ++i) {
1314                         set_method_res_type(new_method_type, i,
1315                                             get_method_res_type(ir_method_type, i));
1316                 }
1317         }
1318         ir_node *in[n_parameters];
1319
1320         argument = call->arguments;
1321         int n = 0;
1322         for( ; argument != NULL; argument = argument->next) {
1323                 expression_t *expression = argument->expression;
1324                 ir_node      *arg_node   = expression_to_firm(expression);
1325
1326                 arg_node = do_strict_conv(dbgi, arg_node);
1327
1328                 in[n] = arg_node;
1329                 if(new_method_type != NULL) {
1330                         ir_type *irtype = get_ir_type(expression->base.type);
1331                         set_method_param_type(new_method_type, n, irtype);
1332                 }
1333
1334                 n++;
1335         }
1336         assert(n == n_parameters);
1337
1338         if(new_method_type != NULL)
1339                 ir_method_type = new_method_type;
1340
1341         ir_node  *store = get_store();
1342         ir_node  *node  = new_d_Call(dbgi, store, callee, n_parameters, in,
1343                                      ir_method_type);
1344         ir_node  *mem   = new_d_Proj(dbgi, node, mode_M, pn_Call_M_regular);
1345         set_store(mem);
1346
1347         type_t  *return_type = skip_typeref(function_type->return_type);
1348         ir_node *result      = NULL;
1349
1350         if(!is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
1351                 ir_mode *mode;
1352                 if(is_type_scalar(return_type)) {
1353                         mode = get_ir_mode(return_type);
1354                 } else {
1355                         mode = mode_P_data;
1356                 }
1357                 ir_node *resproj = new_d_Proj(dbgi, node, mode_T, pn_Call_T_result);
1358                 result           = new_d_Proj(dbgi, resproj, mode, 0);
1359         }
1360
1361         return result;
1362 }
1363
1364 static void statement_to_firm(statement_t *statement);
1365 static ir_node *compound_statement_to_firm(compound_statement_t *compound);
1366
1367 static ir_node *expression_to_addr(const expression_t *expression);
1368 static void create_condition_evaluation(const expression_t *expression,
1369                                         ir_node *true_block,
1370                                         ir_node *false_block);
1371
1372 static void assign_value(dbg_info *dbgi, ir_node *addr, type_t *type,
1373                          ir_node *value)
1374 {
1375         value = do_strict_conv(dbgi, value);
1376
1377         ir_node *memory = get_store();
1378
1379         if(is_type_scalar(type)) {
1380                 ir_node  *store     = new_d_Store(dbgi, memory, addr, value);
1381                 ir_node  *store_mem = new_d_Proj(dbgi, store, mode_M, pn_Store_M);
1382                 set_store(store_mem);
1383         } else {
1384                 ir_type *irtype    = get_ir_type(type);
1385                 ir_node *copyb     = new_d_CopyB(dbgi, memory, addr, value, irtype);
1386                 ir_node *copyb_mem = new_Proj(copyb, mode_M, pn_CopyB_M_regular);
1387                 set_store(copyb_mem);
1388         }
1389 }
1390
1391 static tarval *create_bitfield_mask(ir_mode *mode, int offset, int size)
1392 {
1393         tarval *all_one   = get_mode_all_one(mode);
1394         int     mode_size = get_mode_size_bits(mode);
1395
1396         assert(offset >= 0 && size >= 0);
1397         assert(offset + size <= mode_size);
1398         if(size == mode_size) {
1399                 return all_one;
1400         }
1401
1402         long    shiftr    = get_mode_size_bits(mode) - size;
1403         long    shiftl    = offset;
1404         tarval *tv_shiftr = new_tarval_from_long(shiftr, mode_uint);
1405         tarval *tv_shiftl = new_tarval_from_long(shiftl, mode_uint);
1406         tarval *mask0     = tarval_shr(all_one, tv_shiftr);
1407         tarval *mask1     = tarval_shl(mask0, tv_shiftl);
1408
1409         return mask1;
1410 }
1411
1412 static void bitfield_store_to_firm(const unary_expression_t *expression,
1413                                    ir_node *value)
1414 {
1415         expression_t *select = expression->value;
1416         assert(select->kind == EXPR_SELECT);
1417         type_t       *type   = select->base.type;
1418         assert(type->kind == TYPE_BITFIELD);
1419         ir_mode      *mode   = get_ir_mode(type->bitfield.base);
1420         ir_node      *addr   = expression_to_addr(select);
1421
1422         assert(get_irn_mode(value) == mode);
1423
1424         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
1425
1426         /* kill upper bits of value and shift to right position */
1427         ir_entity *entity       = select->select.compound_entry->v.entity;
1428         int        bitoffset    = get_entity_offset_bits_remainder(entity);
1429         ir_type   *entity_type  = get_entity_type(entity);
1430         int        bitsize      = get_mode_size_bits(get_type_mode(entity_type));
1431
1432         tarval  *mask            = create_bitfield_mask(mode, 0, bitsize);
1433         ir_node *mask_node       = new_d_Const(dbgi, mode, mask);
1434         ir_node *value_masked    = new_d_And(dbgi, value, mask_node, mode);
1435         tarval  *shiftl          = new_tarval_from_long(bitoffset, mode_uint);
1436         ir_node *shiftcount      = new_d_Const(dbgi, mode_uint, shiftl);
1437         ir_node *value_maskshift = new_d_Shl(dbgi, value_masked, shiftcount, mode);
1438
1439         /* load current value */
1440         ir_node  *mem             = get_store();
1441         ir_node  *load            = new_d_Load(dbgi, mem, addr, mode);
1442         ir_node  *load_mem        = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
1443         ir_node  *load_res        = new_d_Proj(dbgi, load, mode, pn_Load_res);
1444         tarval   *shift_mask      = create_bitfield_mask(mode, bitoffset, bitsize);
1445         tarval   *inv_mask        = tarval_not(shift_mask);
1446         ir_node  *inv_mask_node   = new_d_Const(dbgi, mode, inv_mask);
1447         ir_node  *load_res_masked = new_d_And(dbgi, load_res, inv_mask_node, mode);
1448
1449         /* construct new value and store */
1450         ir_node *new_val   = new_d_Or(dbgi, load_res_masked, value_maskshift, mode);
1451         ir_node *store     = new_d_Store(dbgi, load_mem, addr, new_val);
1452         ir_node *store_mem = new_d_Proj(dbgi, store, mode_M, pn_Store_M);
1453         set_store(store_mem);
1454 }
1455
1456 static void set_value_for_expression(const expression_t *expression,
1457                                      ir_node *value)
1458 {
1459         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
1460         value          = do_strict_conv(dbgi, value);
1461
1462         if(expression->kind == EXPR_REFERENCE) {
1463                 const reference_expression_t *ref = &expression->reference;
1464
1465                 declaration_t *declaration = ref->declaration;
1466                 assert(declaration->declaration_kind != DECLARATION_KIND_UNKNOWN);
1467                 if(declaration->declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE) {
1468                         set_value(declaration->v.value_number, value);
1469                         return;
1470                 }
1471         }
1472
1473         if(expression->kind == EXPR_UNARY_BITFIELD_EXTRACT) {
1474                 bitfield_store_to_firm(&expression->unary, value);
1475                 return;
1476         }
1477
1478         ir_node *addr = expression_to_addr(expression);
1479         type_t  *type = skip_typeref(expression->base.type);
1480         assign_value(dbgi, addr, type, value);
1481 }
1482
1483 static ir_node *create_conv(dbg_info *dbgi, ir_node *value, ir_mode *dest_mode)
1484 {
1485         ir_mode *value_mode = get_irn_mode(value);
1486
1487         if (value_mode == dest_mode || is_Bad(value))
1488                 return value;
1489
1490         if(dest_mode == mode_b) {
1491                 ir_node *zero = new_Const(value_mode, get_mode_null(value_mode));
1492                 ir_node *cmp  = new_d_Cmp(dbgi, value, zero);
1493                 ir_node *proj = new_d_Proj(dbgi, cmp, mode_b, pn_Cmp_Lg);
1494                 return proj;
1495         }
1496
1497         return new_d_Conv(dbgi, value, dest_mode);
1498 }
1499
1500 static ir_node *create_incdec(const unary_expression_t *expression)
1501 {
1502         dbg_info     *dbgi  = get_dbg_info(&expression->base.source_position);
1503         type_t       *type  = skip_typeref(expression->base.type);
1504         ir_mode      *mode  = get_ir_mode(type);
1505         expression_t *value = expression->value;
1506
1507         ir_node *value_node = expression_to_firm(value);
1508
1509         ir_node *offset;
1510         if(is_type_pointer(type)) {
1511                 pointer_type_t *pointer_type = &type->pointer;
1512                 unsigned        elem_size    = get_type_size(pointer_type->points_to);
1513                 offset = new_Const_long(mode_int, elem_size);
1514         } else {
1515                 assert(is_type_arithmetic(type));
1516                 offset = new_Const(mode, get_mode_one(mode));
1517         }
1518
1519         switch(expression->base.kind) {
1520         case EXPR_UNARY_POSTFIX_INCREMENT: {
1521                 ir_node *new_value = new_d_Add(dbgi, value_node, offset, mode);
1522                 set_value_for_expression(value, new_value);
1523                 return value_node;
1524         }
1525         case EXPR_UNARY_POSTFIX_DECREMENT: {
1526                 ir_node *new_value = new_d_Sub(dbgi, value_node, offset, mode);
1527                 set_value_for_expression(value, new_value);
1528                 return value_node;
1529         }
1530         case EXPR_UNARY_PREFIX_INCREMENT: {
1531                 ir_node *new_value = new_d_Add(dbgi, value_node, offset, mode);
1532                 set_value_for_expression(value, new_value);
1533                 return new_value;
1534         }
1535         case EXPR_UNARY_PREFIX_DECREMENT: {
1536                 ir_node *new_value = new_d_Sub(dbgi, value_node, offset, mode);
1537                 set_value_for_expression(value, new_value);
1538                 return new_value;
1539         }
1540         default:
1541                 panic("no incdec expr in create_incdec");
1542                 return NULL;
1543         }
1544 }
1545
1546 static bool is_local_variable(expression_t *expression)
1547 {
1548         if (expression->kind != EXPR_REFERENCE)
1549                 return false;
1550         reference_expression_t *ref_expr    = &expression->reference;
1551         declaration_t          *declaration = ref_expr->declaration;
1552         return declaration->declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE;
1553 }
1554
1555 static pn_Cmp get_pnc(const expression_kind_t kind)
1556 {
1557         switch(kind) {
1558         case EXPR_BINARY_EQUAL:         return pn_Cmp_Eq;
1559         case EXPR_BINARY_ISLESSGREATER: return pn_Cmp_Lg;
1560         case EXPR_BINARY_NOTEQUAL:      return pn_Cmp_Ne;
1561         case EXPR_BINARY_ISLESS:
1562         case EXPR_BINARY_LESS:          return pn_Cmp_Lt;
1563         case EXPR_BINARY_ISLESSEQUAL:
1564         case EXPR_BINARY_LESSEQUAL:     return pn_Cmp_Le;
1565         case EXPR_BINARY_ISGREATER:
1566         case EXPR_BINARY_GREATER:       return pn_Cmp_Gt;
1567         case EXPR_BINARY_ISGREATEREQUAL:
1568         case EXPR_BINARY_GREATEREQUAL:  return pn_Cmp_Ge;
1569         case EXPR_BINARY_ISUNORDERED:   return pn_Cmp_Uo;
1570
1571         default:
1572                 break;
1573         }
1574         panic("trying to get pn_Cmp from non-comparison binexpr type");
1575 }
1576
1577 /**
1578  * Handle the assume optimizer hint: check if a Confirm
1579  * node can be created.
1580  *
1581  * @param dbi    debug info
1582  * @param expr   the IL assume expression
1583  *
1584  * we support here only some simple cases:
1585  *  - var rel const
1586  *  - const rel val
1587  *  - var rel var
1588  */
1589 static ir_node *handle_assume_compare(dbg_info *dbi,
1590                                       const binary_expression_t *expression)
1591 {
1592         expression_t  *op1 = expression->left;
1593         expression_t  *op2 = expression->right;
1594         declaration_t *var2, *var = NULL;
1595         ir_node       *res = NULL;
1596         pn_Cmp         cmp_val;
1597
1598         cmp_val = get_pnc(expression->base.kind);
1599
1600         if (is_local_variable(op1) && is_local_variable(op2)) {
1601         var  = op1->reference.declaration;
1602             var2 = op2->reference.declaration;
1603
1604                 type_t  *const type = skip_typeref(var->type);
1605                 ir_mode *const mode = get_ir_mode(type);
1606
1607                 ir_node *const irn1 = get_value(var->v.value_number, mode);
1608                 ir_node *const irn2 = get_value(var2->v.value_number, mode);
1609
1610                 res = new_d_Confirm(dbi, irn2, irn1, get_inversed_pnc(cmp_val));
1611                 set_value(var2->v.value_number, res);
1612
1613                 res = new_d_Confirm(dbi, irn1, irn2, cmp_val);
1614                 set_value(var->v.value_number, res);
1615
1616                 return res;
1617         }
1618
1619         expression_t *con;
1620         if (is_local_variable(op1) && is_constant_expression(op2)) {
1621                 var = op1->reference.declaration;
1622                 con = op2;
1623         } else if (is_constant_expression(op1) && is_local_variable(op2)) {
1624                 cmp_val = get_inversed_pnc(cmp_val);
1625                 var = op2->reference.declaration;
1626                 con = op1;
1627         }
1628
1629         if (var != NULL) {
1630                 type_t  *const type = skip_typeref(var->type);
1631                 ir_mode *const mode = get_ir_mode(type);
1632
1633                 res = get_value(var->v.value_number, mode);
1634                 res = new_d_Confirm(dbi, res, expression_to_firm(con), cmp_val);
1635                 set_value(var->v.value_number, res);
1636         }
1637         return res;
1638 }
1639
1640 /**
1641  * Handle the assume optimizer hint.
1642  *
1643  * @param dbi    debug info
1644  * @param expr   the IL assume expression
1645  */
1646 static ir_node *handle_assume(dbg_info *dbi, const expression_t *expression) {
1647         switch(expression->kind) {
1648         case EXPR_BINARY_EQUAL:
1649         case EXPR_BINARY_NOTEQUAL:
1650         case EXPR_BINARY_LESS:
1651         case EXPR_BINARY_LESSEQUAL:
1652         case EXPR_BINARY_GREATER:
1653         case EXPR_BINARY_GREATEREQUAL:
1654                 return handle_assume_compare(dbi, &expression->binary);
1655         default:
1656                 return NULL;
1657         }
1658 }
1659
1660 static ir_node *bitfield_extract_to_firm(const unary_expression_t *expression)
1661 {
1662         expression_t *select = expression->value;
1663         assert(select->kind == EXPR_SELECT);
1664
1665         type_t   *type     = select->base.type;
1666         assert(type->kind == TYPE_BITFIELD);
1667         ir_mode  *mode     = get_ir_mode(type->bitfield.base);
1668         dbg_info *dbgi     = get_dbg_info(&expression->base.source_position);
1669         ir_node  *addr     = expression_to_addr(select);
1670         ir_node  *mem      = get_store();
1671         ir_node  *load     = new_d_Load(dbgi, mem, addr, mode);
1672         ir_node  *load_mem = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
1673         ir_node  *load_res = new_d_Proj(dbgi, load, mode, pn_Load_res);
1674
1675         load_res           = create_conv(dbgi, load_res, mode_int);
1676
1677         set_store(load_mem);
1678
1679         /* kill upper bits */
1680         ir_entity *entity       = select->select.compound_entry->v.entity;
1681         int        bitoffset    = get_entity_offset_bits_remainder(entity);
1682         ir_type   *entity_type  = get_entity_type(entity);
1683         int        bitsize      = get_mode_size_bits(get_type_mode(entity_type));
1684         long       shift_bitsl  = machine_size - bitoffset - bitsize;
1685         assert(shift_bitsl >= 0);
1686         tarval    *tvl          = new_tarval_from_long(shift_bitsl, mode_uint);
1687         ir_node   *countl       = new_d_Const(dbgi, mode_uint, tvl);
1688         ir_node   *shiftl       = new_d_Shl(dbgi, load_res, countl, mode_int);
1689
1690         long       shift_bitsr  = bitoffset + shift_bitsl;
1691         assert(shift_bitsr <= (long) machine_size);
1692         tarval    *tvr          = new_tarval_from_long(shift_bitsr, mode_uint);
1693         ir_node   *countr       = new_d_Const(dbgi, mode_uint, tvr);
1694         ir_node   *shiftr;
1695         if(mode_is_signed(mode)) {
1696                 shiftr = new_d_Shrs(dbgi, shiftl, countr, mode_int);
1697         } else {
1698                 shiftr = new_d_Shr(dbgi, shiftl, countr, mode_int);
1699         }
1700
1701         return create_conv(dbgi, shiftr, mode);
1702 }
1703
1704 static ir_node *unary_expression_to_firm(const unary_expression_t *expression)
1705 {
1706         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
1707         type_t   *type = skip_typeref(expression->base.type);
1708
1709         if(expression->base.kind == EXPR_UNARY_TAKE_ADDRESS)
1710                 return expression_to_addr(expression->value);
1711
1712         const expression_t *value = expression->value;
1713
1714         switch(expression->base.kind) {
1715         case EXPR_UNARY_NEGATE: {
1716                 ir_node *value_node = expression_to_firm(value);
1717                 ir_mode *mode = get_ir_mode(type);
1718                 return new_d_Minus(dbgi, value_node, mode);
1719         }
1720         case EXPR_UNARY_PLUS:
1721                 return expression_to_firm(value);
1722         case EXPR_UNARY_BITWISE_NEGATE: {
1723                 ir_node *value_node = expression_to_firm(value);
1724                 ir_mode *mode = get_ir_mode(type);
1725                 return new_d_Not(dbgi, value_node, mode);
1726         }
1727         case EXPR_UNARY_NOT: {
1728                 ir_node *value_node = expression_to_firm(value);
1729                 ir_mode *mode = get_ir_mode(type);
1730                 if(get_irn_mode(value_node) != mode_b) {
1731                         value_node = create_conv(dbgi, value_node, mode_b);
1732                 }
1733                 value_node = new_d_Not(dbgi, value_node, mode_b);
1734                 if(mode != mode_b) {
1735                         value_node = create_conv(dbgi, value_node, mode);
1736                 }
1737                 return value_node;
1738         }
1739         case EXPR_UNARY_DEREFERENCE: {
1740                 ir_node *value_node = expression_to_firm(value);
1741                 type_t  *value_type = skip_typeref(value->base.type);
1742                 ir_type *irtype     = get_ir_type(value_type);
1743                 assert(is_Pointer_type(irtype));
1744                 ir_type *points_to  = get_pointer_points_to_type(irtype);
1745                 return deref_address(points_to, value_node, dbgi);
1746         }
1747         case EXPR_UNARY_POSTFIX_INCREMENT:
1748         case EXPR_UNARY_POSTFIX_DECREMENT:
1749         case EXPR_UNARY_PREFIX_INCREMENT:
1750         case EXPR_UNARY_PREFIX_DECREMENT:
1751                 return create_incdec(expression);
1752         case EXPR_UNARY_CAST: {
1753                 ir_node *value_node = expression_to_firm(value);
1754                 if(is_type_scalar(type)) {
1755                         ir_mode *mode = get_ir_mode(type);
1756                         ir_node *node = create_conv(dbgi, value_node, mode);
1757                         node = do_strict_conv(dbgi, node);
1758                         return node;
1759                 } else {
1760                         return value_node;
1761                 }
1762         }
1763         case EXPR_UNARY_CAST_IMPLICIT: {
1764                 ir_node *value_node = expression_to_firm(value);
1765                 if(is_type_scalar(type)) {
1766                         ir_mode *mode = get_ir_mode(type);
1767                         return create_conv(dbgi, value_node, mode);
1768                 } else {
1769                         return value_node;
1770                 }
1771         }
1772         case EXPR_UNARY_ASSUME:
1773                 if(firm_opt.confirm)
1774                         return handle_assume(dbgi, value);
1775                 else
1776                         return NULL;
1777         case EXPR_UNARY_BITFIELD_EXTRACT:
1778                 return bitfield_extract_to_firm(expression);
1779
1780         default:
1781                 break;
1782         }
1783         panic("invalid UNEXPR type found");
1784 }
1785
1786 static ir_node *create_lazy_op(const binary_expression_t *expression)
1787 {
1788         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
1789         type_t   *type = expression->base.type;
1790         ir_mode  *mode = get_ir_mode(type);
1791
1792         if(is_constant_expression(expression->left)) {
1793                 long val = fold_constant(expression->left);
1794                 expression_kind_t ekind = expression->base.kind;
1795                 if((ekind == EXPR_BINARY_LOGICAL_AND && val != 0)
1796                                 || (ekind == EXPR_BINARY_LOGICAL_OR && val == 0)) {
1797                         return expression_to_firm(expression->right);
1798                 } else {
1799                         assert((ekind == EXPR_BINARY_LOGICAL_AND && val == 0)
1800                                         || (ekind == EXPR_BINARY_LOGICAL_OR && val != 0));
1801                         return new_Const(mode, get_mode_one(mode));
1802                 }
1803         }
1804
1805         ir_node *cur_block = get_cur_block();
1806
1807         ir_node *one_block = new_immBlock();
1808         ir_node *one       = new_Const(mode, get_mode_one(mode));
1809         ir_node *jmp_one   = new_d_Jmp(dbgi);
1810
1811         ir_node *zero_block = new_immBlock();
1812         ir_node *zero       = new_Const(mode, get_mode_null(mode));
1813         ir_node *jmp_zero   = new_d_Jmp(dbgi);
1814
1815         set_cur_block(cur_block);
1816         create_condition_evaluation((const expression_t*) expression,
1817                                     one_block, zero_block);
1818         mature_immBlock(one_block);
1819         mature_immBlock(zero_block);
1820
1821         ir_node *common_block = new_immBlock();
1822         add_immBlock_pred(common_block, jmp_one);
1823         add_immBlock_pred(common_block, jmp_zero);
1824         mature_immBlock(common_block);
1825
1826         ir_node *in[2] = { one, zero };
1827         ir_node *val   = new_d_Phi(dbgi, 2, in, mode);
1828
1829         return val;
1830 }
1831
1832 typedef ir_node * (*create_arithmetic_func)(dbg_info *dbgi, ir_node *left,
1833                                             ir_node *right, ir_mode *mode);
1834
1835 static ir_node *create_arithmetic_binop(const binary_expression_t *expression,
1836                                         create_arithmetic_func func)
1837 {
1838         dbg_info *dbgi  = get_dbg_info(&expression->base.source_position);
1839         ir_node  *left  = expression_to_firm(expression->left);
1840         ir_node  *right = expression_to_firm(expression->right);
1841         type_t   *type  = expression->right->base.type;
1842         /* be careful with the modes, because in arithmetic assign nodes only
1843          * the right operand has the mode of the arithmetic already */
1844         ir_mode  *mode  = get_ir_mode(type);
1845         left            = create_conv(dbgi, left, mode);
1846         ir_node  *res   = func(dbgi, left, right, mode);
1847
1848         return res;
1849 }
1850
1851 static ir_node *pointer_arithmetic(ir_node  *const pointer,
1852                                    ir_node  *      integer,
1853                                    type_t   *const type,
1854                                    dbg_info *const dbgi,
1855                                    const create_arithmetic_func func)
1856 {
1857         pointer_type_t *const pointer_type = &type->pointer;
1858         type_t         *const points_to    = pointer_type->points_to;
1859         const unsigned        elem_size    = get_type_size(points_to);
1860
1861         assert(elem_size >= 1);
1862         if (elem_size > 1) {
1863                 integer             = create_conv(dbgi, integer, mode_int);
1864                 ir_node *const cnst = new_Const_long(mode_int, (long)elem_size);
1865                 ir_node *const mul  = new_d_Mul(dbgi, integer, cnst, mode_int);
1866                 integer = mul;
1867         }
1868
1869         ir_mode *const mode = get_ir_mode(type);
1870         return func(dbgi, pointer, integer, mode);
1871 }
1872
1873 static ir_node *create_arithmetic_assign_binop(
1874                 const binary_expression_t *expression, create_arithmetic_func func)
1875 {
1876         dbg_info *const dbgi = get_dbg_info(&expression->base.source_position);
1877         type_t   *const type = skip_typeref(expression->base.type);
1878         ir_node  *value;
1879
1880         if (is_type_pointer(type)) {
1881                 ir_node *const pointer = expression_to_firm(expression->left);
1882                 ir_node *      integer = expression_to_firm(expression->right);
1883                 value = pointer_arithmetic(pointer, integer, type, dbgi, func);
1884         } else {
1885                 value = create_arithmetic_binop(expression, func);
1886         }
1887
1888         ir_mode *const mode = get_ir_mode(type);
1889         value = create_conv(dbgi, value, mode);
1890         set_value_for_expression(expression->left, value);
1891
1892         return value;
1893 }
1894
1895 static ir_node *create_add(const binary_expression_t *expression)
1896 {
1897         dbg_info *dbgi  = get_dbg_info(&expression->base.source_position);
1898         ir_node  *left  = expression_to_firm(expression->left);
1899         ir_node  *right = expression_to_firm(expression->right);
1900         type_t   *type  = expression->base.type;
1901
1902         expression_t *expr_left  = expression->left;
1903         expression_t *expr_right = expression->right;
1904         type_t       *type_left  = skip_typeref(expr_left->base.type);
1905         type_t       *type_right = skip_typeref(expr_right->base.type);
1906
1907         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
1908                 ir_mode *const mode = get_ir_mode(type);
1909                 return new_d_Add(dbgi, left, right, mode);
1910         }
1911
1912         if (is_type_pointer(type_left)) {
1913                 return pointer_arithmetic(left, right, type, dbgi, new_d_Add);
1914         } else {
1915                 assert(is_type_pointer(type_right));
1916                 return pointer_arithmetic(right, left, type, dbgi, new_d_Add);
1917         }
1918 }
1919
1920 static ir_node *create_sub(const binary_expression_t *expression)
1921 {
1922         dbg_info *const dbgi  = get_dbg_info(&expression->base.source_position);
1923         expression_t *const expr_left  = expression->left;
1924         expression_t *const expr_right = expression->right;
1925         ir_node      *const left       = expression_to_firm(expr_left);
1926         ir_node      *const right      = expression_to_firm(expr_right);
1927         type_t       *const type       = expression->base.type;
1928         type_t       *const type_left  = skip_typeref(expr_left->base.type);
1929         type_t       *const type_right = skip_typeref(expr_right->base.type);
1930
1931         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
1932                 ir_mode *const mode = get_ir_mode(type);
1933                 return new_d_Sub(dbgi, left, right, mode);
1934         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
1935                 const pointer_type_t *const ptr_type = &type_left->pointer;
1936                 const unsigned elem_size             = get_type_size(ptr_type->points_to);
1937                 ir_mode *const mode   = get_ir_mode(type);
1938                 ir_node *const sub    = new_d_Sub(dbgi, left, right, mode);
1939                 ir_node *const cnst   = new_Const_long(mode_int, (long)elem_size);
1940                 ir_node *const no_mem = new_NoMem();
1941                 ir_node *const div    = new_d_Div(dbgi, no_mem, sub, cnst, mode,
1942                                                   op_pin_state_floats);
1943                 return new_d_Proj(dbgi, div, mode, pn_Div_res);
1944         }
1945
1946         assert(is_type_pointer(type_left));
1947         return pointer_arithmetic(left, right, type_left, dbgi, new_d_Sub);
1948 }
1949
1950 static ir_node *create_shift(const binary_expression_t *expression)
1951 {
1952         dbg_info *dbgi  = get_dbg_info(&expression->base.source_position);
1953         ir_node  *left  = expression_to_firm(expression->left);
1954         ir_node  *right = expression_to_firm(expression->right);
1955         type_t   *type  = expression->base.type;
1956         ir_mode  *mode  = get_ir_mode(type);
1957
1958         /* firm always wants the shift count to be unsigned */
1959         right = create_conv(dbgi, right, mode_uint);
1960
1961         ir_node *res;
1962
1963         switch(expression->base.kind) {
1964         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
1965         case EXPR_BINARY_SHIFTLEFT:
1966                 res = new_d_Shl(dbgi, left, right, mode);
1967                 break;
1968         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
1969         case EXPR_BINARY_SHIFTRIGHT: {
1970                  expression_t *expr_left = expression->left;
1971                  type_t       *type_left = skip_typeref(expr_left->base.type);
1972
1973                  if(is_type_signed(type_left)) {
1974                         res = new_d_Shrs(dbgi, left, right, mode);
1975                  } else {
1976                          res = new_d_Shr(dbgi, left, right, mode);
1977                  }
1978                  break;
1979         }
1980         default:
1981                 panic("create shift op called for non-shift op");
1982         }
1983
1984         return res;
1985 }
1986
1987
1988 static ir_node *create_divmod(const binary_expression_t *expression)
1989 {
1990         dbg_info *dbgi  = get_dbg_info(&expression->base.source_position);
1991         ir_node  *left  = expression_to_firm(expression->left);
1992         ir_node  *right = expression_to_firm(expression->right);
1993         ir_node  *pin   = new_Pin(new_NoMem());
1994         /* be careful with the modes, because in arithmetic assign nodes only
1995          * the right operand has the mode of the arithmetic already */
1996         type_t   *type  = expression->right->base.type;
1997         ir_mode  *mode  = get_ir_mode(type);
1998         left            = create_conv(dbgi, left, mode);
1999         ir_node  *op;
2000         ir_node  *res;
2001
2002         switch (expression->base.kind) {
2003         case EXPR_BINARY_DIV:
2004         case EXPR_BINARY_DIV_ASSIGN:
2005                 if(mode_is_float(mode)) {
2006                         op  = new_d_Quot(dbgi, pin, left, right, mode, op_pin_state_floats);
2007                         res = new_d_Proj(dbgi, op, mode, pn_Quot_res);
2008                 } else {
2009                         op  = new_d_Div(dbgi, pin, left, right, mode, op_pin_state_floats);
2010                         res = new_d_Proj(dbgi, op, mode, pn_Div_res);
2011                 }
2012                 break;
2013
2014         case EXPR_BINARY_MOD:
2015         case EXPR_BINARY_MOD_ASSIGN:
2016                 assert(!mode_is_float(mode));
2017                 op  = new_d_Mod(dbgi, pin, left, right, mode, op_pin_state_floats);
2018                 res = new_d_Proj(dbgi, op, mode, pn_Mod_res);
2019                 break;
2020
2021         default: panic("unexpected binary expression type in create_divmod()");
2022         }
2023
2024         return res;
2025 }
2026
2027 static ir_node *create_arithmetic_assign_divmod(
2028                 const binary_expression_t *expression)
2029 {
2030         ir_node  *      value = create_divmod(expression);
2031         dbg_info *const dbgi  = get_dbg_info(&expression->base.source_position);
2032         type_t   *const type  = expression->base.type;
2033         ir_mode  *const mode  = get_ir_mode(type);
2034
2035         assert(type->kind != TYPE_POINTER);
2036
2037         value = create_conv(dbgi, value, mode);
2038         set_value_for_expression(expression->left, value);
2039
2040         return value;
2041 }
2042
2043 static ir_node *create_arithmetic_assign_shift(
2044                 const binary_expression_t *expression)
2045 {
2046         ir_node  *      value = create_shift(expression);
2047         dbg_info *const dbgi  = get_dbg_info(&expression->base.source_position);
2048         type_t   *const type  = expression->base.type;
2049         ir_mode  *const mode  = get_ir_mode(type);
2050
2051         value = create_conv(dbgi, value, mode);
2052         set_value_for_expression(expression->left, value);
2053
2054         return value;
2055 }
2056
2057 static ir_node *binary_expression_to_firm(const binary_expression_t *expression)
2058 {
2059         expression_kind_t kind = expression->base.kind;
2060
2061         switch(kind) {
2062         case EXPR_BINARY_EQUAL:
2063         case EXPR_BINARY_NOTEQUAL:
2064         case EXPR_BINARY_LESS:
2065         case EXPR_BINARY_LESSEQUAL:
2066         case EXPR_BINARY_GREATER:
2067         case EXPR_BINARY_GREATEREQUAL:
2068         case EXPR_BINARY_ISGREATER:
2069         case EXPR_BINARY_ISGREATEREQUAL:
2070         case EXPR_BINARY_ISLESS:
2071         case EXPR_BINARY_ISLESSEQUAL:
2072         case EXPR_BINARY_ISLESSGREATER:
2073         case EXPR_BINARY_ISUNORDERED: {
2074                 dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
2075                 ir_node *left  = expression_to_firm(expression->left);
2076                 ir_node *right = expression_to_firm(expression->right);
2077                 ir_node *cmp   = new_d_Cmp(dbgi, left, right);
2078                 long     pnc   = get_pnc(kind);
2079                 ir_node *proj  = new_d_Proj(dbgi, cmp, mode_b, pnc);
2080                 return proj;
2081         }
2082         case EXPR_BINARY_ASSIGN: {
2083                 ir_node *right = expression_to_firm(expression->right);
2084                 set_value_for_expression(expression->left, right);
2085
2086                 return right;
2087         }
2088         case EXPR_BINARY_ADD:
2089                 return create_add(expression);
2090         case EXPR_BINARY_SUB:
2091                 return create_sub(expression);
2092         case EXPR_BINARY_MUL:
2093                 return create_arithmetic_binop(expression, new_d_Mul);
2094         case EXPR_BINARY_BITWISE_AND:
2095                 return create_arithmetic_binop(expression, new_d_And);
2096         case EXPR_BINARY_BITWISE_OR:
2097                 return create_arithmetic_binop(expression, new_d_Or);
2098         case EXPR_BINARY_BITWISE_XOR:
2099                 return create_arithmetic_binop(expression, new_d_Eor);
2100         case EXPR_BINARY_SHIFTLEFT:
2101         case EXPR_BINARY_SHIFTRIGHT:
2102                 return create_shift(expression);
2103         case EXPR_BINARY_DIV:
2104         case EXPR_BINARY_MOD:
2105                 return create_divmod(expression);
2106         case EXPR_BINARY_LOGICAL_AND:
2107         case EXPR_BINARY_LOGICAL_OR:
2108                 return create_lazy_op(expression);
2109         case EXPR_BINARY_COMMA:
2110                 expression_to_firm(expression->left);
2111                 return expression_to_firm(expression->right);
2112         case EXPR_BINARY_ADD_ASSIGN:
2113                 return create_arithmetic_assign_binop(expression, new_d_Add);
2114         case EXPR_BINARY_SUB_ASSIGN:
2115                 return create_arithmetic_assign_binop(expression, new_d_Sub);
2116         case EXPR_BINARY_MUL_ASSIGN:
2117                 return create_arithmetic_assign_binop(expression, new_d_Mul);
2118         case EXPR_BINARY_DIV_ASSIGN:
2119                 return create_arithmetic_assign_divmod(expression);
2120         case EXPR_BINARY_BITWISE_AND_ASSIGN:
2121                 return create_arithmetic_assign_binop(expression, new_d_And);
2122         case EXPR_BINARY_BITWISE_OR_ASSIGN:
2123                 return create_arithmetic_assign_binop(expression, new_d_Or);
2124         case EXPR_BINARY_BITWISE_XOR_ASSIGN:
2125                 return create_arithmetic_assign_binop(expression, new_d_Eor);
2126         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
2127         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
2128                 return create_arithmetic_assign_shift(expression);
2129         case EXPR_BINARY_BUILTIN_EXPECT:
2130                 return expression_to_firm(expression->left);
2131         default:
2132                 panic("TODO binexpr type");
2133         }
2134 }
2135
2136 static ir_node *array_access_addr(const array_access_expression_t *expression)
2137 {
2138         dbg_info *dbgi      = get_dbg_info(&expression->base.source_position);
2139         ir_node  *base_addr = expression_to_firm(expression->array_ref);
2140         ir_node  *offset    = expression_to_firm(expression->index);
2141         offset              = create_conv(dbgi, offset, mode_uint);
2142
2143         type_t *ref_type = skip_typeref(expression->array_ref->base.type);
2144         assert(is_type_pointer(ref_type));
2145         pointer_type_t *pointer_type = &ref_type->pointer;
2146
2147         unsigned elem_size       = get_type_size(pointer_type->points_to);
2148         ir_node *elem_size_const = new_Const_long(mode_uint, elem_size);
2149         ir_node *real_offset     = new_d_Mul(dbgi, offset, elem_size_const,
2150                                              mode_uint);
2151         ir_node *result          = new_d_Add(dbgi, base_addr, real_offset, mode_P_data);
2152
2153         return result;
2154 }
2155
2156 static ir_node *array_access_to_firm(
2157                 const array_access_expression_t *expression)
2158 {
2159         dbg_info *dbgi   = get_dbg_info(&expression->base.source_position);
2160         ir_node  *addr   = array_access_addr(expression);
2161         type_t   *type   = revert_automatic_type_conversion(
2162                         (const expression_t*) expression);
2163         type             = skip_typeref(type);
2164         ir_type  *irtype = get_ir_type(type);
2165
2166         return deref_address(irtype, addr, dbgi);
2167 }
2168
2169 /**
2170  * Transform a sizeof expression into Firm code.
2171  */
2172 static ir_node *sizeof_to_firm(const typeprop_expression_t *expression)
2173 {
2174         type_t *type = expression->type;
2175         if(type == NULL) {
2176                 type = expression->tp_expression->base.type;
2177                 assert(type != NULL);
2178         }
2179
2180         ir_mode *const mode = get_ir_mode(expression->base.type);
2181         symconst_symbol sym;
2182         sym.type_p = get_ir_type(type);
2183         return new_SymConst(mode, sym, symconst_type_size);
2184 }
2185
2186 /**
2187  * Transform an alignof expression into Firm code.
2188  */
2189 static ir_node *alignof_to_firm(const typeprop_expression_t *expression)
2190 {
2191         type_t *type = expression->type;
2192         if(type == NULL) {
2193                 /* beware: if expression is a variable reference, return the
2194                    alignment of the variable. */
2195                 const expression_t *tp_expression = expression->tp_expression;
2196                 const declaration_t *declaration = expr_is_variable(tp_expression);
2197                 if (declaration != NULL) {
2198                         /* TODO: get the alignment of this variable. */
2199                 }
2200                 type = tp_expression->base.type;
2201                 assert(type != NULL);
2202         }
2203
2204         ir_mode *const mode = get_ir_mode(expression->base.type);
2205         symconst_symbol sym;
2206         sym.type_p = get_ir_type(type);
2207         return new_SymConst(mode, sym, symconst_type_align);
2208 }
2209
2210 static long fold_constant(const expression_t *expression)
2211 {
2212         assert(is_constant_expression(expression));
2213
2214         ir_graph *old_current_ir_graph = current_ir_graph;
2215         if(current_ir_graph == NULL) {
2216                 current_ir_graph = get_const_code_irg();
2217         }
2218
2219         ir_node *cnst = expression_to_firm(expression);
2220         current_ir_graph = old_current_ir_graph;
2221
2222         if(!is_Const(cnst)) {
2223                 panic("couldn't fold constant\n");
2224         }
2225
2226         tarval *tv = get_Const_tarval(cnst);
2227         if(!tarval_is_long(tv)) {
2228                 panic("result of constant folding is not integer\n");
2229         }
2230
2231         return get_tarval_long(tv);
2232 }
2233
2234 static ir_node *conditional_to_firm(const conditional_expression_t *expression)
2235 {
2236         dbg_info *const dbgi = get_dbg_info(&expression->base.source_position);
2237
2238         /* first try to fold a constant condition */
2239         if(is_constant_expression(expression->condition)) {
2240                 long val = fold_constant(expression->condition);
2241                 if(val) {
2242                         return expression_to_firm(expression->true_expression);
2243                 } else {
2244                         return expression_to_firm(expression->false_expression);
2245                 }
2246         }
2247
2248         ir_node *cur_block   = get_cur_block();
2249
2250         /* create the true block */
2251         ir_node *true_block  = new_immBlock();
2252
2253         ir_node *true_val = expression_to_firm(expression->true_expression);
2254         ir_node *true_jmp = new_Jmp();
2255
2256         /* create the false block */
2257         ir_node *false_block = new_immBlock();
2258
2259         ir_node *false_val = expression_to_firm(expression->false_expression);
2260         ir_node *false_jmp = new_Jmp();
2261
2262         /* create the condition evaluation */
2263         set_cur_block(cur_block);
2264         create_condition_evaluation(expression->condition, true_block, false_block);
2265         mature_immBlock(true_block);
2266         mature_immBlock(false_block);
2267
2268         /* create the common block */
2269         ir_node *common_block = new_immBlock();
2270         add_immBlock_pred(common_block, true_jmp);
2271         add_immBlock_pred(common_block, false_jmp);
2272         mature_immBlock(common_block);
2273
2274         /* TODO improve static semantics, so either both or no values are NULL */
2275         if (true_val == NULL || false_val == NULL)
2276                 return NULL;
2277
2278         ir_node *in[2] = { true_val, false_val };
2279         ir_mode *mode  = get_irn_mode(true_val);
2280         assert(get_irn_mode(false_val) == mode);
2281         ir_node *val   = new_d_Phi(dbgi, 2, in, mode);
2282
2283         return val;
2284 }
2285
2286 static ir_node *select_addr(const select_expression_t *expression)
2287 {
2288         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
2289
2290         ir_node *compound_addr = expression_to_firm(expression->compound);
2291
2292         declaration_t *entry = expression->compound_entry;
2293         assert(entry->declaration_kind == DECLARATION_KIND_COMPOUND_MEMBER);
2294         ir_entity     *entity = entry->v.entity;
2295
2296         assert(entity != NULL);
2297
2298         ir_node *sel = new_d_simpleSel(dbgi, new_NoMem(), compound_addr, entity);
2299
2300         return sel;
2301 }
2302
2303 static ir_node *select_to_firm(const select_expression_t *expression)
2304 {
2305         dbg_info *dbgi   = get_dbg_info(&expression->base.source_position);
2306         ir_node  *addr   = select_addr(expression);
2307         type_t   *type   = revert_automatic_type_conversion(
2308                         (const expression_t*) expression);
2309         type             = skip_typeref(type);
2310         ir_type  *irtype = get_ir_type(type);
2311
2312         return deref_address(irtype, addr, dbgi);
2313 }
2314
2315 /* Values returned by __builtin_classify_type. */
2316 typedef enum gcc_type_class
2317 {
2318         no_type_class = -1,
2319         void_type_class,
2320         integer_type_class,
2321         char_type_class,
2322         enumeral_type_class,
2323         boolean_type_class,
2324         pointer_type_class,
2325         reference_type_class,
2326         offset_type_class,
2327         real_type_class,
2328         complex_type_class,
2329         function_type_class,
2330         method_type_class,
2331         record_type_class,
2332         union_type_class,
2333         array_type_class,
2334         string_type_class,
2335         set_type_class,
2336         file_type_class,
2337         lang_type_class
2338 } gcc_type_class;
2339
2340 static ir_node *classify_type_to_firm(const classify_type_expression_t *const expr)
2341 {
2342         const type_t *const type = expr->type_expression->base.type;
2343
2344         gcc_type_class tc;
2345         switch (type->kind)
2346         {
2347                 case TYPE_ATOMIC: {
2348                         const atomic_type_t *const atomic_type = &type->atomic;
2349                         switch (atomic_type->akind) {
2350                                 /* should not be reached */
2351                                 case ATOMIC_TYPE_INVALID:
2352                                         tc = no_type_class;
2353                                         break;
2354
2355                                 /* gcc cannot do that */
2356                                 case ATOMIC_TYPE_VOID:
2357                                         tc = void_type_class;
2358                                         break;
2359
2360                                 case ATOMIC_TYPE_CHAR:      /* gcc handles this as integer */
2361                                 case ATOMIC_TYPE_SCHAR:     /* gcc handles this as integer */
2362                                 case ATOMIC_TYPE_UCHAR:     /* gcc handles this as integer */
2363                                 case ATOMIC_TYPE_SHORT:
2364                                 case ATOMIC_TYPE_USHORT:
2365                                 case ATOMIC_TYPE_INT:
2366                                 case ATOMIC_TYPE_UINT:
2367                                 case ATOMIC_TYPE_LONG:
2368                                 case ATOMIC_TYPE_ULONG:
2369                                 case ATOMIC_TYPE_LONGLONG:
2370                                 case ATOMIC_TYPE_ULONGLONG:
2371                                 case ATOMIC_TYPE_BOOL:      /* gcc handles this as integer */
2372                                         tc = integer_type_class;
2373                                         break;
2374
2375                                 case ATOMIC_TYPE_FLOAT:
2376                                 case ATOMIC_TYPE_DOUBLE:
2377                                 case ATOMIC_TYPE_LONG_DOUBLE:
2378                                         tc = real_type_class;
2379                                         break;
2380
2381 #ifdef PROVIDE_COMPLEX
2382                                 case ATOMIC_TYPE_FLOAT_COMPLEX:
2383                                 case ATOMIC_TYPE_DOUBLE_COMPLEX:
2384                                 case ATOMIC_TYPE_LONG_DOUBLE_COMPLEX:
2385                                         tc = complex_type_class;
2386                                         break;
2387                                 case ATOMIC_TYPE_FLOAT_IMAGINARY:
2388                                 case ATOMIC_TYPE_DOUBLE_IMAGINARY:
2389                                 case ATOMIC_TYPE_LONG_DOUBLE_IMAGINARY:
2390                                         tc = complex_type_class;
2391                                         break;
2392 #endif
2393
2394                                 default:
2395                                         panic("Unimplemented case in classify_type_to_firm().");
2396                         }
2397                         break;
2398                 }
2399
2400                 case TYPE_ARRAY:           /* gcc handles this as pointer */
2401                 case TYPE_FUNCTION:        /* gcc handles this as pointer */
2402                 case TYPE_POINTER:         tc = pointer_type_class; break;
2403                 case TYPE_COMPOUND_STRUCT: tc = record_type_class;  break;
2404                 case TYPE_COMPOUND_UNION:  tc = union_type_class;   break;
2405
2406                 /* gcc handles this as integer */
2407                 case TYPE_ENUM:            tc = integer_type_class; break;
2408
2409                 default:
2410                         panic("Unimplemented case in classify_type_to_firm().");
2411         }
2412
2413         dbg_info *const dbgi = get_dbg_info(&expr->base.source_position);
2414         ir_mode  *const mode = mode_int;
2415         tarval   *const tv   = new_tarval_from_long(tc, mode);
2416         return new_d_Const(dbgi, mode, tv);
2417 }
2418
2419 static ir_node *function_name_to_firm(
2420                 const string_literal_expression_t *const expr)
2421 {
2422         if (current_function_name == NULL) {
2423                 const source_position_t *const src_pos = &expr->base.source_position;
2424                 const char *const name = current_function_decl->symbol->string;
2425                 const string_t string = { name, strlen(name) + 1 };
2426                 current_function_name = string_to_firm(src_pos, "__func__", &string);
2427         }
2428
2429         return current_function_name;
2430 }
2431
2432 static ir_node *statement_expression_to_firm(const statement_expression_t *expr)
2433 {
2434         statement_t *statement = expr->statement;
2435
2436         assert(statement->kind == STATEMENT_COMPOUND);
2437         return compound_statement_to_firm(&statement->compound);
2438 }
2439
2440 static ir_node *va_start_expression_to_firm(
2441         const va_start_expression_t *const expr)
2442 {
2443         ir_type   *const method_type = get_ir_type(current_function_decl->type);
2444         int        const n           = get_method_n_params(method_type) - 1;
2445         ir_entity *const parm_ent    = get_method_value_param_ent(method_type, n);
2446         ir_node   *const arg_base    = get_irg_value_param_base(current_ir_graph);
2447         dbg_info  *const dbgi        = get_dbg_info(&expr->base.source_position);
2448         ir_node   *const no_mem      = new_NoMem();
2449         ir_node   *const arg_sel     =
2450                 new_d_simpleSel(dbgi, no_mem, arg_base, parm_ent);
2451
2452         size_t     const parm_size   = get_type_size(expr->parameter->type);
2453         ir_node   *const cnst        = new_Const_long(mode_uint, parm_size);
2454         ir_node   *const add         = new_d_Add(dbgi, arg_sel, cnst, mode_P_data);
2455         set_value_for_expression(expr->ap, add);
2456
2457         return NULL;
2458 }
2459
2460 static ir_node *va_arg_expression_to_firm(const va_arg_expression_t *const expr)
2461 {
2462         ir_type  *const irtype = get_ir_type(expr->base.type);
2463         ir_node  *const ap     = expression_to_firm(expr->ap);
2464         dbg_info *const dbgi   = get_dbg_info(&expr->base.source_position);
2465         ir_node  *const res    = deref_address(irtype, ap, dbgi);
2466
2467         size_t    const parm_size = get_type_size(expr->base.type);
2468         ir_node  *const cnst      = new_Const_long(mode_uint, parm_size);
2469         ir_node  *const add       = new_d_Add(dbgi, ap, cnst, mode_P_data);
2470         set_value_for_expression(expr->ap, add);
2471
2472         return res;
2473 }
2474
2475 static ir_node *dereference_addr(const unary_expression_t *const expression)
2476 {
2477         assert(expression->base.kind == EXPR_UNARY_DEREFERENCE);
2478         return expression_to_firm(expression->value);
2479 }
2480
2481 static ir_node *expression_to_addr(const expression_t *expression)
2482 {
2483         switch(expression->kind) {
2484         case EXPR_REFERENCE:
2485                 return reference_addr(&expression->reference);
2486         case EXPR_ARRAY_ACCESS:
2487                 return array_access_addr(&expression->array_access);
2488         case EXPR_SELECT:
2489                 return select_addr(&expression->select);
2490         case EXPR_CALL:
2491                 return call_expression_to_firm(&expression->call);
2492         case EXPR_UNARY_DEREFERENCE: {
2493                 return dereference_addr(&expression->unary);
2494         }
2495         default:
2496                 break;
2497         }
2498         panic("trying to get address of non-lvalue");
2499 }
2500
2501 static ir_node *builtin_constant_to_firm(
2502                 const builtin_constant_expression_t *expression)
2503 {
2504         ir_mode *mode = get_ir_mode(expression->base.type);
2505         long     v;
2506
2507         if (is_constant_expression(expression->value)) {
2508                 v = 1;
2509         } else {
2510                 v = 0;
2511         }
2512         return new_Const_long(mode, v);
2513 }
2514
2515 static ir_node *builtin_prefetch_to_firm(
2516                 const builtin_prefetch_expression_t *expression)
2517 {
2518         ir_node *adr = expression_to_firm(expression->adr);
2519         /* no Firm support for prefetch yet */
2520         (void) adr;
2521         return NULL;
2522 }
2523
2524 static ir_node *_expression_to_firm(const expression_t *expression)
2525 {
2526         switch(expression->kind) {
2527         case EXPR_CONST:
2528                 return const_to_firm(&expression->conste);
2529         case EXPR_STRING_LITERAL:
2530                 return string_literal_to_firm(&expression->string);
2531         case EXPR_WIDE_STRING_LITERAL:
2532                 return wide_string_literal_to_firm(&expression->wide_string);
2533         case EXPR_REFERENCE:
2534                 return reference_expression_to_firm(&expression->reference);
2535         case EXPR_CALL:
2536                 return call_expression_to_firm(&expression->call);
2537         EXPR_UNARY_CASES
2538                 return unary_expression_to_firm(&expression->unary);
2539         EXPR_BINARY_CASES
2540                 return binary_expression_to_firm(&expression->binary);
2541         case EXPR_ARRAY_ACCESS:
2542                 return array_access_to_firm(&expression->array_access);
2543         case EXPR_SIZEOF:
2544                 return sizeof_to_firm(&expression->typeprop);
2545         case EXPR_ALIGNOF:
2546                 return alignof_to_firm(&expression->typeprop);
2547         case EXPR_CONDITIONAL:
2548                 return conditional_to_firm(&expression->conditional);
2549         case EXPR_SELECT:
2550                 return select_to_firm(&expression->select);
2551         case EXPR_CLASSIFY_TYPE:
2552                 return classify_type_to_firm(&expression->classify_type);
2553         case EXPR_FUNCTION:
2554         case EXPR_PRETTY_FUNCTION:
2555                 return function_name_to_firm(&expression->string);
2556         case EXPR_STATEMENT:
2557                 return statement_expression_to_firm(&expression->statement);
2558         case EXPR_VA_START:
2559                 return va_start_expression_to_firm(&expression->va_starte);
2560         case EXPR_VA_ARG:
2561                 return va_arg_expression_to_firm(&expression->va_arge);
2562         case EXPR_OFFSETOF:
2563         case EXPR_BUILTIN_SYMBOL:
2564                 panic("unimplemented expression found");
2565         case EXPR_BUILTIN_CONSTANT_P:
2566                 return builtin_constant_to_firm(&expression->builtin_constant);
2567         case EXPR_BUILTIN_PREFETCH:
2568                 return builtin_prefetch_to_firm(&expression->builtin_prefetch);
2569
2570         case EXPR_UNKNOWN:
2571         case EXPR_INVALID:
2572                 break;
2573         }
2574         panic("invalid expression found");
2575 }
2576
2577 static ir_node *expression_to_firm(const expression_t *expression)
2578 {
2579         ir_node *res = _expression_to_firm(expression);
2580
2581         if(res != NULL && get_irn_mode(res) == mode_b) {
2582                 ir_mode *mode = get_ir_mode(expression->base.type);
2583                 res           = create_conv(NULL, res, mode);
2584         }
2585
2586         return res;
2587 }
2588
2589 static ir_node *expression_to_modeb(const expression_t *expression)
2590 {
2591         ir_node *res = _expression_to_firm(expression);
2592         res          = create_conv(NULL, res, mode_b);
2593
2594         return res;
2595 }
2596
2597 /**
2598  * create a short-circuit expression evaluation that tries to construct
2599  * efficient control flow structures for &&, || and ! expressions
2600  */
2601 static void create_condition_evaluation(const expression_t *expression,
2602                                         ir_node *true_block,
2603                                         ir_node *false_block)
2604 {
2605         switch(expression->kind) {
2606         case EXPR_UNARY_NOT: {
2607                 const unary_expression_t *unary_expression = &expression->unary;
2608                 create_condition_evaluation(unary_expression->value, false_block,
2609                                             true_block);
2610                 return;
2611         }
2612         case EXPR_BINARY_LOGICAL_AND: {
2613                 const binary_expression_t *binary_expression = &expression->binary;
2614
2615                 ir_node *cur_block   = get_cur_block();
2616                 ir_node *extra_block = new_immBlock();
2617                 set_cur_block(cur_block);
2618                 create_condition_evaluation(binary_expression->left, extra_block,
2619                                             false_block);
2620                 mature_immBlock(extra_block);
2621                 set_cur_block(extra_block);
2622                 create_condition_evaluation(binary_expression->right, true_block,
2623                                             false_block);
2624                 return;
2625         }
2626         case EXPR_BINARY_LOGICAL_OR: {
2627                 const binary_expression_t *binary_expression = &expression->binary;
2628
2629                 ir_node *cur_block   = get_cur_block();
2630                 ir_node *extra_block = new_immBlock();
2631                 set_cur_block(cur_block);
2632                 create_condition_evaluation(binary_expression->left, true_block,
2633                                             extra_block);
2634                 mature_immBlock(extra_block);
2635                 set_cur_block(extra_block);
2636                 create_condition_evaluation(binary_expression->right, true_block,
2637                                             false_block);
2638                 return;
2639         }
2640         default:
2641                 break;
2642         }
2643
2644         dbg_info *dbgi       = get_dbg_info(&expression->base.source_position);
2645         ir_node  *condition  = expression_to_modeb(expression);
2646         ir_node  *cond       = new_d_Cond(dbgi, condition);
2647         ir_node  *true_proj  = new_d_Proj(dbgi, cond, mode_X, pn_Cond_true);
2648         ir_node  *false_proj = new_d_Proj(dbgi, cond, mode_X, pn_Cond_false);
2649
2650         /* set branch prediction info based on __builtin_expect */
2651         if(expression->kind == EXPR_BINARY_BUILTIN_EXPECT) {
2652                 long               cnst = fold_constant(expression->binary.right);
2653                 cond_jmp_predicate pred;
2654
2655                 if(cnst == 0) {
2656                         pred = COND_JMP_PRED_FALSE;
2657                 } else {
2658                         pred = COND_JMP_PRED_TRUE;
2659                 }
2660                 set_Cond_jmp_pred(cond, pred);
2661         }
2662
2663         add_immBlock_pred(true_block, true_proj);
2664         add_immBlock_pred(false_block, false_proj);
2665
2666         set_cur_block(NULL);
2667 }
2668
2669
2670
2671 static void create_declaration_entity(declaration_t *declaration,
2672                                       declaration_kind_t declaration_kind,
2673                                       ir_type *parent_type)
2674 {
2675         ident     *const id     = new_id_from_str(declaration->symbol->string);
2676         ir_type   *const irtype = get_ir_type(declaration->type);
2677         dbg_info  *const dbgi   = get_dbg_info(&declaration->source_position);
2678         ir_entity *const entity = new_d_entity(parent_type, id, irtype, dbgi);
2679         set_entity_ld_ident(entity, id);
2680
2681         declaration->declaration_kind = (unsigned char) declaration_kind;
2682         declaration->v.entity         = entity;
2683         set_entity_variability(entity, variability_uninitialized);
2684         if(parent_type == get_tls_type())
2685                 set_entity_allocation(entity, allocation_automatic);
2686         else if(declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE)
2687                 set_entity_allocation(entity, allocation_static);
2688         /* TODO: visibility? */
2689 }
2690
2691 typedef struct compound_graph_path_entry_t compound_graph_path_entry_t;
2692
2693 enum compound_graph_entry_type_t {
2694         COMPOUND_GRAPH_ENTRY_ARRAY,
2695         COMPOUND_GRAPH_ENTRY_COMPOUND
2696 };
2697
2698 struct compound_graph_path_entry_t {
2699         int type;
2700         union {
2701                 ir_entity *entity;
2702                 int        array_index;
2703         } v;
2704         compound_graph_path_entry_t *prev;
2705 };
2706
2707 static void create_initializer_object(initializer_t *initializer, type_t *type,
2708                 ir_entity *entity, compound_graph_path_entry_t *entry, int len);
2709
2710 static compound_graph_path *create_compound_path(ir_type *type,
2711                 compound_graph_path_entry_t *entry, int len)
2712 {
2713         compound_graph_path *path = new_compound_graph_path(type, len);
2714
2715         int i = len - 1;
2716         for( ; entry != NULL; entry = entry->prev, --i) {
2717                 assert(i >= 0);
2718                 if(entry->type == COMPOUND_GRAPH_ENTRY_COMPOUND) {
2719                         set_compound_graph_path_node(path, i, entry->v.entity);
2720                 } else {
2721                         assert(entry->type == COMPOUND_GRAPH_ENTRY_ARRAY);
2722                         set_compound_graph_path_array_index(path, i, entry->v.array_index);
2723                 }
2724         }
2725         assert(i == -1);
2726
2727         return path;
2728 }
2729
2730 static void create_initializer_value(initializer_value_t *initializer,
2731                                      ir_entity *entity,
2732                                      compound_graph_path_entry_t *entry,
2733                                      int len)
2734 {
2735         ir_node             *node = expression_to_firm(initializer->value);
2736         ir_type             *type = get_entity_type(entity);
2737         compound_graph_path *path = create_compound_path(type, entry, len);
2738         add_compound_ent_value_w_path(entity, node, path);
2739 }
2740
2741 static void create_initializer_compound(initializer_list_t *initializer,
2742                                         compound_type_t *type,
2743                                         ir_entity *entity,
2744                                         compound_graph_path_entry_t *last_entry,
2745                                         int len)
2746 {
2747         declaration_t *compound_declaration = type->declaration;
2748
2749         declaration_t *compound_entry = compound_declaration->scope.declarations;
2750
2751         compound_graph_path_entry_t entry;
2752         entry.type = COMPOUND_GRAPH_ENTRY_COMPOUND;
2753         entry.prev = last_entry;
2754         ++len;
2755
2756         size_t i = 0;
2757         for( ; compound_entry != NULL; compound_entry = compound_entry->next) {
2758                 if(compound_entry->symbol == NULL)
2759                         continue;
2760                 if(compound_entry->namespc != NAMESPACE_NORMAL)
2761                         continue;
2762
2763                 if(i >= initializer->len)
2764                         break;
2765
2766                 entry.v.entity = compound_entry->v.entity;
2767
2768                 initializer_t *sub_initializer = initializer->initializers[i];
2769
2770                 assert(compound_entry != NULL);
2771                 assert(compound_entry->declaration_kind
2772                                 == DECLARATION_KIND_COMPOUND_MEMBER);
2773
2774                 if(sub_initializer->kind == INITIALIZER_VALUE) {
2775                         create_initializer_value(&sub_initializer->value,
2776                                                  entity, &entry, len);
2777                 } else {
2778                         type_t *entry_type = skip_typeref(compound_entry->type);
2779                         create_initializer_object(sub_initializer, entry_type, entity,
2780                                                   &entry, len);
2781                 }
2782
2783                 ++i;
2784         }
2785 }
2786
2787 static void create_initializer_array(initializer_list_t *initializer,
2788                                      array_type_t *type, ir_entity *entity,
2789                                      compound_graph_path_entry_t *last_entry,
2790                                      int len)
2791 {
2792         type_t *element_type = type->element_type;
2793         element_type         = skip_typeref(element_type);
2794
2795         compound_graph_path_entry_t entry;
2796         entry.type = COMPOUND_GRAPH_ENTRY_ARRAY;
2797         entry.prev = last_entry;
2798         ++len;
2799
2800         size_t i;
2801         for(i = 0; i < initializer->len; ++i) {
2802                 entry.v.array_index = i;
2803
2804                 initializer_t *sub_initializer = initializer->initializers[i];
2805
2806                 if(sub_initializer->kind == INITIALIZER_VALUE) {
2807                         create_initializer_value(&sub_initializer->value,
2808                                                  entity, &entry, len);
2809                 } else {
2810                         create_initializer_object(sub_initializer, element_type, entity,
2811                                                   &entry, len);
2812                 }
2813         }
2814
2815 #if 0
2816         /* TODO: initialize rest... */
2817         if(type->size_expression != NULL) {
2818                 size_t array_len = fold_constant(type->size_expression);
2819                 for( ; i < array_len; ++i) {
2820
2821                 }
2822         }
2823 #endif
2824 }
2825
2826 static void create_initializer_string(initializer_string_t *initializer,
2827                                       array_type_t *type, ir_entity *entity,
2828                                       compound_graph_path_entry_t *last_entry,
2829                                       int len)
2830 {
2831         type_t *element_type = type->element_type;
2832         element_type         = skip_typeref(element_type);
2833
2834         compound_graph_path_entry_t entry;
2835         entry.type = COMPOUND_GRAPH_ENTRY_ARRAY;
2836         entry.prev = last_entry;
2837         ++len;
2838
2839         ir_type    *const irtype  = get_entity_type(entity);
2840         size_t            arr_len = get_array_type_size(type);
2841         const char *const p       = initializer->string.begin;
2842         if (initializer->string.size < arr_len) {
2843                 arr_len = initializer->string.size;
2844         }
2845         for (size_t i = 0; i < arr_len; ++i) {
2846                 entry.v.array_index = i;
2847
2848                 ir_node             *node = new_Const_long(mode_Bs, p[i]);
2849                 compound_graph_path *path = create_compound_path(irtype, &entry, len);
2850                 add_compound_ent_value_w_path(entity, node, path);
2851         }
2852 }
2853
2854 static void create_initializer_wide_string(
2855         const initializer_wide_string_t *const initializer, array_type_t *const type,
2856         ir_entity *const entity, compound_graph_path_entry_t *const last_entry,
2857         int len)
2858 {
2859         type_t *element_type = type->element_type;
2860         element_type         = skip_typeref(element_type);
2861
2862         compound_graph_path_entry_t entry;
2863         entry.type = COMPOUND_GRAPH_ENTRY_ARRAY;
2864         entry.prev = last_entry;
2865         ++len;
2866
2867         ir_type           *const irtype  = get_entity_type(entity);
2868         const size_t             arr_len = get_array_type_size(type);
2869         const wchar_rep_t *      p       = initializer->string.begin;
2870         const wchar_rep_t *const end     = p + initializer->string.size;
2871         for (size_t i = 0; i < arr_len && p != end; ++i, ++p) {
2872                 entry.v.array_index = i;
2873
2874                 ir_node             *node = new_Const_long(mode_int, *p);
2875                 compound_graph_path *path = create_compound_path(irtype, &entry, len);
2876                 add_compound_ent_value_w_path(entity, node, path);
2877         }
2878 }
2879
2880 static void create_initializer_object(initializer_t *initializer, type_t *type,
2881                 ir_entity *entity, compound_graph_path_entry_t *entry, int len)
2882 {
2883         if(is_type_array(type)) {
2884                 array_type_t *array_type = &type->array;
2885
2886                 switch (initializer->kind) {
2887                         case INITIALIZER_STRING: {
2888                                 initializer_string_t *const string = &initializer->string;
2889                                 create_initializer_string(string, array_type, entity, entry, len);
2890                                 return;
2891                         }
2892
2893                         case INITIALIZER_WIDE_STRING: {
2894                                 initializer_wide_string_t *const string = &initializer->wide_string;
2895                                 create_initializer_wide_string(string, array_type, entity, entry, len);
2896                                 return;
2897                         }
2898
2899                         case INITIALIZER_LIST: {
2900                                 initializer_list_t *const list = &initializer->list;
2901                                 create_initializer_array(list, array_type, entity, entry, len);
2902                                 return;
2903                         }
2904
2905                         case INITIALIZER_VALUE:
2906                                 break;
2907                 }
2908                 panic("Unhandled initializer");
2909         } else {
2910                 assert(initializer->kind == INITIALIZER_LIST);
2911                 initializer_list_t *list = &initializer->list;
2912
2913                 assert(is_type_compound(type));
2914                 compound_type_t *compound_type = &type->compound;
2915                 create_initializer_compound(list, compound_type, entity, entry, len);
2916         }
2917 }
2918
2919 static void create_initializer_local_variable_entity(declaration_t *declaration)
2920 {
2921         initializer_t *initializer = declaration->init.initializer;
2922         dbg_info      *dbgi        = get_dbg_info(&declaration->source_position);
2923         ir_entity     *entity      = declaration->v.entity;
2924         ir_node       *memory      = get_store();
2925         ir_node       *nomem       = new_NoMem();
2926         ir_node       *frame       = get_irg_frame(current_ir_graph);
2927         ir_node       *addr        = new_d_simpleSel(dbgi, nomem, frame, entity);
2928
2929         if(initializer->kind == INITIALIZER_VALUE) {
2930                 initializer_value_t *initializer_value = &initializer->value;
2931
2932                 ir_node *value = expression_to_firm(initializer_value->value);
2933                 type_t  *type  = skip_typeref(declaration->type);
2934                 assign_value(dbgi, addr, type, value);
2935                 return;
2936         }
2937
2938         /* create a "template" entity which is copied to the entity on the stack */
2939         ident     *const id          = unique_ident("initializer");
2940         ir_type   *const irtype      = get_ir_type(declaration->type);
2941         ir_type   *const global_type = get_glob_type();
2942         ir_entity *const init_entity = new_d_entity(global_type, id, irtype, dbgi);
2943         set_entity_ld_ident(init_entity, id);
2944
2945         set_entity_variability(init_entity, variability_initialized);
2946         set_entity_visibility(init_entity, visibility_local);
2947         set_entity_allocation(init_entity, allocation_static);
2948
2949         ir_graph *const old_current_ir_graph = current_ir_graph;
2950         current_ir_graph = get_const_code_irg();
2951
2952         type_t *const type = skip_typeref(declaration->type);
2953         create_initializer_object(initializer, type, init_entity, NULL, 0);
2954
2955         assert(current_ir_graph == get_const_code_irg());
2956         current_ir_graph = old_current_ir_graph;
2957
2958         ir_node *const src_addr  = create_symconst(dbgi, mode_P_data, init_entity);
2959         ir_node *const copyb     = new_d_CopyB(dbgi, memory, addr, src_addr, irtype);
2960
2961         ir_node *const copyb_mem = new_Proj(copyb, mode_M, pn_CopyB_M_regular);
2962         set_store(copyb_mem);
2963 }
2964
2965 static void create_initializer(declaration_t *declaration)
2966 {
2967         initializer_t *initializer = declaration->init.initializer;
2968         if(initializer == NULL)
2969                 return;
2970
2971         declaration_kind_t declaration_kind
2972                 = (declaration_kind_t) declaration->declaration_kind;
2973         if(declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE_ENTITY) {
2974                 create_initializer_local_variable_entity(declaration);
2975                 return;
2976         }
2977
2978         if(initializer->kind == INITIALIZER_VALUE) {
2979                 initializer_value_t *initializer_value = &initializer->value;
2980
2981                 ir_node *value = expression_to_firm(initializer_value->value);
2982
2983                 if(declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE) {
2984                         set_value(declaration->v.value_number, value);
2985                 } else {
2986                         assert(declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
2987
2988                         ir_entity *entity = declaration->v.entity;
2989
2990                         set_entity_variability(entity, variability_initialized);
2991                         set_atomic_ent_value(entity, value);
2992                 }
2993         } else {
2994                 assert(declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE_ENTITY
2995                                 || declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
2996
2997                 ir_entity *entity = declaration->v.entity;
2998                 set_entity_variability(entity, variability_initialized);
2999
3000                 type_t *type = skip_typeref(declaration->type);
3001                 create_initializer_object(initializer, type, entity, NULL, 0);
3002         }
3003 }
3004
3005 /**
3006  * Creates a Firm local variable from a declaration.
3007  */
3008 static void create_local_variable(declaration_t *declaration)
3009 {
3010         assert(declaration->declaration_kind == DECLARATION_KIND_UNKNOWN);
3011
3012         bool needs_entity = declaration->address_taken;
3013         type_t *type = skip_typeref(declaration->type);
3014
3015         if(is_type_array(type) || is_type_compound(type)) {
3016                 needs_entity = true;
3017         }
3018
3019         if(needs_entity) {
3020                 ir_type *frame_type = get_irg_frame_type(current_ir_graph);
3021                 create_declaration_entity(declaration,
3022                                           DECLARATION_KIND_LOCAL_VARIABLE_ENTITY,
3023                                           frame_type);
3024         } else {
3025                 declaration->declaration_kind = DECLARATION_KIND_LOCAL_VARIABLE;
3026                 declaration->v.value_number   = next_value_number_function;
3027                 set_irg_loc_description(current_ir_graph, next_value_number_function, declaration);
3028                 ++next_value_number_function;
3029         }
3030
3031         create_initializer(declaration);
3032 }
3033
3034 static void create_local_static_variable(declaration_t *declaration)
3035 {
3036         assert(declaration->declaration_kind == DECLARATION_KIND_UNKNOWN);
3037
3038         type_t    *const type        = skip_typeref(declaration->type);
3039         ir_type   *const global_type = get_glob_type();
3040         ident     *const id          = unique_ident(declaration->symbol->string);
3041         ir_type   *const irtype      = get_ir_type(type);
3042         dbg_info  *const dbgi        = get_dbg_info(&declaration->source_position);
3043         ir_entity *const entity      = new_d_entity(global_type, id, irtype, dbgi);
3044         set_entity_ld_ident(entity, id);
3045
3046         declaration->declaration_kind = DECLARATION_KIND_GLOBAL_VARIABLE;
3047         declaration->v.entity         = entity;
3048         set_entity_variability(entity, variability_uninitialized);
3049         set_entity_visibility(entity, visibility_local);
3050         set_entity_allocation(entity, allocation_static);
3051
3052         ir_graph *const old_current_ir_graph = current_ir_graph;
3053         current_ir_graph = get_const_code_irg();
3054
3055         create_initializer(declaration);
3056
3057         assert(current_ir_graph == get_const_code_irg());
3058         current_ir_graph = old_current_ir_graph;
3059 }
3060
3061
3062
3063 static void return_statement_to_firm(return_statement_t *statement)
3064 {
3065         if(get_cur_block() == NULL)
3066                 return;
3067
3068         dbg_info *dbgi        = get_dbg_info(&statement->base.source_position);
3069         ir_type  *func_irtype = get_ir_type(current_function_decl->type);
3070
3071
3072         ir_node *in[1];
3073         int      in_len;
3074         if(get_method_n_ress(func_irtype) > 0) {
3075                 ir_type *res_type = get_method_res_type(func_irtype, 0);
3076
3077                 if(statement->value != NULL) {
3078                         ir_node *node = expression_to_firm(statement->value);
3079                         node  = do_strict_conv(dbgi, node);
3080                         in[0] = node;
3081                 } else {
3082                         ir_mode *mode;
3083                         if(is_compound_type(res_type)) {
3084                                 mode = mode_P_data;
3085                         } else {
3086                                 mode = get_type_mode(res_type);
3087                         }
3088                         in[0] = new_Unknown(mode);
3089                 }
3090                 in_len = 1;
3091         } else {
3092                 /* build return_value for its side effects */
3093                 if(statement->value != NULL) {
3094                         expression_to_firm(statement->value);
3095                 }
3096                 in_len = 0;
3097         }
3098
3099         ir_node  *store = get_store();
3100         ir_node  *ret   = new_d_Return(dbgi, store, in_len, in);
3101
3102         ir_node *end_block = get_irg_end_block(current_ir_graph);
3103         add_immBlock_pred(end_block, ret);
3104
3105         set_cur_block(NULL);
3106 }
3107
3108 static ir_node *expression_statement_to_firm(expression_statement_t *statement)
3109 {
3110         if(get_cur_block() == NULL)
3111                 return NULL;
3112
3113         return expression_to_firm(statement->expression);
3114 }
3115
3116 static ir_node *compound_statement_to_firm(compound_statement_t *compound)
3117 {
3118         ir_node     *result    = NULL;
3119         statement_t *statement = compound->statements;
3120         for( ; statement != NULL; statement = statement->base.next) {
3121                 //context2firm(&statement->scope);
3122
3123                 if(statement->base.next == NULL
3124                                 && statement->kind == STATEMENT_EXPRESSION) {
3125                         result = expression_statement_to_firm(
3126                                         &statement->expression);
3127                         break;
3128                 }
3129                 statement_to_firm(statement);
3130         }
3131
3132         return result;
3133 }
3134
3135 static void create_local_declaration(declaration_t *declaration)
3136 {
3137         if(declaration->symbol == NULL)
3138                 return;
3139
3140         type_t *type = skip_typeref(declaration->type);
3141
3142         switch ((storage_class_tag_t) declaration->storage_class) {
3143         case STORAGE_CLASS_STATIC:
3144                 create_local_static_variable(declaration);
3145                 return;
3146         case STORAGE_CLASS_ENUM_ENTRY:
3147                 panic("enum entry declaration in local block found");
3148         case STORAGE_CLASS_EXTERN:
3149                 panic("extern declaration in local block found");
3150         case STORAGE_CLASS_NONE:
3151         case STORAGE_CLASS_AUTO:
3152         case STORAGE_CLASS_REGISTER:
3153                 if(is_type_function(type)) {
3154                         panic("nested functions not supported yet");
3155                 } else {
3156                         create_local_variable(declaration);
3157                 }
3158                 return;
3159         case STORAGE_CLASS_TYPEDEF:
3160         case STORAGE_CLASS_THREAD:
3161         case STORAGE_CLASS_THREAD_EXTERN:
3162         case STORAGE_CLASS_THREAD_STATIC:
3163                 return;
3164         }
3165         panic("invalid storage class found");
3166 }
3167
3168 static void declaration_statement_to_firm(declaration_statement_t *statement)
3169 {
3170         declaration_t *declaration = statement->declarations_begin;
3171         declaration_t *end         = statement->declarations_end->next;
3172         for( ; declaration != end; declaration = declaration->next) {
3173                 if(declaration->namespc != NAMESPACE_NORMAL)
3174                         continue;
3175                 create_local_declaration(declaration);
3176         }
3177 }
3178
3179 static void if_statement_to_firm(if_statement_t *statement)
3180 {
3181         ir_node *cur_block = get_cur_block();
3182
3183         ir_node *fallthrough_block = new_immBlock();
3184
3185         /* the true (blocks) */
3186         ir_node *true_block;
3187         if (statement->true_statement != NULL) {
3188                 true_block = new_immBlock();
3189                 statement_to_firm(statement->true_statement);
3190                 if(get_cur_block() != NULL) {
3191                         ir_node *jmp = new_Jmp();
3192                         add_immBlock_pred(fallthrough_block, jmp);
3193                 }
3194         } else {
3195                 true_block = fallthrough_block;
3196         }
3197
3198         /* the false (blocks) */
3199         ir_node *false_block;
3200         if(statement->false_statement != NULL) {
3201                 false_block = new_immBlock();
3202
3203                 statement_to_firm(statement->false_statement);
3204                 if(get_cur_block() != NULL) {
3205                         ir_node *jmp = new_Jmp();
3206                         add_immBlock_pred(fallthrough_block, jmp);
3207                 }
3208         } else {
3209                 false_block = fallthrough_block;
3210         }
3211
3212         /* create the condition */
3213         if(cur_block != NULL) {
3214                 set_cur_block(cur_block);
3215                 create_condition_evaluation(statement->condition, true_block,
3216                                             false_block);
3217         }
3218
3219         mature_immBlock(true_block);
3220         if(false_block != fallthrough_block) {
3221                 mature_immBlock(false_block);
3222         }
3223         mature_immBlock(fallthrough_block);
3224
3225         set_cur_block(fallthrough_block);
3226 }
3227
3228 static void while_statement_to_firm(while_statement_t *statement)
3229 {
3230         ir_node *jmp = NULL;
3231         if(get_cur_block() != NULL) {
3232                 jmp = new_Jmp();
3233         }
3234
3235         /* create the header block */
3236         ir_node *header_block = new_immBlock();
3237         if(jmp != NULL) {
3238                 add_immBlock_pred(header_block, jmp);
3239         }
3240
3241         /* the false block */
3242         ir_node *false_block = new_immBlock();
3243
3244         /* the loop body */
3245         ir_node *body_block;
3246         if (statement->body != NULL) {
3247                 ir_node *old_continue_label = continue_label;
3248                 ir_node *old_break_label    = break_label;
3249                 continue_label              = header_block;
3250                 break_label                 = false_block;
3251
3252                 body_block = new_immBlock();
3253                 statement_to_firm(statement->body);
3254
3255                 assert(continue_label == header_block);
3256                 assert(break_label    == false_block);
3257                 continue_label = old_continue_label;
3258                 break_label    = old_break_label;
3259
3260                 if(get_cur_block() != NULL) {
3261                         jmp = new_Jmp();
3262                         add_immBlock_pred(header_block, jmp);
3263                 }
3264         } else {
3265                 body_block = header_block;
3266         }
3267
3268         /* create the condition */
3269         set_cur_block(header_block);
3270
3271         create_condition_evaluation(statement->condition, body_block, false_block);
3272         mature_immBlock(body_block);
3273         mature_immBlock(false_block);
3274         mature_immBlock(header_block);
3275
3276         set_cur_block(false_block);
3277 }
3278
3279 static void do_while_statement_to_firm(do_while_statement_t *statement)
3280 {
3281         ir_node *jmp = NULL;
3282         if(get_cur_block() != NULL) {
3283                 jmp = new_Jmp();
3284         }
3285
3286         /* create the header block */
3287         ir_node *header_block = new_immBlock();
3288
3289         /* the false block */
3290         ir_node *false_block = new_immBlock();
3291
3292         /* the loop body */
3293         ir_node *body_block = new_immBlock();
3294         if(jmp != NULL) {
3295                 add_immBlock_pred(body_block, jmp);
3296         }
3297
3298         if (statement->body != NULL) {
3299                 ir_node *old_continue_label = continue_label;
3300                 ir_node *old_break_label    = break_label;
3301                 continue_label              = header_block;
3302                 break_label                 = false_block;
3303
3304                 statement_to_firm(statement->body);
3305
3306                 assert(continue_label == header_block);
3307                 assert(break_label    == false_block);
3308                 continue_label = old_continue_label;
3309                 break_label    = old_break_label;
3310
3311                 if (get_cur_block() == NULL) {
3312                         mature_immBlock(header_block);
3313                         mature_immBlock(body_block);
3314                         mature_immBlock(false_block);
3315                         return;
3316                 }
3317         }
3318
3319         ir_node *body_jmp = new_Jmp();
3320         add_immBlock_pred(header_block, body_jmp);
3321         mature_immBlock(header_block);
3322
3323         /* create the condition */
3324         set_cur_block(header_block);
3325
3326         create_condition_evaluation(statement->condition, body_block, false_block);
3327         mature_immBlock(body_block);
3328         mature_immBlock(false_block);
3329         mature_immBlock(header_block);
3330
3331         set_cur_block(false_block);
3332 }
3333
3334 static void for_statement_to_firm(for_statement_t *statement)
3335 {
3336         ir_node *jmp = NULL;
3337         if (get_cur_block() != NULL) {
3338                 if(statement->initialisation != NULL) {
3339                         expression_to_firm(statement->initialisation);
3340                 }
3341
3342                 /* create declarations */
3343                 declaration_t *declaration = statement->scope.declarations;
3344                 for( ; declaration != NULL; declaration = declaration->next) {
3345                         create_local_declaration(declaration);
3346                 }
3347
3348                 jmp = new_Jmp();
3349         }
3350
3351
3352         /* create the step block */
3353         ir_node *const step_block = new_immBlock();
3354         if (statement->step != NULL) {
3355                 expression_to_firm(statement->step);
3356         }
3357         ir_node *const step_jmp = new_Jmp();
3358
3359         /* create the header block */
3360         ir_node *const header_block = new_immBlock();
3361         if (jmp != NULL) {
3362                 add_immBlock_pred(header_block, jmp);
3363         }
3364         add_immBlock_pred(header_block, step_jmp);
3365
3366         /* the false block */
3367         ir_node *const false_block = new_immBlock();
3368
3369         /* the loop body */
3370         ir_node * body_block;
3371         if (statement->body != NULL) {
3372                 ir_node *const old_continue_label = continue_label;
3373                 ir_node *const old_break_label    = break_label;
3374                 continue_label = step_block;
3375                 break_label    = false_block;
3376
3377                 body_block = new_immBlock();
3378                 statement_to_firm(statement->body);
3379
3380                 assert(continue_label == step_block);
3381                 assert(break_label    == false_block);
3382                 continue_label = old_continue_label;
3383                 break_label    = old_break_label;
3384
3385                 if (get_cur_block() != NULL) {
3386                         jmp = new_Jmp();
3387                         add_immBlock_pred(step_block, jmp);
3388                 }
3389         } else {
3390                 body_block = step_block;
3391         }
3392
3393         /* create the condition */
3394         set_cur_block(header_block);
3395         if (statement->condition != NULL) {
3396                 create_condition_evaluation(statement->condition, body_block,
3397                                             false_block);
3398         } else {
3399                 keep_alive(header_block);
3400                 jmp = new_Jmp();
3401                 add_immBlock_pred(body_block, jmp);
3402         }
3403
3404         mature_immBlock(body_block);
3405         mature_immBlock(false_block);
3406         mature_immBlock(step_block);
3407         mature_immBlock(header_block);
3408         mature_immBlock(false_block);
3409
3410         set_cur_block(false_block);
3411 }
3412
3413 static void create_jump_statement(const statement_t *statement,
3414                                   ir_node *target_block)
3415 {
3416         if(get_cur_block() == NULL)
3417                 return;
3418
3419         dbg_info *dbgi = get_dbg_info(&statement->base.source_position);
3420         ir_node  *jump = new_d_Jmp(dbgi);
3421         add_immBlock_pred(target_block, jump);
3422
3423         set_cur_block(NULL);
3424 }
3425
3426 static void switch_statement_to_firm(const switch_statement_t *statement)
3427 {
3428         dbg_info *dbgi = get_dbg_info(&statement->base.source_position);
3429
3430         ir_node *expression  = expression_to_firm(statement->expression);
3431         ir_node *cond        = new_d_Cond(dbgi, expression);
3432         ir_node *break_block = new_immBlock();
3433
3434         set_cur_block(NULL);
3435
3436         ir_node *const old_switch_cond       = current_switch_cond;
3437         ir_node *const old_break_label       = break_label;
3438         const bool     old_saw_default_label = saw_default_label;
3439         current_switch_cond                  = cond;
3440         break_label                          = break_block;
3441
3442         if (statement->body != NULL) {
3443                 statement_to_firm(statement->body);
3444         }
3445
3446         if(get_cur_block() != NULL) {
3447                 ir_node *jmp = new_Jmp();
3448                 add_immBlock_pred(break_block, jmp);
3449         }
3450
3451         if (!saw_default_label) {
3452                 set_cur_block(get_nodes_block(cond));
3453                 ir_node *const proj = new_d_defaultProj(dbgi, cond,
3454                                                         MAGIC_DEFAULT_PN_NUMBER);
3455                 add_immBlock_pred(break_block, proj);
3456         }
3457
3458         assert(current_switch_cond == cond);
3459         assert(break_label         == break_block);
3460         current_switch_cond = old_switch_cond;
3461         break_label         = old_break_label;
3462         saw_default_label   = old_saw_default_label;
3463
3464         mature_immBlock(break_block);
3465         set_cur_block(break_block);
3466 }
3467
3468 static void case_label_to_firm(const case_label_statement_t *statement)
3469 {
3470         dbg_info *dbgi = get_dbg_info(&statement->base.source_position);
3471
3472         ir_node *const fallthrough = (get_cur_block() == NULL ? NULL : new_Jmp());
3473
3474         /* let's create a node and hope firm constant folding creates a Const
3475          * node... */
3476         ir_node *proj;
3477         ir_node *old_block = get_nodes_block(current_switch_cond);
3478         ir_node *block     = new_immBlock();
3479
3480         set_cur_block(old_block);
3481         if(statement->expression != NULL) {
3482                 long start_pn = fold_constant(statement->expression);
3483                 long end_pn = start_pn;
3484                 if (statement->end_range != NULL) {
3485                         end_pn = fold_constant(statement->end_range);
3486                 }
3487                 assert(start_pn <= end_pn);
3488                 /* create jumps for all cases in the given range */
3489                 for (long pn = start_pn; pn <= end_pn; ++pn) {
3490                         if(pn == MAGIC_DEFAULT_PN_NUMBER) {
3491                                 /* oops someone detected our cheating... */
3492                                 panic("magic default pn used");
3493                         }
3494                         proj = new_d_Proj(dbgi, current_switch_cond, mode_X, pn);
3495                         add_immBlock_pred(block, proj);
3496                 }
3497         } else {
3498                 saw_default_label = true;
3499                 proj = new_d_defaultProj(dbgi, current_switch_cond,
3500                                          MAGIC_DEFAULT_PN_NUMBER);
3501
3502                 add_immBlock_pred(block, proj);
3503         }
3504
3505         if (fallthrough != NULL) {
3506                 add_immBlock_pred(block, fallthrough);
3507         }
3508         mature_immBlock(block);
3509         set_cur_block(block);
3510
3511         if(statement->statement != NULL) {
3512                 statement_to_firm(statement->statement);
3513         }
3514 }
3515
3516 static ir_node *get_label_block(declaration_t *label)
3517 {
3518         assert(label->namespc == NAMESPACE_LABEL);
3519
3520         if(label->declaration_kind == DECLARATION_KIND_LABEL_BLOCK) {
3521                 return label->v.block;
3522         }
3523         assert(label->declaration_kind == DECLARATION_KIND_UNKNOWN);
3524
3525         ir_node *old_cur_block = get_cur_block();
3526         ir_node *block         = new_immBlock();
3527         set_cur_block(old_cur_block);
3528
3529         label->declaration_kind = DECLARATION_KIND_LABEL_BLOCK;
3530         label->v.block          = block;
3531
3532         ARR_APP1(ir_node *, imature_blocks, block);
3533
3534         return block;
3535 }
3536
3537 static void label_to_firm(const label_statement_t *statement)
3538 {
3539         ir_node *block = get_label_block(statement->label);
3540
3541         if(get_cur_block() != NULL) {
3542                 ir_node *jmp = new_Jmp();
3543                 add_immBlock_pred(block, jmp);
3544         }
3545
3546         set_cur_block(block);
3547         keep_alive(block);
3548
3549         if(statement->statement != NULL) {
3550                 statement_to_firm(statement->statement);
3551         }
3552 }
3553
3554 static void goto_to_firm(const goto_statement_t *statement)
3555 {
3556         if(get_cur_block() == NULL)
3557                 return;
3558
3559         ir_node *block = get_label_block(statement->label);
3560         ir_node *jmp   = new_Jmp();
3561         add_immBlock_pred(block, jmp);
3562
3563         set_cur_block(NULL);
3564 }
3565
3566 typedef enum modifier_t {
3567         ASM_MODIFIER_WRITE_ONLY   = 1 << 0,
3568         ASM_MODIFIER_READ_WRITE   = 1 << 1,
3569         ASM_MODIFIER_COMMUTATIVE  = 1 << 2,
3570         ASM_MODIFIER_EARLYCLOBBER = 1 << 3,
3571 } modifier_t;
3572
3573 static void asm_statement_to_firm(const asm_statement_t *statement)
3574 {
3575         (void) statement;
3576         fprintf(stderr, "WARNING asm not implemented yet!\n");
3577 #if 0
3578         bool needs_memory = false;
3579
3580         size_t         n_clobbers = 0;
3581         asm_clobber_t *clobber    = statement->clobbers;
3582         for( ; clobber != NULL; clobber = clobber->next) {
3583                 if(strcmp(clobber->clobber, "memory") == 0) {
3584                         needs_memory = true;
3585                         continue;
3586                 }
3587
3588                 ident *id = new_id_from_str(clobber->clobber);
3589                 obstack_ptr_grow(&asm_obst, id);
3590                 ++n_clobbers;
3591         }
3592         assert(obstack_object_size(&asm_obst) == n_clobbers * sizeof(ident*));
3593         ident **clobbers = NULL;
3594         if(n_clobbers > 0) {
3595                 clobbers = obstack_finish(&asm_obst);
3596         }
3597
3598         /* find and count input and output constraints */
3599         asm_constraint_t *constraint = statement->inputs;
3600         for( ; constraint != NULL; constraint = constraint->next) {
3601                 int  modifiers      = 0;
3602                 bool supports_memop = false;
3603                 for(const char *c = constraint->constraints; *c != 0; ++c) {
3604                         /* TODO: improve error messages */
3605                         switch(*c) {
3606                         case '?':
3607                         case '!':
3608                                 panic("multiple alternative assembler constraints not "
3609                                       "supported");
3610                         case 'm':
3611                         case 'o':
3612                         case 'V':
3613                         case '<':
3614                         case '>':
3615                         case 'X':
3616                                 supports_memop = true;
3617                                 obstack_1grow(&asm_obst, *c);
3618                                 break;
3619                         case '=':
3620                                 if(modifiers & ASM_MODIFIER_READ_WRITE)
3621                                         panic("inconsistent register constraints");
3622                                 modifiers |= ASM_MODIFIER_WRITE_ONLY;
3623                                 break;
3624                         case '+':
3625                                 if(modifiers & ASM_MODIFIER_WRITE_ONLY)
3626                                         panic("inconsistent register constraints");
3627                                 modifiers |= ASM_MODIFIER_READ_WRITE;
3628                                 break;
3629                         case '&':
3630                                 modifiers |= ASM_MODIFIER_EARLYCLOBBER;
3631                                 panic("early clobber assembler constraint not supported yet");
3632                                 break;
3633                         case '%':
3634                                 modifiers |= ASM_MODIFIER_COMMUTATIVE;
3635                                 panic("commutative assembler constraint not supported yet");
3636                                 break;
3637                         case '#':
3638                                 /* skip register preferences stuff... */
3639                                 while(*c != 0 && *c != ',')
3640                                         ++c;
3641                                 break;
3642                         case '*':
3643                                 /* skip register preferences stuff... */
3644                                 ++c;
3645                                 break;
3646                         default:
3647                                 obstack_1grow(&asm_obst, *c);
3648                                 break;
3649                         }
3650                 }
3651                 obstack_1grow(&asm_obst, '\0');
3652                 const char *constraint_string = obstack_finish(&asm_obst);
3653
3654                 needs_memory |= supports_memop;
3655                 if(supports_memop) {
3656
3657                 }
3658         }
3659 #endif
3660 }
3661
3662 static void statement_to_firm(statement_t *statement)
3663 {
3664         switch(statement->kind) {
3665         case STATEMENT_INVALID:
3666                 panic("invalid statement found");
3667         case STATEMENT_COMPOUND:
3668                 compound_statement_to_firm(&statement->compound);
3669                 return;
3670         case STATEMENT_RETURN:
3671                 return_statement_to_firm(&statement->returns);
3672                 return;
3673         case STATEMENT_EXPRESSION:
3674                 expression_statement_to_firm(&statement->expression);
3675                 return;
3676         case STATEMENT_IF:
3677                 if_statement_to_firm(&statement->ifs);
3678                 return;
3679         case STATEMENT_WHILE:
3680                 while_statement_to_firm(&statement->whiles);
3681                 return;
3682         case STATEMENT_DO_WHILE:
3683                 do_while_statement_to_firm(&statement->do_while);
3684                 return;
3685         case STATEMENT_DECLARATION:
3686                 declaration_statement_to_firm(&statement->declaration);
3687                 return;
3688         case STATEMENT_BREAK:
3689                 create_jump_statement(statement, break_label);
3690                 return;
3691         case STATEMENT_CONTINUE:
3692                 create_jump_statement(statement, continue_label);
3693                 return;
3694         case STATEMENT_SWITCH:
3695                 switch_statement_to_firm(&statement->switchs);
3696                 return;
3697         case STATEMENT_CASE_LABEL:
3698                 case_label_to_firm(&statement->case_label);
3699                 return;
3700         case STATEMENT_FOR:
3701                 for_statement_to_firm(&statement->fors);
3702                 return;
3703         case STATEMENT_LABEL:
3704                 label_to_firm(&statement->label);
3705                 return;
3706         case STATEMENT_GOTO:
3707                 goto_to_firm(&statement->gotos);
3708                 return;
3709         case STATEMENT_ASM:
3710                 asm_statement_to_firm(&statement->asms);
3711                 return;
3712         }
3713         panic("Statement not implemented\n");
3714 }
3715
3716 static int count_decls_in_expression(const expression_t *expression);
3717
3718 static int count_local_declarations(const declaration_t *      decl,
3719                                     const declaration_t *const end)
3720 {
3721         int count = 0;
3722         for (; decl != end; decl = decl->next) {
3723                 if(decl->namespc != NAMESPACE_NORMAL)
3724                         continue;
3725                 const type_t *type = skip_typeref(decl->type);
3726                 if (!decl->address_taken && is_type_scalar(type))
3727                         ++count;
3728                 const initializer_t *initializer = decl->init.initializer;
3729                 /* FIXME: should walk initializer hierarchies... */
3730                 if(initializer != NULL && initializer->kind == INITIALIZER_VALUE) {
3731                         count += count_decls_in_expression(initializer->value.value);
3732                 }
3733         }
3734         return count;
3735 }
3736
3737 static int count_decls_in_expression(const expression_t *expression) {
3738         if(expression == NULL)
3739                 return 0;
3740
3741         switch(expression->base.kind) {
3742         case EXPR_STATEMENT:
3743                 return count_decls_in_stmts(expression->statement.statement);
3744         EXPR_BINARY_CASES {
3745                 int count_left  = count_decls_in_expression(expression->binary.left);
3746                 int count_right = count_decls_in_expression(expression->binary.right);
3747                 return count_left + count_right;
3748         }
3749         EXPR_UNARY_CASES
3750                 return count_decls_in_expression(expression->unary.value);
3751
3752         default:
3753                 break;
3754         }
3755
3756         /* TODO FIXME: finish/fix that firm patch that allows dynamic value numbers
3757          * (or implement all the missing expressions here/implement a walker)
3758          */
3759
3760         return 0;
3761 }
3762
3763 static int count_decls_in_stmts(const statement_t *stmt)
3764 {
3765         int count = 0;
3766         for (; stmt != NULL; stmt = stmt->base.next) {
3767                 switch (stmt->kind) {
3768                         case STATEMENT_DECLARATION: {
3769                                 const declaration_statement_t *const decl_stmt = &stmt->declaration;
3770                                 count += count_local_declarations(decl_stmt->declarations_begin,
3771                                                                   decl_stmt->declarations_end->next);
3772                                 break;
3773                         }
3774
3775                         case STATEMENT_COMPOUND: {
3776                                 const compound_statement_t *const comp =
3777                                         &stmt->compound;
3778                                 count += count_decls_in_stmts(comp->statements);
3779                                 break;
3780                         }
3781
3782                         case STATEMENT_IF: {
3783                                 const if_statement_t *const if_stmt = &stmt->ifs;
3784                                 count += count_decls_in_expression(if_stmt->condition);
3785                                 count += count_decls_in_stmts(if_stmt->true_statement);
3786                                 count += count_decls_in_stmts(if_stmt->false_statement);
3787                                 break;
3788                         }
3789
3790                         case STATEMENT_SWITCH: {
3791                                 const switch_statement_t *const switch_stmt = &stmt->switchs;
3792                                 count += count_decls_in_expression(switch_stmt->expression);
3793                                 count += count_decls_in_stmts(switch_stmt->body);
3794                                 break;
3795                         }
3796
3797                         case STATEMENT_LABEL: {
3798                                 const label_statement_t *const label_stmt = &stmt->label;
3799                                 if(label_stmt->statement != NULL) {
3800                                         count += count_decls_in_stmts(label_stmt->statement);
3801                                 }
3802                                 break;
3803                         }
3804
3805                         case STATEMENT_WHILE: {
3806                                 const while_statement_t *const while_stmt = &stmt->whiles;
3807                                 count += count_decls_in_expression(while_stmt->condition);
3808                                 count += count_decls_in_stmts(while_stmt->body);
3809                                 break;
3810                         }
3811
3812                         case STATEMENT_DO_WHILE: {
3813                                 const do_while_statement_t *const do_while_stmt = &stmt->do_while;
3814                                 count += count_decls_in_expression(do_while_stmt->condition);
3815                                 count += count_decls_in_stmts(do_while_stmt->body);
3816                                 break;
3817                         }
3818
3819                         case STATEMENT_FOR: {
3820                                 const for_statement_t *const for_stmt = &stmt->fors;
3821                                 count += count_local_declarations(for_stmt->scope.declarations, NULL);
3822                                 count += count_decls_in_expression(for_stmt->initialisation);
3823                                 count += count_decls_in_expression(for_stmt->condition);
3824                                 count += count_decls_in_expression(for_stmt->step);
3825                                 count += count_decls_in_stmts(for_stmt->body);
3826                                 break;
3827                         }
3828
3829                         case STATEMENT_CASE_LABEL: {
3830                                 const case_label_statement_t *label = &stmt->case_label;
3831                                 count += count_decls_in_expression(label->expression);
3832                                 if(label->statement != NULL) {
3833                                         count += count_decls_in_stmts(label->statement);
3834                                 }
3835                                 break;
3836                         }
3837
3838                         case STATEMENT_ASM:
3839                         case STATEMENT_BREAK:
3840                         case STATEMENT_CONTINUE:
3841                                 break;
3842
3843                         case STATEMENT_EXPRESSION: {
3844                                 const expression_statement_t *expr_stmt = &stmt->expression;
3845                                 count += count_decls_in_expression(expr_stmt->expression);
3846                                 break;
3847                         }
3848
3849                         case STATEMENT_GOTO:
3850                         case STATEMENT_INVALID:
3851                                 break;
3852
3853                         case STATEMENT_RETURN: {
3854                                 const return_statement_t *ret_stmt = &stmt->returns;
3855                                 count += count_decls_in_expression(ret_stmt->value);
3856                                 break;
3857                         }
3858                 }
3859         }
3860         return count;
3861 }
3862
3863 static int get_function_n_local_vars(declaration_t *declaration)
3864 {
3865         int count = 0;
3866
3867         /* count parameters */
3868         count += count_local_declarations(declaration->scope.declarations, NULL);
3869
3870         /* count local variables declared in body */
3871         count += count_decls_in_stmts(declaration->init.statement);
3872
3873         return count;
3874 }
3875
3876 static void initialize_function_parameters(declaration_t *declaration)
3877 {
3878         ir_graph        *irg             = current_ir_graph;
3879         ir_node         *args            = get_irg_args(irg);
3880         ir_node         *start_block     = get_irg_start_block(irg);
3881         ir_type         *function_irtype = get_ir_type(declaration->type);
3882
3883         int            n         = 0;
3884         declaration_t *parameter = declaration->scope.declarations;
3885         for( ; parameter != NULL; parameter = parameter->next, ++n) {
3886                 assert(parameter->declaration_kind == DECLARATION_KIND_UNKNOWN);
3887                 type_t *type = skip_typeref(parameter->type);
3888
3889                 bool needs_entity = parameter->address_taken;
3890                 assert(!is_type_array(type));
3891                 if(is_type_compound(type)) {
3892                         needs_entity = true;
3893                 }
3894
3895                 if(needs_entity) {
3896                         ir_entity *entity = get_method_value_param_ent(function_irtype, n);
3897                         ident     *id     = new_id_from_str(parameter->symbol->string);
3898                         set_entity_ident(entity, id);
3899
3900                         parameter->declaration_kind
3901                                 = DECLARATION_KIND_LOCAL_VARIABLE_ENTITY;
3902                         parameter->v.entity = entity;
3903                         continue;
3904                 }
3905
3906                 ir_mode *mode = get_ir_mode(parameter->type);
3907                 long     pn   = n;
3908                 ir_node *proj = new_r_Proj(irg, start_block, args, mode, pn);
3909
3910                 parameter->declaration_kind = DECLARATION_KIND_LOCAL_VARIABLE;
3911                 parameter->v.value_number   = next_value_number_function;
3912                 set_irg_loc_description(current_ir_graph, next_value_number_function, parameter);
3913                 ++next_value_number_function;
3914
3915                 set_value(parameter->v.value_number, proj);
3916         }
3917 }
3918
3919 /**
3920  * Handle additional decl modifiers for IR-graphs
3921  *
3922  * @param irg            the IR-graph
3923  * @param dec_modifiers  additional modifiers
3924  */
3925 static void handle_decl_modifier_irg(ir_graph_ptr irg, decl_modifiers_t decl_modifiers)
3926 {
3927         if (decl_modifiers & DM_NORETURN) {
3928                 /* TRUE if the declaration includes the Microsoft
3929                    __declspec(noreturn) specifier. */
3930                 set_irg_additional_property(irg, mtp_property_noreturn);
3931         }
3932         if (decl_modifiers & DM_NOTHROW) {
3933                 /* TRUE if the declaration includes the Microsoft
3934                    __declspec(nothrow) specifier. */
3935                 set_irg_additional_property(irg, mtp_property_nothrow);
3936         }
3937         if (decl_modifiers & DM_NAKED) {
3938                 /* TRUE if the declaration includes the Microsoft
3939                    __declspec(naked) specifier. */
3940                 set_irg_additional_property(irg, mtp_property_naked);
3941         }
3942         if (decl_modifiers & DM_FORCEINLINE) {
3943                 /* TRUE if the declaration includes the
3944                    Microsoft __forceinline specifier. */
3945                 set_irg_inline_property(irg, irg_inline_forced);
3946         }
3947         if (decl_modifiers & DM_NOINLINE) {
3948                 /* TRUE if the declaration includes the Microsoft
3949                    __declspec(noinline) specifier. */
3950                 set_irg_inline_property(irg, irg_inline_forbidden);
3951         }
3952 }
3953
3954 static void create_function(declaration_t *declaration)
3955 {
3956         ir_entity *function_entity = get_function_entity(declaration);
3957
3958         if(declaration->init.statement == NULL)
3959                 return;
3960
3961         current_function_decl = declaration;
3962         current_function_name = NULL;
3963
3964         assert(imature_blocks == NULL);
3965         imature_blocks = NEW_ARR_F(ir_node*, 0);
3966
3967         int       n_local_vars = get_function_n_local_vars(declaration);
3968         ir_graph *irg          = new_ir_graph(function_entity, n_local_vars);
3969         ir_node  *first_block  = get_cur_block();
3970
3971         /* set inline flags */
3972         if (declaration->is_inline)
3973         set_irg_inline_property(irg, irg_inline_recomended);
3974     handle_decl_modifier_irg(irg, declaration->modifiers);
3975
3976         next_value_number_function = 0;
3977         initialize_function_parameters(declaration);
3978
3979         statement_to_firm(declaration->init.statement);
3980
3981         ir_node *end_block = get_irg_end_block(irg);
3982
3983         /* do we have a return statement yet? */
3984         if(get_cur_block() != NULL) {
3985                 type_t *type = skip_typeref(declaration->type);
3986                 assert(is_type_function(type));
3987                 const function_type_t *func_type   = &type->function;
3988                 const type_t          *return_type
3989                         = skip_typeref(func_type->return_type);
3990
3991                 ir_node *ret;
3992                 if (is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
3993                         ret = new_Return(get_store(), 0, NULL);
3994                 } else {
3995                         ir_mode *mode;
3996                         if(is_type_scalar(return_type)) {
3997                                 mode = get_ir_mode(func_type->return_type);
3998                         } else {
3999                                 mode = mode_P_data;
4000                         }
4001
4002                         ir_node *in[1];
4003                         /* ยง5.1.2.2.3 main implicitly returns 0 */
4004                         if (strcmp(declaration->symbol->string, "main") == 0) {
4005                                 in[0] = new_Const(mode, get_mode_null(mode));
4006                         } else {
4007                                 in[0] = new_Unknown(mode);
4008                         }
4009                         ret = new_Return(get_store(), 1, in);
4010                 }
4011                 add_immBlock_pred(end_block, ret);
4012         }
4013
4014         for(int i = 0; i < ARR_LEN(imature_blocks); ++i) {
4015                 mature_immBlock(imature_blocks[i]);
4016         }
4017         DEL_ARR_F(imature_blocks);
4018         imature_blocks = NULL;
4019
4020         mature_immBlock(first_block);
4021         mature_immBlock(end_block);
4022
4023         irg_finalize_cons(irg);
4024
4025         /* finalize the frame type */
4026         ir_type *frame_type = get_irg_frame_type(irg);
4027         int      n          = get_compound_n_members(frame_type);
4028         int      align_all  = 4;
4029         int      offset     = 0;
4030         for(int i = 0; i < n; ++i) {
4031                 ir_entity *entity      = get_compound_member(frame_type, i);
4032                 ir_type   *entity_type = get_entity_type(entity);
4033
4034                 int align = get_type_alignment_bytes(entity_type);
4035                 if(align > align_all)
4036                         align_all = align;
4037                 int misalign = 0;
4038                 if(align > 0) {
4039                         misalign  = offset % align;
4040                         if(misalign > 0) {
4041                                 offset += align - misalign;
4042                         }
4043                 }
4044
4045                 set_entity_offset(entity, offset);
4046                 offset += get_type_size_bytes(entity_type);
4047         }
4048         set_type_size_bytes(frame_type, offset);
4049         set_type_alignment_bytes(frame_type, align_all);
4050         set_type_state(frame_type, layout_fixed);
4051
4052         irg_vrfy(irg);
4053 }
4054
4055 static void create_global_variable(declaration_t *declaration)
4056 {
4057         ir_visibility  vis;
4058         ir_type       *var_type;
4059         switch ((storage_class_tag_t)declaration->storage_class) {
4060                 case STORAGE_CLASS_STATIC:
4061                         vis = visibility_local;
4062                         goto global_var;
4063
4064                 case STORAGE_CLASS_EXTERN:
4065                         vis = visibility_external_allocated;
4066                         goto global_var;
4067
4068                 case STORAGE_CLASS_NONE:
4069                         vis = visibility_external_visible;
4070                         goto global_var;
4071
4072                 case STORAGE_CLASS_THREAD:
4073                         vis = visibility_external_visible;
4074                         goto tls_var;
4075
4076                 case STORAGE_CLASS_THREAD_EXTERN:
4077                         vis = visibility_external_allocated;
4078                         goto tls_var;
4079
4080                 case STORAGE_CLASS_THREAD_STATIC:
4081                         vis = visibility_local;
4082                         goto tls_var;
4083
4084 tls_var:
4085                         var_type = get_tls_type();
4086                         goto create_var;
4087
4088 global_var:
4089                         var_type = get_glob_type();
4090                         goto create_var;
4091
4092 create_var:
4093                         create_declaration_entity(declaration,
4094                                                   DECLARATION_KIND_GLOBAL_VARIABLE,
4095                                                   var_type);
4096                         set_entity_visibility(declaration->v.entity, vis);
4097
4098                         current_ir_graph = get_const_code_irg();
4099                         create_initializer(declaration);
4100                         return;
4101
4102                 case STORAGE_CLASS_TYPEDEF:
4103                 case STORAGE_CLASS_AUTO:
4104                 case STORAGE_CLASS_REGISTER:
4105                 case STORAGE_CLASS_ENUM_ENTRY:
4106                         break;
4107         }
4108         panic("Invalid storage class for global variable");
4109 }
4110
4111 static void scope_to_firm(scope_t *scope)
4112 {
4113         /* first pass: create declarations */
4114         declaration_t *declaration = scope->declarations;
4115         for( ; declaration != NULL; declaration = declaration->next) {
4116                 if(declaration->namespc != NAMESPACE_NORMAL)
4117                         continue;
4118                 if(declaration->storage_class == STORAGE_CLASS_ENUM_ENTRY
4119                                 || declaration->storage_class == STORAGE_CLASS_TYPEDEF)
4120                         continue;
4121                 if(declaration->symbol == NULL)
4122                         continue;
4123
4124                 type_t *type = skip_typeref(declaration->type);
4125                 if(is_type_function(type)) {
4126                         get_function_entity(declaration);
4127                 } else {
4128                         create_global_variable(declaration);
4129                 }
4130         }
4131
4132         /* second pass: create code */
4133         declaration = scope->declarations;
4134         for( ; declaration != NULL; declaration = declaration->next) {
4135                 if(declaration->namespc != NAMESPACE_NORMAL)
4136                         continue;
4137                 if(declaration->storage_class == STORAGE_CLASS_ENUM_ENTRY
4138                                 || declaration->storage_class == STORAGE_CLASS_TYPEDEF)
4139                         continue;
4140                 if(declaration->symbol == NULL)
4141                         continue;
4142
4143                 type_t *type = declaration->type;
4144                 if(type->kind != TYPE_FUNCTION)
4145                         continue;
4146
4147                 create_function(declaration);
4148         }
4149 }
4150
4151 void init_ast2firm(void)
4152 {
4153         obstack_init(&asm_obst);
4154         init_atomic_modes();
4155
4156         /* create idents for all known runtime functions */
4157         for (size_t i = 0; i < sizeof(rts_data) / sizeof(rts_data[0]); ++i) {
4158                 predef_idents[rts_data[i].id] = new_id_from_str(rts_data[i].name);
4159         }
4160 }
4161
4162 void exit_ast2firm(void)
4163 {
4164         obstack_free(&asm_obst, NULL);
4165 }
4166
4167 void translation_unit_to_firm(translation_unit_t *unit)
4168 {
4169         type_const_char = make_atomic_type(ATOMIC_TYPE_CHAR, TYPE_QUALIFIER_CONST);
4170         type_void       = make_atomic_type(ATOMIC_TYPE_VOID, TYPE_QUALIFIER_NONE);
4171         type_int        = make_atomic_type(ATOMIC_TYPE_INT,  TYPE_QUALIFIER_NONE);
4172
4173         ir_type_int        = get_ir_type(type_int);
4174         ir_type_const_char = get_ir_type(type_const_char);
4175         ir_type_wchar_t    = get_ir_type(type_wchar_t);
4176         ir_type_void       = get_ir_type(type_int); /* we don't have a real void
4177                                                        type in firm */
4178
4179         type_void->base.firm_type = ir_type_void;
4180
4181         /* just to be sure */
4182         continue_label      = NULL;
4183         break_label         = NULL;
4184         current_switch_cond = NULL;
4185
4186         scope_to_firm(&unit->scope);
4187 }