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