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