parser: Parse and reject GCC range initializers "[0 ... 9]".
[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 *const arg_type = skip_typeref(expression->base.type);
1774                 if (is_type_complex(arg_type)) {
1775                         complex_value value = expression_to_complex(expression);
1776                         in[n] = complex_to_memory(dbgi, arg_type, value);
1777                 } else {
1778                         in[n] = conv_to_storage_type(dbgi, expression_to_value(expression), arg_type);
1779                 }
1780
1781                 argument = argument->next;
1782         }
1783
1784         ir_node *store;
1785         if (function_type->modifiers & DM_CONST) {
1786                 store = get_irg_no_mem(current_ir_graph);
1787         } else {
1788                 store = get_store();
1789         }
1790
1791         ir_node *node;
1792         type_t  *return_type = skip_typeref(function_type->return_type);
1793         ir_node *result      = NULL;
1794         if (firm_builtin) {
1795                 node = new_d_Builtin(dbgi, store, n_parameters, in, firm_builtin_kind,
1796                                      ir_method_type);
1797                 if (! (function_type->modifiers & DM_CONST)) {
1798                         ir_node *mem = new_Proj(node, mode_M, pn_Builtin_M);
1799                         set_store(mem);
1800                 }
1801
1802                 if (!is_type_void(return_type)) {
1803                         assert(is_type_scalar(return_type));
1804                         ir_mode *mode = get_ir_mode_storage(return_type);
1805                         result = new_Proj(node, mode, pn_Builtin_max+1);
1806                 }
1807         } else {
1808                 node = new_d_Call(dbgi, store, callee, n_parameters, in, ir_method_type);
1809                 if (! (function_type->modifiers & DM_CONST)) {
1810                         ir_node *mem = new_Proj(node, mode_M, pn_Call_M);
1811                         set_store(mem);
1812                 }
1813
1814                 if (!is_type_void(return_type)) {
1815                         ir_node *const resproj = new_Proj(node, mode_T, pn_Call_T_result);
1816                         ir_mode *const mode    = get_ir_mode_storage(return_type);
1817                         result                 = new_Proj(resproj, mode, 0);
1818                 }
1819         }
1820
1821         if (function_type->modifiers & DM_NORETURN) {
1822                 /* A dead end:  Keep the Call and the Block.  Also place all further
1823                  * nodes into a new and unreachable block. */
1824                 keep_alive(node);
1825                 keep_alive(get_cur_block());
1826                 ir_node *block = new_Block(0, NULL);
1827                 set_cur_block(block);
1828         }
1829
1830         return result;
1831 }
1832
1833 static ir_node *statement_to_firm(statement_t *statement);
1834 static ir_node *compound_statement_to_firm(compound_statement_t *compound);
1835 static ir_node *expression_to_addr(const expression_t *expression);
1836
1837 static void assign_value(dbg_info *dbgi, ir_node *addr, type_t *type,
1838                          ir_node *value)
1839 {
1840         value = conv_to_storage_type(dbgi, value, type);
1841
1842         ir_node *memory = get_store();
1843
1844         if (is_type_scalar(type) && !is_type_complex(type)) {
1845                 ir_cons_flags flags = type->base.qualifiers & TYPE_QUALIFIER_VOLATILE
1846                                       ? cons_volatile : cons_none;
1847                 ir_node  *store     = new_d_Store(dbgi, memory, addr, value, flags);
1848                 ir_node  *store_mem = new_d_Proj(dbgi, store, mode_M, pn_Store_M);
1849                 set_store(store_mem);
1850         } else {
1851                 ir_type *irtype    = get_ir_type(type);
1852                 ir_node *copyb     = new_d_CopyB(dbgi, memory, addr, value, irtype);
1853                 ir_node *copyb_mem = new_Proj(copyb, mode_M, pn_CopyB_M);
1854                 set_store(copyb_mem);
1855         }
1856 }
1857
1858 static ir_tarval *create_bitfield_mask(ir_mode *mode, int offset, int size)
1859 {
1860         ir_tarval *all_one   = get_mode_all_one(mode);
1861         int        mode_size = get_mode_size_bits(mode);
1862         ir_mode   *mode_uint = atomic_modes[ATOMIC_TYPE_UINT];
1863
1864         assert(offset >= 0);
1865         assert(size   >= 0);
1866         assert(offset + size <= mode_size);
1867         if (size == mode_size) {
1868                 return all_one;
1869         }
1870
1871         long       shiftr    = get_mode_size_bits(mode) - size;
1872         long       shiftl    = offset;
1873         ir_tarval *tv_shiftr = new_tarval_from_long(shiftr, mode_uint);
1874         ir_tarval *tv_shiftl = new_tarval_from_long(shiftl, mode_uint);
1875         ir_tarval *mask0     = tarval_shr(all_one, tv_shiftr);
1876         ir_tarval *mask1     = tarval_shl(mask0, tv_shiftl);
1877
1878         return mask1;
1879 }
1880
1881 static ir_node *bitfield_store_to_firm(dbg_info *dbgi,
1882                 ir_entity *entity, ir_node *addr, ir_node *value, bool set_volatile,
1883                 bool need_return)
1884 {
1885         ir_type *entity_type = get_entity_type(entity);
1886         ir_type *base_type   = get_primitive_base_type(entity_type);
1887         ir_mode *mode        = get_type_mode(base_type);
1888         ir_mode *mode_uint   = atomic_modes[ATOMIC_TYPE_UINT];
1889
1890         value = create_conv(dbgi, value, mode);
1891
1892         /* kill upper bits of value and shift to right position */
1893         unsigned  bitoffset  = get_entity_offset_bits_remainder(entity);
1894         unsigned  bitsize    = get_mode_size_bits(get_type_mode(entity_type));
1895         unsigned  base_bits  = get_mode_size_bits(mode);
1896         unsigned  shiftwidth = base_bits - bitsize;
1897
1898         ir_node  *shiftcount = new_Const_long(mode_uint, shiftwidth);
1899         ir_node  *shiftl     = new_d_Shl(dbgi, value, shiftcount, mode);
1900
1901         unsigned  shrwidth   = base_bits - bitsize - bitoffset;
1902         ir_node  *shrconst   = new_Const_long(mode_uint, shrwidth);
1903         ir_node  *shiftr     = new_d_Shr(dbgi, shiftl, shrconst, mode);
1904
1905         /* load current value */
1906         ir_node   *mem             = get_store();
1907         ir_node   *load            = new_d_Load(dbgi, mem, addr, mode,
1908                                           set_volatile ? cons_volatile : cons_none);
1909         ir_node   *load_mem        = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
1910         ir_node   *load_res        = new_d_Proj(dbgi, load, mode, pn_Load_res);
1911         ir_tarval *shift_mask      = create_bitfield_mask(mode, bitoffset, bitsize);
1912         ir_tarval *inv_mask        = tarval_not(shift_mask);
1913         ir_node   *inv_mask_node   = new_d_Const(dbgi, inv_mask);
1914         ir_node   *load_res_masked = new_d_And(dbgi, load_res, inv_mask_node, mode);
1915
1916         /* construct new value and store */
1917         ir_node *new_val   = new_d_Or(dbgi, load_res_masked, shiftr, mode);
1918         ir_node *store     = new_d_Store(dbgi, load_mem, addr, new_val,
1919                                          set_volatile ? cons_volatile : cons_none);
1920         ir_node *store_mem = new_d_Proj(dbgi, store, mode_M, pn_Store_M);
1921         set_store(store_mem);
1922
1923         if (!need_return)
1924                 return NULL;
1925
1926         ir_node *res_shr;
1927         ir_node *count_res_shr = new_Const_long(mode_uint, base_bits - bitsize);
1928         if (mode_is_signed(mode)) {
1929                 res_shr = new_d_Shrs(dbgi, shiftl, count_res_shr, mode);
1930         } else {
1931                 res_shr = new_d_Shr(dbgi, shiftl, count_res_shr, mode);
1932         }
1933         return res_shr;
1934 }
1935
1936 static ir_node *bitfield_extract_to_firm(const select_expression_t *expression,
1937                                          ir_node *addr)
1938 {
1939         dbg_info *dbgi      = get_dbg_info(&expression->base.pos);
1940         entity_t *entity    = expression->compound_entry;
1941         type_t   *base_type = entity->declaration.type;
1942         ir_mode  *mode      = get_ir_mode_storage(base_type);
1943         ir_node  *mem       = get_store();
1944         ir_node  *load      = new_d_Load(dbgi, mem, addr, mode, cons_none);
1945         ir_node  *load_mem  = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
1946         ir_node  *load_res  = new_d_Proj(dbgi, load, mode, pn_Load_res);
1947         ir_mode  *mode_uint = atomic_modes[ATOMIC_TYPE_UINT];
1948
1949         ir_mode  *amode     = mode;
1950         /* optimisation, since shifting in modes < machine_size is usually
1951          * less efficient */
1952         if (get_mode_size_bits(amode) < get_mode_size_bits(mode_uint)) {
1953                 amode = mode_uint;
1954         }
1955         unsigned amode_size = get_mode_size_bits(amode);
1956         load_res = create_conv(dbgi, load_res, amode);
1957
1958         set_store(load_mem);
1959
1960         /* kill upper bits */
1961         assert(expression->compound_entry->kind == ENTITY_COMPOUND_MEMBER);
1962         unsigned   bitoffset   = entity->compound_member.bit_offset;
1963         unsigned   bitsize     = entity->compound_member.bit_size;
1964         unsigned   shift_bitsl = amode_size - bitoffset - bitsize;
1965         ir_tarval *tvl         = new_tarval_from_long((long)shift_bitsl, mode_uint);
1966         ir_node   *countl      = new_d_Const(dbgi, tvl);
1967         ir_node   *shiftl      = new_d_Shl(dbgi, load_res, countl, amode);
1968
1969         unsigned   shift_bitsr = bitoffset + shift_bitsl;
1970         assert(shift_bitsr <= amode_size);
1971         ir_tarval *tvr         = new_tarval_from_long((long)shift_bitsr, mode_uint);
1972         ir_node   *countr      = new_d_Const(dbgi, tvr);
1973         ir_node   *shiftr;
1974         if (mode_is_signed(mode)) {
1975                 shiftr = new_d_Shrs(dbgi, shiftl, countr, amode);
1976         } else {
1977                 shiftr = new_d_Shr(dbgi, shiftl, countr, amode);
1978         }
1979
1980         return conv_to_storage_type(dbgi, shiftr, expression->base.type);
1981 }
1982
1983 /* make sure the selected compound type is constructed */
1984 static void construct_select_compound(const select_expression_t *expression)
1985 {
1986         type_t *type = skip_typeref(expression->compound->base.type);
1987         if (is_type_pointer(type)) {
1988                 type = type->pointer.points_to;
1989         }
1990         (void) get_ir_type(type);
1991 }
1992
1993 static ir_node *set_value_for_expression_addr(const expression_t *expression,
1994                                               ir_node *value, ir_node *addr)
1995 {
1996         dbg_info *dbgi = get_dbg_info(&expression->base.pos);
1997         type_t   *type = skip_typeref(expression->base.type);
1998         value = conv_to_storage_type(dbgi, value, type);
1999
2000         if (expression->kind == EXPR_REFERENCE) {
2001                 const reference_expression_t *ref = &expression->reference;
2002
2003                 entity_t *entity = ref->entity;
2004                 assert(is_declaration(entity));
2005                 assert(entity->declaration.kind != DECLARATION_KIND_UNKNOWN);
2006                 if (entity->declaration.kind == DECLARATION_KIND_LOCAL_VARIABLE ||
2007                     entity->declaration.kind == DECLARATION_KIND_PARAMETER) {
2008                         set_value(entity->variable.v.value_number, value);
2009                         return value;
2010                 }
2011         }
2012
2013         if (addr == NULL)
2014                 addr = expression_to_addr(expression);
2015         assert(addr != NULL);
2016
2017         if (expression->kind == EXPR_SELECT) {
2018                 const select_expression_t *select = &expression->select;
2019
2020                 construct_select_compound(select);
2021
2022                 entity_t *entity = select->compound_entry;
2023                 assert(entity->kind == ENTITY_COMPOUND_MEMBER);
2024                 if (entity->compound_member.bitfield) {
2025                         ir_entity *irentity = entity->compound_member.entity;
2026                         bool       set_volatile
2027                                 = select->base.type->base.qualifiers & TYPE_QUALIFIER_VOLATILE;
2028                         value = bitfield_store_to_firm(dbgi, irentity, addr, value,
2029                                                        set_volatile, true);
2030                         return value;
2031                 }
2032         }
2033
2034         assign_value(dbgi, addr, type, value);
2035         return value;
2036 }
2037
2038 static ir_node *get_value_from_lvalue(const expression_t *expression,
2039                                       ir_node *addr)
2040 {
2041         if (expression->kind == EXPR_REFERENCE) {
2042                 const reference_expression_t *ref = &expression->reference;
2043
2044                 entity_t *entity = ref->entity;
2045                 assert(entity->kind == ENTITY_VARIABLE
2046                                 || entity->kind == ENTITY_PARAMETER);
2047                 assert(entity->declaration.kind != DECLARATION_KIND_UNKNOWN);
2048                 int value_number;
2049                 if (entity->declaration.kind == DECLARATION_KIND_LOCAL_VARIABLE ||
2050                     entity->declaration.kind == DECLARATION_KIND_PARAMETER) {
2051                         value_number = entity->variable.v.value_number;
2052                         assert(addr == NULL);
2053                         type_t  *type = skip_typeref(expression->base.type);
2054                         ir_mode *mode = get_ir_mode_storage(type);
2055                         return get_value(value_number, mode);
2056                 }
2057         }
2058
2059         assert(addr != NULL);
2060         dbg_info *dbgi = get_dbg_info(&expression->base.pos);
2061
2062         ir_node *value;
2063         if (expression->kind == EXPR_SELECT &&
2064             expression->select.compound_entry->compound_member.bitfield) {
2065             construct_select_compound(&expression->select);
2066                 value = bitfield_extract_to_firm(&expression->select, addr);
2067         } else {
2068                 value = deref_address(dbgi, expression->base.type, addr);
2069         }
2070
2071         return value;
2072 }
2073
2074 static ir_node *incdec_to_firm(unary_expression_t const *const expr, bool const inc, bool const pre)
2075 {
2076         type_t  *const type = skip_typeref(expr->base.type);
2077         ir_mode *const mode = get_ir_mode_arithmetic(type);
2078
2079         ir_node *offset;
2080         if (is_type_pointer(type)) {
2081                 offset = get_type_size_node(type->pointer.points_to);
2082         } else {
2083                 assert(is_type_arithmetic(type));
2084                 offset = new_Const(get_mode_one(mode));
2085         }
2086
2087         dbg_info           *const dbgi        = get_dbg_info(&expr->base.pos);
2088         expression_t const *const value_expr  = expr->value;
2089         ir_node            *const addr        = expression_to_addr(value_expr);
2090         ir_node            *const value       = get_value_from_lvalue(value_expr, addr);
2091         ir_node            *const value_arith = create_conv(dbgi, value, mode);
2092         ir_node            *const new_value   = inc
2093                 ? new_d_Add(dbgi, value_arith, offset, mode)
2094                 : new_d_Sub(dbgi, value_arith, offset, mode);
2095
2096         ir_node *const store_value = set_value_for_expression_addr(value_expr, new_value, addr);
2097         return pre ? store_value : value;
2098 }
2099
2100 static bool is_local_variable(expression_t *expression)
2101 {
2102         if (expression->kind != EXPR_REFERENCE)
2103                 return false;
2104         reference_expression_t *ref_expr = &expression->reference;
2105         entity_t               *entity   = ref_expr->entity;
2106         if (entity->kind != ENTITY_VARIABLE)
2107                 return false;
2108         assert(entity->declaration.kind != DECLARATION_KIND_UNKNOWN);
2109         return entity->declaration.kind == DECLARATION_KIND_LOCAL_VARIABLE;
2110 }
2111
2112 static ir_relation get_relation(const expression_kind_t kind)
2113 {
2114         switch (kind) {
2115         case EXPR_BINARY_EQUAL:         return ir_relation_equal;
2116         case EXPR_BINARY_ISLESSGREATER: return ir_relation_less_greater;
2117         case EXPR_BINARY_NOTEQUAL:      return ir_relation_unordered_less_greater;
2118         case EXPR_BINARY_ISLESS:
2119         case EXPR_BINARY_LESS:          return ir_relation_less;
2120         case EXPR_BINARY_ISLESSEQUAL:
2121         case EXPR_BINARY_LESSEQUAL:     return ir_relation_less_equal;
2122         case EXPR_BINARY_ISGREATER:
2123         case EXPR_BINARY_GREATER:       return ir_relation_greater;
2124         case EXPR_BINARY_ISGREATEREQUAL:
2125         case EXPR_BINARY_GREATEREQUAL:  return ir_relation_greater_equal;
2126         case EXPR_BINARY_ISUNORDERED:   return ir_relation_unordered;
2127
2128         default:
2129                 break;
2130         }
2131         panic("trying to get ir_relation from non-comparison binexpr type");
2132 }
2133
2134 /**
2135  * Handle the assume optimizer hint: check if a Confirm
2136  * node can be created.
2137  *
2138  * @param dbi    debug info
2139  * @param expr   the IL assume expression
2140  *
2141  * we support here only some simple cases:
2142  *  - var rel const
2143  *  - const rel val
2144  *  - var rel var
2145  */
2146 static ir_node *handle_assume_compare(dbg_info *dbi,
2147                                       const binary_expression_t *expression)
2148 {
2149         expression_t *op1 = expression->left;
2150         expression_t *op2 = expression->right;
2151         entity_t     *var2, *var = NULL;
2152         ir_node      *res      = NULL;
2153         ir_relation   relation = get_relation(expression->base.kind);
2154
2155         if (is_local_variable(op1) && is_local_variable(op2)) {
2156                 var  = op1->reference.entity;
2157             var2 = op2->reference.entity;
2158
2159                 type_t  *const type = skip_typeref(var->declaration.type);
2160                 ir_mode *const mode = get_ir_mode_storage(type);
2161
2162                 ir_node *const irn1 = get_value(var->variable.v.value_number, mode);
2163                 ir_node *const irn2 = get_value(var2->variable.v.value_number, mode);
2164
2165                 res = new_d_Confirm(dbi, irn2, irn1, get_inversed_relation(relation));
2166                 set_value(var2->variable.v.value_number, res);
2167
2168                 res = new_d_Confirm(dbi, irn1, irn2, relation);
2169                 set_value(var->variable.v.value_number, res);
2170
2171                 return res;
2172         }
2173
2174         expression_t *con = NULL;
2175         if (is_local_variable(op1) && is_constant_expression(op2) == EXPR_CLASS_CONSTANT) {
2176                 var = op1->reference.entity;
2177                 con = op2;
2178         } else if (is_constant_expression(op1) == EXPR_CLASS_CONSTANT && is_local_variable(op2)) {
2179                 relation = get_inversed_relation(relation);
2180                 var = op2->reference.entity;
2181                 con = op1;
2182         }
2183
2184         if (var != NULL) {
2185                 type_t  *const type = skip_typeref(var->declaration.type);
2186                 ir_mode *const mode = get_ir_mode_storage(type);
2187
2188                 res = get_value(var->variable.v.value_number, mode);
2189                 res = new_d_Confirm(dbi, res, expression_to_value(con), relation);
2190                 set_value(var->variable.v.value_number, res);
2191         }
2192         return res;
2193 }
2194
2195 /**
2196  * Handle the assume optimizer hint.
2197  *
2198  * @param dbi    debug info
2199  * @param expr   the IL assume expression
2200  */
2201 static ir_node *handle_assume(expression_t const *const expr)
2202 {
2203         switch (expr->kind) {
2204         case EXPR_BINARY_EQUAL:
2205         case EXPR_BINARY_NOTEQUAL:
2206         case EXPR_BINARY_LESS:
2207         case EXPR_BINARY_LESSEQUAL:
2208         case EXPR_BINARY_GREATER:
2209         case EXPR_BINARY_GREATEREQUAL: {
2210                 dbg_info *const dbgi = get_dbg_info(&expr->base.pos);
2211                 return handle_assume_compare(dbgi, &expr->binary);
2212         }
2213
2214         default:
2215                 return NULL;
2216         }
2217 }
2218
2219 static ir_node *create_cast(unary_expression_t const *const expr)
2220 {
2221         type_t *const type = skip_typeref(expr->base.type);
2222         if (is_type_void(type))
2223                 return NULL;
2224
2225         ir_node        *value     = expression_to_value(expr->value);
2226         dbg_info *const dbgi      = get_dbg_info(&expr->base.pos);
2227         type_t   *const from_type = skip_typeref(expr->value->base.type);
2228         ir_mode  *const mode      = get_ir_mode_storage(type);
2229         /* check for conversion from / to __based types */
2230         if (is_type_pointer(type) && is_type_pointer(from_type)) {
2231                 const variable_t *from_var = from_type->pointer.base_variable;
2232                 const variable_t *to_var   = type->pointer.base_variable;
2233                 if (from_var != to_var) {
2234                         if (from_var != NULL) {
2235                                 ir_node *const addr = create_symconst(dbgi, from_var->v.entity);
2236                                 ir_node *const base = deref_address(dbgi, from_var->base.type, addr);
2237                                 value = new_d_Add(dbgi, value, base, mode);
2238                         }
2239                         if (to_var != NULL) {
2240                                 ir_node *const addr = create_symconst(dbgi, to_var->v.entity);
2241                                 ir_node *const base = deref_address(dbgi, to_var->base.type, addr);
2242                                 value = new_d_Sub(dbgi, value, base, mode);
2243                         }
2244                 }
2245         }
2246
2247         return create_conv(dbgi, value, mode);
2248 }
2249
2250 static ir_node *complement_to_firm(unary_expression_t const *const expr)
2251 {
2252         dbg_info *const dbgi  = get_dbg_info(&expr->base.pos);
2253         type_t   *const type  = skip_typeref(expr->base.type);
2254         ir_mode  *const mode  = get_ir_mode_arithmetic(type);
2255         ir_node  *const value = create_conv(dbgi, expression_to_value(expr->value), mode);
2256         return new_d_Not(dbgi, value, mode);
2257 }
2258
2259 static ir_node *dereference_to_firm(unary_expression_t const *const expr)
2260 {
2261         dbg_info *const dbgi       = get_dbg_info(&expr->base.pos);
2262         ir_node        *value      = expression_to_value(expr->value);
2263         type_t   *const value_type = skip_typeref(expr->value->base.type);
2264         assert(is_type_pointer(value_type));
2265
2266         /* check for __based */
2267         variable_t const *const base_var = value_type->pointer.base_variable;
2268         if (base_var) {
2269                 ir_node *const addr = create_symconst(dbgi, base_var->v.entity);
2270                 ir_node *const base = deref_address(dbgi, base_var->base.type, addr);
2271                 value = new_d_Add(dbgi, value, base, get_ir_mode_storage(value_type));
2272         }
2273         type_t *const points_to = value_type->pointer.points_to;
2274         return deref_address(dbgi, points_to, value);
2275 }
2276
2277 static ir_node *negate_to_firm(unary_expression_t const *const expr)
2278 {
2279         dbg_info *const dbgi  = get_dbg_info(&expr->base.pos);
2280         type_t   *const type  = skip_typeref(expr->base.type);
2281         ir_mode  *const mode  = get_ir_mode_arithmetic(type);
2282         ir_node  *const value = create_conv(dbgi, expression_to_value(expr->value), mode);
2283         return new_d_Minus(dbgi, value, mode);
2284 }
2285
2286 static ir_node *adjust_for_pointer_arithmetic(dbg_info *dbgi,
2287                 ir_node *value, type_t *type)
2288 {
2289         ir_mode        *const mode         = get_ir_mode_storage(type_ptrdiff_t);
2290         assert(is_type_pointer(type));
2291         pointer_type_t *const pointer_type = &type->pointer;
2292         type_t         *const points_to    = skip_typeref(pointer_type->points_to);
2293         ir_node        *      elem_size    = get_type_size_node(points_to);
2294         elem_size                          = create_conv(dbgi, elem_size, mode);
2295         value                              = create_conv(dbgi, value,     mode);
2296         ir_node        *const mul          = new_d_Mul(dbgi, value, elem_size, mode);
2297         return mul;
2298 }
2299
2300 static ir_node *create_div(dbg_info *dbgi, ir_node *left, ir_node *right,
2301                            ir_mode *mode)
2302 {
2303         ir_node *pin = new_Pin(new_NoMem());
2304         ir_node *op  = new_d_Div(dbgi, pin, left, right, mode,
2305                                  op_pin_state_floats);
2306         return new_d_Proj(dbgi, op, mode, pn_Div_res);
2307 }
2308
2309 static ir_node *create_op(binary_expression_t const *const expr, ir_node *left, ir_node *right)
2310 {
2311         ir_mode                *mode;
2312         dbg_info         *const dbgi       = get_dbg_info(&expr->base.pos);
2313         type_t           *const type_left  = skip_typeref(expr->left->base.type);
2314         type_t           *const type_right = skip_typeref(expr->right->base.type);
2315         expression_kind_t const kind       = expr->base.kind;
2316         switch (kind) {
2317         case EXPR_BINARY_SHIFTLEFT:
2318         case EXPR_BINARY_SHIFTRIGHT:
2319         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
2320         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
2321                 mode  = get_ir_mode_arithmetic(expr->base.type);
2322                 left  = create_conv(dbgi, left,  mode);
2323                 right = create_conv(dbgi, right, atomic_modes[ATOMIC_TYPE_UINT]);
2324                 break;
2325
2326         case EXPR_BINARY_SUB:
2327                 if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
2328                         const pointer_type_t *const ptr_type = &type_left->pointer;
2329
2330                         mode = get_ir_mode_storage(expr->base.type);
2331                         ir_node *const elem_size = get_type_size_node(ptr_type->points_to);
2332                         ir_node *const conv_size = new_d_Conv(dbgi, elem_size, mode);
2333                         ir_node *const sub       = new_d_Sub(dbgi, left, right, mode);
2334                         ir_node *const no_mem    = new_NoMem();
2335                         ir_node *const div       = new_d_DivRL(dbgi, no_mem, sub, conv_size,
2336                                                                                                    mode, op_pin_state_floats);
2337                         return new_d_Proj(dbgi, div, mode, pn_Div_res);
2338                 }
2339                 /* fallthrough */
2340         case EXPR_BINARY_SUB_ASSIGN:
2341                 if (is_type_pointer(type_left)) {
2342                         right = adjust_for_pointer_arithmetic(dbgi, right, type_left);
2343                         mode  = get_ir_mode_storage(type_left);
2344                         break;
2345                 }
2346                 goto normal_node;
2347
2348         case EXPR_BINARY_ADD:
2349         case EXPR_BINARY_ADD_ASSIGN:
2350                 if (is_type_pointer(type_left)) {
2351                         right = adjust_for_pointer_arithmetic(dbgi, right, type_left);
2352                         mode  = get_ir_mode_storage(type_left);
2353                         break;
2354                 } else if (is_type_pointer(type_right)) {
2355                         left  = adjust_for_pointer_arithmetic(dbgi, left, type_right);
2356                         mode  = get_ir_mode_storage(type_right);
2357                         break;
2358                 }
2359                 goto normal_node;
2360
2361         default:
2362 normal_node:
2363                 mode  = get_ir_mode_arithmetic(type_right);
2364                 left  = create_conv(dbgi, left,  mode);
2365                 right = create_conv(dbgi, right, mode);
2366                 break;
2367         }
2368
2369         switch (kind) {
2370         case EXPR_BINARY_ADD_ASSIGN:
2371         case EXPR_BINARY_ADD:
2372                 return new_d_Add(dbgi, left, right, mode);
2373         case EXPR_BINARY_SUB_ASSIGN:
2374         case EXPR_BINARY_SUB:
2375                 return new_d_Sub(dbgi, left, right, mode);
2376         case EXPR_BINARY_MUL_ASSIGN:
2377         case EXPR_BINARY_MUL:
2378                 return new_d_Mul(dbgi, left, right, mode);
2379         case EXPR_BINARY_DIV:
2380         case EXPR_BINARY_DIV_ASSIGN:
2381                 return create_div(dbgi, left, right, mode);
2382         case EXPR_BINARY_BITWISE_AND:
2383         case EXPR_BINARY_BITWISE_AND_ASSIGN:
2384                 return new_d_And(dbgi, left, right, mode);
2385         case EXPR_BINARY_BITWISE_OR:
2386         case EXPR_BINARY_BITWISE_OR_ASSIGN:
2387                 return new_d_Or(dbgi, left, right, mode);
2388         case EXPR_BINARY_BITWISE_XOR:
2389         case EXPR_BINARY_BITWISE_XOR_ASSIGN:
2390                 return new_d_Eor(dbgi, left, right, mode);
2391         case EXPR_BINARY_SHIFTLEFT:
2392         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
2393                 return new_d_Shl(dbgi, left, right, mode);
2394         case EXPR_BINARY_SHIFTRIGHT:
2395         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
2396                 if (mode_is_signed(mode)) {
2397                         return new_d_Shrs(dbgi, left, right, mode);
2398                 } else {
2399                         return new_d_Shr(dbgi, left, right, mode);
2400                 }
2401         case EXPR_BINARY_MOD:
2402         case EXPR_BINARY_MOD_ASSIGN: {
2403                 ir_node *pin = new_Pin(new_NoMem());
2404                 ir_node *op  = new_d_Mod(dbgi, pin, left, right, mode,
2405                                          op_pin_state_floats);
2406                 ir_node *res = new_d_Proj(dbgi, op, mode, pn_Mod_res);
2407                 return res;
2408         }
2409         default:
2410                 panic("unexpected expression kind");
2411         }
2412 }
2413
2414 static ir_node *binop_to_firm(binary_expression_t const *const expr)
2415 {
2416         ir_node *const left  = expression_to_value(expr->left);
2417         ir_node *const right = expression_to_value(expr->right);
2418         return create_op(expr, left, right);
2419 }
2420
2421 /**
2422  * Check if a given expression is a GNU __builtin_expect() call.
2423  */
2424 static bool is_builtin_expect(const expression_t *expression)
2425 {
2426         if (expression->kind != EXPR_CALL)
2427                 return false;
2428
2429         expression_t *function = expression->call.function;
2430         if (function->kind != EXPR_REFERENCE)
2431                 return false;
2432         reference_expression_t *ref = &function->reference;
2433         if (ref->entity->kind         != ENTITY_FUNCTION ||
2434             ref->entity->function.btk != BUILTIN_EXPECT)
2435                 return false;
2436
2437         return true;
2438 }
2439
2440 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)
2441 {
2442         dbg_info *const dbgi = get_dbg_info(&expr->base.pos);
2443         ir_node  *const cmp  = new_d_Cmp(dbgi, left, right, relation);
2444         if (is_Const(cmp)) {
2445                 if (tarval_is_null(get_Const_tarval(cmp))) {
2446                         jump_to_target(false_target);
2447                 } else {
2448                         jump_to_target(true_target);
2449                 }
2450         } else {
2451                 ir_node *const cond       = new_d_Cond(dbgi, cmp);
2452                 ir_node *const true_proj  = new_d_Proj(dbgi, cond, mode_X, pn_Cond_true);
2453                 ir_node *const false_proj = new_d_Proj(dbgi, cond, mode_X, pn_Cond_false);
2454
2455                 /* set branch prediction info based on __builtin_expect */
2456                 if (is_builtin_expect(expr) && is_Cond(cond)) {
2457                         call_argument_t *const argument = expr->call.arguments->next;
2458                         if (is_constant_expression(argument->expression) == EXPR_CLASS_CONSTANT) {
2459                                 bool               const cnst = fold_constant_to_bool(argument->expression);
2460                                 cond_jmp_predicate const pred = cnst ? COND_JMP_PRED_TRUE : COND_JMP_PRED_FALSE;
2461                                 set_Cond_jmp_pred(cond, pred);
2462                         }
2463                 }
2464
2465                 add_pred_to_jump_target(true_target,  true_proj);
2466                 add_pred_to_jump_target(false_target, false_proj);
2467         }
2468         set_unreachable_now();
2469 }
2470
2471 static ir_node *control_flow_to_1_0(expression_t const *const expr, jump_target *const true_target, jump_target *const false_target)
2472 {
2473         ir_node        *val  = NULL;
2474         dbg_info *const dbgi = get_dbg_info(&expr->base.pos);
2475         ir_mode  *const mode = get_ir_mode_storage(expr->base.type);
2476         jump_target     exit_target;
2477         init_jump_target(&exit_target, NULL);
2478
2479         if (enter_jump_target(true_target)) {
2480                 jump_to_target(&exit_target);
2481                 val = new_d_Const(dbgi, get_mode_one(mode));
2482         }
2483
2484         if (enter_jump_target(false_target)) {
2485                 jump_to_target(&exit_target);
2486                 ir_node *const zero = new_d_Const(dbgi, get_mode_null(mode));
2487                 if (val) {
2488                         ir_node *const in[] = { val, zero };
2489                         val = new_rd_Phi(dbgi, exit_target.block, lengthof(in), in, mode);
2490                 } else {
2491                         val = zero;
2492                 }
2493         }
2494
2495         if (!enter_jump_target(&exit_target)) {
2496                 set_cur_block(new_Block(0, NULL));
2497                 val = new_d_Bad(dbgi, mode);
2498         }
2499         return val;
2500 }
2501
2502 static ir_node *binop_assign_to_firm(binary_expression_t const *const expr)
2503 {
2504         ir_node            *const right     = expression_to_value(expr->right);
2505         expression_t const *const left_expr = expr->left;
2506         ir_node            *const addr      = expression_to_addr(left_expr);
2507         ir_node            *const left      = get_value_from_lvalue(left_expr, addr);
2508         ir_node                  *result    = create_op(expr, left, right);
2509
2510         type_t *const type = skip_typeref(expr->base.type);
2511         if (is_type_atomic(type, ATOMIC_TYPE_BOOL)) {
2512                 jump_target true_target;
2513                 jump_target false_target;
2514                 init_jump_target(&true_target,  NULL);
2515                 init_jump_target(&false_target, NULL);
2516                 ir_mode *const mode = get_irn_mode(result);
2517                 ir_node *const zero = new_Const(get_mode_null(mode));
2518                 compare_to_control_flow((expression_t const*)expr, result, zero, ir_relation_unordered_less_greater, &true_target, &false_target);
2519                 result = control_flow_to_1_0((expression_t const*)expr, &true_target, &false_target);
2520         }
2521
2522         return set_value_for_expression_addr(left_expr, result, addr);
2523 }
2524
2525 static ir_node *assign_expression_to_firm(binary_expression_t const *const expr)
2526 {
2527         ir_node *const addr  = expression_to_addr(expr->left);
2528         ir_node *const right = expression_to_value(expr->right);
2529         return set_value_for_expression_addr(expr->left, right, addr);
2530 }
2531
2532 /** evaluate an expression and discard the result, but still produce the
2533  * side-effects. */
2534 static void evaluate_expression_discard_result(const expression_t *expression)
2535 {
2536         type_t *type = skip_typeref(expression->base.type);
2537         if (is_type_complex(type)) {
2538                 expression_to_complex(expression);
2539         } else {
2540                 expression_to_value(expression);
2541         }
2542 }
2543
2544 static ir_node *comma_expression_to_firm(binary_expression_t const *const expr)
2545 {
2546         evaluate_expression_discard_result(expr->left);
2547         return expression_to_value(expr->right);
2548 }
2549
2550 static ir_node *array_access_addr(const array_access_expression_t *expression)
2551 {
2552         dbg_info *dbgi        = get_dbg_info(&expression->base.pos);
2553         ir_node  *base_addr   = expression_to_value(expression->array_ref);
2554         ir_node  *offset      = expression_to_value(expression->index);
2555         type_t   *ref_type    = skip_typeref(expression->array_ref->base.type);
2556         ir_node  *real_offset = adjust_for_pointer_arithmetic(dbgi, offset, ref_type);
2557         ir_node  *result      = new_d_Add(dbgi, base_addr, real_offset, mode_P_data);
2558
2559         return result;
2560 }
2561
2562 static ir_node *array_access_to_firm(
2563                 const array_access_expression_t *expression)
2564 {
2565         dbg_info *dbgi   = get_dbg_info(&expression->base.pos);
2566         ir_node  *addr   = array_access_addr(expression);
2567         type_t   *type   = revert_automatic_type_conversion(
2568                         (const expression_t*) expression);
2569         type             = skip_typeref(type);
2570
2571         return deref_address(dbgi, type, addr);
2572 }
2573
2574 static long get_offsetof_offset(const offsetof_expression_t *expression)
2575 {
2576         type_t *orig_type = expression->type;
2577         long    offset    = 0;
2578
2579         designator_t *designator = expression->designator;
2580         for ( ; designator != NULL; designator = designator->next) {
2581                 type_t *type = skip_typeref(orig_type);
2582                 /* be sure the type is constructed */
2583                 (void) get_ir_type(type);
2584
2585                 if (designator->symbol != NULL) {
2586                         assert(is_type_compound(type));
2587                         symbol_t *symbol = designator->symbol;
2588
2589                         compound_t *compound = type->compound.compound;
2590                         entity_t   *iter     = compound->members.entities;
2591                         for (; iter->base.symbol != symbol; iter = iter->base.next) {}
2592
2593                         assert(iter->kind == ENTITY_COMPOUND_MEMBER);
2594                         assert(iter->declaration.kind == DECLARATION_KIND_COMPOUND_MEMBER);
2595                         offset += get_entity_offset(iter->compound_member.entity);
2596
2597                         orig_type = iter->declaration.type;
2598                 } else {
2599                         expression_t *array_index = designator->array_index;
2600                         assert(designator->array_index != NULL);
2601                         assert(is_type_array(type));
2602
2603                         long index         = fold_constant_to_int(array_index);
2604                         ir_type *arr_type  = get_ir_type(type);
2605                         ir_type *elem_type = get_array_element_type(arr_type);
2606                         long     elem_size = get_type_size_bytes(elem_type);
2607
2608                         offset += index * elem_size;
2609
2610                         orig_type = type->array.element_type;
2611                 }
2612         }
2613
2614         return offset;
2615 }
2616
2617 static ir_node *offsetof_to_firm(const offsetof_expression_t *expression)
2618 {
2619         ir_mode   *mode   = get_ir_mode_storage(expression->base.type);
2620         long       offset = get_offsetof_offset(expression);
2621         ir_tarval *tv     = new_tarval_from_long(offset, mode);
2622         dbg_info  *dbgi   = get_dbg_info(&expression->base.pos);
2623
2624         return new_d_Const(dbgi, tv);
2625 }
2626
2627 static void create_local_initializer(initializer_t *initializer, dbg_info *dbgi,
2628                                      ir_entity *entity, type_t *type);
2629 static ir_initializer_t *create_ir_initializer(
2630                 const initializer_t *initializer, type_t *type);
2631
2632 static ir_entity *create_initializer_entity(dbg_info *dbgi,
2633                                             initializer_t *initializer,
2634                                             type_t *type)
2635 {
2636         /* create the ir_initializer */
2637         PUSH_IRG(get_const_code_irg());
2638         ir_initializer_t *irinitializer = create_ir_initializer(initializer, type);
2639         POP_IRG();
2640
2641         ident     *const id          = id_unique("initializer.%u");
2642         ir_type   *const irtype      = get_ir_type(type);
2643         ir_type   *const global_type = get_glob_type();
2644         ir_entity *const entity      = new_d_entity(global_type, id, irtype, dbgi);
2645         set_entity_ld_ident(entity, id);
2646         set_entity_visibility(entity, ir_visibility_private);
2647         add_entity_linkage(entity, IR_LINKAGE_CONSTANT);
2648         set_entity_initializer(entity, irinitializer);
2649         return entity;
2650 }
2651
2652 static ir_node *compound_literal_addr(compound_literal_expression_t const *const expression)
2653 {
2654         dbg_info      *dbgi        = get_dbg_info(&expression->base.pos);
2655         type_t        *type        = expression->type;
2656         initializer_t *initializer = expression->initializer;
2657
2658         if (expression->global_scope ||
2659                 ((type->base.qualifiers & TYPE_QUALIFIER_CONST)
2660             && is_constant_initializer(initializer) == EXPR_CLASS_CONSTANT)) {
2661                 ir_entity *entity = create_initializer_entity(dbgi, initializer, type);
2662                 return create_symconst(dbgi, entity);
2663         } else {
2664                 /* create an entity on the stack */
2665                 ident   *const id     = id_unique("CompLit.%u");
2666                 ir_type *const irtype = get_ir_type(type);
2667                 ir_type *frame_type   = get_irg_frame_type(current_ir_graph);
2668
2669                 ir_entity *const entity = new_d_entity(frame_type, id, irtype, dbgi);
2670                 set_entity_ld_ident(entity, id);
2671
2672                 /* create initialisation code */
2673                 create_local_initializer(initializer, dbgi, entity, type);
2674
2675                 /* create a sel for the compound literal address */
2676                 ir_node *frame = get_irg_frame(current_ir_graph);
2677                 ir_node *sel   = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
2678                 return sel;
2679         }
2680 }
2681
2682 static ir_node *compound_literal_to_firm(compound_literal_expression_t const* const expr)
2683 {
2684         dbg_info *const dbgi = get_dbg_info(&expr->base.pos);
2685         type_t   *const type = expr->type;
2686         ir_node  *const addr = compound_literal_addr(expr);
2687         return deref_address(dbgi, type, addr);
2688 }
2689
2690 /**
2691  * Transform a sizeof expression into Firm code.
2692  */
2693 static ir_node *sizeof_to_firm(const typeprop_expression_t *expression)
2694 {
2695         type_t *const type = skip_typeref(expression->type);
2696         /* ยง6.5.3.4:2 if the type is a VLA, evaluate the expression. */
2697         if (is_type_array(type) && type->array.is_vla
2698                         && expression->tp_expression != NULL) {
2699                 expression_to_value(expression->tp_expression);
2700         }
2701
2702         return get_type_size_node(type);
2703 }
2704
2705 static entity_t *get_expression_entity(const expression_t *expression)
2706 {
2707         if (expression->kind != EXPR_REFERENCE)
2708                 return NULL;
2709
2710         return expression->reference.entity;
2711 }
2712
2713 static unsigned get_cparser_entity_alignment(const entity_t *entity)
2714 {
2715         switch (entity->kind) {
2716         case DECLARATION_KIND_CASES:
2717                 return entity->declaration.alignment;
2718         case ENTITY_STRUCT:
2719         case ENTITY_UNION:
2720                 return entity->compound.alignment;
2721         case ENTITY_TYPEDEF:
2722                 return entity->typedefe.alignment;
2723         default:
2724                 break;
2725         }
2726         return 0;
2727 }
2728
2729 /**
2730  * Transform an alignof expression into Firm code.
2731  */
2732 static ir_node *alignof_to_firm(const typeprop_expression_t *expression)
2733 {
2734         unsigned alignment = 0;
2735
2736         const expression_t *tp_expression = expression->tp_expression;
2737         if (tp_expression != NULL) {
2738                 entity_t *entity = get_expression_entity(tp_expression);
2739                 if (entity != NULL) {
2740                         alignment = get_cparser_entity_alignment(entity);
2741                 }
2742         }
2743
2744         if (alignment == 0) {
2745                 type_t *type = expression->type;
2746                 alignment = get_type_alignment(type);
2747         }
2748
2749         dbg_info  *dbgi = get_dbg_info(&expression->base.pos);
2750         ir_mode   *mode = get_ir_mode_storage(expression->base.type);
2751         ir_tarval *tv   = new_tarval_from_long(alignment, mode);
2752         return new_d_Const(dbgi, tv);
2753 }
2754
2755 static void init_ir_types(void);
2756
2757 ir_tarval *fold_constant_to_tarval(const expression_t *expression)
2758 {
2759         assert(is_constant_expression(expression) == EXPR_CLASS_CONSTANT);
2760
2761         bool constant_folding_old = constant_folding;
2762         constant_folding = true;
2763         int old_optimize         = get_optimize();
2764         int old_constant_folding = get_opt_constant_folding();
2765         set_optimize(1);
2766         set_opt_constant_folding(1);
2767
2768         init_ir_types();
2769
2770         PUSH_IRG(get_const_code_irg());
2771         ir_node *const cnst = expression_to_value(expression);
2772         POP_IRG();
2773
2774         set_optimize(old_optimize);
2775         set_opt_constant_folding(old_constant_folding);
2776         constant_folding = constant_folding_old;
2777
2778         if (!is_Const(cnst))
2779                 panic("couldn't fold constant");
2780         return get_Const_tarval(cnst);
2781 }
2782
2783 static complex_constant fold_complex_constant(const expression_t *expression)
2784 {
2785         assert(is_constant_expression(expression) == EXPR_CLASS_CONSTANT);
2786
2787         bool constant_folding_old = constant_folding;
2788         constant_folding = true;
2789         int old_optimize         = get_optimize();
2790         int old_constant_folding = get_opt_constant_folding();
2791         set_optimize(1);
2792         set_opt_constant_folding(1);
2793
2794         init_ir_types();
2795
2796         PUSH_IRG(get_const_code_irg());
2797         complex_value value = expression_to_complex(expression);
2798         POP_IRG();
2799
2800         set_optimize(old_optimize);
2801         set_opt_constant_folding(old_constant_folding);
2802
2803         if (!is_Const(value.real) || !is_Const(value.imag)) {
2804                 panic("couldn't fold constant");
2805         }
2806
2807         constant_folding = constant_folding_old;
2808
2809         return (complex_constant) {
2810                 get_Const_tarval(value.real),
2811                 get_Const_tarval(value.imag)
2812         };
2813 }
2814
2815 /* this function is only used in parser.c, but it relies on libfirm functionality */
2816 bool constant_is_negative(const expression_t *expression)
2817 {
2818         ir_tarval *tv = fold_constant_to_tarval(expression);
2819         return tarval_is_negative(tv);
2820 }
2821
2822 long fold_constant_to_int(const expression_t *expression)
2823 {
2824         ir_tarval *tv = fold_constant_to_tarval(expression);
2825         if (!tarval_is_long(tv)) {
2826                 panic("result of constant folding is not integer");
2827         }
2828
2829         return get_tarval_long(tv);
2830 }
2831
2832 bool fold_constant_to_bool(const expression_t *expression)
2833 {
2834         type_t *type = skip_typeref(expression->base.type);
2835         if (is_type_complex(type)) {
2836                 complex_constant tvs = fold_complex_constant(expression);
2837                 return !tarval_is_null(tvs.real) || !tarval_is_null(tvs.imag);
2838         } else {
2839                 ir_tarval *tv = fold_constant_to_tarval(expression);
2840                 return !tarval_is_null(tv);
2841         }
2842 }
2843
2844 static ir_node *conditional_to_firm(const conditional_expression_t *expression)
2845 {
2846         jump_target true_target;
2847         jump_target false_target;
2848         init_jump_target(&true_target,  NULL);
2849         init_jump_target(&false_target, NULL);
2850         ir_node *const cond_expr = expression_to_control_flow(expression->condition, &true_target, &false_target);
2851
2852         ir_node        *val  = NULL;
2853         dbg_info *const dbgi = get_dbg_info(&expression->base.pos);
2854         type_t   *const type = skip_typeref(expression->base.type);
2855         ir_mode  *const mode = get_ir_mode_arithmetic(type);
2856         jump_target exit_target;
2857         init_jump_target(&exit_target, NULL);
2858
2859         if (enter_jump_target(&true_target)) {
2860                 if (expression->true_expression) {
2861                         val = expression_to_value(expression->true_expression);
2862                 } else if (cond_expr) {
2863                         val = cond_expr;
2864                 } else {
2865                         /* Condition ended with a short circuit (&&, ||, !) operation or a
2866                          * comparison.  Generate a "1" as value for the true branch. */
2867                         val = new_Const(get_mode_one(mode));
2868                 }
2869                 if (val)
2870                         val = create_conv(dbgi, val, mode);
2871                 jump_to_target(&exit_target);
2872         }
2873
2874         if (enter_jump_target(&false_target)) {
2875                 ir_node *false_val = expression_to_value(expression->false_expression);
2876                 if (false_val)
2877                         false_val = create_conv(dbgi, false_val, mode);
2878                 jump_to_target(&exit_target);
2879                 if (val) {
2880                         ir_node *const in[] = { val, false_val };
2881                         val = new_rd_Phi(dbgi, exit_target.block, lengthof(in), in, get_irn_mode(val));
2882                 } else {
2883                         val = false_val;
2884                 }
2885         }
2886
2887         if (!enter_jump_target(&exit_target)) {
2888                 set_cur_block(new_Block(0, NULL));
2889                 if (!is_type_void(type))
2890                         val = new_Bad(mode);
2891         }
2892         return val;
2893 }
2894
2895 /**
2896  * Returns an IR-node representing the address of a field.
2897  */
2898 static ir_node *select_addr(const select_expression_t *expression)
2899 {
2900         dbg_info *dbgi = get_dbg_info(&expression->base.pos);
2901
2902         construct_select_compound(expression);
2903
2904         ir_node *compound_addr = expression_to_value(expression->compound);
2905
2906         entity_t *entry = expression->compound_entry;
2907         assert(entry->kind == ENTITY_COMPOUND_MEMBER);
2908         assert(entry->declaration.kind == DECLARATION_KIND_COMPOUND_MEMBER);
2909
2910         if (constant_folding) {
2911                 ir_mode *mode      = get_irn_mode(compound_addr);
2912                 ir_mode *mode_uint = get_reference_mode_unsigned_eq(mode);
2913                 ir_node *ofs       = new_Const_long(mode_uint, entry->compound_member.offset);
2914                 return new_d_Add(dbgi, compound_addr, ofs, mode);
2915         } else {
2916                 ir_entity *irentity = entry->compound_member.entity;
2917                 assert(irentity != NULL);
2918                 return new_d_simpleSel(dbgi, new_NoMem(), compound_addr, irentity);
2919         }
2920 }
2921
2922 static ir_node *select_to_firm(const select_expression_t *expression)
2923 {
2924         dbg_info *dbgi = get_dbg_info(&expression->base.pos);
2925         ir_node  *addr = select_addr(expression);
2926         type_t   *type = revert_automatic_type_conversion(
2927                         (const expression_t*) expression);
2928         type           = skip_typeref(type);
2929
2930         entity_t *entry = expression->compound_entry;
2931         assert(entry->kind == ENTITY_COMPOUND_MEMBER);
2932
2933         if (entry->compound_member.bitfield) {
2934                 return bitfield_extract_to_firm(expression, addr);
2935         }
2936
2937         return deref_address(dbgi, type, addr);
2938 }
2939
2940 /* Values returned by __builtin_classify_type. */
2941 typedef enum gcc_type_class
2942 {
2943         no_type_class = -1,
2944         void_type_class,
2945         integer_type_class,
2946         char_type_class,
2947         enumeral_type_class,
2948         boolean_type_class,
2949         pointer_type_class,
2950         reference_type_class,
2951         offset_type_class,
2952         real_type_class,
2953         complex_type_class,
2954         function_type_class,
2955         method_type_class,
2956         record_type_class,
2957         union_type_class,
2958         array_type_class,
2959         string_type_class,
2960         set_type_class,
2961         file_type_class,
2962         lang_type_class
2963 } gcc_type_class;
2964
2965 static ir_node *classify_type_to_firm(const classify_type_expression_t *const expr)
2966 {
2967         type_t *type = expr->type_expression->base.type;
2968
2969         /* FIXME gcc returns different values depending on whether compiling C or C++
2970          * e.g. int x[10] is pointer_type_class in C, but array_type_class in C++ */
2971         gcc_type_class tc;
2972         for (;;) {
2973                 type = skip_typeref(type);
2974                 switch (type->kind) {
2975                         case TYPE_ATOMIC: {
2976                                 const atomic_type_t *const atomic_type = &type->atomic;
2977                                 switch (atomic_type->akind) {
2978                                         /* gcc cannot do that */
2979                                         case ATOMIC_TYPE_VOID:
2980                                                 tc = void_type_class;
2981                                                 goto make_const;
2982
2983                                         case ATOMIC_TYPE_WCHAR_T:   /* gcc handles this as integer */
2984                                         case ATOMIC_TYPE_CHAR:      /* gcc handles this as integer */
2985                                         case ATOMIC_TYPE_SCHAR:     /* gcc handles this as integer */
2986                                         case ATOMIC_TYPE_UCHAR:     /* gcc handles this as integer */
2987                                         case ATOMIC_TYPE_SHORT:
2988                                         case ATOMIC_TYPE_USHORT:
2989                                         case ATOMIC_TYPE_INT:
2990                                         case ATOMIC_TYPE_UINT:
2991                                         case ATOMIC_TYPE_LONG:
2992                                         case ATOMIC_TYPE_ULONG:
2993                                         case ATOMIC_TYPE_LONGLONG:
2994                                         case ATOMIC_TYPE_ULONGLONG:
2995                                         case ATOMIC_TYPE_BOOL:      /* gcc handles this as integer */
2996                                                 tc = integer_type_class;
2997                                                 goto make_const;
2998
2999                                         case ATOMIC_TYPE_FLOAT:
3000                                         case ATOMIC_TYPE_DOUBLE:
3001                                         case ATOMIC_TYPE_LONG_DOUBLE:
3002                                                 tc = real_type_class;
3003                                                 goto make_const;
3004                                 }
3005                                 panic("Unexpected atomic type.");
3006                         }
3007
3008                         case TYPE_COMPLEX:         tc = complex_type_class; goto make_const;
3009                         case TYPE_IMAGINARY:       tc = complex_type_class; goto make_const;
3010                         case TYPE_ARRAY:           /* gcc handles this as pointer */
3011                         case TYPE_FUNCTION:        /* gcc handles this as pointer */
3012                         case TYPE_POINTER:         tc = pointer_type_class; goto make_const;
3013                         case TYPE_COMPOUND_STRUCT: tc = record_type_class;  goto make_const;
3014                         case TYPE_COMPOUND_UNION:  tc = union_type_class;   goto make_const;
3015
3016                         /* gcc handles this as integer */
3017                         case TYPE_ENUM:            tc = integer_type_class; goto make_const;
3018
3019                         /* gcc classifies the referenced type */
3020                         case TYPE_REFERENCE: type = type->reference.refers_to; continue;
3021
3022                         /* typedef/typeof should be skipped already */
3023                         case TYPE_TYPEDEF:
3024                         case TYPE_TYPEOF:
3025                         case TYPE_ERROR:
3026                                 break;
3027                 }
3028                 panic("unexpected type.");
3029         }
3030
3031 make_const:;
3032         dbg_info  *const dbgi = get_dbg_info(&expr->base.pos);
3033         ir_mode   *const mode = atomic_modes[ATOMIC_TYPE_INT];
3034         ir_tarval *const tv   = new_tarval_from_long(tc, mode);
3035         return new_d_Const(dbgi, tv);
3036 }
3037
3038 static ir_node *function_name_to_firm(
3039                 const funcname_expression_t *const expr)
3040 {
3041         switch (expr->kind) {
3042         case FUNCNAME_FUNCTION:
3043         case FUNCNAME_PRETTY_FUNCTION:
3044         case FUNCNAME_FUNCDNAME:
3045                 if (current_function_name == NULL) {
3046                         position_t const *const src_pos = &expr->base.pos;
3047                         char       const *const name    = current_function_entity->base.symbol->string;
3048                         string_t          const string  = { name, strlen(name), STRING_ENCODING_CHAR };
3049                         current_function_name = string_to_firm(src_pos, "__func__.%u", &string);
3050                 }
3051                 return current_function_name;
3052         case FUNCNAME_FUNCSIG:
3053                 if (current_funcsig == NULL) {
3054                         position_t const *const src_pos = &expr->base.pos;
3055                         ir_entity        *const ent     = get_irg_entity(current_ir_graph);
3056                         char       const *const name    = get_entity_ld_name(ent);
3057                         string_t          const string  = { name, strlen(name), STRING_ENCODING_CHAR };
3058                         current_funcsig = string_to_firm(src_pos, "__FUNCSIG__.%u", &string);
3059                 }
3060                 return current_funcsig;
3061         }
3062         panic("Unsupported function name");
3063 }
3064
3065 static ir_node *statement_expression_to_firm(const statement_expression_t *expr)
3066 {
3067         statement_t *statement = expr->statement;
3068
3069         assert(statement->kind == STATEMENT_COMPOUND);
3070         return compound_statement_to_firm(&statement->compound);
3071 }
3072
3073 static ir_node *va_start_expression_to_firm(
3074         const va_start_expression_t *const expr)
3075 {
3076         ir_entity *param_ent = current_vararg_entity;
3077         if (param_ent == NULL) {
3078                 size_t   const n           = IR_VA_START_PARAMETER_NUMBER;
3079                 ir_type *const frame_type  = get_irg_frame_type(current_ir_graph);
3080                 ir_type *const param_type  = get_unknown_type();
3081                 param_ent = new_parameter_entity(frame_type, n, param_type);
3082                 current_vararg_entity = param_ent;
3083         }
3084
3085         ir_node  *const frame   = get_irg_frame(current_ir_graph);
3086         dbg_info *const dbgi    = get_dbg_info(&expr->base.pos);
3087         ir_node  *const no_mem  = new_NoMem();
3088         ir_node  *const arg_sel = new_d_simpleSel(dbgi, no_mem, frame, param_ent);
3089
3090         set_value_for_expression_addr(expr->ap, arg_sel, NULL);
3091
3092         return NULL;
3093 }
3094
3095 static ir_node *va_arg_expression_to_firm(const va_arg_expression_t *const expr)
3096 {
3097         type_t       *const type    = expr->base.type;
3098         expression_t *const ap_expr = expr->ap;
3099         ir_node      *const ap_addr = expression_to_addr(ap_expr);
3100         ir_node      *const ap      = get_value_from_lvalue(ap_expr, ap_addr);
3101         dbg_info     *const dbgi    = get_dbg_info(&expr->base.pos);
3102         ir_node      *const res     = deref_address(dbgi, type, ap);
3103
3104         ir_node      *const cnst    = get_type_size_node(expr->base.type);
3105         ir_mode      *const mode    = get_irn_mode(cnst);
3106         ir_node      *const c1      = new_Const_long(mode, stack_param_align - 1);
3107         ir_node      *const c2      = new_d_Add(dbgi, cnst, c1, mode);
3108         ir_node      *const c3      = new_Const_long(mode, -(long)stack_param_align);
3109         ir_node      *const c4      = new_d_And(dbgi, c2, c3, mode);
3110         ir_node      *const add     = new_d_Add(dbgi, ap, c4, mode_P_data);
3111
3112         set_value_for_expression_addr(ap_expr, add, ap_addr);
3113
3114         return res;
3115 }
3116
3117 /**
3118  * Generate Firm for a va_copy expression.
3119  */
3120 static ir_node *va_copy_expression_to_firm(const va_copy_expression_t *const expr)
3121 {
3122         ir_node *const src = expression_to_value(expr->src);
3123         set_value_for_expression_addr(expr->dst, src, NULL);
3124         return NULL;
3125 }
3126
3127 static ir_node *dereference_addr(const unary_expression_t *const expression)
3128 {
3129         assert(expression->base.kind == EXPR_UNARY_DEREFERENCE);
3130         return expression_to_value(expression->value);
3131 }
3132
3133 /**
3134  * Returns a IR-node representing an lvalue of the given expression.
3135  */
3136 static ir_node *expression_to_addr(const expression_t *expression)
3137 {
3138         switch (expression->kind) {
3139         case EXPR_ARRAY_ACCESS:
3140                 return array_access_addr(&expression->array_access);
3141         case EXPR_COMPOUND_LITERAL:
3142                 return compound_literal_addr(&expression->compound_literal);
3143         case EXPR_REFERENCE:
3144                 return reference_addr(&expression->reference);
3145         case EXPR_SELECT:
3146                 return select_addr(&expression->select);
3147         case EXPR_UNARY_DEREFERENCE:
3148                 return dereference_addr(&expression->unary);
3149         default:
3150                 break;
3151         }
3152         panic("trying to get address of non-lvalue");
3153 }
3154
3155 static ir_node *builtin_constant_to_firm(
3156                 const builtin_constant_expression_t *expression)
3157 {
3158         ir_mode *const mode = get_ir_mode_storage(expression->base.type);
3159         bool     const v    = is_constant_expression(expression->value) == EXPR_CLASS_CONSTANT;
3160         return create_Const_from_bool(mode, v);
3161 }
3162
3163 static ir_node *builtin_types_compatible_to_firm(
3164                 const builtin_types_compatible_expression_t *expression)
3165 {
3166         type_t  *const left  = get_unqualified_type(skip_typeref(expression->left));
3167         type_t  *const right = get_unqualified_type(skip_typeref(expression->right));
3168         bool     const value = types_compatible(left, right);
3169         ir_mode *const mode  = get_ir_mode_storage(expression->base.type);
3170         return create_Const_from_bool(mode, value);
3171 }
3172
3173 static void prepare_label_target(label_t *const label)
3174 {
3175         if (label->address_taken && !label->indirect_block) {
3176                 ir_node *const iblock = new_immBlock();
3177                 label->indirect_block = iblock;
3178                 ARR_APP1(ir_node*, ijmp_blocks, iblock);
3179                 jump_from_block_to_target(&label->target, iblock);
3180         }
3181 }
3182
3183 /**
3184  * Pointer to a label.  This is used for the
3185  * GNU address-of-label extension.
3186  */
3187 static ir_node *label_address_to_firm(const label_address_expression_t *label)
3188 {
3189         /* Beware: Might be called from create initializer with current_ir_graph
3190          * set to const_code_irg. */
3191         PUSH_IRG(current_function);
3192         prepare_label_target(label->label);
3193         POP_IRG();
3194
3195         symconst_symbol value;
3196         value.entity_p = create_Block_entity(label->label->indirect_block);
3197         dbg_info *const dbgi = get_dbg_info(&label->base.pos);
3198         return new_d_SymConst(dbgi, mode_P_code, value, symconst_addr_ent);
3199 }
3200
3201 static ir_node *expression_to_value(expression_t const *const expr)
3202 {
3203 #ifndef NDEBUG
3204         if (!constant_folding) {
3205                 assert(!expr->base.transformed);
3206                 ((expression_t*)expr)->base.transformed = true;
3207         }
3208         assert(!is_type_complex(skip_typeref(expr->base.type)));
3209 #endif
3210
3211         switch (expr->kind) {
3212         case EXPR_UNARY_CAST:
3213                 if (is_type_atomic(skip_typeref(expr->base.type), ATOMIC_TYPE_BOOL)) {
3214         case EXPR_BINARY_EQUAL:
3215         case EXPR_BINARY_GREATER:
3216         case EXPR_BINARY_GREATEREQUAL:
3217         case EXPR_BINARY_ISGREATER:
3218         case EXPR_BINARY_ISGREATEREQUAL:
3219         case EXPR_BINARY_ISLESS:
3220         case EXPR_BINARY_ISLESSEQUAL:
3221         case EXPR_BINARY_ISLESSGREATER:
3222         case EXPR_BINARY_ISUNORDERED:
3223         case EXPR_BINARY_LESS:
3224         case EXPR_BINARY_LESSEQUAL:
3225         case EXPR_BINARY_LOGICAL_AND:
3226         case EXPR_BINARY_LOGICAL_OR:
3227         case EXPR_BINARY_NOTEQUAL:
3228         case EXPR_UNARY_NOT:;
3229                         jump_target true_target;
3230                         jump_target false_target;
3231                         init_jump_target(&true_target,  NULL);
3232                         init_jump_target(&false_target, NULL);
3233                         expression_to_control_flow(expr, &true_target, &false_target);
3234                         return control_flow_to_1_0(expr, &true_target, &false_target);
3235                 } else {
3236                         return create_cast(&expr->unary);
3237                 }
3238
3239         case EXPR_BINARY_ADD:
3240         case EXPR_BINARY_BITWISE_AND:
3241         case EXPR_BINARY_BITWISE_OR:
3242         case EXPR_BINARY_BITWISE_XOR:
3243         case EXPR_BINARY_DIV:
3244         case EXPR_BINARY_MOD:
3245         case EXPR_BINARY_MUL:
3246         case EXPR_BINARY_SHIFTLEFT:
3247         case EXPR_BINARY_SHIFTRIGHT:
3248         case EXPR_BINARY_SUB:
3249                 return binop_to_firm(&expr->binary);
3250
3251         case EXPR_BINARY_ADD_ASSIGN:
3252         case EXPR_BINARY_BITWISE_AND_ASSIGN:
3253         case EXPR_BINARY_BITWISE_OR_ASSIGN:
3254         case EXPR_BINARY_BITWISE_XOR_ASSIGN:
3255         case EXPR_BINARY_DIV_ASSIGN:
3256         case EXPR_BINARY_MOD_ASSIGN:
3257         case EXPR_BINARY_MUL_ASSIGN:
3258         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
3259         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
3260         case EXPR_BINARY_SUB_ASSIGN:
3261                 return binop_assign_to_firm(&expr->binary);
3262
3263         {
3264                 bool inc;
3265                 bool pre;
3266         case EXPR_UNARY_POSTFIX_DECREMENT: inc = false; pre = false; goto incdec;
3267         case EXPR_UNARY_POSTFIX_INCREMENT: inc = true;  pre = false; goto incdec;
3268         case EXPR_UNARY_PREFIX_DECREMENT:  inc = false; pre = true;  goto incdec;
3269         case EXPR_UNARY_PREFIX_INCREMENT:  inc = true;  pre = true;  goto incdec;
3270 incdec:
3271                 return incdec_to_firm(&expr->unary, inc, pre);
3272         }
3273
3274         case EXPR_UNARY_IMAG: {
3275                 complex_value irvalue = expression_to_complex(expr->unary.value);
3276                 return irvalue.imag;
3277         }
3278         case EXPR_UNARY_REAL: {
3279                 complex_value irvalue = expression_to_complex(expr->unary.value);
3280                 return irvalue.real;
3281         }
3282
3283         case EXPR_ALIGNOF:                    return alignof_to_firm(                 &expr->typeprop);
3284         case EXPR_ARRAY_ACCESS:               return array_access_to_firm(            &expr->array_access);
3285         case EXPR_BINARY_ASSIGN:              return assign_expression_to_firm(       &expr->binary);
3286         case EXPR_BINARY_COMMA:               return comma_expression_to_firm(        &expr->binary);
3287         case EXPR_BUILTIN_CONSTANT_P:         return builtin_constant_to_firm(        &expr->builtin_constant);
3288         case EXPR_BUILTIN_TYPES_COMPATIBLE_P: return builtin_types_compatible_to_firm(&expr->builtin_types_compatible);
3289         case EXPR_CALL:                       return call_expression_to_firm(         &expr->call);
3290         case EXPR_CLASSIFY_TYPE:              return classify_type_to_firm(           &expr->classify_type);
3291         case EXPR_COMPOUND_LITERAL:           return compound_literal_to_firm(        &expr->compound_literal);
3292         case EXPR_CONDITIONAL:                return conditional_to_firm(             &expr->conditional);
3293         case EXPR_ENUM_CONSTANT:              return enum_constant_to_firm(           &expr->reference);
3294         case EXPR_FUNCNAME:                   return function_name_to_firm(           &expr->funcname);
3295         case EXPR_LABEL_ADDRESS:              return label_address_to_firm(           &expr->label_address);
3296         case EXPR_LITERAL_CASES:              return literal_to_firm(                 &expr->literal);
3297         case EXPR_LITERAL_CHARACTER:          return char_literal_to_firm(            &expr->string_literal);
3298         case EXPR_OFFSETOF:                   return offsetof_to_firm(                &expr->offsetofe);
3299         case EXPR_REFERENCE:                  return reference_expression_to_firm(    &expr->reference);
3300         case EXPR_SELECT:                     return select_to_firm(                  &expr->select);
3301         case EXPR_SIZEOF:                     return sizeof_to_firm(                  &expr->typeprop);
3302         case EXPR_STATEMENT:                  return statement_expression_to_firm(    &expr->statement);
3303         case EXPR_STRING_LITERAL:             return string_to_firm(                  &expr->base.pos, "str.%u", &expr->string_literal.value);
3304         case EXPR_UNARY_ASSUME:               return handle_assume(                    expr->unary.value);
3305         case EXPR_UNARY_COMPLEMENT:           return complement_to_firm(              &expr->unary);
3306         case EXPR_UNARY_DEREFERENCE:          return dereference_to_firm(             &expr->unary);
3307         case EXPR_UNARY_NEGATE:               return negate_to_firm(                  &expr->unary);
3308         case EXPR_UNARY_PLUS:                 return expression_to_value(              expr->unary.value);
3309         case EXPR_UNARY_TAKE_ADDRESS:         return expression_to_addr(               expr->unary.value);
3310         case EXPR_VA_ARG:                     return va_arg_expression_to_firm(       &expr->va_arge);
3311         case EXPR_VA_COPY:                    return va_copy_expression_to_firm(      &expr->va_copye);
3312         case EXPR_VA_START:                   return va_start_expression_to_firm(     &expr->va_starte);
3313
3314         case EXPR_UNARY_DELETE:
3315         case EXPR_UNARY_DELETE_ARRAY:
3316         case EXPR_UNARY_THROW:
3317                 panic("expression not implemented");
3318
3319         case EXPR_ERROR:
3320                 break;
3321         }
3322         panic("invalid expression");
3323 }
3324
3325 static void complex_equality_evaluation(const binary_expression_t *binexpr,
3326         jump_target *const true_target, jump_target *const false_target,
3327         ir_relation relation);
3328
3329 static complex_value create_complex_condition_evaluation(
3330         const expression_t *const expression, jump_target *const true_target,
3331         jump_target *const false_target);
3332
3333 /**
3334  * create a short-circuit expression evaluation that tries to construct
3335  * efficient control flow structures for &&, || and ! expressions
3336  */
3337 static ir_node *expression_to_control_flow(expression_t const *const expr, jump_target *const true_target, jump_target *const false_target)
3338 {
3339         switch (expr->kind) {
3340         case EXPR_UNARY_NOT:
3341                 expression_to_control_flow(expr->unary.value, false_target, true_target);
3342                 return NULL;
3343
3344         case EXPR_BINARY_LOGICAL_AND: {
3345                 jump_target extra_target;
3346                 init_jump_target(&extra_target, NULL);
3347                 expression_to_control_flow(expr->binary.left, &extra_target, false_target);
3348                 if (enter_jump_target(&extra_target))
3349                         expression_to_control_flow(expr->binary.right, true_target, false_target);
3350                 return NULL;
3351         }
3352
3353         case EXPR_BINARY_LOGICAL_OR: {
3354                 jump_target extra_target;
3355                 init_jump_target(&extra_target, NULL);
3356                 expression_to_control_flow(expr->binary.left, true_target, &extra_target);
3357                 if (enter_jump_target(&extra_target))
3358                         expression_to_control_flow(expr->binary.right, true_target, false_target);
3359                 return NULL;
3360         }
3361
3362         case EXPR_BINARY_COMMA:
3363                 evaluate_expression_discard_result(expr->binary.left);
3364                 return expression_to_control_flow(expr->binary.right, true_target, false_target);
3365
3366                 ir_node    *val;
3367                 ir_node    *left;
3368                 ir_node    *right;
3369                 ir_relation relation;
3370
3371         case EXPR_BINARY_EQUAL:
3372         case EXPR_BINARY_GREATER:
3373         case EXPR_BINARY_GREATEREQUAL:
3374         case EXPR_BINARY_ISGREATER:
3375         case EXPR_BINARY_ISGREATEREQUAL:
3376         case EXPR_BINARY_ISLESS:
3377         case EXPR_BINARY_ISLESSEQUAL:
3378         case EXPR_BINARY_ISLESSGREATER:
3379         case EXPR_BINARY_ISUNORDERED:
3380         case EXPR_BINARY_LESS:
3381         case EXPR_BINARY_LESSEQUAL:
3382         case EXPR_BINARY_NOTEQUAL: {
3383                 type_t *const type = skip_typeref(expr->binary.left->base.type);
3384                 relation = get_relation(expr->kind);
3385                 if (is_type_complex(type)) {
3386                         complex_equality_evaluation(&expr->binary, true_target,
3387                                                     false_target, relation);
3388                         /* TODO return something sensible */
3389                         return NULL;
3390                 }
3391
3392                 dbg_info *const dbgi = get_dbg_info(&expr->base.pos);
3393                 ir_mode  *const mode = get_ir_mode_arithmetic(type);
3394                 val      = NULL;
3395                 left     = create_conv(dbgi, expression_to_value(expr->binary.left),  mode);
3396                 right    = create_conv(dbgi, expression_to_value(expr->binary.right), mode);
3397                 goto make_cmp;
3398         }
3399
3400         case EXPR_UNARY_CAST:
3401                 if (is_type_atomic(skip_typeref(expr->base.type), ATOMIC_TYPE_BOOL)) {
3402                         expression_to_control_flow(expr->unary.value, true_target, false_target);
3403                         return NULL;
3404                 } else {
3405         default:;
3406                         type_t *const type = skip_typeref(expr->base.type);
3407                         if (is_type_complex(type)) {
3408                                 create_complex_condition_evaluation(expr, true_target, false_target);
3409                                 return NULL;
3410                         }
3411
3412                         dbg_info *const dbgi = get_dbg_info(&expr->base.pos);
3413                         ir_mode  *const mode = get_ir_mode_arithmetic(type);
3414                         val      = create_conv(dbgi, expression_to_value(expr), mode);
3415                         left     = val;
3416                         right    = new_Const(get_mode_null(get_irn_mode(val)));
3417                         relation = ir_relation_unordered_less_greater;
3418 make_cmp:
3419                         compare_to_control_flow(expr, left, right, relation, true_target, false_target);
3420                         return val;
3421                 }
3422         }
3423 }
3424
3425 static complex_value complex_conv(dbg_info *dbgi, complex_value value,
3426                                   ir_mode *mode)
3427 {
3428         return (complex_value) {
3429                 create_conv(dbgi, value.real, mode),
3430                 create_conv(dbgi, value.imag, mode)
3431         };
3432 }
3433
3434 static complex_value complex_conv_to_storage(dbg_info *const dbgi,
3435         complex_value const value, type_t *const type)
3436 {
3437         ir_mode *const mode = get_complex_mode_storage(type);
3438         return complex_conv(dbgi, value, mode);
3439 }
3440
3441 static void store_complex(dbg_info *dbgi, ir_node *addr, type_t *type,
3442                           complex_value value)
3443 {
3444         value = complex_conv_to_storage(dbgi, value, type);
3445         ir_graph  *irg       = current_ir_graph;
3446         ir_type   *irtype    = get_ir_type(type);
3447         ir_node   *mem       = get_store();
3448         ir_node   *nomem     = get_irg_no_mem(irg);
3449         ir_mode   *mode      = get_complex_mode_storage(type);
3450         ir_node   *real      = create_conv(dbgi, value.real, mode);
3451         ir_node   *imag      = create_conv(dbgi, value.imag, mode);
3452         ir_node   *storer    = new_d_Store(dbgi, mem, addr, real, cons_floats);
3453         ir_node   *memr      = new_Proj(storer, mode_M, pn_Store_M);
3454         ir_mode   *mode_uint = atomic_modes[ATOMIC_TYPE_UINT];
3455         ir_node   *one       = new_Const(get_mode_one(mode_uint));
3456         ir_node   *in[1]     = { one };
3457         ir_entity *arrent    = get_array_element_entity(irtype);
3458         ir_node   *addri     = new_d_Sel(dbgi, nomem, addr, 1, in, arrent);
3459         ir_node   *storei    = new_d_Store(dbgi, memr, addri, imag, cons_floats);
3460         ir_node   *memi      = new_Proj(storei, mode_M, pn_Store_M);
3461         set_store(memi);
3462 }
3463
3464 static ir_node *complex_to_memory(dbg_info *dbgi, type_t *type,
3465                                   complex_value value)
3466 {
3467         ir_graph  *irg         = current_ir_graph;
3468         ir_type   *frame_type  = get_irg_frame_type(irg);
3469         ident     *id          = id_unique("cmplex_tmp.%u");
3470         ir_type   *irtype      = get_ir_type(type);
3471         ir_entity *tmp_storage = new_entity(frame_type, id, irtype);
3472         set_entity_compiler_generated(tmp_storage, 1);
3473         ir_node   *frame       = get_irg_frame(irg);
3474         ir_node   *nomem       = get_irg_no_mem(irg);
3475         ir_node   *addr        = new_simpleSel(nomem, frame, tmp_storage);
3476         store_complex(dbgi, addr, type, value);
3477         return addr;
3478 }
3479
3480 static complex_value read_localvar_complex(dbg_info *dbgi, entity_t *const entity)
3481 {
3482         assert(entity->declaration.kind == DECLARATION_KIND_LOCAL_VARIABLE
3483             || entity->declaration.kind == DECLARATION_KIND_PARAMETER);
3484         type_t  *const type = skip_typeref(entity->declaration.type);
3485         ir_mode *const mode = get_complex_mode_storage(type);
3486         ir_node *const real = get_value(entity->variable.v.value_number, mode);
3487         ir_node *const imag = get_value(entity->variable.v.value_number+1, mode);
3488         ir_mode *const mode_arithmetic = get_complex_mode_arithmetic(type);
3489         return (complex_value) {
3490                 create_conv(dbgi, real, mode_arithmetic),
3491                 create_conv(dbgi, imag, mode_arithmetic)
3492         };
3493 }
3494
3495 static complex_value complex_deref_address(dbg_info *const dbgi,
3496                                            type_t *type, ir_node *const addr,
3497                                            ir_cons_flags flags)
3498 {
3499         type = skip_typeref(type);
3500         assert(is_type_complex(type));
3501
3502         if (type->base.qualifiers & TYPE_QUALIFIER_VOLATILE)
3503                 flags |= cons_volatile;
3504         ir_mode *const mode     = get_complex_mode_storage(type);
3505         ir_node *const memory   = get_store();
3506         ir_node *const load     = new_d_Load(dbgi, memory, addr, mode, flags);
3507         ir_node *const load_mem = new_Proj(load, mode_M, pn_Load_M);
3508         ir_node *const load_res = new_Proj(load, mode,   pn_Load_res);
3509
3510         ir_type   *const irtype    = get_ir_type(type);
3511         ir_mode   *const mode_uint = atomic_modes[ATOMIC_TYPE_UINT];
3512         ir_node   *const in[1]     = { new_Const(get_mode_one(mode_uint)) };
3513         ir_entity *const entity    = get_array_element_entity(irtype);
3514         ir_node   *const nomem     = get_irg_no_mem(current_ir_graph);
3515         ir_node   *const addr2     = new_Sel(nomem, addr, 1, in, entity);
3516         ir_node   *const load2     = new_d_Load(dbgi, load_mem, addr2, mode, flags);
3517         ir_node   *const load_mem2 = new_Proj(load2, mode_M, pn_Load_M);
3518         ir_node   *const load_res2 = new_Proj(load2, mode, pn_Load_res);
3519         set_store(load_mem2);
3520
3521         return (complex_value) { load_res, load_res2 };
3522 }
3523
3524 static complex_value complex_reference_to_firm(const reference_expression_t *ref)
3525 {
3526         dbg_info *const dbgi   = get_dbg_info(&ref->base.pos);
3527         entity_t *const entity = ref->entity;
3528         assert(is_declaration(entity));
3529
3530         switch ((declaration_kind_t)entity->declaration.kind) {
3531         case DECLARATION_KIND_LOCAL_VARIABLE:
3532         case DECLARATION_KIND_PARAMETER:
3533                 return read_localvar_complex(dbgi, entity);
3534         default: {
3535                 ir_node *const addr = reference_addr(ref);
3536                 return complex_deref_address(dbgi, entity->declaration.type, addr, cons_none);
3537         }
3538         }
3539 }
3540
3541 static complex_value complex_select_to_firm(const select_expression_t *select)
3542 {
3543         dbg_info *dbgi = get_dbg_info(&select->base.pos);
3544         ir_node  *addr = select_addr(select);
3545         type_t   *type = skip_typeref(select->base.type);
3546         assert(is_type_complex(type));
3547         return complex_deref_address(dbgi, type, addr, cons_none);
3548 }
3549
3550 static complex_value complex_array_access_to_firm(
3551         const array_access_expression_t *expression)
3552 {
3553         dbg_info *dbgi = get_dbg_info(&expression->base.pos);
3554         ir_node  *addr = array_access_addr(expression);
3555         type_t   *type = skip_typeref(expression->base.type);
3556         assert(is_type_complex(type));
3557         return complex_deref_address(dbgi, type, addr, cons_none);
3558 }
3559
3560 static complex_value get_complex_from_lvalue(const expression_t *expression,
3561                                              ir_node *addr)
3562 {
3563         dbg_info *dbgi = get_dbg_info(&expression->base.pos);
3564
3565         if (expression->kind == EXPR_REFERENCE) {
3566                 const reference_expression_t *ref = &expression->reference;
3567
3568                 entity_t *entity = ref->entity;
3569                 assert(entity->kind == ENTITY_VARIABLE
3570                     || entity->kind == ENTITY_PARAMETER);
3571                 assert(entity->declaration.kind != DECLARATION_KIND_UNKNOWN);
3572                 if (entity->declaration.kind == DECLARATION_KIND_LOCAL_VARIABLE ||
3573                     entity->declaration.kind == DECLARATION_KIND_PARAMETER) {
3574                     return read_localvar_complex(dbgi, entity);
3575                 }
3576         }
3577
3578         assert(addr != NULL);
3579         return complex_deref_address(dbgi, expression->base.type, addr, cons_none);
3580 }
3581
3582 static complex_value complex_cast_to_firm(const unary_expression_t *expression)
3583 {
3584         const expression_t *value     = expression->value;
3585         dbg_info           *dbgi      = get_dbg_info(&expression->base.pos);
3586         type_t             *from_type = skip_typeref(value->base.type);
3587         type_t             *to_type   = skip_typeref(expression->base.type);
3588         ir_mode            *mode      = get_complex_mode_storage(to_type);
3589
3590         assert(is_type_complex(to_type));
3591
3592         if (is_type_complex(from_type)) {
3593                 complex_value cvalue = expression_to_complex(value);
3594                 return complex_conv(dbgi, cvalue, mode);
3595         } else {
3596                 ir_node *value_node = expression_to_value(value);
3597                 ir_node *zero       = new_Const(get_mode_null(mode));
3598                 ir_node *casted     = create_conv(dbgi, value_node, mode);
3599                 return (complex_value) { casted, zero };
3600         }
3601 }
3602
3603 static complex_value complex_literal_to_firm(const literal_expression_t *literal)
3604 {
3605         type_t  *type     = skip_typeref(literal->base.type);
3606         ir_mode *mode     = get_complex_mode_storage(type);
3607         ir_node *litvalue = literal_to_firm_(literal, mode);
3608         ir_node *zero     = new_Const(get_mode_null(mode));
3609         return (complex_value) { zero, litvalue };
3610 }
3611
3612 typedef complex_value (*new_complex_binop)(dbg_info *dbgi, complex_value left,
3613                                            complex_value right, ir_mode *mode);
3614
3615 static complex_value new_complex_add(dbg_info *dbgi, complex_value left,
3616                                      complex_value right, ir_mode *mode)
3617 {
3618         return (complex_value) {
3619                 new_d_Add(dbgi, left.real, right.real, mode),
3620                 new_d_Add(dbgi, left.imag, right.imag, mode)
3621         };
3622 }
3623
3624 static complex_value new_complex_sub(dbg_info *dbgi, complex_value left,
3625                                      complex_value right, ir_mode *mode)
3626 {
3627         return (complex_value) {
3628                 new_d_Sub(dbgi, left.real, right.real, mode),
3629                 new_d_Sub(dbgi, left.imag, right.imag, mode)
3630         };
3631 }
3632
3633 static complex_value new_complex_mul(dbg_info *dbgi, complex_value left,
3634                                      complex_value right, ir_mode *mode)
3635 {
3636         ir_node *const op1 = new_d_Mul(dbgi, left.real, right.real, mode);
3637         ir_node *const op2 = new_d_Mul(dbgi, left.imag, right.imag, mode);
3638         ir_node *const op3 = new_d_Mul(dbgi, left.real, right.imag, mode);
3639         ir_node *const op4 = new_d_Mul(dbgi, left.imag, right.real, mode);
3640         return (complex_value) {
3641                 new_d_Sub(dbgi, op1, op2, mode),
3642                 new_d_Add(dbgi, op3, op4, mode)
3643         };
3644 }
3645
3646 static complex_value new_complex_div(dbg_info *dbgi, complex_value left,
3647                                      complex_value right, ir_mode *mode)
3648 {
3649         ir_node *const op1 = new_d_Mul(dbgi, left.real, right.real, mode);
3650         ir_node *const op2 = new_d_Mul(dbgi, left.imag, right.imag, mode);
3651         ir_node *const op3 = new_d_Mul(dbgi, left.imag, right.real, mode);
3652         ir_node *const op4 = new_d_Mul(dbgi, left.real, right.imag, mode);
3653         ir_node *const op5 = new_d_Mul(dbgi, right.real, right.real, mode);
3654         ir_node *const op6 = new_d_Mul(dbgi, right.imag, right.imag, mode);
3655         ir_node *const real_dividend = new_d_Add(dbgi, op1, op2, mode);
3656         ir_node *const real_divisor  = new_d_Add(dbgi, op5, op6, mode);
3657         ir_node *const imag_dividend = new_d_Sub(dbgi, op3, op4, mode);
3658         ir_node *const imag_divisor  = new_d_Add(dbgi, op5, op6, mode);
3659         return (complex_value) {
3660                 create_div(dbgi, real_dividend, real_divisor, mode),
3661                 create_div(dbgi, imag_dividend, imag_divisor, mode)
3662         };
3663 }
3664
3665 typedef complex_value (*new_complex_unop)(dbg_info *dbgi, complex_value value,
3666                                           ir_mode *mode);
3667
3668 static complex_value new_complex_increment(dbg_info *dbgi, complex_value value,
3669                                            ir_mode *mode)
3670 {
3671         ir_node *one = new_Const(get_mode_one(mode));
3672         return (complex_value) {
3673                 new_d_Add(dbgi, value.real, one, mode),
3674                 value.imag
3675         };
3676 }
3677
3678 static complex_value new_complex_decrement(dbg_info *dbgi, complex_value value,
3679                                            ir_mode *mode)
3680 {
3681         ir_node *one = new_Const(get_mode_one(mode));
3682         return (complex_value) {
3683                 new_d_Sub(dbgi, value.real, one, mode),
3684                 value.imag
3685         };
3686 }
3687
3688 static void set_complex_value_for_expression(dbg_info *dbgi,
3689                                                                                          const expression_t *expression,
3690                                              complex_value value,
3691                                              ir_node *addr)
3692 {
3693         type_t *type = skip_typeref(expression->base.type);
3694         assert(is_type_complex(type));
3695
3696         ir_mode  *mode = get_complex_mode_storage(type);
3697         ir_node  *real = create_conv(dbgi, value.real, mode);
3698         ir_node  *imag = create_conv(dbgi, value.imag, mode);
3699
3700         if (expression->kind == EXPR_REFERENCE) {
3701                 const reference_expression_t *ref = &expression->reference;
3702
3703                 entity_t *entity = ref->entity;
3704                 assert(is_declaration(entity));
3705                 assert(entity->declaration.kind != DECLARATION_KIND_UNKNOWN);
3706                 if (entity->declaration.kind == DECLARATION_KIND_LOCAL_VARIABLE ||
3707                     entity->declaration.kind == DECLARATION_KIND_PARAMETER) {
3708                         set_value(entity->variable.v.value_number, real);
3709                         set_value(entity->variable.v.value_number+1, imag);
3710                         return;
3711                 }
3712         }
3713
3714         if (addr == NULL)
3715                 addr = expression_to_addr(expression);
3716         assert(addr != NULL);
3717         store_complex(dbgi, addr, type, value);
3718 }
3719
3720 static complex_value create_complex_assign_unop(const unary_expression_t *unop,
3721                                                 new_complex_unop constructor,
3722                                                 bool return_old)
3723 {
3724         dbg_info *const     dbgi       = get_dbg_info(&unop->base.pos);
3725         const expression_t *value_expr = unop->value;
3726         ir_node            *addr       = expression_to_addr(value_expr);
3727         complex_value       value      = get_complex_from_lvalue(value_expr, addr);
3728         type_t             *type       = skip_typeref(unop->base.type);
3729         ir_mode            *mode       = get_complex_mode_arithmetic(type);
3730         value = complex_conv(dbgi, value, mode);
3731         complex_value       new_value  = constructor(dbgi, value, mode);
3732         set_complex_value_for_expression(dbgi, value_expr, new_value, addr);
3733         return return_old ? value : new_value;
3734 }
3735
3736 static complex_value complex_negate_to_firm(const unary_expression_t *expr)
3737 {
3738         complex_value cvalue = expression_to_complex(expr->value);
3739         dbg_info     *dbgi   = get_dbg_info(&expr->base.pos);
3740         ir_mode      *mode   = get_complex_mode_arithmetic(expr->base.type);
3741         cvalue = complex_conv(dbgi, cvalue, mode);
3742         return (complex_value) {
3743                 new_d_Minus(dbgi, cvalue.real, mode),
3744                 new_d_Minus(dbgi, cvalue.imag, mode)
3745         };
3746 }
3747
3748 static complex_value complex_complement_to_firm(const unary_expression_t *expr)
3749 {
3750         complex_value cvalue = expression_to_complex(expr->value);
3751         dbg_info     *dbgi   = get_dbg_info(&expr->base.pos);
3752         ir_mode      *mode   = get_complex_mode_arithmetic(expr->base.type);
3753         cvalue = complex_conv(dbgi, cvalue, mode);
3754         return (complex_value) {
3755                 cvalue.real,
3756                 new_d_Minus(dbgi, cvalue.imag, mode)
3757         };
3758 }
3759
3760 static complex_value create_complex_binop(const binary_expression_t *binexpr,
3761                                           new_complex_binop constructor)
3762 {
3763         dbg_info     *dbgi  = get_dbg_info(&binexpr->base.pos);
3764         ir_mode      *mode  = get_complex_mode_arithmetic(binexpr->base.type);
3765         complex_value left  = expression_to_complex(binexpr->left);
3766         complex_value right = expression_to_complex(binexpr->right);
3767         left  = complex_conv(dbgi, left, mode);
3768         right = complex_conv(dbgi, right, mode);
3769         return constructor(dbgi, left, right, mode);
3770 }
3771
3772 static complex_value create_complex_assign_binop(const binary_expression_t *binexpr,
3773                                                  new_complex_binop constructor)
3774 {
3775         dbg_info      *dbgi   = get_dbg_info(&binexpr->base.pos);
3776         expression_t  *lefte  = binexpr->left;
3777         expression_t  *righte = binexpr->right;
3778         ir_mode       *mode   = get_complex_mode_arithmetic(righte->base.type);
3779         ir_node       *addr   = expression_to_addr(lefte);
3780         complex_value  left   = get_complex_from_lvalue(lefte, addr);
3781         complex_value  right  = expression_to_complex(righte);
3782         left  = complex_conv(dbgi, left, mode);
3783         right = complex_conv(dbgi, right, mode);
3784         complex_value  new_value = constructor(dbgi, left, right, mode);
3785         type_t        *res_type  = skip_typeref(binexpr->base.type);
3786         set_complex_value_for_expression(dbgi, lefte, new_value, addr);
3787         return complex_conv_to_storage(dbgi, new_value, res_type);
3788 }
3789
3790 static complex_value complex_call_to_firm(const call_expression_t *call)
3791 {
3792         ir_node         *result        = call_expression_to_firm(call);
3793         expression_t    *function      = call->function;
3794         type_t          *type          = skip_typeref(function->base.type);
3795         assert(is_type_pointer(type));
3796         pointer_type_t  *pointer_type  = &type->pointer;
3797         type_t          *points_to     = skip_typeref(pointer_type->points_to);
3798         assert(is_type_function(points_to));
3799         function_type_t *function_type = &points_to->function;
3800         type_t          *return_type   = skip_typeref(function_type->return_type);
3801         assert(is_type_complex(return_type));
3802         dbg_info        *dbgi          = get_dbg_info(&call->base.pos);
3803         return complex_deref_address(dbgi, return_type, result, cons_floats);
3804 }
3805
3806 static void complex_equality_evaluation(const binary_expression_t *binexpr,
3807         jump_target *const true_target, jump_target *const false_target,
3808         ir_relation relation)
3809 {
3810         jump_target extra_target;
3811         init_jump_target(&extra_target, NULL);
3812
3813         complex_value left  = expression_to_complex(binexpr->left);
3814         complex_value right = expression_to_complex(binexpr->right);
3815         dbg_info     *dbgi  = get_dbg_info(&binexpr->base.pos);
3816         ir_mode      *mode  = get_complex_mode_arithmetic(binexpr->left->base.type);
3817         left  = complex_conv(dbgi, left, mode);
3818         right = complex_conv(dbgi, right, mode);
3819
3820         ir_node  *cmp_real   = new_d_Cmp(dbgi, left.real, right.real, relation);
3821         ir_node  *cond       = new_d_Cond(dbgi, cmp_real);
3822         ir_node  *true_proj  = new_Proj(cond, mode_X, pn_Cond_true);
3823         ir_node  *false_proj = new_Proj(cond, mode_X, pn_Cond_false);
3824         add_pred_to_jump_target(&extra_target, true_proj);
3825         add_pred_to_jump_target(false_target, false_proj);
3826         if (!enter_jump_target(&extra_target))
3827                 return;
3828
3829         ir_node *cmp_imag     = new_d_Cmp(dbgi, left.imag, right.imag, relation);
3830         ir_node *condi        = new_d_Cond(dbgi, cmp_imag);
3831         ir_node *true_proj_i  = new_Proj(condi, mode_X, pn_Cond_true);
3832         ir_node *false_proj_i = new_Proj(condi, mode_X, pn_Cond_false);
3833         add_pred_to_jump_target(true_target, true_proj_i);
3834         add_pred_to_jump_target(false_target, false_proj_i);
3835         set_unreachable_now();
3836 }
3837
3838 static complex_value create_complex_condition_evaluation(
3839         const expression_t *const expression, jump_target *const true_target,
3840         jump_target *const false_target)
3841 {
3842         jump_target extra_target;
3843         init_jump_target(&extra_target, NULL);
3844         complex_value       value      = expression_to_complex(expression);
3845         dbg_info     *const dbgi       = get_dbg_info(&expression->base.pos);
3846         type_t       *const type       = expression->base.type;
3847         ir_mode      *const mode       = get_complex_mode_arithmetic(type);
3848         value = complex_conv(dbgi, value, mode);
3849         ir_node      *const zero       = new_Const(get_mode_null(mode));
3850         ir_node      *const cmp_real   =
3851                 new_d_Cmp(dbgi, value.real, zero, ir_relation_unordered_less_greater);
3852         ir_node      *const cond_real  = new_d_Cond(dbgi, cmp_real);
3853         ir_node      *const true_real  = new_Proj(cond_real, mode_X, pn_Cond_true);
3854         ir_node      *const false_real = new_Proj(cond_real, mode_X, pn_Cond_false);
3855         add_pred_to_jump_target(true_target, true_real);
3856         add_pred_to_jump_target(&extra_target, false_real);
3857         if (!enter_jump_target(&extra_target))
3858                 return value;
3859
3860         ir_node      *const cmp_imag   =
3861                 new_d_Cmp(dbgi, value.imag, zero, ir_relation_unordered_less_greater);
3862         ir_node      *const cond_imag  = new_d_Cond(dbgi, cmp_imag);
3863         ir_node      *const true_imag  = new_Proj(cond_imag, mode_X, pn_Cond_true);
3864         ir_node      *const false_imag = new_Proj(cond_imag, mode_X, pn_Cond_false);
3865         add_pred_to_jump_target(true_target, true_imag);
3866         add_pred_to_jump_target(false_target, false_imag);
3867         set_unreachable_now();
3868
3869         return value;
3870 }
3871
3872 static complex_value complex_conditional_to_firm(
3873         const conditional_expression_t *const expression)
3874 {
3875         /* first try to fold a constant condition */
3876         if (is_constant_expression(expression->condition) == EXPR_CLASS_CONSTANT) {
3877                 bool val = fold_constant_to_bool(expression->condition);
3878                 if (val) {
3879                         expression_t *true_expression = expression->true_expression;
3880                         if (true_expression == NULL) {
3881                                 /* we will evaluate true_expression a second time here, but in
3882                                  * this case it is harmless since constant expression have no
3883                                  * side effects */
3884                                 true_expression = expression->condition;
3885                         }
3886                         return expression_to_complex(true_expression);
3887                 } else {
3888                         return expression_to_complex(expression->false_expression);
3889                 }
3890         }
3891
3892         jump_target true_target;
3893         jump_target false_target;
3894         init_jump_target(&true_target,  NULL);
3895         init_jump_target(&false_target, NULL);
3896         complex_value cond_val;
3897         memset(&cond_val, 0, sizeof(cond_val));
3898         if (expression->true_expression == NULL) {
3899                 assert(is_type_complex(skip_typeref(expression->condition->base.type)));
3900                 cond_val
3901                         = create_complex_condition_evaluation(expression->condition,
3902                                                               &true_target, &false_target);
3903         } else {
3904                 expression_to_control_flow(expression->condition, &true_target, &false_target);
3905         }
3906
3907         complex_value val;
3908         memset(&val, 0, sizeof(val));
3909         jump_target   exit_target;
3910         init_jump_target(&exit_target, NULL);
3911
3912         if (enter_jump_target(&true_target)) {
3913                 if (expression->true_expression) {
3914                         val = expression_to_complex(expression->true_expression);
3915                 } else {
3916                         assert(cond_val.real != NULL);
3917                         val = cond_val;
3918                 }
3919                 jump_to_target(&exit_target);
3920         }
3921
3922         type_t *const type = skip_typeref(expression->base.type);
3923         if (enter_jump_target(&false_target)) {
3924                 complex_value false_val
3925                         = expression_to_complex(expression->false_expression);
3926                 jump_to_target(&exit_target);
3927                 if (val.real != NULL) {
3928                         ir_node  *const inr[] = { val.real, false_val.real };
3929                         ir_node  *const ini[] = { val.imag, false_val.imag };
3930                         dbg_info *const dbgi  = get_dbg_info(&expression->base.pos);
3931                         ir_mode  *const mode  = get_complex_mode_arithmetic(type);
3932                         ir_node  *const block = exit_target.block;
3933                         val.real = new_rd_Phi(dbgi, block, lengthof(inr), inr, mode);
3934                         val.imag = new_rd_Phi(dbgi, block, lengthof(ini), ini, mode);
3935                 } else {
3936                         val = false_val;
3937                 }
3938         }
3939
3940         if (!enter_jump_target(&exit_target)) {
3941                 set_cur_block(new_Block(0, NULL));
3942                 assert(!is_type_void(type));
3943                 ir_mode *mode = get_complex_mode_arithmetic(type);
3944                 val.real = new_Unknown(mode);
3945                 val.imag = val.real;
3946         }
3947         return val;
3948 }
3949
3950 static void create_local_declarations(entity_t*);
3951
3952 static complex_value compound_statement_to_firm_complex(
3953         compound_statement_t *compound)
3954 {
3955         create_local_declarations(compound->scope.entities);
3956
3957         complex_value result    = { NULL, NULL };
3958         statement_t  *statement = compound->statements;
3959         statement_t  *next;
3960         for ( ; statement != NULL; statement = next) {
3961                 next = statement->base.next;
3962                 /* last statement is the return value */
3963                 if (next == NULL) {
3964                         /* it must be an expression, otherwise we wouldn't be in the
3965                          * complex variant of compound_statement_to_firm */
3966                         if (statement->kind != STATEMENT_EXPRESSION)
3967                                 panic("last member of complex statement expression not an expression statement");
3968                         expression_t *expression = statement->expression.expression;
3969                         assert(is_type_complex(skip_typeref(expression->base.type)));
3970                         result = expression_to_complex(expression);
3971                 } else {
3972                         statement_to_firm(statement);
3973                 }
3974         }
3975
3976         return result;
3977 }
3978
3979 static complex_value complex_statement_expression_to_firm(
3980         const statement_expression_t *const expr)
3981 {
3982         statement_t *statement = expr->statement;
3983         assert(statement->kind == STATEMENT_COMPOUND);
3984
3985         return compound_statement_to_firm_complex(&statement->compound);
3986 }
3987
3988 static complex_value expression_to_complex(const expression_t *expression)
3989 {
3990         switch (expression->kind) {
3991         case EXPR_REFERENCE:
3992                 return complex_reference_to_firm(&expression->reference);
3993         case EXPR_SELECT:
3994                 return complex_select_to_firm(&expression->select);
3995         case EXPR_ARRAY_ACCESS:
3996                 return complex_array_access_to_firm(&expression->array_access);
3997         case EXPR_UNARY_CAST:
3998                 return complex_cast_to_firm(&expression->unary);
3999         case EXPR_BINARY_COMMA:
4000                 evaluate_expression_discard_result(expression->binary.left);
4001                 return expression_to_complex(expression->binary.right);
4002         case EXPR_BINARY_ADD:
4003                 return create_complex_binop(&expression->binary, new_complex_add);
4004         case EXPR_BINARY_ADD_ASSIGN:
4005                 return create_complex_assign_binop(&expression->binary, new_complex_add);
4006         case EXPR_BINARY_SUB:
4007                 return create_complex_binop(&expression->binary, new_complex_sub);
4008         case EXPR_BINARY_SUB_ASSIGN:
4009                 return create_complex_assign_binop(&expression->binary, new_complex_sub);
4010         case EXPR_BINARY_MUL:
4011                 return create_complex_binop(&expression->binary, new_complex_mul);
4012         case EXPR_BINARY_MUL_ASSIGN:
4013                 return create_complex_assign_binop(&expression->binary, new_complex_mul);
4014         case EXPR_BINARY_DIV:
4015                 return create_complex_binop(&expression->binary, new_complex_div);
4016         case EXPR_BINARY_DIV_ASSIGN:
4017                 return create_complex_assign_binop(&expression->binary, new_complex_div);
4018         case EXPR_UNARY_PLUS:
4019                 return expression_to_complex(expression->unary.value);
4020         case EXPR_UNARY_PREFIX_INCREMENT:
4021                 return create_complex_assign_unop(&expression->unary,
4022                                                   new_complex_increment, false);
4023         case EXPR_UNARY_PREFIX_DECREMENT:
4024                 return create_complex_assign_unop(&expression->unary,
4025                                                   new_complex_decrement, false);
4026         case EXPR_UNARY_POSTFIX_INCREMENT:
4027                 return create_complex_assign_unop(&expression->unary,
4028                                                   new_complex_increment, true);
4029         case EXPR_UNARY_POSTFIX_DECREMENT:
4030                 return create_complex_assign_unop(&expression->unary,
4031                                                   new_complex_decrement, true);
4032         case EXPR_UNARY_NEGATE:
4033                 return complex_negate_to_firm(&expression->unary);
4034         case EXPR_UNARY_COMPLEMENT:
4035                 return complex_complement_to_firm(&expression->unary);
4036         case EXPR_BINARY_ASSIGN: {
4037                 const binary_expression_t *binexpr = &expression->binary;
4038                 dbg_info                  *dbgi   = get_dbg_info(&binexpr->base.pos);
4039                 complex_value value = expression_to_complex(binexpr->right);
4040                 ir_node      *addr  = expression_to_addr(binexpr->left);
4041                 set_complex_value_for_expression(dbgi, binexpr->left, value, addr);
4042                 return value;
4043         }
4044         case EXPR_LITERAL_CASES:
4045                 return complex_literal_to_firm(&expression->literal);
4046         case EXPR_CALL:
4047                 return complex_call_to_firm(&expression->call);
4048         case EXPR_CONDITIONAL:
4049                 return complex_conditional_to_firm(&expression->conditional);
4050         case EXPR_STATEMENT:
4051                 return complex_statement_expression_to_firm(&expression->statement);
4052
4053         default:
4054                 break;
4055         }
4056         panic("complex expression not implemented yet");
4057 }
4058
4059
4060
4061 static void create_variable_entity(entity_t *variable,
4062                                    declaration_kind_t declaration_kind,
4063                                    ir_type *parent_type)
4064 {
4065         assert(variable->kind == ENTITY_VARIABLE);
4066         type_t    *type = skip_typeref(variable->declaration.type);
4067
4068         ident     *const id        = new_id_from_str(variable->base.symbol->string);
4069         ir_type   *const irtype    = get_ir_type(type);
4070         dbg_info  *const dbgi      = get_dbg_info(&variable->base.pos);
4071         ir_entity *const irentity  = new_d_entity(parent_type, id, irtype, dbgi);
4072         unsigned         alignment = variable->declaration.alignment;
4073
4074         set_entity_alignment(irentity, alignment);
4075
4076         handle_decl_modifiers(irentity, variable);
4077
4078         variable->declaration.kind  = (unsigned char) declaration_kind;
4079         variable->variable.v.entity = irentity;
4080         set_entity_ld_ident(irentity, create_ld_ident(variable));
4081
4082         if (type->base.qualifiers & TYPE_QUALIFIER_VOLATILE) {
4083                 set_entity_volatility(irentity, volatility_is_volatile);
4084         }
4085 }
4086
4087
4088 typedef struct type_path_entry_t type_path_entry_t;
4089 struct type_path_entry_t {
4090         type_t           *type;
4091         ir_initializer_t *initializer;
4092         size_t            index;
4093         entity_t         *compound_entry;
4094 };
4095
4096 typedef struct type_path_t type_path_t;
4097 struct type_path_t {
4098         type_path_entry_t *path;
4099         type_t            *top_type;
4100         bool               invalid;
4101 };
4102
4103 static __attribute__((unused)) void debug_print_type_path(const type_path_t *path)
4104 {
4105         size_t len = ARR_LEN(path->path);
4106
4107         for (size_t i = 0; i < len; ++i) {
4108                 const type_path_entry_t *entry = & path->path[i];
4109
4110                 type_t *type = skip_typeref(entry->type);
4111                 if (is_type_compound(type)) {
4112                         fprintf(stderr, ".%s", entry->compound_entry->base.symbol->string);
4113                 } else if (is_type_array(type)) {
4114                         fprintf(stderr, "[%u]", (unsigned) entry->index);
4115                 } else {
4116                         fprintf(stderr, "-INVALID-");
4117                 }
4118         }
4119         fprintf(stderr, "  (");
4120         print_type(path->top_type);
4121         fprintf(stderr, ")");
4122 }
4123
4124 static type_path_entry_t *get_type_path_top(const type_path_t *path)
4125 {
4126         size_t len = ARR_LEN(path->path);
4127         assert(len > 0);
4128         return & path->path[len-1];
4129 }
4130
4131 static type_path_entry_t *append_to_type_path(type_path_t *path)
4132 {
4133         size_t len = ARR_LEN(path->path);
4134         ARR_RESIZE(type_path_entry_t, path->path, len+1);
4135
4136         type_path_entry_t *result = & path->path[len];
4137         memset(result, 0, sizeof(result[0]));
4138         return result;
4139 }
4140
4141 static size_t get_compound_member_count(const compound_type_t *type)
4142 {
4143         compound_t *compound  = type->compound;
4144         size_t      n_members = 0;
4145         entity_t   *member    = compound->members.entities;
4146         for ( ; member != NULL; member = member->base.next) {
4147                 ++n_members;
4148         }
4149
4150         return n_members;
4151 }
4152
4153 static ir_initializer_t *get_initializer_entry(type_path_t *path)
4154 {
4155         type_t *orig_top_type = path->top_type;
4156         type_t *top_type      = skip_typeref(orig_top_type);
4157
4158         assert(is_type_compound(top_type) || is_type_array(top_type));
4159
4160         if (ARR_LEN(path->path) == 0) {
4161                 return NULL;
4162         } else {
4163                 type_path_entry_t *top         = get_type_path_top(path);
4164                 ir_initializer_t  *initializer = top->initializer;
4165                 return get_initializer_compound_value(initializer, top->index);
4166         }
4167 }
4168
4169 static void descend_into_subtype(type_path_t *path)
4170 {
4171         type_t *orig_top_type = path->top_type;
4172         type_t *top_type      = skip_typeref(orig_top_type);
4173
4174         assert(is_type_compound(top_type) || is_type_array(top_type));
4175
4176         ir_initializer_t *initializer = get_initializer_entry(path);
4177
4178         type_path_entry_t *top = append_to_type_path(path);
4179         top->type              = top_type;
4180
4181         size_t len;
4182
4183         if (is_type_compound(top_type)) {
4184                 compound_t *const compound = top_type->compound.compound;
4185                 entity_t   *const entry    = skip_unnamed_bitfields(compound->members.entities);
4186
4187                 top->compound_entry = entry;
4188                 top->index          = 0;
4189                 len                 = get_compound_member_count(&top_type->compound);
4190                 if (entry != NULL) {
4191                         assert(entry->kind == ENTITY_COMPOUND_MEMBER);
4192                         path->top_type = entry->declaration.type;
4193                 }
4194         } else {
4195                 assert(is_type_array(top_type));
4196                 assert(top_type->array.size > 0);
4197
4198                 top->index     = 0;
4199                 path->top_type = top_type->array.element_type;
4200                 len            = top_type->array.size;
4201         }
4202         if (initializer == NULL
4203                         || get_initializer_kind(initializer) == IR_INITIALIZER_NULL) {
4204                 initializer = create_initializer_compound(len);
4205                 /* we have to set the entry at the 2nd latest path entry... */
4206                 size_t path_len = ARR_LEN(path->path);
4207                 assert(path_len >= 1);
4208                 if (path_len > 1) {
4209                         type_path_entry_t *entry        = & path->path[path_len-2];
4210                         ir_initializer_t  *tinitializer = entry->initializer;
4211                         set_initializer_compound_value(tinitializer, entry->index,
4212                                                        initializer);
4213                 }
4214         }
4215         top->initializer = initializer;
4216 }
4217
4218 static void ascend_from_subtype(type_path_t *path)
4219 {
4220         type_path_entry_t *top = get_type_path_top(path);
4221
4222         path->top_type = top->type;
4223
4224         size_t len = ARR_LEN(path->path);
4225         ARR_RESIZE(type_path_entry_t, path->path, len-1);
4226 }
4227
4228 static void walk_designator(type_path_t *path, const designator_t *designator)
4229 {
4230         /* designators start at current object type */
4231         ARR_RESIZE(type_path_entry_t, path->path, 1);
4232
4233         for ( ; designator != NULL; designator = designator->next) {
4234                 type_path_entry_t *top         = get_type_path_top(path);
4235                 type_t            *orig_type   = top->type;
4236                 type_t            *type        = skip_typeref(orig_type);
4237
4238                 if (designator->symbol != NULL) {
4239                         assert(is_type_compound(type));
4240                         size_t    index  = 0;
4241                         symbol_t *symbol = designator->symbol;
4242
4243                         compound_t *compound = type->compound.compound;
4244                         entity_t   *iter     = compound->members.entities;
4245                         for (; iter->base.symbol != symbol; iter = iter->base.next, ++index) {}
4246                         assert(iter->kind == ENTITY_COMPOUND_MEMBER);
4247
4248                         /* revert previous initialisations of other union elements */
4249                         if (type->kind == TYPE_COMPOUND_UNION) {
4250                                 ir_initializer_t *initializer = top->initializer;
4251                                 if (initializer != NULL
4252                                         && get_initializer_kind(initializer) == IR_INITIALIZER_COMPOUND) {
4253                                         /* are we writing to a new element? */
4254                                         ir_initializer_t *oldi
4255                                                 = get_initializer_compound_value(initializer, index);
4256                                         if (get_initializer_kind(oldi) == IR_INITIALIZER_NULL) {
4257                                                 /* clear initializer */
4258                                                 size_t len
4259                                                         = get_initializer_compound_n_entries(initializer);
4260                                                 ir_initializer_t *nulli = get_initializer_null();
4261                                                 for (size_t i = 0; i < len; ++i) {
4262                                                         set_initializer_compound_value(initializer, i,
4263                                                                                        nulli);
4264                                                 }
4265                                         }
4266                                 }
4267                         }
4268
4269                         top->type           = orig_type;
4270                         top->compound_entry = iter;
4271                         top->index          = index;
4272                         orig_type           = iter->declaration.type;
4273                 } else {
4274                         expression_t *array_index = designator->array_index;
4275                         assert(is_type_array(type));
4276
4277                         long index = fold_constant_to_int(array_index);
4278                         assert(0 <= index && (!type->array.size_constant || (size_t)index < type->array.size));
4279
4280                         top->type  = orig_type;
4281                         top->index = (size_t) index;
4282                         orig_type  = type->array.element_type;
4283                 }
4284                 path->top_type = orig_type;
4285
4286                 if (designator->next != NULL) {
4287                         descend_into_subtype(path);
4288                 }
4289         }
4290
4291         path->invalid  = false;
4292 }
4293
4294 static void advance_current_object(type_path_t *path)
4295 {
4296         if (path->invalid) {
4297                 /* TODO: handle this... */
4298                 panic("invalid initializer (excessive elements)");
4299         }
4300
4301         type_path_entry_t *top = get_type_path_top(path);
4302
4303         type_t *type = skip_typeref(top->type);
4304         if (is_type_union(type)) {
4305                 /* only the first element is initialized in unions */
4306                 top->compound_entry = NULL;
4307         } else if (is_type_struct(type)) {
4308                 entity_t *entry = top->compound_entry;
4309
4310                 top->index++;
4311                 entry               = skip_unnamed_bitfields(entry->base.next);
4312                 top->compound_entry = entry;
4313                 if (entry != NULL) {
4314                         assert(entry->kind == ENTITY_COMPOUND_MEMBER);
4315                         path->top_type = entry->declaration.type;
4316                         return;
4317                 }
4318         } else {
4319                 assert(is_type_array(type));
4320
4321                 top->index++;
4322                 if (!type->array.size_constant || top->index < type->array.size) {
4323                         return;
4324                 }
4325         }
4326
4327         /* we're past the last member of the current sub-aggregate, try if we
4328          * can ascend in the type hierarchy and continue with another subobject */
4329         size_t len = ARR_LEN(path->path);
4330
4331         if (len > 1) {
4332                 ascend_from_subtype(path);
4333                 advance_current_object(path);
4334         } else {
4335                 path->invalid = true;
4336         }
4337 }
4338
4339
4340 static ir_initializer_t *create_ir_initializer_value(
4341                 const initializer_value_t *initializer)
4342 {
4343         expression_t *expr = initializer->value;
4344         type_t       *type = skip_typeref(expr->base.type);
4345
4346         if (is_type_compound(type)) {
4347                 if (expr->kind == EXPR_UNARY_CAST) {
4348                         expr = expr->unary.value;
4349                         type = skip_typeref(expr->base.type);
4350                 }
4351                 /* must be a compound literal... */
4352                 if (expr->kind == EXPR_COMPOUND_LITERAL) {
4353                         return create_ir_initializer(expr->compound_literal.initializer,
4354                                                      type);
4355                 }
4356         } else if (is_type_complex(type)) {
4357                 complex_value     const value     = expression_to_complex(expr);
4358                 ir_mode          *const mode      = get_complex_mode_storage(type);
4359                 ir_node          *const real      = create_conv(NULL, value.real, mode);
4360                 ir_node          *const imag      = create_conv(NULL, value.imag, mode);
4361                 ir_initializer_t *const res       = create_initializer_compound(2);
4362                 ir_initializer_t *const init_real = create_initializer_const(real);
4363                 ir_initializer_t *const init_imag = create_initializer_const(imag);
4364                 set_initializer_compound_value(res, 0, init_real);
4365                 set_initializer_compound_value(res, 1, init_imag);
4366                 return res;
4367         }
4368
4369         ir_node *value = expression_to_value(expr);
4370         value = conv_to_storage_type(NULL, value, type);
4371         return create_initializer_const(value);
4372 }
4373
4374 /** Tests whether type can be initialized by a string constant */
4375 static bool is_string_type(type_t *type)
4376 {
4377         if (!is_type_array(type))
4378                 return false;
4379
4380         type_t *const inner = skip_typeref(type->array.element_type);
4381         return is_type_integer(inner);
4382 }
4383
4384 static ir_initializer_t *create_ir_initializer_list(
4385                 const initializer_list_t *initializer, type_t *type)
4386 {
4387         type_path_t path;
4388         memset(&path, 0, sizeof(path));
4389         path.top_type = type;
4390         path.path     = NEW_ARR_F(type_path_entry_t, 0);
4391
4392         descend_into_subtype(&path);
4393
4394         for (size_t i = 0; i < initializer->len; ++i) {
4395                 const initializer_t *sub_initializer = initializer->initializers[i];
4396
4397                 if (sub_initializer->kind == INITIALIZER_DESIGNATOR) {
4398                         walk_designator(&path, sub_initializer->designator.designator);
4399                         continue;
4400                 }
4401
4402                 if (sub_initializer->kind == INITIALIZER_VALUE) {
4403                         const expression_t *expr      = sub_initializer->value.value;
4404                         const type_t       *expr_type = skip_typeref(expr->base.type);
4405                         /* we might have to descend into types until the types match */
4406                         while (true) {
4407                                 type_t *orig_top_type = path.top_type;
4408                                 type_t *top_type      = skip_typeref(orig_top_type);
4409
4410                                 if (types_compatible(top_type, expr_type))
4411                                         break;
4412                                 descend_into_subtype(&path);
4413                         }
4414                 } else if (sub_initializer->kind == INITIALIZER_STRING) {
4415                         /* we might have to descend into types until we're at a scalar
4416                          * type */
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 (is_string_type(top_type))
4422                                         break;
4423                                 descend_into_subtype(&path);
4424                         }
4425                 }
4426
4427                 ir_initializer_t *sub_irinitializer
4428                         = create_ir_initializer(sub_initializer, path.top_type);
4429
4430                 size_t path_len = ARR_LEN(path.path);
4431                 assert(path_len >= 1);
4432                 type_path_entry_t *entry        = & path.path[path_len-1];
4433                 ir_initializer_t  *tinitializer = entry->initializer;
4434                 set_initializer_compound_value(tinitializer, entry->index,
4435                                                sub_irinitializer);
4436
4437                 advance_current_object(&path);
4438         }
4439
4440         assert(ARR_LEN(path.path) >= 1);
4441         ir_initializer_t *result = path.path[0].initializer;
4442         DEL_ARR_F(path.path);
4443
4444         return result;
4445 }
4446
4447 static ir_initializer_t *create_ir_initializer_string(initializer_t const *const init, type_t *type)
4448 {
4449         type = skip_typeref(type);
4450
4451         assert(type->kind == TYPE_ARRAY);
4452         assert(type->array.size_constant);
4453         string_literal_expression_t const *const str = get_init_string(init);
4454         size_t            const str_len = str->value.size;
4455         size_t            const arr_len = type->array.size;
4456         ir_initializer_t *const irinit  = create_initializer_compound(arr_len);
4457         ir_mode          *const mode    = get_ir_mode_storage(type->array.element_type);
4458         char const       *      p       = str->value.begin;
4459         switch (str->value.encoding) {
4460         case STRING_ENCODING_CHAR:
4461         case STRING_ENCODING_UTF8:
4462                 for (size_t i = 0; i != arr_len; ++i) {
4463                         char              const c      = i < str_len ? *p++ : 0;
4464                         ir_tarval        *const tv     = new_tarval_from_long(c, mode);
4465                         ir_initializer_t *const tvinit = create_initializer_tarval(tv);
4466                         set_initializer_compound_value(irinit, i, tvinit);
4467                 }
4468                 break;
4469
4470         case STRING_ENCODING_CHAR16:
4471         case STRING_ENCODING_CHAR32:
4472         case STRING_ENCODING_WIDE:
4473                 for (size_t i = 0; i != arr_len; ++i) {
4474                         utf32             const c      = i < str_len ? read_utf8_char(&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
4482         return irinit;
4483 }
4484
4485 static ir_initializer_t *create_ir_initializer(
4486                 const initializer_t *initializer, type_t *type)
4487 {
4488         switch (initializer->kind) {
4489                 case INITIALIZER_STRING:
4490                         return create_ir_initializer_string(initializer, type);
4491
4492                 case INITIALIZER_LIST:
4493                         return create_ir_initializer_list(&initializer->list, type);
4494
4495                 case INITIALIZER_VALUE:
4496                         return create_ir_initializer_value(&initializer->value);
4497
4498                 case INITIALIZER_DESIGNATOR:
4499                         panic("unexpected designator initializer");
4500         }
4501         panic("unknown initializer");
4502 }
4503
4504 /** ANSI C ยง6.7.8:21: If there are fewer initializers [..] than there
4505  *  are elements [...] the remainder of the aggregate shall be initialized
4506  *  implicitly the same as objects that have static storage duration. */
4507 static void create_dynamic_null_initializer(ir_entity *entity, dbg_info *dbgi,
4508                 ir_node *base_addr)
4509 {
4510         /* for unions we must NOT do anything for null initializers */
4511         ir_type *owner = get_entity_owner(entity);
4512         if (is_Union_type(owner)) {
4513                 return;
4514         }
4515
4516         ir_type *ent_type = get_entity_type(entity);
4517         /* create sub-initializers for a compound type */
4518         if (is_compound_type(ent_type)) {
4519                 unsigned n_members = get_compound_n_members(ent_type);
4520                 for (unsigned n = 0; n < n_members; ++n) {
4521                         ir_entity *member = get_compound_member(ent_type, n);
4522                         ir_node   *addr   = new_d_simpleSel(dbgi, new_NoMem(), base_addr,
4523                                                                 member);
4524                         create_dynamic_null_initializer(member, dbgi, addr);
4525                 }
4526                 return;
4527         }
4528         if (is_Array_type(ent_type)) {
4529                 assert(has_array_upper_bound(ent_type, 0));
4530                 long n = get_array_upper_bound_int(ent_type, 0);
4531                 for (long i = 0; i < n; ++i) {
4532                         ir_mode   *mode_uint = atomic_modes[ATOMIC_TYPE_UINT];
4533                         ir_tarval *index_tv = new_tarval_from_long(i, mode_uint);
4534                         ir_node   *cnst     = new_d_Const(dbgi, index_tv);
4535                         ir_node   *in[1]    = { cnst };
4536                         ir_entity *arrent   = get_array_element_entity(ent_type);
4537                         ir_node   *addr     = new_d_Sel(dbgi, new_NoMem(), base_addr, 1, in,
4538                                                         arrent);
4539                         create_dynamic_null_initializer(arrent, dbgi, addr);
4540                 }
4541                 return;
4542         }
4543
4544         ir_mode *value_mode = get_type_mode(ent_type);
4545         ir_node *node       = new_Const(get_mode_null(value_mode));
4546
4547         /* is it a bitfield type? */
4548         if (is_Primitive_type(ent_type) &&
4549                         get_primitive_base_type(ent_type) != NULL) {
4550                 bitfield_store_to_firm(dbgi, entity, base_addr, node, false, false);
4551                 return;
4552         }
4553
4554         ir_node *mem    = get_store();
4555         ir_node *store  = new_d_Store(dbgi, mem, base_addr, node, cons_none);
4556         ir_node *proj_m = new_Proj(store, mode_M, pn_Store_M);
4557         set_store(proj_m);
4558 }
4559
4560 static void create_dynamic_initializer_sub(ir_initializer_t *initializer,
4561                 ir_entity *entity, ir_type *type, dbg_info *dbgi, ir_node *base_addr)
4562 {
4563         switch (get_initializer_kind(initializer)) {
4564         case IR_INITIALIZER_NULL:
4565                 create_dynamic_null_initializer(entity, dbgi, base_addr);
4566                 return;
4567         case IR_INITIALIZER_CONST: {
4568                 ir_node *node     = get_initializer_const_value(initializer);
4569                 ir_type *ent_type = get_entity_type(entity);
4570
4571                 /* is it a bitfield type? */
4572                 if (is_Primitive_type(ent_type) &&
4573                                 get_primitive_base_type(ent_type) != NULL) {
4574                         bitfield_store_to_firm(dbgi, entity, base_addr, node, false, false);
4575                         return;
4576                 }
4577
4578                 ir_node *mem = get_store();
4579                 ir_node *new_mem;
4580                 if (is_compound_type(ent_type)) {
4581                         ir_node *copyb = new_d_CopyB(dbgi, mem, base_addr, node, ent_type);
4582                         new_mem = new_Proj(copyb, mode_M, pn_CopyB_M);
4583                 } else {
4584                         assert(get_type_mode(type) == get_irn_mode(node));
4585                         ir_node *store = new_d_Store(dbgi, mem, base_addr, node, cons_none);
4586                         new_mem = new_Proj(store, mode_M, pn_Store_M);
4587                 }
4588                 set_store(new_mem);
4589                 return;
4590         }
4591         case IR_INITIALIZER_TARVAL: {
4592                 ir_tarval *tv       = get_initializer_tarval_value(initializer);
4593                 ir_node   *cnst     = new_d_Const(dbgi, tv);
4594                 ir_type   *ent_type = get_entity_type(entity);
4595
4596                 /* is it a bitfield type? */
4597                 if (is_Primitive_type(ent_type) &&
4598                                 get_primitive_base_type(ent_type) != NULL) {
4599                         bitfield_store_to_firm(dbgi, entity, base_addr, cnst, false, false);
4600                         return;
4601                 }
4602
4603                 assert(get_type_mode(type) == get_tarval_mode(tv));
4604                 ir_node *mem    = get_store();
4605                 ir_node *store  = new_d_Store(dbgi, mem, base_addr, cnst, cons_none);
4606                 ir_node *proj_m = new_Proj(store, mode_M, pn_Store_M);
4607                 set_store(proj_m);
4608                 return;
4609         }
4610         case IR_INITIALIZER_COMPOUND: {
4611                 assert(is_compound_type(type) || is_Array_type(type));
4612                 int n_members;
4613                 if (is_Array_type(type)) {
4614                         assert(has_array_upper_bound(type, 0));
4615                         n_members = get_array_upper_bound_int(type, 0);
4616                 } else {
4617                         n_members = get_compound_n_members(type);
4618                 }
4619
4620                 if (get_initializer_compound_n_entries(initializer)
4621                                 != (unsigned) n_members)
4622                         panic("initializer doesn't match compound type");
4623
4624                 for (int i = 0; i < n_members; ++i) {
4625                         ir_node   *addr;
4626                         ir_type   *irtype;
4627                         ir_entity *sub_entity;
4628                         if (is_Array_type(type)) {
4629                                 ir_mode   *mode_uint = atomic_modes[ATOMIC_TYPE_UINT];
4630                                 ir_tarval *index_tv = new_tarval_from_long(i, mode_uint);
4631                                 ir_node   *cnst     = new_d_Const(dbgi, index_tv);
4632                                 ir_node   *in[1]    = { cnst };
4633                                 irtype     = get_array_element_type(type);
4634                                 sub_entity = get_array_element_entity(type);
4635                                 addr       = new_d_Sel(dbgi, new_NoMem(), base_addr, 1, in,
4636                                                        sub_entity);
4637                         } else {
4638                                 sub_entity = get_compound_member(type, i);
4639                                 irtype     = get_entity_type(sub_entity);
4640                                 addr       = new_d_simpleSel(dbgi, new_NoMem(), base_addr,
4641                                                              sub_entity);
4642                         }
4643
4644                         ir_initializer_t *sub_init
4645                                 = get_initializer_compound_value(initializer, i);
4646
4647                         create_dynamic_initializer_sub(sub_init, sub_entity, irtype, dbgi,
4648                                                        addr);
4649                 }
4650                 return;
4651         }
4652         }
4653
4654         panic("invalid ir_initializer");
4655 }
4656
4657 static void create_dynamic_initializer(ir_initializer_t *initializer,
4658                 dbg_info *dbgi, ir_entity *entity)
4659 {
4660         ir_node *frame     = get_irg_frame(current_ir_graph);
4661         ir_node *base_addr = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
4662         ir_type *type      = get_entity_type(entity);
4663
4664         create_dynamic_initializer_sub(initializer, entity, type, dbgi, base_addr);
4665 }
4666
4667 static void create_local_initializer(initializer_t *initializer, dbg_info *dbgi,
4668                                      ir_entity *entity, type_t *type)
4669 {
4670         ir_node *memory = get_store();
4671         ir_node *nomem  = new_NoMem();
4672         ir_node *frame  = get_irg_frame(current_ir_graph);
4673         ir_node *addr   = new_d_simpleSel(dbgi, nomem, frame, entity);
4674
4675         if (initializer->kind == INITIALIZER_VALUE) {
4676                 initializer_value_t *initializer_value = &initializer->value;
4677
4678                 ir_node *value = expression_to_value(initializer_value->value);
4679                 type = skip_typeref(type);
4680                 assign_value(dbgi, addr, type, value);
4681                 return;
4682         }
4683
4684         if (is_constant_initializer(initializer) == EXPR_CLASS_VARIABLE) {
4685                 ir_initializer_t *irinitializer
4686                         = create_ir_initializer(initializer, type);
4687
4688                 create_dynamic_initializer(irinitializer, dbgi, entity);
4689                 return;
4690         }
4691
4692         /* create a "template" entity which is copied to the entity on the stack */
4693         ir_entity *const init_entity
4694                 = create_initializer_entity(dbgi, initializer, type);
4695         ir_node *const src_addr = create_symconst(dbgi, init_entity);
4696         ir_type *const irtype   = get_ir_type(type);
4697         ir_node *const copyb    = new_d_CopyB(dbgi, memory, addr, src_addr, irtype);
4698
4699         ir_node *const copyb_mem = new_Proj(copyb, mode_M, pn_CopyB_M);
4700         set_store(copyb_mem);
4701 }
4702
4703 static void create_initializer_local_variable_entity(entity_t *entity)
4704 {
4705         assert(entity->kind == ENTITY_VARIABLE);
4706         initializer_t *initializer = entity->variable.initializer;
4707         dbg_info      *dbgi        = get_dbg_info(&entity->base.pos);
4708         ir_entity     *irentity    = entity->variable.v.entity;
4709         type_t        *type        = entity->declaration.type;
4710
4711         create_local_initializer(initializer, dbgi, irentity, type);
4712 }
4713
4714 static void create_variable_initializer(entity_t *entity)
4715 {
4716         assert(entity->kind == ENTITY_VARIABLE);
4717         initializer_t *initializer = entity->variable.initializer;
4718         if (initializer == NULL)
4719                 return;
4720
4721         declaration_kind_t declaration_kind
4722                 = (declaration_kind_t) entity->declaration.kind;
4723         if (declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE_ENTITY) {
4724                 create_initializer_local_variable_entity(entity);
4725                 return;
4726         }
4727
4728         type_t            *type = entity->declaration.type;
4729         type_qualifiers_t  tq   = get_type_qualifier(type, true);
4730
4731         if (initializer->kind == INITIALIZER_VALUE) {
4732                 expression_t *      value     = initializer->value.value;
4733                 type_t       *const init_type = skip_typeref(value->base.type);
4734
4735                 if (is_type_complex(init_type)) {
4736                         complex_value nodes = expression_to_complex(value);
4737                         dbg_info     *dbgi  = get_dbg_info(&entity->base.pos);
4738                         ir_mode      *mode  = get_complex_mode_storage(init_type);
4739                         ir_node      *real  = create_conv(dbgi, nodes.real, mode);
4740                         ir_node      *imag  = create_conv(dbgi, nodes.imag, mode);
4741                         if (declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE) {
4742                                 set_value(entity->variable.v.value_number, real);
4743                                 set_value(entity->variable.v.value_number+1, imag);
4744                         } else {
4745                                 assert(declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
4746                                 ir_entity *irentity = entity->variable.v.entity;
4747                                 if (tq & TYPE_QUALIFIER_CONST
4748                                                 && get_entity_owner(irentity) != get_tls_type()) {
4749                                         add_entity_linkage(irentity, IR_LINKAGE_CONSTANT);
4750                                 }
4751                                 ir_initializer_t *initializer = create_initializer_compound(2);
4752                                 ir_initializer_t *reali = create_initializer_const(real);
4753                                 set_initializer_compound_value(initializer, 0, reali);
4754                                 ir_initializer_t *imagi = create_initializer_const(imag);
4755                                 set_initializer_compound_value(initializer, 1, imagi);
4756                                 set_entity_initializer(irentity, initializer);
4757                         }
4758                         return;
4759                 } else if (!is_type_scalar(init_type)) {
4760                         if (value->kind != EXPR_COMPOUND_LITERAL)
4761                                 panic("expected non-scalar initializer to be a compound literal");
4762                         initializer = value->compound_literal.initializer;
4763                         goto have_initializer;
4764                 }
4765
4766                 ir_node  *      node = expression_to_value(value);
4767                 dbg_info *const dbgi = get_dbg_info(&entity->base.pos);
4768                 node = conv_to_storage_type(dbgi, node, init_type);
4769
4770                 if (declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE) {
4771                         set_value(entity->variable.v.value_number, node);
4772                 } else {
4773                         assert(declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
4774
4775                         ir_entity *irentity = entity->variable.v.entity;
4776
4777                         if (tq & TYPE_QUALIFIER_CONST
4778                                         && get_entity_owner(irentity) != get_tls_type()) {
4779                                 add_entity_linkage(irentity, IR_LINKAGE_CONSTANT);
4780                         }
4781                         set_atomic_ent_value(irentity, node);
4782                 }
4783         } else {
4784 have_initializer:
4785                 assert(declaration_kind == DECLARATION_KIND_LOCAL_VARIABLE_ENTITY ||
4786                        declaration_kind == DECLARATION_KIND_GLOBAL_VARIABLE);
4787
4788                 ir_entity        *irentity        = entity->variable.v.entity;
4789                 ir_initializer_t *irinitializer
4790                         = create_ir_initializer(initializer, type);
4791
4792                 if (tq & TYPE_QUALIFIER_CONST) {
4793                         add_entity_linkage(irentity, IR_LINKAGE_CONSTANT);
4794                 }
4795                 set_entity_initializer(irentity, irinitializer);
4796         }
4797 }
4798
4799 static void create_variable_length_array(entity_t *entity)
4800 {
4801         assert(entity->kind == ENTITY_VARIABLE);
4802         assert(entity->variable.initializer == NULL);
4803
4804         entity->declaration.kind    = DECLARATION_KIND_VARIABLE_LENGTH_ARRAY;
4805         entity->variable.v.vla_base = NULL;
4806
4807         /* TODO: record VLA somewhere so we create the free node when we leave
4808          * it's scope */
4809 }
4810
4811 static void allocate_variable_length_array(entity_t *entity)
4812 {
4813         assert(entity->kind == ENTITY_VARIABLE);
4814         assert(entity->variable.initializer == NULL);
4815         assert(currently_reachable());
4816
4817         dbg_info *dbgi      = get_dbg_info(&entity->base.pos);
4818         type_t   *type      = entity->declaration.type;
4819         ir_type  *el_type   = get_ir_type(type->array.element_type);
4820
4821         /* make sure size_node is calculated */
4822         get_type_size_node(type);
4823         ir_node  *elems = type->array.size_node;
4824         ir_node  *mem   = get_store();
4825         ir_node  *alloc = new_d_Alloc(dbgi, mem, elems, el_type, stack_alloc);
4826
4827         ir_node  *proj_m = new_d_Proj(dbgi, alloc, mode_M, pn_Alloc_M);
4828         ir_node  *addr   = new_d_Proj(dbgi, alloc, mode_P_data, pn_Alloc_res);
4829         set_store(proj_m);
4830
4831         assert(entity->declaration.kind == DECLARATION_KIND_VARIABLE_LENGTH_ARRAY);
4832         entity->variable.v.vla_base = addr;
4833 }
4834
4835 static bool var_needs_entity(variable_t const *const var)
4836 {
4837         if (var->address_taken)
4838                 return true;
4839         type_t *const type = skip_typeref(var->base.type);
4840         return (!is_type_scalar(type) && !is_type_complex(type))
4841              || type->base.qualifiers & TYPE_QUALIFIER_VOLATILE;
4842 }
4843
4844 /**
4845  * Creates a Firm local variable from a declaration.
4846  */
4847 static void create_local_variable(entity_t *entity)
4848 {
4849         assert(entity->kind == ENTITY_VARIABLE);
4850         assert(entity->declaration.kind == DECLARATION_KIND_UNKNOWN);
4851
4852         if (!var_needs_entity(&entity->variable)) {
4853                 entity->declaration.kind        = DECLARATION_KIND_LOCAL_VARIABLE;
4854                 entity->variable.v.value_number = next_value_number_function;
4855                 set_irg_loc_description(current_ir_graph, next_value_number_function, entity);
4856                 ++next_value_number_function;
4857                 if (is_type_complex(skip_typeref(entity->declaration.type)))
4858                         ++next_value_number_function;
4859                 return;
4860         }
4861
4862         /* is it a variable length array? */
4863         type_t *const type = skip_typeref(entity->declaration.type);
4864         if (is_type_array(type) && !type->array.size_constant) {
4865                 create_variable_length_array(entity);
4866                 return;
4867         }
4868
4869         ir_type *const frame_type = get_irg_frame_type(current_ir_graph);
4870         create_variable_entity(entity, DECLARATION_KIND_LOCAL_VARIABLE_ENTITY, frame_type);
4871 }
4872
4873 static void create_local_static_variable(entity_t *entity)
4874 {
4875         assert(entity->kind == ENTITY_VARIABLE);
4876         assert(entity->declaration.kind == DECLARATION_KIND_UNKNOWN);
4877
4878         type_t   *type           = skip_typeref(entity->declaration.type);
4879         ir_type  *const var_type = entity->variable.thread_local ?
4880                 get_tls_type() : get_glob_type();
4881         ir_type  *const irtype   = get_ir_type(type);
4882         dbg_info *const dbgi     = get_dbg_info(&entity->base.pos);
4883
4884         size_t l = strlen(entity->base.symbol->string);
4885         char   buf[l + sizeof(".%u")];
4886         snprintf(buf, sizeof(buf), "%s.%%u", entity->base.symbol->string);
4887         ident     *const id       = id_unique(buf);
4888         ir_entity *const irentity = new_d_entity(var_type, id, irtype, dbgi);
4889
4890         if (type->base.qualifiers & TYPE_QUALIFIER_VOLATILE) {
4891                 set_entity_volatility(irentity, volatility_is_volatile);
4892         }
4893
4894         entity->declaration.kind  = DECLARATION_KIND_GLOBAL_VARIABLE;
4895         entity->variable.v.entity = irentity;
4896
4897         set_entity_ld_ident(irentity, id);
4898         set_entity_visibility(irentity, ir_visibility_local);
4899
4900         if (entity->variable.initializer == NULL) {
4901                 ir_initializer_t *null_init = get_initializer_null();
4902                 set_entity_initializer(irentity, null_init);
4903         }
4904
4905         PUSH_IRG(get_const_code_irg());
4906         create_variable_initializer(entity);
4907         POP_IRG();
4908 }
4909
4910 static ir_node *return_statement_to_firm(return_statement_t *statement)
4911 {
4912         if (!currently_reachable())
4913                 return NULL;
4914
4915         dbg_info *const dbgi = get_dbg_info(&statement->base.pos);
4916         type_t   *const type = skip_typeref(current_function_entity->declaration.type->function.return_type);
4917
4918         ir_node *in[1];
4919         int in_len;
4920         if (is_type_void(type)) {
4921                 /* just create the side effects, don't return anything */
4922                 if (statement->value)
4923                         evaluate_expression_discard_result(statement->value);
4924                 in[0]  = NULL;
4925                 in_len = 0;
4926         } else if (is_type_complex(type)) {
4927                 if (statement->value) {
4928                         complex_value value = expression_to_complex(statement->value);
4929                         in[0] = complex_to_memory(dbgi, type, value);
4930                 } else {
4931                         in[0] = new_Unknown(mode_P_data);
4932                 }
4933                 in_len = 1;
4934         } else {
4935                 ir_mode *const mode = get_ir_mode_storage(type);
4936                 if (statement->value) {
4937                         ir_node *value = expression_to_value(statement->value);
4938                         value = conv_to_storage_type(dbgi, value, type);
4939                         in[0] = create_conv(dbgi, value, mode);
4940                 } else {
4941                         in[0] = new_Unknown(mode);
4942                 }
4943                 in_len = 1;
4944         }
4945
4946         ir_node *const store = get_store();
4947         ir_node *const ret   = new_d_Return(dbgi, store, in_len, in);
4948
4949         ir_node *end_block = get_irg_end_block(current_ir_graph);
4950         add_immBlock_pred(end_block, ret);
4951
4952         set_unreachable_now();
4953         return NULL;
4954 }
4955
4956 static ir_node *expression_statement_to_firm(expression_statement_t *statement)
4957 {
4958         if (!currently_reachable())
4959                 return NULL;
4960
4961         expression_t *expression = statement->expression;
4962         type_t       *type       = skip_typeref(expression->base.type);
4963         if (is_type_complex(type)) {
4964                 expression_to_complex(expression);
4965                 return NULL; /* TODO */
4966         } else {
4967                 return expression_to_value(statement->expression);
4968         }
4969 }
4970
4971 static ir_node *compound_statement_to_firm(compound_statement_t *compound)
4972 {
4973         create_local_declarations(compound->scope.entities);
4974
4975         ir_node     *result    = NULL;
4976         statement_t *statement = compound->statements;
4977         for ( ; statement != NULL; statement = statement->base.next) {
4978                 result = statement_to_firm(statement);
4979         }
4980
4981         return result;
4982 }
4983
4984 static void create_global_variable(entity_t *entity)
4985 {
4986         ir_linkage          linkage    = IR_LINKAGE_DEFAULT;
4987         ir_visibility       visibility = ir_visibility_external;
4988         storage_class_tag_t storage
4989                 = (storage_class_tag_t)entity->declaration.storage_class;
4990         decl_modifiers_t    modifiers  = entity->declaration.modifiers;
4991         assert(entity->kind == ENTITY_VARIABLE);
4992
4993         switch (storage) {
4994         case STORAGE_CLASS_EXTERN: visibility = ir_visibility_external; break;
4995         case STORAGE_CLASS_STATIC: visibility = ir_visibility_local;    break;
4996         case STORAGE_CLASS_NONE:   visibility = ir_visibility_external; break;
4997         case STORAGE_CLASS_TYPEDEF:
4998         case STORAGE_CLASS_AUTO:
4999         case STORAGE_CLASS_REGISTER:
5000                 panic("invalid storage class for global var");
5001         }
5002
5003         /* "common" symbols */
5004         if (storage == STORAGE_CLASS_NONE
5005             && entity->variable.initializer == NULL
5006             && !entity->variable.thread_local
5007             && (modifiers & DM_WEAK) == 0) {
5008                 linkage |= IR_LINKAGE_MERGE;
5009         }
5010
5011         ir_type *var_type = get_glob_type();
5012         if (entity->variable.thread_local) {
5013                 var_type = get_tls_type();
5014         }
5015         create_variable_entity(entity, DECLARATION_KIND_GLOBAL_VARIABLE, var_type);
5016         ir_entity *irentity = entity->variable.v.entity;
5017         add_entity_linkage(irentity, linkage);
5018         set_entity_visibility(irentity, visibility);
5019         if (entity->variable.initializer == NULL
5020             && storage != STORAGE_CLASS_EXTERN) {
5021                 ir_initializer_t *null_init = get_initializer_null();
5022                 set_entity_initializer(irentity, null_init);
5023         }
5024 }
5025
5026 static void create_local_declaration(entity_t *entity)
5027 {
5028         assert(is_declaration(entity));
5029
5030         /* construct type */
5031         (void) get_ir_type(entity->declaration.type);
5032         if (entity->base.symbol == NULL) {
5033                 return;
5034         }
5035
5036         switch ((storage_class_tag_t) entity->declaration.storage_class) {
5037         case STORAGE_CLASS_STATIC:
5038                 if (entity->kind == ENTITY_FUNCTION) {
5039                         (void)get_function_entity(entity, NULL);
5040                 } else {
5041                         create_local_static_variable(entity);
5042                 }
5043                 return;
5044         case STORAGE_CLASS_EXTERN:
5045                 if (entity->kind == ENTITY_FUNCTION) {
5046                         assert(entity->function.body == NULL);
5047                         (void)get_function_entity(entity, NULL);
5048                 } else {
5049                         create_global_variable(entity);
5050                         create_variable_initializer(entity);
5051                 }
5052                 return;
5053         case STORAGE_CLASS_NONE:
5054         case STORAGE_CLASS_AUTO:
5055         case STORAGE_CLASS_REGISTER:
5056                 if (entity->kind == ENTITY_FUNCTION) {
5057                         if (entity->function.body != NULL) {
5058                                 ir_type *owner = get_irg_frame_type(current_ir_graph);
5059                                 (void)get_function_entity(entity, owner);
5060                                 entity->declaration.kind = DECLARATION_KIND_INNER_FUNCTION;
5061                                 enqueue_inner_function(entity);
5062                         } else {
5063                                 (void)get_function_entity(entity, NULL);
5064                         }
5065                 } else {
5066                         create_local_variable(entity);
5067                 }
5068                 return;
5069         case STORAGE_CLASS_TYPEDEF:
5070                 break;
5071         }
5072         panic("invalid storage class");
5073 }
5074
5075 static void create_local_declarations(entity_t *e)
5076 {
5077         for (; e; e = e->base.next) {
5078                 if (is_declaration(e))
5079                         create_local_declaration(e);
5080         }
5081 }
5082
5083 static void initialize_local_declaration(entity_t *entity)
5084 {
5085         if (entity->base.symbol == NULL)
5086                 return;
5087
5088         // no need to emit code in dead blocks
5089         if (entity->declaration.storage_class != STORAGE_CLASS_STATIC
5090                         && !currently_reachable())
5091                 return;
5092
5093         switch ((declaration_kind_t) entity->declaration.kind) {
5094         case DECLARATION_KIND_LOCAL_VARIABLE:
5095         case DECLARATION_KIND_LOCAL_VARIABLE_ENTITY:
5096                 create_variable_initializer(entity);
5097                 return;
5098
5099         case DECLARATION_KIND_VARIABLE_LENGTH_ARRAY:
5100                 allocate_variable_length_array(entity);
5101                 return;
5102
5103         case DECLARATION_KIND_COMPOUND_MEMBER:
5104         case DECLARATION_KIND_GLOBAL_VARIABLE:
5105         case DECLARATION_KIND_FUNCTION:
5106         case DECLARATION_KIND_INNER_FUNCTION:
5107                 return;
5108
5109         case DECLARATION_KIND_PARAMETER:
5110         case DECLARATION_KIND_PARAMETER_ENTITY:
5111                 panic("can't initialize parameters");
5112
5113         case DECLARATION_KIND_UNKNOWN:
5114                 panic("can't initialize unknown declaration");
5115         }
5116         panic("invalid declaration kind");
5117 }
5118
5119 static ir_node *declaration_statement_to_firm(declaration_statement_t *statement)
5120 {
5121         entity_t *entity = statement->declarations_begin;
5122         if (entity == NULL)
5123                 return NULL;
5124
5125         entity_t *const last = statement->declarations_end;
5126         for ( ;; entity = entity->base.next) {
5127                 if (is_declaration(entity)) {
5128                         initialize_local_declaration(entity);
5129                 } else if (entity->kind == ENTITY_TYPEDEF) {
5130                         /* ยง6.7.7:3  Any array size expressions associated with variable length
5131                          * array declarators are evaluated each time the declaration of the
5132                          * typedef name is reached in the order of execution. */
5133                         type_t *const type = skip_typeref(entity->typedefe.type);
5134                         if (is_type_array(type) && type->array.is_vla)
5135                                 get_vla_size(&type->array);
5136                 }
5137                 if (entity == last)
5138                         break;
5139         }
5140
5141         return NULL;
5142 }
5143
5144 static ir_node *if_statement_to_firm(if_statement_t *statement)
5145 {
5146         create_local_declarations(statement->scope.entities);
5147
5148         /* Create the condition. */
5149         jump_target true_target;
5150         jump_target false_target;
5151         init_jump_target(&true_target,  NULL);
5152         init_jump_target(&false_target, NULL);
5153         if (currently_reachable())
5154                 expression_to_control_flow(statement->condition, &true_target, &false_target);
5155
5156         jump_target exit_target;
5157         init_jump_target(&exit_target, NULL);
5158
5159         /* Create the true statement. */
5160         enter_jump_target(&true_target);
5161         statement_to_firm(statement->true_statement);
5162         jump_to_target(&exit_target);
5163
5164         /* Create the false statement. */
5165         enter_jump_target(&false_target);
5166         if (statement->false_statement)
5167                 statement_to_firm(statement->false_statement);
5168         jump_to_target(&exit_target);
5169
5170         enter_jump_target(&exit_target);
5171         return NULL;
5172 }
5173
5174 static ir_node *do_while_statement_to_firm(do_while_statement_t *statement)
5175 {
5176         create_local_declarations(statement->scope.entities);
5177
5178         PUSH_BREAK(NULL);
5179         PUSH_CONTINUE(NULL);
5180
5181         expression_t *const cond = statement->condition;
5182         /* Avoid an explicit body block in case of do ... while (0);. */
5183         if (is_constant_expression(cond) == EXPR_CLASS_CONSTANT && !fold_constant_to_bool(cond)) {
5184                 /* do ... while (0);. */
5185                 statement_to_firm(statement->body);
5186                 jump_to_target(&continue_target);
5187                 enter_jump_target(&continue_target);
5188                 jump_to_target(&break_target);
5189         } else {
5190                 jump_target body_target;
5191                 init_jump_target(&body_target, NULL);
5192                 jump_to_target(&body_target);
5193                 enter_immature_jump_target(&body_target);
5194                 keep_loop();
5195                 statement_to_firm(statement->body);
5196                 jump_to_target(&continue_target);
5197                 if (enter_jump_target(&continue_target))
5198                         expression_to_control_flow(statement->condition, &body_target, &break_target);
5199                 enter_jump_target(&body_target);
5200         }
5201         enter_jump_target(&break_target);
5202
5203         POP_CONTINUE();
5204         POP_BREAK();
5205         return NULL;
5206 }
5207
5208 static ir_node *for_statement_to_firm(for_statement_t *statement)
5209 {
5210         create_local_declarations(statement->scope.entities);
5211
5212         if (currently_reachable()) {
5213                 entity_t *entity = statement->scope.entities;
5214                 for ( ; entity != NULL; entity = entity->base.next) {
5215                         if (!is_declaration(entity))
5216                                 continue;
5217
5218                         initialize_local_declaration(entity);
5219                 }
5220
5221                 if (statement->initialisation != NULL) {
5222                         expression_to_value(statement->initialisation);
5223                 }
5224         }
5225
5226         /* Create the header block */
5227         jump_target header_target;
5228         init_jump_target(&header_target, NULL);
5229         jump_to_target(&header_target);
5230         enter_immature_jump_target(&header_target);
5231         keep_loop();
5232
5233         expression_t *const step = statement->step;
5234         PUSH_BREAK(NULL);
5235         PUSH_CONTINUE(step ? NULL : header_target.block);
5236
5237         /* Create the condition. */
5238         expression_t *const cond = statement->condition;
5239         if (cond && (is_constant_expression(cond) != EXPR_CLASS_CONSTANT || !fold_constant_to_bool(cond))) {
5240                 jump_target body_target;
5241                 init_jump_target(&body_target, NULL);
5242                 expression_to_control_flow(cond, &body_target, &break_target);
5243                 enter_jump_target(&body_target);
5244         }
5245
5246         /* Create the loop body. */
5247         statement_to_firm(statement->body);
5248         jump_to_target(&continue_target);
5249
5250         /* Create the step code. */
5251         if (step && enter_jump_target(&continue_target)) {
5252                 expression_to_value(step);
5253                 jump_to_target(&header_target);
5254         }
5255
5256         enter_jump_target(&header_target);
5257         enter_jump_target(&break_target);
5258
5259         POP_CONTINUE();
5260         POP_BREAK();
5261         return NULL;
5262 }
5263
5264 static ir_switch_table *create_switch_table(const switch_statement_t *statement)
5265 {
5266         /* determine number of cases */
5267         size_t n_cases = 0;
5268         for (case_label_statement_t *l = statement->first_case; l != NULL;
5269              l = l->next) {
5270                 /* default case */
5271                 if (l->expression == NULL)
5272                         continue;
5273                 if (l->is_empty_range)
5274                         continue;
5275                 ++n_cases;
5276         }
5277
5278         ir_switch_table *res = ir_new_switch_table(current_ir_graph, n_cases);
5279         size_t           i   = 0;
5280         for (case_label_statement_t *l = statement->first_case; l != NULL;
5281              l = l->next) {
5282             if (l->expression == NULL) {
5283                         l->pn = pn_Switch_default;
5284                         continue;
5285                 }
5286                 if (l->is_empty_range)
5287                         continue;
5288                 ir_tarval *min = l->first_case;
5289                 ir_tarval *max = l->last_case;
5290                 long       pn  = (long) i+1;
5291                 ir_switch_table_set(res, i++, min, max, pn);
5292                 l->pn = pn;
5293         }
5294         return res;
5295 }
5296
5297 static ir_node *switch_statement_to_firm(switch_statement_t *statement)
5298 {
5299         dbg_info *dbgi        = get_dbg_info(&statement->base.pos);
5300         ir_node  *switch_node = NULL;
5301
5302         if (currently_reachable()) {
5303                 ir_node *expression = expression_to_value(statement->expression);
5304                 ir_switch_table *table = create_switch_table(statement);
5305                 unsigned n_outs = (unsigned)ir_switch_table_get_n_entries(table) + 1;
5306
5307                 switch_node = new_d_Switch(dbgi, expression, n_outs, table);
5308         }
5309
5310         set_unreachable_now();
5311
5312         PUSH_BREAK(NULL);
5313         ir_node *const old_switch            = current_switch;
5314         const bool     old_saw_default_label = saw_default_label;
5315         saw_default_label                    = false;
5316         current_switch                       = switch_node;
5317
5318         statement_to_firm(statement->body);
5319         jump_to_target(&break_target);
5320
5321         if (!saw_default_label && switch_node) {
5322                 ir_node *proj = new_d_Proj(dbgi, switch_node, mode_X, pn_Switch_default);
5323                 add_pred_to_jump_target(&break_target, proj);
5324         }
5325
5326         enter_jump_target(&break_target);
5327
5328         assert(current_switch == switch_node);
5329         current_switch    = old_switch;
5330         saw_default_label = old_saw_default_label;
5331         POP_BREAK();
5332         return NULL;
5333 }
5334
5335 static ir_node *case_label_to_firm(const case_label_statement_t *statement)
5336 {
5337         if (current_switch != NULL && !statement->is_empty_range) {
5338                 jump_target case_target;
5339                 init_jump_target(&case_target, NULL);
5340
5341                 /* Fallthrough from previous case */
5342                 jump_to_target(&case_target);
5343
5344                 ir_node *const proj = new_Proj(current_switch, mode_X, statement->pn);
5345                 add_pred_to_jump_target(&case_target, proj);
5346                 if (statement->expression == NULL)
5347                         saw_default_label = true;
5348
5349                 enter_jump_target(&case_target);
5350         }
5351
5352         return statement_to_firm(statement->statement);
5353 }
5354
5355 static ir_node *label_to_firm(const label_statement_t *statement)
5356 {
5357         label_t *const label = statement->label;
5358         prepare_label_target(label);
5359         jump_to_target(&label->target);
5360         if (--label->n_users == 0) {
5361                 enter_jump_target(&label->target);
5362         } else {
5363                 enter_immature_jump_target(&label->target);
5364                 keep_loop();
5365         }
5366
5367         return statement_to_firm(statement->statement);
5368 }
5369
5370 static ir_node *goto_statement_to_firm(goto_statement_t *const stmt)
5371 {
5372         label_t *const label = stmt->label;
5373         prepare_label_target(label);
5374         jump_to_target(&label->target);
5375         if (--label->n_users == 0)
5376                 enter_jump_target(&label->target);
5377         set_unreachable_now();
5378         return NULL;
5379 }
5380
5381 static ir_node *computed_goto_to_firm(computed_goto_statement_t const *const statement)
5382 {
5383         if (currently_reachable()) {
5384                 ir_node *const op = expression_to_value(statement->expression);
5385                 ARR_APP1(ir_node*, ijmp_ops, op);
5386                 jump_to_target(&ijmp_target);
5387                 set_unreachable_now();
5388         }
5389         return NULL;
5390 }
5391
5392 static ir_node *asm_statement_to_firm(const asm_statement_t *statement)
5393 {
5394         bool           needs_memory = statement->is_volatile;
5395         size_t         n_clobbers   = 0;
5396         asm_clobber_t *clobber      = statement->clobbers;
5397         for ( ; clobber != NULL; clobber = clobber->next) {
5398                 const char *clobber_str = clobber->clobber.begin;
5399
5400                 if (!be_is_valid_clobber(clobber_str)) {
5401                         errorf(&statement->base.pos,
5402                                    "invalid clobber '%s' specified", clobber->clobber);
5403                         continue;
5404                 }
5405
5406                 if (streq(clobber_str, "memory")) {
5407                         needs_memory = true;
5408                         continue;
5409                 }
5410
5411                 ident *id = new_id_from_str(clobber_str);
5412                 obstack_ptr_grow(&asm_obst, id);
5413                 ++n_clobbers;
5414         }
5415         assert(obstack_object_size(&asm_obst) == n_clobbers * sizeof(ident*));
5416         ident **clobbers = NULL;
5417         if (n_clobbers > 0) {
5418                 clobbers = obstack_finish(&asm_obst);
5419         }
5420
5421         size_t n_inputs  = 0;
5422         asm_argument_t *argument = statement->inputs;
5423         for ( ; argument != NULL; argument = argument->next)
5424                 n_inputs++;
5425         size_t n_outputs = 0;
5426         argument = statement->outputs;
5427         for ( ; argument != NULL; argument = argument->next)
5428                 n_outputs++;
5429
5430         unsigned next_pos = 0;
5431
5432         ir_node *ins[n_inputs + n_outputs + 1];
5433         size_t   in_size = 0;
5434
5435         ir_asm_constraint tmp_in_constraints[n_outputs];
5436
5437         const expression_t *out_exprs[n_outputs];
5438         ir_node            *out_addrs[n_outputs];
5439         size_t              out_size = 0;
5440
5441         argument = statement->outputs;
5442         for ( ; argument != NULL; argument = argument->next) {
5443                 const char *constraints = argument->constraints.begin;
5444                 asm_constraint_flags_t asm_flags
5445                         = be_parse_asm_constraints(constraints);
5446
5447                 {
5448                         position_t const *const pos = &statement->base.pos;
5449                         if (asm_flags & ASM_CONSTRAINT_FLAG_NO_SUPPORT) {
5450                                 warningf(WARN_OTHER, pos, "some constraints in '%s' are not supported", constraints);
5451                         }
5452                         if (asm_flags & ASM_CONSTRAINT_FLAG_INVALID) {
5453                                 errorf(pos, "some constraints in '%s' are invalid", constraints);
5454                                 continue;
5455                         }
5456                         if (! (asm_flags & ASM_CONSTRAINT_FLAG_MODIFIER_WRITE)) {
5457                                 errorf(pos, "no write flag specified for output constraints '%s'", constraints);
5458                                 continue;
5459                         }
5460                 }
5461
5462                 unsigned pos = next_pos++;
5463                 if ( (asm_flags & ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE)
5464                                 || (asm_flags & ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER) ) {
5465                         expression_t *expr = argument->expression;
5466                         ir_node      *addr = expression_to_addr(expr);
5467                         /* in+output, construct an artifical same_as constraint on the
5468                          * input */
5469                         if (asm_flags & ASM_CONSTRAINT_FLAG_MODIFIER_READ) {
5470                                 char     buf[64];
5471                                 ir_node *value = get_value_from_lvalue(expr, addr);
5472
5473                                 snprintf(buf, sizeof(buf), "%u", (unsigned) out_size);
5474
5475                                 ir_asm_constraint constraint;
5476                                 constraint.pos              = pos;
5477                                 constraint.constraint       = new_id_from_str(buf);
5478                                 constraint.mode             = get_ir_mode_storage(expr->base.type);
5479                                 tmp_in_constraints[in_size] = constraint;
5480                                 ins[in_size] = value;
5481
5482                                 ++in_size;
5483                         }
5484
5485                         out_exprs[out_size] = expr;
5486                         out_addrs[out_size] = addr;
5487                         ++out_size;
5488                 } else if (asm_flags & ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP) {
5489                         /* pure memory ops need no input (but we have to make sure we
5490                          * attach to the memory) */
5491                         assert(! (asm_flags &
5492                                                 (ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE
5493                                                  | ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER)));
5494                         needs_memory = true;
5495
5496                         /* we need to attach the address to the inputs */
5497                         expression_t *expr = argument->expression;
5498
5499                         ir_asm_constraint constraint;
5500                         constraint.pos              = pos;
5501                         constraint.constraint       = new_id_from_str(constraints);
5502                         constraint.mode             = mode_M;
5503                         tmp_in_constraints[in_size] = constraint;
5504
5505                         ins[in_size] = expression_to_addr(expr);
5506                         ++in_size;
5507                         continue;
5508                 } else {
5509                         errorf(&statement->base.pos,
5510                                "only modifiers but no place set in constraints '%s'",
5511                                constraints);
5512                         continue;
5513                 }
5514
5515                 ir_asm_constraint constraint;
5516                 constraint.pos        = pos;
5517                 constraint.constraint = new_id_from_str(constraints);
5518                 constraint.mode       = get_ir_mode_storage(argument->expression->base.type);
5519
5520                 obstack_grow(&asm_obst, &constraint, sizeof(constraint));
5521         }
5522         assert(obstack_object_size(&asm_obst)
5523                         == out_size * sizeof(ir_asm_constraint));
5524         ir_asm_constraint *output_constraints = obstack_finish(&asm_obst);
5525
5526
5527         obstack_grow(&asm_obst, tmp_in_constraints,
5528                      in_size * sizeof(tmp_in_constraints[0]));
5529         /* find and count input and output arguments */
5530         argument = statement->inputs;
5531         for ( ; argument != NULL; argument = argument->next) {
5532                 const char *constraints = argument->constraints.begin;
5533                 asm_constraint_flags_t asm_flags
5534                         = be_parse_asm_constraints(constraints);
5535
5536                 if (asm_flags & ASM_CONSTRAINT_FLAG_NO_SUPPORT) {
5537                         errorf(&statement->base.pos,
5538                                "some constraints in '%s' are not supported", constraints);
5539                         continue;
5540                 }
5541                 if (asm_flags & ASM_CONSTRAINT_FLAG_INVALID) {
5542                         errorf(&statement->base.pos,
5543                                "some constraints in '%s' are invalid", constraints);
5544                         continue;
5545                 }
5546                 if (asm_flags & ASM_CONSTRAINT_FLAG_MODIFIER_WRITE) {
5547                         errorf(&statement->base.pos,
5548                                "write flag specified for input constraints '%s'",
5549                                constraints);
5550                         continue;
5551                 }
5552
5553                 ir_node *input;
5554                 if ( (asm_flags & ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE)
5555                                 || (asm_flags & ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER) ) {
5556                         /* we can treat this as "normal" input */
5557                         input = expression_to_value(argument->expression);
5558                 } else if (asm_flags & ASM_CONSTRAINT_FLAG_SUPPORTS_MEMOP) {
5559                         /* pure memory ops need no input (but we have to make sure we
5560                          * attach to the memory) */
5561                         assert(! (asm_flags &
5562                                                 (ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE
5563                                                  | ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER)));
5564                         needs_memory = true;
5565                         input = expression_to_addr(argument->expression);
5566                 } else {
5567                         errorf(&statement->base.pos,
5568                                "only modifiers but no place set in constraints '%s'",
5569                                constraints);
5570                         continue;
5571                 }
5572
5573                 ir_asm_constraint constraint;
5574                 constraint.pos        = next_pos++;
5575                 constraint.constraint = new_id_from_str(constraints);
5576                 constraint.mode       = get_irn_mode(input);
5577
5578                 obstack_grow(&asm_obst, &constraint, sizeof(constraint));
5579                 ins[in_size++] = input;
5580         }
5581
5582         ir_node *mem = needs_memory ? get_store() : new_NoMem();
5583         assert(obstack_object_size(&asm_obst)
5584                         == in_size * sizeof(ir_asm_constraint));
5585         ir_asm_constraint *input_constraints = obstack_finish(&asm_obst);
5586
5587         /* create asm node */
5588         dbg_info *dbgi = get_dbg_info(&statement->base.pos);
5589
5590         ident *asm_text = new_id_from_str(statement->asm_text.begin);
5591
5592         ir_node *node = new_d_ASM(dbgi, mem, in_size, ins, input_constraints,
5593                                   out_size, output_constraints,
5594                                   n_clobbers, clobbers, asm_text);
5595
5596         if (statement->is_volatile) {
5597                 set_irn_pinned(node, op_pin_state_pinned);
5598         } else {
5599                 set_irn_pinned(node, op_pin_state_floats);
5600         }
5601
5602         /* create output projs & connect them */
5603         if (needs_memory) {
5604                 ir_node *projm = new_Proj(node, mode_M, out_size);
5605                 set_store(projm);
5606         }
5607
5608         size_t i;
5609         for (i = 0; i < out_size; ++i) {
5610                 const expression_t *out_expr = out_exprs[i];
5611                 long                pn       = i;
5612                 ir_mode            *mode     = get_ir_mode_storage(out_expr->base.type);
5613                 ir_node            *proj     = new_Proj(node, mode, pn);
5614                 ir_node            *addr     = out_addrs[i];
5615
5616                 set_value_for_expression_addr(out_expr, proj, addr);
5617         }
5618
5619         return NULL;
5620 }
5621
5622 static ir_node *ms_try_statement_to_firm(ms_try_statement_t *statement)
5623 {
5624         statement_to_firm(statement->try_statement);
5625         position_t const *const pos = &statement->base.pos;
5626         warningf(WARN_OTHER, pos, "structured exception handling ignored");
5627         return NULL;
5628 }
5629
5630 static ir_node *leave_statement_to_firm(leave_statement_t *statement)
5631 {
5632         errorf(&statement->base.pos, "__leave not supported yet");
5633         return NULL;
5634 }
5635
5636 /**
5637  * Transform a statement.
5638  */
5639 static ir_node *statement_to_firm(statement_t *const stmt)
5640 {
5641 #ifndef NDEBUG
5642         assert(!stmt->base.transformed);
5643         stmt->base.transformed = true;
5644 #endif
5645
5646         switch (stmt->kind) {
5647         case STATEMENT_ASM:           return asm_statement_to_firm(        &stmt->asms);
5648         case STATEMENT_CASE_LABEL:    return case_label_to_firm(           &stmt->case_label);
5649         case STATEMENT_COMPOUND:      return compound_statement_to_firm(   &stmt->compound);
5650         case STATEMENT_COMPUTED_GOTO: return computed_goto_to_firm(        &stmt->computed_goto);
5651         case STATEMENT_DECLARATION:   return declaration_statement_to_firm(&stmt->declaration);
5652         case STATEMENT_DO_WHILE:      return do_while_statement_to_firm(   &stmt->do_while);
5653         case STATEMENT_EMPTY:         return NULL; /* nothing */
5654         case STATEMENT_EXPRESSION:    return expression_statement_to_firm( &stmt->expression);
5655         case STATEMENT_FOR:           return for_statement_to_firm(        &stmt->fors);
5656         case STATEMENT_GOTO:          return goto_statement_to_firm(       &stmt->gotos);
5657         case STATEMENT_IF:            return if_statement_to_firm(         &stmt->ifs);
5658         case STATEMENT_LABEL:         return label_to_firm(                &stmt->label);
5659         case STATEMENT_LEAVE:         return leave_statement_to_firm(      &stmt->leave);
5660         case STATEMENT_MS_TRY:        return ms_try_statement_to_firm(     &stmt->ms_try);
5661         case STATEMENT_RETURN:        return return_statement_to_firm(     &stmt->returns);
5662         case STATEMENT_SWITCH:        return switch_statement_to_firm(     &stmt->switchs);
5663
5664         {
5665                 jump_target *tgt;
5666         case STATEMENT_BREAK:    tgt = &break_target;    goto jump;
5667         case STATEMENT_CONTINUE: tgt = &continue_target; goto jump;
5668 jump:
5669                 jump_to_target(tgt);
5670                 set_unreachable_now();
5671                 return NULL;
5672         }
5673
5674         case STATEMENT_ERROR: panic("error statement");
5675         }
5676         panic("statement not implemented");
5677 }
5678
5679 static int count_local_variables(const entity_t *entity,
5680                                  const entity_t *const last)
5681 {
5682         int count = 0;
5683         entity_t const *const end = last != NULL ? last->base.next : NULL;
5684         for (; entity != end; entity = entity->base.next) {
5685                 if ((entity->kind == ENTITY_VARIABLE || entity->kind == ENTITY_PARAMETER) &&
5686                     !var_needs_entity(&entity->variable)) {
5687                         ++count;
5688                         if (is_type_complex(skip_typeref(entity->declaration.type)))
5689                                 ++count;
5690                 }
5691         }
5692         return count;
5693 }
5694
5695 static void count_local_variables_in_stmt(statement_t *stmt, void *const env)
5696 {
5697         int *const count = env;
5698
5699         switch (stmt->kind) {
5700         case STATEMENT_DECLARATION: {
5701                 const declaration_statement_t *const decl_stmt = &stmt->declaration;
5702                 *count += count_local_variables(decl_stmt->declarations_begin,
5703                                 decl_stmt->declarations_end);
5704                 break;
5705         }
5706
5707         case STATEMENT_FOR:
5708                 *count += count_local_variables(stmt->fors.scope.entities, NULL);
5709                 break;
5710
5711         default:
5712                 break;
5713         }
5714 }
5715
5716 /**
5717  * Return the number of local (alias free) variables used by a function.
5718  */
5719 static int get_function_n_local_vars(entity_t *entity)
5720 {
5721         const function_t *function = &entity->function;
5722         int count = 0;
5723
5724         /* count parameters */
5725         count += count_local_variables(function->parameters.entities, NULL);
5726
5727         /* count local variables declared in body */
5728         walk_statements(function->body, count_local_variables_in_stmt, &count);
5729         return count;
5730 }
5731
5732 /**
5733  * Build Firm code for the parameters of a function.
5734  */
5735 static void initialize_function_parameters(entity_t *entity)
5736 {
5737         assert(entity->kind == ENTITY_FUNCTION);
5738         ir_graph *irg             = current_ir_graph;
5739         ir_node  *args            = get_irg_args(irg);
5740         int       n               = 0;
5741         ir_type  *function_irtype;
5742
5743         if (entity->function.need_closure) {
5744                 /* add an extra parameter for the static link */
5745                 entity->function.static_link = new_r_Proj(args, mode_P_data, 0);
5746                 ++n;
5747
5748                 /* Matze: IMO this is wrong, nested functions should have an own
5749                  * type and not rely on strange parameters... */
5750                 function_irtype = create_method_type(&entity->declaration.type->function, true);
5751         } else {
5752                 function_irtype = get_ir_type(entity->declaration.type);
5753         }
5754
5755         entity_t *parameter = entity->function.parameters.entities;
5756         for ( ; parameter != NULL; parameter = parameter->base.next, ++n) {
5757                 if (parameter->kind != ENTITY_PARAMETER)
5758                         continue;
5759
5760                 assert(parameter->declaration.kind == DECLARATION_KIND_UNKNOWN);
5761                 type_t *type = skip_typeref(parameter->declaration.type);
5762
5763                 dbg_info *const dbgi         = get_dbg_info(&parameter->base.pos);
5764                 ir_type  *const param_irtype = get_method_param_type(function_irtype, n);
5765                 if (var_needs_entity(&parameter->variable)) {
5766                         ir_type   *frame_type = get_irg_frame_type(irg);
5767                         ir_entity *param
5768                                 = new_d_parameter_entity(frame_type, n, param_irtype, dbgi);
5769                         parameter->declaration.kind  = DECLARATION_KIND_PARAMETER_ENTITY;
5770                         parameter->variable.v.entity = param;
5771                 } else if (is_type_complex(type)) {
5772                         ir_type   *frame_type = get_irg_frame_type(irg);
5773                         ir_entity *param
5774                                 = new_d_parameter_entity(frame_type, n, param_irtype, dbgi);
5775                         ir_node   *nomem = get_irg_no_mem(irg);
5776                         ir_node   *frame = get_irg_frame(irg);
5777                         ir_node   *addr  = new_simpleSel(nomem, frame, param);
5778                         complex_value value = complex_deref_address(NULL, type, addr, cons_floats);
5779
5780                         parameter->declaration.kind        = DECLARATION_KIND_PARAMETER;
5781                         parameter->variable.v.value_number = next_value_number_function;
5782                         set_irg_loc_description(irg, next_value_number_function,
5783                                                                         parameter);
5784                         set_irg_loc_description(irg, next_value_number_function+1,
5785                                                                         parameter);
5786                         set_value(next_value_number_function, value.real);
5787                         set_value(next_value_number_function+1, value.imag);
5788                         next_value_number_function += 2;
5789                 } else {
5790                         ir_mode *param_mode = get_type_mode(param_irtype);
5791                         long     pn         = n;
5792                         ir_node *value      = new_rd_Proj(dbgi, args, param_mode, pn);
5793                         value = conv_to_storage_type(dbgi, value, type);
5794
5795                         parameter->declaration.kind        = DECLARATION_KIND_PARAMETER;
5796                         parameter->variable.v.value_number = next_value_number_function;
5797                         set_irg_loc_description(irg, next_value_number_function,
5798                                                                         parameter);
5799                         ++next_value_number_function;
5800
5801                         set_value(parameter->variable.v.value_number, value);
5802                 }
5803         }
5804 }
5805
5806 static void add_function_pointer(ir_type *segment, ir_entity *method,
5807                                  const char *unique_template)
5808 {
5809         ir_type   *method_type  = get_entity_type(method);
5810         ir_type   *ptr_type     = new_type_pointer(method_type);
5811
5812         /* these entities don't really have a name but firm only allows
5813          * "" in ld_ident.
5814          * Note that we mustn't give these entities a name since for example
5815          * Mach-O doesn't allow them. */
5816         ident     *ide          = id_unique(unique_template);
5817         ir_entity *ptr          = new_entity(segment, ide, ptr_type);
5818         ir_graph  *irg          = get_const_code_irg();
5819         ir_node   *val          = new_rd_SymConst_addr_ent(NULL, irg, mode_P_code,
5820                                                            method);
5821
5822         set_entity_ld_ident(ptr, new_id_from_chars("", 0));
5823         set_entity_compiler_generated(ptr, 1);
5824         set_entity_visibility(ptr, ir_visibility_private);
5825         add_entity_linkage(ptr, IR_LINKAGE_CONSTANT|IR_LINKAGE_HIDDEN_USER);
5826         set_atomic_ent_value(ptr, val);
5827 }
5828
5829 /**
5830  * Create code for a function and all inner functions.
5831  *
5832  * @param entity  the function entity
5833  */
5834 static void create_function(entity_t *entity)
5835 {
5836         assert(entity->kind == ENTITY_FUNCTION);
5837         ir_entity *function_entity = get_function_entity(entity, current_outer_frame);
5838
5839         if (entity->function.body == NULL)
5840                 return;
5841
5842         inner_functions     = NULL;
5843         current_trampolines = NULL;
5844
5845         if (entity->declaration.modifiers & DM_CONSTRUCTOR) {
5846                 ir_type *segment = get_segment_type(IR_SEGMENT_CONSTRUCTORS);
5847                 add_function_pointer(segment, function_entity, "constructor_ptr.%u");
5848         }
5849         if (entity->declaration.modifiers & DM_DESTRUCTOR) {
5850                 ir_type *segment = get_segment_type(IR_SEGMENT_DESTRUCTORS);
5851                 add_function_pointer(segment, function_entity, "destructor_ptr.%u");
5852         }
5853
5854         current_function_entity = entity;
5855         current_function_name   = NULL;
5856         current_funcsig         = NULL;
5857
5858         assert(!ijmp_ops);
5859         assert(!ijmp_blocks);
5860         init_jump_target(&ijmp_target, NULL);
5861         ijmp_ops    = NEW_ARR_F(ir_node*, 0);
5862         ijmp_blocks = NEW_ARR_F(ir_node*, 0);
5863
5864         int       n_local_vars = get_function_n_local_vars(entity);
5865         ir_graph *irg          = new_ir_graph(function_entity, n_local_vars);
5866         current_ir_graph = irg;
5867
5868         ir_graph *old_current_function = current_function;
5869         current_function = irg;
5870
5871         ir_entity *const old_current_vararg_entity = current_vararg_entity;
5872         current_vararg_entity = NULL;
5873
5874         set_irg_fp_model(irg, firm_fp_model);
5875         set_irn_dbg_info(get_irg_start_block(irg),
5876                          get_entity_dbg_info(function_entity));
5877
5878         next_value_number_function = 0;
5879         initialize_function_parameters(entity);
5880         current_static_link = entity->function.static_link;
5881
5882         statement_to_firm(entity->function.body);
5883
5884         ir_node *end_block = get_irg_end_block(irg);
5885
5886         /* do we have a return statement yet? */
5887         if (currently_reachable()) {
5888                 type_t *type = skip_typeref(entity->declaration.type);
5889                 assert(is_type_function(type));
5890                 type_t *const return_type = skip_typeref(type->function.return_type);
5891
5892                 ir_node *ret;
5893                 if (is_type_void(return_type)) {
5894                         ret = new_Return(get_store(), 0, NULL);
5895                 } else {
5896                         ir_mode *const mode = get_ir_mode_storage(return_type);
5897
5898                         ir_node *in[1];
5899                         /* ยง5.1.2.2.3 main implicitly returns 0 */
5900                         if (is_main(entity)) {
5901                                 in[0] = new_Const(get_mode_null(mode));
5902                         } else {
5903                                 in[0] = new_Unknown(mode);
5904                         }
5905                         ret = new_Return(get_store(), 1, in);
5906                 }
5907                 add_immBlock_pred(end_block, ret);
5908         }
5909
5910         if (enter_jump_target(&ijmp_target)) {
5911                 keep_loop();
5912                 size_t   const n    = ARR_LEN(ijmp_ops);
5913                 ir_node *const op   = n == 1 ? ijmp_ops[0] : new_Phi(n, ijmp_ops, get_irn_mode(ijmp_ops[0]));
5914                 ir_node *const ijmp = new_IJmp(op);
5915                 for (size_t i = ARR_LEN(ijmp_blocks); i-- != 0;) {
5916                         ir_node *const block = ijmp_blocks[i];
5917                         add_immBlock_pred(block, ijmp);
5918                         mature_immBlock(block);
5919                 }
5920         }
5921
5922         DEL_ARR_F(ijmp_ops);
5923         DEL_ARR_F(ijmp_blocks);
5924         ijmp_ops    = NULL;
5925         ijmp_blocks = NULL;
5926
5927         irg_finalize_cons(irg);
5928
5929         /* finalize the frame type */
5930         ir_type *frame_type = get_irg_frame_type(irg);
5931         int      n          = get_compound_n_members(frame_type);
5932         int      align_all  = 4;
5933         int      offset     = 0;
5934         for (int i = 0; i < n; ++i) {
5935                 ir_entity *member      = get_compound_member(frame_type, i);
5936                 ir_type   *entity_type = get_entity_type(member);
5937
5938                 int align = get_type_alignment_bytes(entity_type);
5939                 if (align > align_all)
5940                         align_all = align;
5941                 int misalign = 0;
5942                 if (align > 0) {
5943                         misalign  = offset % align;
5944                         if (misalign > 0) {
5945                                 offset += align - misalign;
5946                         }
5947                 }
5948
5949                 set_entity_offset(member, offset);
5950                 offset += get_type_size_bytes(entity_type);
5951         }
5952         set_type_size_bytes(frame_type, offset);
5953         set_type_alignment_bytes(frame_type, align_all);
5954
5955         irg_verify(irg, VERIFY_ENFORCE_SSA);
5956         current_vararg_entity = old_current_vararg_entity;
5957         current_function      = old_current_function;
5958
5959         if (current_trampolines != NULL) {
5960                 DEL_ARR_F(current_trampolines);
5961                 current_trampolines = NULL;
5962         }
5963
5964         /* create inner functions if any */
5965         entity_t **inner = inner_functions;
5966         if (inner != NULL) {
5967                 ir_type *rem_outer_frame      = current_outer_frame;
5968                 current_outer_frame           = get_irg_frame_type(current_ir_graph);
5969                 for (int i = ARR_LEN(inner) - 1; i >= 0; --i) {
5970                         create_function(inner[i]);
5971                 }
5972                 DEL_ARR_F(inner);
5973
5974                 current_outer_frame      = rem_outer_frame;
5975         }
5976 }
5977
5978 static void scope_to_firm(scope_t *scope)
5979 {
5980         /* first pass: create declarations */
5981         entity_t *entity = scope->entities;
5982         for ( ; entity != NULL; entity = entity->base.next) {
5983                 if (entity->base.symbol == NULL)
5984                         continue;
5985
5986                 if (entity->kind == ENTITY_FUNCTION) {
5987                         if (entity->function.btk != BUILTIN_NONE) {
5988                                 /* builtins have no representation */
5989                                 continue;
5990                         }
5991                         (void)get_function_entity(entity, NULL);
5992                 } else if (entity->kind == ENTITY_VARIABLE) {
5993                         create_global_variable(entity);
5994                 } else if (entity->kind == ENTITY_NAMESPACE) {
5995                         scope_to_firm(&entity->namespacee.members);
5996                 }
5997         }
5998
5999         /* second pass: create code/initializers */
6000         entity = scope->entities;
6001         for ( ; entity != NULL; entity = entity->base.next) {
6002                 if (entity->base.symbol == NULL)
6003                         continue;
6004
6005                 if (entity->kind == ENTITY_FUNCTION) {
6006                         if (entity->function.btk != BUILTIN_NONE) {
6007                                 /* builtins have no representation */
6008                                 continue;
6009                         }
6010                         create_function(entity);
6011                 } else if (entity->kind == ENTITY_VARIABLE) {
6012                         assert(entity->declaration.kind
6013                                         == DECLARATION_KIND_GLOBAL_VARIABLE);
6014                         current_ir_graph = get_const_code_irg();
6015                         create_variable_initializer(entity);
6016                 }
6017         }
6018 }
6019
6020 void init_ast2firm(void)
6021 {
6022         obstack_init(&asm_obst);
6023         init_atomic_modes();
6024
6025         ir_set_debug_retrieve(dbg_retrieve);
6026         ir_set_type_debug_retrieve(dbg_print_type_dbg_info);
6027
6028         /* create idents for all known runtime functions */
6029         for (size_t i = 0; i < lengthof(rts_data); ++i) {
6030                 rts_idents[i] = new_id_from_str(rts_data[i].name);
6031         }
6032
6033         entitymap_init(&entitymap);
6034 }
6035
6036 static void init_ir_types(void)
6037 {
6038         static int ir_types_initialized = 0;
6039         if (ir_types_initialized)
6040                 return;
6041         ir_types_initialized = 1;
6042
6043         ir_type_char = get_ir_type(type_char);
6044
6045         be_params             = be_get_backend_param();
6046         mode_float_arithmetic = be_params->mode_float_arithmetic;
6047
6048         stack_param_align     = be_params->stack_param_align;
6049 }
6050
6051 void exit_ast2firm(void)
6052 {
6053         entitymap_destroy(&entitymap);
6054         obstack_free(&asm_obst, NULL);
6055 }
6056
6057 static void global_asm_to_firm(statement_t *s)
6058 {
6059         for (; s != NULL; s = s->base.next) {
6060                 assert(s->kind == STATEMENT_ASM);
6061
6062                 char const *const text = s->asms.asm_text.begin;
6063                 size_t      const size = s->asms.asm_text.size;
6064                 ident      *const id   = new_id_from_chars(text, size);
6065                 add_irp_asm(id);
6066         }
6067 }
6068
6069 static const char *get_cwd(void)
6070 {
6071         static char buf[1024];
6072         if (buf[0] == '\0') {
6073                 return getcwd(buf, sizeof(buf));
6074         }
6075         return buf;
6076 }
6077
6078 void translation_unit_to_firm(translation_unit_t *unit)
6079 {
6080         if (c_mode & _CXX) {
6081                 be_dwarf_set_source_language(DW_LANG_C_plus_plus);
6082         } else if (c_mode & _C99) {
6083                 be_dwarf_set_source_language(DW_LANG_C99);
6084         } else if (c_mode & _C89) {
6085                 be_dwarf_set_source_language(DW_LANG_C89);
6086         } else {
6087                 be_dwarf_set_source_language(DW_LANG_C);
6088         }
6089         const char *cwd = get_cwd();
6090         if (cwd != NULL) {
6091                 be_dwarf_set_compilation_directory(cwd);
6092         }
6093
6094         /* initialize firm arithmetic */
6095         tarval_set_integer_overflow_mode(TV_OVERFLOW_WRAP);
6096         ir_set_uninitialized_local_variable_func(uninitialized_local_var);
6097
6098         /* just to be sure */
6099         init_jump_target(&break_target,    NULL);
6100         init_jump_target(&continue_target, NULL);
6101         current_switch           = NULL;
6102         current_translation_unit = unit;
6103
6104         init_ir_types();
6105
6106         scope_to_firm(&unit->scope);
6107         global_asm_to_firm(unit->global_asm);
6108
6109         current_ir_graph         = NULL;
6110         current_translation_unit = NULL;
6111 }