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