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