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