3639f10dd250795c33898998a6cc1edde72d251f
[cparser] / ast2firm.c
1 #include <config.h>
2
3 #define _GNU_SOURCE
4
5 #include <assert.h>
6 #include <string.h>
7 #include <stdbool.h>
8
9 #include <libfirm/firm.h>
10 #include <libfirm/adt/obst.h>
11
12 #include "ast2firm.h"
13
14 #include "adt/error.h"
15 #include "adt/array.h"
16 #include "token_t.h"
17 #include "type_t.h"
18 #include "ast_t.h"
19 #include "parser.h"
20
21 #define MAGIC_DEFAULT_PN_NUMBER     (long) -314159265
22
23 static ir_type *ir_type_const_char;
24 static ir_type *ir_type_wchar_t;
25 static ir_type *ir_type_void;
26 static ir_type *ir_type_int;
27
28 static type_t *type_const_char;
29 static type_t *type_void;
30 static type_t *type_int;
31
32 static int       next_value_number_function;
33 static ir_node  *continue_label;
34 static ir_node  *break_label;
35 static ir_node  *current_switch_cond;
36 static bool      saw_default_label;
37 static ir_node **imature_blocks;
38
39 static const declaration_t *current_function_decl;
40 static ir_node             *current_function_name;
41
42 typedef enum declaration_type_t {
43         DECLARATION_TYPE_UNKNOWN,
44         DECLARATION_TYPE_FUNCTION,
45         DECLARATION_TYPE_GLOBAL_VARIABLE,
46         DECLARATION_TYPE_LOCAL_VARIABLE,
47         DECLARATION_TYPE_LOCAL_VARIABLE_ENTITY,
48         DECLARATION_TYPE_COMPOUND_MEMBER,
49         DECLARATION_TYPE_LABEL_BLOCK,
50         DECLARATION_TYPE_ENUM_ENTRY
51 } declaration_type_t;
52
53 static ir_type *get_ir_type(type_t *type);
54
55 ir_node *uninitialized_local_var(ir_graph *irg, ir_mode *mode, int pos)
56 {
57         (void) pos;
58 #if 0
59         const declaration_t *declaration = & value_numbers[pos]->declaration;
60
61         print_warning_prefix(declaration->source_position);
62         fprintf(stderr, "variable '%s' might be used uninitialized\n",
63                         declaration->symbol->string);
64 #endif
65         fprintf(stderr, "Some variable might be used uninitialized\n");
66         return new_r_Unknown(irg, mode);
67 }
68
69 unsigned dbg_snprint(char *buf, unsigned len, const dbg_info *dbg)
70 {
71         const source_position_t *pos = (const source_position_t*) dbg;
72         if(pos == NULL)
73                 return 0;
74         return (unsigned) snprintf(buf, len, "%s:%u", pos->input_name,
75                                    pos->linenr);
76 }
77
78 const char *retrieve_dbg(const dbg_info *dbg, unsigned *line)
79 {
80         const source_position_t *pos = (const source_position_t*) dbg;
81         if(pos == NULL)
82                 return NULL;
83         if(line != NULL)
84                 *line = pos->linenr;
85         return pos->input_name;
86 }
87
88 void init_ast2firm(void)
89 {
90 }
91
92 void exit_ast2firm(void)
93 {
94 }
95
96 static unsigned unique_id = 0;
97
98 static ident *unique_ident(const char *tag)
99 {
100         char buf[256];
101
102         snprintf(buf, sizeof(buf), "%s.%u", tag, unique_id);
103         unique_id++;
104         return new_id_from_str(buf);
105 }
106
107 static ir_mode *get_atomic_mode(const atomic_type_t* atomic_type)
108 {
109         switch(atomic_type->atype) {
110         case ATOMIC_TYPE_SCHAR:
111         case ATOMIC_TYPE_CHAR:
112                 return mode_Bs;
113         case ATOMIC_TYPE_UCHAR:
114                 return mode_Bu;
115         case ATOMIC_TYPE_SHORT:
116                 return mode_Hs;
117         case ATOMIC_TYPE_USHORT:
118                 return mode_Hu;
119         case ATOMIC_TYPE_LONG:
120         case ATOMIC_TYPE_INT:
121                 return mode_Is;
122         case ATOMIC_TYPE_ULONG:
123         case ATOMIC_TYPE_UINT:
124                 return mode_Iu;
125         case ATOMIC_TYPE_LONGLONG:
126                 return mode_Ls;
127         case ATOMIC_TYPE_ULONGLONG:
128                 return mode_Lu;
129         case ATOMIC_TYPE_FLOAT:
130                 return mode_F;
131         case ATOMIC_TYPE_DOUBLE:
132                 return mode_D;
133         case ATOMIC_TYPE_LONG_DOUBLE:
134                 return mode_E;
135         case ATOMIC_TYPE_BOOL:
136                 return mode_b;
137 #ifdef PROVIDE_COMPLEX
138         case ATOMIC_TYPE_FLOAT_COMPLEX:
139         case ATOMIC_TYPE_DOUBLE_COMPLEX:
140         case ATOMIC_TYPE_LONG_DOUBLE_COMPLEX:
141                 panic("complex lowering not implemented yet");
142                 break;
143         case ATOMIC_TYPE_FLOAT_IMAGINARY:
144         case ATOMIC_TYPE_DOUBLE_IMAGINARY:
145         case ATOMIC_TYPE_LONG_DOUBLE_IMAGINARY:
146                 panic("imaginary lowering not implemented yet");
147                 break;
148 #endif
149         case ATOMIC_TYPE_VOID:
150                 /* firm has no real void... */
151                 return mode_Is;
152         case ATOMIC_TYPE_INVALID:
153                 break;
154         }
155         panic("Encountered unknown atomic type");
156 }
157
158
159 static unsigned get_type_size(type_t *type);
160
161 static unsigned get_atomic_type_size(const atomic_type_t *type)
162 {
163         switch(type->atype) {
164         case ATOMIC_TYPE_CHAR:
165         case ATOMIC_TYPE_SCHAR:
166         case ATOMIC_TYPE_UCHAR:
167                 return 1;
168
169         case ATOMIC_TYPE_SHORT:
170         case ATOMIC_TYPE_USHORT:
171                 return 2;
172
173         case ATOMIC_TYPE_BOOL:
174         case ATOMIC_TYPE_INT:
175         case ATOMIC_TYPE_UINT:
176         case ATOMIC_TYPE_LONG:
177         case ATOMIC_TYPE_ULONG:
178         case ATOMIC_TYPE_FLOAT:
179                 return 4;
180
181         case ATOMIC_TYPE_LONGLONG:
182         case ATOMIC_TYPE_ULONGLONG:
183         case ATOMIC_TYPE_DOUBLE:
184                 return 8;
185
186         case ATOMIC_TYPE_LONG_DOUBLE:
187                 return 12;
188
189         case ATOMIC_TYPE_VOID:
190                 return 1;
191
192         case ATOMIC_TYPE_INVALID:
193                 break;
194         }
195         panic("Trying to determine size of invalid atomic type");
196 }
197
198 static unsigned get_compound_type_size(compound_type_t *type)
199 {
200         ir_type *irtype = get_ir_type((type_t*) type);
201         return get_type_size_bytes(irtype);
202 }
203
204 static unsigned get_array_type_size(array_type_t *type)
205 {
206         ir_type *irtype = get_ir_type((type_t*) type);
207         return get_type_size_bytes(irtype);
208 }
209
210 static unsigned get_type_size(type_t *type)
211 {
212         type = skip_typeref(type);
213
214         switch(type->type) {
215         case TYPE_ATOMIC:
216                 return get_atomic_type_size(&type->atomic);
217         case TYPE_ENUM:
218                 return get_mode_size_bytes(mode_Is);
219         case TYPE_COMPOUND_UNION:
220         case TYPE_COMPOUND_STRUCT:
221                 return get_compound_type_size(&type->compound);
222         case TYPE_FUNCTION:
223                 /* just a pointer to the function */
224                 return get_mode_size_bytes(mode_P_code);
225         case TYPE_POINTER:
226                 return get_mode_size_bytes(mode_P_data);
227         case TYPE_ARRAY:
228                 return get_array_type_size(&type->array);
229         case TYPE_BUILTIN:
230         case TYPE_TYPEDEF:
231         case TYPE_TYPEOF:
232         case TYPE_INVALID:
233                 break;
234         }
235         panic("Trying to determine size of invalid type");
236 }
237
238 static unsigned count_parameters(const function_type_t *function_type)
239 {
240         unsigned count = 0;
241
242         function_parameter_t *parameter = function_type->parameters;
243         for ( ; parameter != NULL; parameter = parameter->next) {
244                 ++count;
245         }
246
247         return count;
248 }
249
250
251
252
253 static long fold_constant(const expression_t *expression);
254
255 static ir_type *create_atomic_type(const atomic_type_t *type)
256 {
257         ir_mode *mode   = get_atomic_mode(type);
258         ident   *id     = get_mode_ident(mode);
259         ir_type *irtype = new_type_primitive(id, mode);
260
261         return irtype;
262 }
263
264 static ir_type *create_method_type(const function_type_t *function_type)
265 {
266         type_t  *return_type  = function_type->return_type;
267
268         ident   *id           = unique_ident("functiontype");
269         int      n_parameters = count_parameters(function_type);
270         int      n_results    = return_type == type_void ? 0 : 1;
271         ir_type *irtype       = new_type_method(id, n_parameters, n_results);
272
273         if(return_type != type_void) {
274                 ir_type *restype = get_ir_type(return_type);
275                 set_method_res_type(irtype, 0, restype);
276         }
277
278         function_parameter_t *parameter = function_type->parameters;
279         int                   n         = 0;
280         for( ; parameter != NULL; parameter = parameter->next) {
281                 ir_type *p_irtype = get_ir_type(parameter->type);
282                 set_method_param_type(irtype, n, p_irtype);
283                 ++n;
284         }
285
286         if(function_type->variadic || function_type->unspecified_parameters) {
287                 set_method_variadicity(irtype, variadicity_variadic);
288         }
289
290         return irtype;
291 }
292
293 static ir_type *create_pointer_type(pointer_type_t *type)
294 {
295         type_t  *points_to = type->points_to;
296         ir_type *ir_points_to;
297         /* Avoid endless recursion if the points_to type contains this poiner type
298          * again (might be a struct). We therefore first create a void* pointer
299          * and then set the real points_to type
300          */
301         ir_type *ir_type = new_type_pointer(unique_ident("pointer"),
302                                             ir_type_void, mode_P_data);
303         type->type.firm_type  = ir_type;
304
305         ir_points_to = get_ir_type(points_to);
306         set_pointer_points_to_type(ir_type, ir_points_to);
307
308         return ir_type;
309 }
310
311 static ir_type *create_array_type(array_type_t *type)
312 {
313         type_t  *element_type    = type->element_type;
314         ir_type *ir_element_type = get_ir_type(element_type);
315
316         ident   *id      = unique_ident("array");
317         ir_type *ir_type = new_type_array(id, 1, ir_element_type);
318
319         if(type->size != NULL) {
320                 int n_elements = fold_constant(type->size);
321
322                 set_array_bounds_int(ir_type, 0, 0, n_elements);
323
324                 size_t elemsize = get_type_size_bytes(ir_element_type);
325                 int align = get_type_alignment_bytes(ir_element_type);
326                 if(elemsize % align > 0) {
327                         elemsize += align - (elemsize % align);
328                 }
329                 set_type_size_bytes(ir_type, n_elements * elemsize);
330                 set_type_alignment_bytes(ir_type, align);
331                 set_type_state(ir_type, layout_fixed);
332         }
333
334         return ir_type;
335 }
336
337 #define INVALID_TYPE ((ir_type_ptr)-1)
338
339 static ir_type *create_struct_type(compound_type_t *type)
340 {
341         symbol_t *symbol = type->declaration->symbol;
342         ident    *id;
343         if(symbol != NULL) {
344                 id = unique_ident(symbol->string);
345         } else {
346                 id = unique_ident("__anonymous_struct");
347         }
348         ir_type *ir_type = new_type_struct(id);
349
350         type->type.firm_type = ir_type;
351
352         int align_all = 1;
353         int offset    = 0;
354         declaration_t *entry = type->declaration->context.declarations;
355         for( ; entry != NULL; entry = entry->next) {
356                 if(entry->namespc != NAMESPACE_NORMAL)
357                         continue;
358
359                 ident       *ident         = new_id_from_str(entry->symbol->string);
360                 ir_type_ptr  entry_ir_type = get_ir_type(entry->type);
361
362                 int entry_size      = get_type_size_bytes(entry_ir_type);
363                 int entry_alignment = get_type_alignment_bytes(entry_ir_type);
364                 int misalign        = offset % entry_alignment;
365                 if (misalign != 0)
366                         offset += entry_alignment - misalign;
367
368                 ir_entity *entity = new_entity(ir_type, ident, entry_ir_type);
369                 set_entity_offset(entity, offset);
370                 add_struct_member(ir_type, entity);
371                 entry->declaration_type = DECLARATION_TYPE_COMPOUND_MEMBER;
372                 entry->v.entity         = entity;
373
374                 offset += entry_size;
375                 if(entry_alignment > align_all) {
376                         if(entry_alignment % align_all != 0) {
377                                 panic("Uneven alignments not supported yet");
378                         }
379                         align_all = entry_alignment;
380                 }
381         }
382
383         int misalign = offset % align_all;
384         offset += misalign;
385         set_type_alignment_bytes(ir_type, align_all);
386         set_type_size_bytes(ir_type, offset);
387         set_type_state(ir_type, layout_fixed);
388
389         return ir_type;
390 }
391
392 static ir_type *create_union_type(compound_type_t *type)
393 {
394         declaration_t *declaration = type->declaration;
395         symbol_t      *symbol      = declaration->symbol;
396         ident         *id;
397         if(symbol != NULL) {
398                 id = unique_ident(symbol->string);
399         } else {
400                 id = unique_ident("__anonymous_union");
401         }
402         ir_type  *ir_type = new_type_union(id);
403
404         type->type.firm_type = ir_type;
405
406         int align_all = 1;
407         int size      = 0;
408         declaration_t *entry = declaration->context.declarations;
409         for( ; entry != NULL; entry = entry->next) {
410                 if(entry->namespc != NAMESPACE_NORMAL)
411                         continue;
412
413                 ident       *ident         = new_id_from_str(entry->symbol->string);
414                 ir_type_ptr  entry_ir_type = get_ir_type(entry->type);
415
416                 int entry_size      = get_type_size_bytes(entry_ir_type);
417                 int entry_alignment = get_type_alignment_bytes(entry_ir_type);
418
419                 ir_entity *entity = new_entity(ir_type, ident, entry_ir_type);
420                 add_union_member(ir_type, entity);
421                 set_entity_offset(entity, 0);
422                 entry->declaration_type = DECLARATION_TYPE_COMPOUND_MEMBER;
423                 entry->v.entity         = entity;
424
425                 if(entry_size > size) {
426                         size = entry_size;
427                 }
428                 if(entry_alignment > align_all) {
429                         if(entry_alignment % align_all != 0) {
430                                 panic("Uneven alignments not supported yet");
431                         }
432                         align_all = entry_alignment;
433                 }
434         }
435
436         set_type_alignment_bytes(ir_type, align_all);
437         set_type_size_bytes(ir_type, size);
438         set_type_state(ir_type, layout_fixed);
439
440         return ir_type;
441 }
442
443 static ir_node *expression_to_firm(const expression_t *expression);
444 static inline ir_mode *get_ir_mode(type_t *type);
445
446 static ir_type *create_enum_type(enum_type_t *const type)
447 {
448         type->type.firm_type = ir_type_int;
449
450         ir_mode *const mode    = get_ir_mode((type_t*) type);
451         tarval  *const one     = get_mode_one(mode);
452         tarval  *      tv_next = get_tarval_null(mode);
453
454         declaration_t *declaration = type->declaration->next;
455         for (; declaration != NULL; declaration = declaration->next) {
456                 if (declaration->storage_class != STORAGE_CLASS_ENUM_ENTRY)
457                         break;
458
459                 declaration->declaration_type = DECLARATION_TYPE_ENUM_ENTRY;
460
461                 expression_t *const init = declaration->init.enum_value;
462                 if (init != NULL) {
463                         ir_node *const cnst = expression_to_firm(init);
464                         if (!is_Const(cnst)) {
465                                 panic("couldn't fold constant");
466                         }
467                         tv_next = get_Const_tarval(cnst);
468                 }
469                 declaration->v.enum_val = tv_next;
470                 tv_next = tarval_add(tv_next, one);
471         }
472
473         return ir_type_int;
474 }
475
476 static ir_type *get_ir_type(type_t *type)
477 {
478         assert(type != NULL);
479
480         type = skip_typeref(type);
481
482         if(type->base.firm_type != NULL) {
483                 assert(type->base.firm_type != INVALID_TYPE);
484                 return type->base.firm_type;
485         }
486
487         ir_type *firm_type = NULL;
488         switch(type->type) {
489         case TYPE_ATOMIC:
490                 firm_type = create_atomic_type(&type->atomic);
491                 break;
492         case TYPE_FUNCTION:
493                 firm_type = create_method_type(&type->function);
494                 break;
495         case TYPE_POINTER:
496                 firm_type = create_pointer_type(&type->pointer);
497                 break;
498         case TYPE_ARRAY:
499                 firm_type = create_array_type(&type->array);
500                 break;
501         case TYPE_COMPOUND_STRUCT:
502                 firm_type = create_struct_type(&type->compound);
503                 break;
504         case TYPE_COMPOUND_UNION:
505                 firm_type = create_union_type(&type->compound);
506                 break;
507         case TYPE_ENUM:
508                 firm_type = create_enum_type(&type->enumt);
509                 break;
510         case TYPE_BUILTIN:
511         case TYPE_TYPEOF:
512         case TYPE_TYPEDEF:
513         case TYPE_INVALID:
514                 break;
515         }
516         if(firm_type == NULL)
517                 panic("unknown type found");
518
519         type->base.firm_type = firm_type;
520         return firm_type;
521 }
522
523 static inline ir_mode *get_ir_mode(type_t *type)
524 {
525         ir_type *irtype = get_ir_type(type);
526
527         /* firm doesn't report a mode for arrays somehow... */
528         if(is_Array_type(irtype)) {
529                 return mode_P;
530         }
531
532         ir_mode *mode = get_type_mode(irtype);
533         assert(mode != NULL);
534         return mode;
535 }
536
537 static ir_entity* get_function_entity(declaration_t *declaration)
538 {
539         if(declaration->declaration_type == DECLARATION_TYPE_FUNCTION)
540                 return declaration->v.entity;
541         assert(declaration->declaration_type == DECLARATION_TYPE_UNKNOWN);
542
543         symbol_t *symbol = declaration->symbol;
544         ident    *id     = new_id_from_str(symbol->string);
545
546         ir_type  *global_type    = get_glob_type();
547         ir_type  *ir_type_method = get_ir_type(declaration->type);
548         assert(is_Method_type(ir_type_method));
549
550         ir_entity *entity = new_entity(global_type, id, ir_type_method);
551         set_entity_ld_ident(entity, id);
552         if(declaration->storage_class == STORAGE_CLASS_STATIC
553                         || declaration->is_inline) {
554                 set_entity_visibility(entity, visibility_local);
555         } else if(declaration->init.statement != NULL) {
556                 set_entity_visibility(entity, visibility_external_visible);
557         } else {
558                 set_entity_visibility(entity, visibility_external_allocated);
559         }
560
561         declaration->declaration_type = DECLARATION_TYPE_FUNCTION;
562         declaration->v.entity         = entity;
563
564         return entity;
565 }
566
567 static dbg_info *get_dbg_info(const source_position_t *pos)
568 {
569         return (dbg_info*) pos;
570 }
571
572 static ir_node *const_to_firm(const const_expression_t *cnst)
573 {
574         dbg_info *dbgi = get_dbg_info(&cnst->expression.source_position);
575         ir_mode  *mode = get_ir_mode(cnst->expression.datatype);
576
577         char    buf[128];
578         tarval *tv;
579         size_t  len;
580         if(mode_is_float(mode)) {
581                 tv = new_tarval_from_double(cnst->v.float_value, mode);
582         } else {
583                 if(mode_is_signed(mode)) {
584                         len = snprintf(buf, sizeof(buf), "%lld", cnst->v.int_value);
585                 } else {
586                         len = snprintf(buf, sizeof(buf), "%llu",
587                                        (unsigned long long) cnst->v.int_value);
588                 }
589                 tv = new_tarval_from_str(buf, len, mode);
590         }
591
592         return new_d_Const(dbgi, mode, tv);
593 }
594
595 static ir_node *create_symconst(dbg_info *dbgi, ir_entity *entity)
596 {
597         assert(entity != NULL);
598         union symconst_symbol sym;
599         sym.entity_p = entity;
600         return new_d_SymConst(dbgi, sym, symconst_addr_ent);
601 }
602
603 static ir_node *string_to_firm(const source_position_t *const src_pos,
604                                const char *const id_prefix,
605                                const char *const string)
606 {
607         ir_type *const global_type = get_glob_type();
608         ir_type *const type        = new_type_array(unique_ident("strtype"), 1,
609                                                     ir_type_const_char);
610
611         ident     *const id     = unique_ident(id_prefix);
612         ir_entity *const entity = new_entity(global_type, id, type);
613         set_entity_ld_ident(entity, id);
614         set_entity_variability(entity, variability_constant);
615
616         ir_type *const elem_type = ir_type_const_char;
617         ir_mode *const mode      = get_type_mode(elem_type);
618
619         const size_t slen = strlen(string) + 1;
620
621         set_array_lower_bound_int(type, 0, 0);
622         set_array_upper_bound_int(type, 0, slen);
623         set_type_size_bytes(type, slen);
624         set_type_state(type, layout_fixed);
625
626         tarval **const tvs = xmalloc(slen * sizeof(tvs[0]));
627         for(size_t i = 0; i < slen; ++i) {
628                 tvs[i] = new_tarval_from_long(string[i], mode);
629         }
630
631         set_array_entity_values(entity, tvs, slen);
632         free(tvs);
633
634         dbg_info *const dbgi = get_dbg_info(src_pos);
635
636         return create_symconst(dbgi, entity);
637 }
638
639 static ir_node *string_literal_to_firm(
640                 const string_literal_expression_t* literal)
641 {
642         return string_to_firm(&literal->expression.source_position, "Lstr",
643                               literal->value);
644 }
645
646 static ir_node *wide_string_literal_to_firm(
647         const wide_string_literal_expression_t* const literal)
648 {
649         ir_type *const global_type = get_glob_type();
650         ir_type *const elem_type   = ir_type_wchar_t;
651         ir_type *const type        = new_type_array(unique_ident("strtype"), 1,
652                                                     elem_type);
653
654         ident     *const id     = unique_ident("Lstr");
655         ir_entity *const entity = new_entity(global_type, id, type);
656         set_entity_ld_ident(entity, id);
657         set_entity_variability(entity, variability_constant);
658
659         ir_mode *const mode      = get_type_mode(elem_type);
660
661         const wchar_rep_t *const string = literal->value.begin;
662         const size_t             slen   = literal->value.size;
663
664         set_array_lower_bound_int(type, 0, 0);
665         set_array_upper_bound_int(type, 0, slen);
666         set_type_size_bytes(type, slen);
667         set_type_state(type, layout_fixed);
668
669         tarval **const tvs = xmalloc(slen * sizeof(tvs[0]));
670         for(size_t i = 0; i < slen; ++i) {
671                 tvs[i] = new_tarval_from_long(string[i], mode);
672         }
673
674         set_array_entity_values(entity, tvs, slen);
675         free(tvs);
676
677         dbg_info *const dbgi = get_dbg_info(&literal->expression.source_position);
678
679         return create_symconst(dbgi, entity);
680 }
681
682 static ir_node *deref_address(ir_type *const irtype, ir_node *const addr,
683                               dbg_info *const dbgi)
684 {
685         if(is_compound_type(irtype) || is_Array_type(irtype)) {
686                 return addr;
687         }
688
689         ir_mode *const mode     = get_type_mode(irtype);
690         ir_node *const memory   = get_store();
691         ir_node *const load     = new_d_Load(dbgi, memory, addr, mode);
692         ir_node *const load_mem = new_d_Proj(dbgi, load, mode_M, pn_Load_M);
693         ir_node *const load_res = new_d_Proj(dbgi, load, mode,   pn_Load_res);
694         set_store(load_mem);
695         return load_res;
696 }
697
698 static ir_node *do_strict_conv(dbg_info *dbgi, ir_node *node)
699 {
700         ir_mode *mode = get_irn_mode(node);
701
702         if(!(get_irg_fp_model(current_ir_graph) & fp_explicit_rounding))
703                 return node;
704         if(!mode_is_float(mode))
705                 return node;
706
707         /* check if there is already a Conv */
708         if (get_irn_op(node) == op_Conv) {
709                 /* convert it into a strict Conv */
710                 set_Conv_strict(node, 1);
711                 return node;
712         }
713
714         /* otherwise create a new one */
715         return new_d_strictConv(dbgi, node, mode);
716 }
717
718 static ir_node *get_global_var_address(dbg_info *const dbgi,
719                                        const declaration_t *const decl)
720 {
721         assert(decl->declaration_type == DECLARATION_TYPE_GLOBAL_VARIABLE);
722
723         ir_entity *const entity = decl->v.entity;
724         switch ((storage_class_tag_t)decl->storage_class) {
725                 case STORAGE_CLASS_THREAD:
726                 case STORAGE_CLASS_THREAD_EXTERN:
727                 case STORAGE_CLASS_THREAD_STATIC: {
728                         ir_node *const no_mem = new_NoMem();
729                         ir_node *const tls    = get_irg_tls(current_ir_graph);
730                         return new_d_simpleSel(dbgi, no_mem, tls, entity);
731                 }
732
733                 default:
734                         return create_symconst(dbgi, entity);
735         }
736 }
737
738 static ir_node *reference_expression_to_firm(const reference_expression_t *ref)
739 {
740         dbg_info      *dbgi        = get_dbg_info(&ref->expression.source_position);
741         declaration_t *declaration = ref->declaration;
742         type_t        *type        = skip_typeref(declaration->type);
743
744         switch((declaration_type_t) declaration->declaration_type) {
745         case DECLARATION_TYPE_UNKNOWN:
746                 if (declaration->storage_class != STORAGE_CLASS_ENUM_ENTRY) {
747                         break;
748                 }
749                 get_ir_type(type);
750                 /* FALLTHROUGH */
751
752         case DECLARATION_TYPE_ENUM_ENTRY: {
753                 ir_mode *const mode = get_ir_mode(type);
754                 return new_Const(mode, declaration->v.enum_val);
755         }
756
757         case DECLARATION_TYPE_LOCAL_VARIABLE: {
758                 ir_mode *mode = get_ir_mode(type);
759                 return get_value(declaration->v.value_number, mode);
760         }
761         case DECLARATION_TYPE_FUNCTION: {
762                 return create_symconst(dbgi, declaration->v.entity);
763         }
764         case DECLARATION_TYPE_GLOBAL_VARIABLE: {
765                 ir_node *const addr   = get_global_var_address(dbgi, declaration);
766                 ir_type *const irtype = get_entity_type(declaration->v.entity);
767                 return deref_address(irtype, addr, dbgi);
768         }
769
770         case DECLARATION_TYPE_LOCAL_VARIABLE_ENTITY: {
771                 ir_entity *entity = declaration->v.entity;
772                 ir_node   *frame  = get_irg_frame(current_ir_graph);
773                 ir_node   *sel    = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
774                 ir_type   *irtype = get_entity_type(entity);
775                 return deref_address(irtype, sel, dbgi);
776         }
777
778         case DECLARATION_TYPE_COMPOUND_MEMBER:
779         case DECLARATION_TYPE_LABEL_BLOCK:
780                 panic("not implemented reference type");
781         }
782
783         panic("reference to declaration with unknown type found");
784 }
785
786 static ir_node *reference_addr(const reference_expression_t *ref)
787 {
788         dbg_info      *dbgi        = get_dbg_info(&ref->expression.source_position);
789         declaration_t *declaration = ref->declaration;
790
791         switch((declaration_type_t) declaration->declaration_type) {
792         case DECLARATION_TYPE_UNKNOWN:
793                 break;
794         case DECLARATION_TYPE_LOCAL_VARIABLE:
795                 panic("local variable without entity has no address");
796         case DECLARATION_TYPE_FUNCTION: {
797                 return create_symconst(dbgi, declaration->v.entity);
798         }
799         case DECLARATION_TYPE_GLOBAL_VARIABLE: {
800                 ir_node *const addr = get_global_var_address(dbgi, declaration);
801                 return addr;
802         }
803         case DECLARATION_TYPE_LOCAL_VARIABLE_ENTITY: {
804                 ir_entity *entity = declaration->v.entity;
805                 ir_node   *frame  = get_irg_frame(current_ir_graph);
806                 ir_node   *sel    = new_d_simpleSel(dbgi, new_NoMem(), frame, entity);
807
808                 return sel;
809         }
810
811         case DECLARATION_TYPE_ENUM_ENTRY:
812                 panic("trying to reference enum entry");
813
814         case DECLARATION_TYPE_COMPOUND_MEMBER:
815         case DECLARATION_TYPE_LABEL_BLOCK:
816                 panic("not implemented reference type");
817         }
818
819         panic("reference to declaration with unknown type found");
820 }
821
822 static ir_node *process_builtin_call(const call_expression_t *call)
823 {
824         dbg_info *dbgi = get_dbg_info(&call->expression.source_position);
825
826         assert(call->function->type == EXPR_BUILTIN_SYMBOL);
827         builtin_symbol_expression_t *builtin = &call->function->builtin_symbol;
828
829         type_t *type = skip_typeref(builtin->expression.datatype);
830         assert(is_type_pointer(type));
831
832         type_t   *function_type = skip_typeref(type->pointer.points_to);
833         symbol_t *symbol        = builtin->symbol;
834
835         switch(symbol->ID) {
836         case T___builtin_alloca: {
837                 if(call->arguments == NULL || call->arguments->next != NULL) {
838                         panic("invalid number of parameters on __builtin_alloca");
839                 }
840                 expression_t *argument = call->arguments->expression;
841                 ir_node      *size     = expression_to_firm(argument);
842
843                 ir_node *store  = get_store();
844                 ir_node *alloca = new_d_Alloc(dbgi, store, size, firm_unknown_type,
845                                               stack_alloc);
846                 ir_node *proj_m = new_Proj(alloca, mode_M, pn_Alloc_M);
847                 set_store(proj_m);
848                 ir_node *res    = new_Proj(alloca, mode_P_data, pn_Alloc_res);
849
850                 return res;
851         }
852         case T___builtin_nan:
853         case T___builtin_nanf:
854         case T___builtin_nand: {
855                 /* Ignore string for now... */
856                 assert(is_type_function(function_type));
857                 ir_mode *mode = get_ir_mode(function_type->function.return_type);
858                 tarval  *tv   = get_mode_NAN(mode);
859                 ir_node *res  = new_d_Const(dbgi, mode, tv);
860                 return res;
861         }
862         default:
863                 panic("Unsupported builtin found\n");
864         }
865 }
866
867 static ir_node *call_expression_to_firm(const call_expression_t *call)
868 {
869         assert(get_cur_block() != NULL);
870
871         expression_t *function = call->function;
872         if(function->type == EXPR_BUILTIN_SYMBOL) {
873                 return process_builtin_call(call);
874         }
875         ir_node *callee = expression_to_firm(function);
876
877         type_t *type = skip_typeref(function->base.datatype);
878         assert(is_type_pointer(type));
879         pointer_type_t *pointer_type = &type->pointer;
880         type_t         *points_to    = skip_typeref(pointer_type->points_to);
881         assert(is_type_function(points_to));
882         function_type_t *function_type = &points_to->function;
883
884         int              n_parameters = 0;
885         call_argument_t *argument     = call->arguments;
886         for( ; argument != NULL; argument = argument->next) {
887                 ++n_parameters;
888         }
889
890         dbg_info *dbgi  = get_dbg_info(&call->expression.source_position);
891
892         ir_type *ir_method_type  = get_ir_type((type_t*) function_type);
893         ir_type *new_method_type = NULL;
894         if(function_type->variadic || function_type->unspecified_parameters) {
895                 /* we need to construct a new method type matching the call
896                  * arguments... */
897                 int n_res       = get_method_n_ress(ir_method_type);
898                 new_method_type = new_type_method(unique_ident("calltype"),
899                                                   n_parameters, n_res);
900                 set_method_calling_convention(new_method_type,
901                                get_method_calling_convention(ir_method_type));
902                 set_method_additional_properties(new_method_type,
903                                get_method_additional_properties(ir_method_type));
904
905                 for(int i = 0; i < n_res; ++i) {
906                         set_method_res_type(new_method_type, i,
907                                             get_method_res_type(ir_method_type, i));
908                 }
909         }
910         ir_node *in[n_parameters];
911
912         argument = call->arguments;
913         int n = 0;
914         for( ; argument != NULL; argument = argument->next) {
915                 expression_t *expression = argument->expression;
916                 ir_node      *arg_node   = expression_to_firm(expression);
917
918                 arg_node = do_strict_conv(dbgi, arg_node);
919
920                 in[n] = arg_node;
921                 if(new_method_type != NULL) {
922                         ir_type *irtype = get_ir_type(expression->base.datatype);
923                         set_method_param_type(new_method_type, n, irtype);
924                 }
925
926                 n++;
927         }
928         assert(n == n_parameters);
929
930         if(new_method_type != NULL)
931                 ir_method_type = new_method_type;
932
933         ir_node  *store = get_store();
934         ir_node  *node  = new_d_Call(dbgi, store, callee, n_parameters, in,
935                                      ir_method_type);
936         ir_node  *mem   = new_d_Proj(dbgi, node, mode_M, pn_Call_M_regular);
937         set_store(mem);
938
939         type_t  *return_type = skip_typeref(function_type->return_type);
940         ir_node *result      = NULL;
941
942         if(!is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
943                 ir_mode *mode;
944                 if(is_type_scalar(return_type)) {
945                         mode = get_ir_mode(return_type);
946                 } else {
947                         mode = mode_P_data;
948                 }
949                 ir_node *resproj = new_d_Proj(dbgi, node, mode_T, pn_Call_T_result);
950                 result           = new_d_Proj(dbgi, resproj, mode, 0);
951         }
952
953         return result;
954 }
955
956 static void statement_to_firm(statement_t *statement);
957 static ir_node *compound_statement_to_firm(compound_statement_t *compound);
958
959 static ir_node *expression_to_addr(const expression_t *expression);
960 static void create_condition_evaluation(const expression_t *expression,
961                                         ir_node *true_block,
962                                         ir_node *false_block);
963
964 static void set_value_for_expression(const expression_t *expression,
965                                      ir_node *value)
966 {
967         dbg_info *dbgi = get_dbg_info(&expression->base.source_position);
968         value          = do_strict_conv(dbgi, value);
969
970         if(expression->type == EXPR_REFERENCE) {
971                 reference_expression_t *ref = (reference_expression_t*) expression;
972
973                 declaration_t *declaration = ref->declaration;
974                 assert(declaration->declaration_type != DECLARATION_TYPE_UNKNOWN);
975                 if(declaration->declaration_type == DECLARATION_TYPE_LOCAL_VARIABLE) {
976                         set_value(declaration->v.value_number, value);
977                         return;
978                 }
979         }
980
981         ir_node  *addr   = expression_to_addr(expression);
982         ir_node  *memory = get_store();
983
984         type_t *type = skip_typeref(expression->base.datatype);
985         if(is_type_scalar(type)) {
986                 ir_node  *store     = new_d_Store(dbgi, memory, addr, value);
987                 ir_node  *store_mem = new_d_Proj(dbgi, store, mode_M, pn_Store_M);
988                 set_store(store_mem);
989         } else {
990                 ir_type *irtype    = get_ir_type(type);
991                 ir_node *copyb     = new_d_CopyB(dbgi, memory, addr, value, irtype);
992                 ir_node *copyb_mem = new_Proj(copyb, mode_M, pn_CopyB_M_regular);
993                 set_store(copyb_mem);
994         }
995 }
996
997 static ir_node *create_conv(dbg_info *dbgi, ir_node *value, ir_mode *dest_mode)
998 {
999         ir_mode *value_mode = get_irn_mode(value);
1000
1001         if (value_mode == dest_mode || is_Bad(value))
1002                 return value;
1003
1004         if(dest_mode == mode_b) {
1005                 ir_node *zero = new_Const(value_mode, get_mode_null(value_mode));
1006                 ir_node *cmp  = new_d_Cmp(dbgi, value, zero);
1007                 ir_node *proj = new_d_Proj(dbgi, cmp, mode_b, pn_Cmp_Lg);
1008                 return proj;
1009         }
1010
1011         return new_d_Conv(dbgi, value, dest_mode);
1012 }
1013
1014 static ir_node *create_incdec(const unary_expression_t *expression)
1015 {
1016         dbg_info     *dbgi  = get_dbg_info(&expression->expression.source_position);
1017         type_t       *type  = skip_typeref(expression->expression.datatype);
1018         ir_mode      *mode  = get_ir_mode(type);
1019         expression_t *value = expression->value;
1020
1021         ir_node *value_node = expression_to_firm(value);
1022
1023         ir_node *offset;
1024         if(is_type_pointer(type)) {
1025                 pointer_type_t *pointer_type = &type->pointer;
1026                 unsigned        elem_size    = get_type_size(pointer_type->points_to);
1027                 offset = new_Const_long(mode_Is, elem_size);
1028         } else {
1029                 assert(is_type_arithmetic(type));
1030                 offset = new_Const(mode, get_mode_one(mode));
1031         }
1032
1033         switch(expression->type) {
1034         case UNEXPR_POSTFIX_INCREMENT: {
1035                 ir_node *new_value = new_d_Add(dbgi, value_node, offset, mode);
1036                 set_value_for_expression(value, new_value);
1037                 return value_node;
1038         }
1039         case UNEXPR_POSTFIX_DECREMENT: {
1040                 ir_node *new_value = new_d_Sub(dbgi, value_node, offset, mode);
1041                 set_value_for_expression(value, new_value);
1042                 return value_node;
1043         }
1044         case UNEXPR_PREFIX_INCREMENT: {
1045                 ir_node *new_value = new_d_Add(dbgi, value_node, offset, mode);
1046                 set_value_for_expression(value, new_value);
1047                 return new_value;
1048         }
1049         case UNEXPR_PREFIX_DECREMENT: {
1050                 ir_node *new_value = new_d_Sub(dbgi, value_node, offset, mode);
1051                 set_value_for_expression(value, new_value);
1052                 return new_value;
1053         }
1054         default:
1055                 panic("no incdec expr in create_incdec");
1056                 return NULL;
1057         }
1058 }
1059
1060 static ir_node *unary_expression_to_firm(const unary_expression_t *expression)
1061 {
1062         dbg_info *dbgi = get_dbg_info(&expression->expression.source_position);
1063         type_t   *type = skip_typeref(expression->expression.datatype);
1064
1065         if(expression->type == UNEXPR_TAKE_ADDRESS)
1066                 return expression_to_addr(expression->value);
1067
1068         const expression_t *value      = expression->value;
1069         ir_node            *value_node = expression_to_firm(value);
1070
1071         switch(expression->type) {
1072         case UNEXPR_NEGATE:
1073                 return new_d_Minus(dbgi, value_node, get_ir_mode(type));
1074         case UNEXPR_PLUS:
1075                 return value_node;
1076         case UNEXPR_BITWISE_NEGATE:
1077                 return new_d_Not(dbgi, value_node, get_ir_mode(type));
1078         case UNEXPR_NOT: {
1079                 if(get_irn_mode(value_node) != mode_b) {
1080                         value_node = create_conv(dbgi, value_node, mode_b);
1081                 }
1082                 value_node = new_d_Not(dbgi, value_node, mode_b);
1083                 ir_mode *const mode = get_ir_mode(type);
1084                 if(mode != mode_b) {
1085                         value_node = create_conv(dbgi, value_node, mode);
1086                 }
1087                 return value_node;
1088         }
1089         case UNEXPR_DEREFERENCE: {
1090                 ir_type *irtype = get_ir_type(type);
1091                 assert(is_Pointer_type(irtype));
1092                 ir_type *points_to = get_pointer_points_to_type(irtype);
1093                 return deref_address(points_to, value_node, dbgi);
1094         }
1095         case UNEXPR_POSTFIX_INCREMENT:
1096         case UNEXPR_POSTFIX_DECREMENT:
1097         case UNEXPR_PREFIX_INCREMENT:
1098         case UNEXPR_PREFIX_DECREMENT:
1099                 return create_incdec(expression);
1100         case UNEXPR_CAST: {
1101                 ir_node *node = create_conv(dbgi, value_node, get_ir_mode(type));
1102                 node = do_strict_conv(dbgi, node);
1103                 return node;
1104         }
1105         case UNEXPR_CAST_IMPLICIT:
1106                 return create_conv(dbgi, value_node, get_ir_mode(type));
1107
1108         case UNEXPR_TAKE_ADDRESS:
1109         case UNEXPR_INVALID:
1110                 break;
1111         }
1112         panic("invalid UNEXPR type found");
1113 }
1114
1115 static long get_pnc(binary_expression_type_t type)
1116 {
1117         switch(type) {
1118         case BINEXPR_EQUAL:        return pn_Cmp_Eq;
1119         case BINEXPR_NOTEQUAL:     return pn_Cmp_Lg;
1120         case BINEXPR_LESS:         return pn_Cmp_Lt;
1121         case BINEXPR_LESSEQUAL:    return pn_Cmp_Le;
1122         case BINEXPR_GREATER:      return pn_Cmp_Gt;
1123         case BINEXPR_GREATEREQUAL: return pn_Cmp_Ge;
1124         default:
1125                 break;
1126         }
1127         panic("trying to get pn_Cmp from non-comparison binexpr type");
1128 }
1129
1130 static ir_node *create_lazy_op(const binary_expression_t *expression)
1131 {
1132         dbg_info *dbgi = get_dbg_info(&expression->expression.source_position);
1133         type_t   *type = expression->expression.datatype;
1134         ir_mode  *mode = get_ir_mode(type);
1135
1136         ir_node *cur_block = get_cur_block();
1137
1138         ir_node *one_block = new_immBlock();
1139         ir_node *one       = new_Const(mode, get_mode_one(mode));
1140         ir_node *jmp_one   = new_d_Jmp(dbgi);
1141
1142         ir_node *zero_block = new_immBlock();
1143         ir_node *zero       = new_Const(mode, get_mode_null(mode));
1144         ir_node *jmp_zero   = new_d_Jmp(dbgi);
1145
1146         set_cur_block(cur_block);
1147         create_condition_evaluation((const expression_t*) expression,
1148                                     one_block, zero_block);
1149         mature_immBlock(one_block);
1150         mature_immBlock(zero_block);
1151
1152         ir_node *common_block = new_immBlock();
1153         add_immBlock_pred(common_block, jmp_one);
1154         add_immBlock_pred(common_block, jmp_zero);
1155         mature_immBlock(common_block);
1156
1157         ir_node *in[2] = { one, zero };
1158         ir_node *val   = new_d_Phi(dbgi, 2, in, mode);
1159
1160         return val;
1161 }
1162
1163 typedef ir_node * (*create_arithmetic_func)(dbg_info *dbgi, ir_node *left,
1164                                             ir_node *right, ir_mode *mode);
1165
1166 static ir_node *create_arithmetic_binop(const binary_expression_t *expression,
1167                                         create_arithmetic_func func)
1168 {
1169         dbg_info *dbgi  = get_dbg_info(&expression->expression.source_position);
1170         ir_node  *left  = expression_to_firm(expression->left);
1171         ir_node  *right = expression_to_firm(expression->right);
1172         type_t   *type  = expression->right->base.datatype;
1173         /* be careful with the modes, because in arithmetic assign nodes only
1174          * the right operand has the mode of the arithmetic already */
1175         ir_mode  *mode  = get_ir_mode(type);
1176         left            = create_conv(dbgi, left, mode);
1177         ir_node  *res   = func(dbgi, left, right, mode);
1178
1179         return res;
1180 }
1181
1182 static ir_node *pointer_arithmetic(ir_node  *const pointer,
1183                                    ir_node  *      integer,
1184                                    type_t   *const type,
1185                                    dbg_info *const dbgi,
1186                                    const create_arithmetic_func func)
1187 {
1188         pointer_type_t *const pointer_type = (pointer_type_t*)type;
1189         type_t         *const points_to    = pointer_type->points_to;
1190         const unsigned        elem_size    = get_type_size(points_to);
1191
1192         assert(elem_size >= 1);
1193         if (elem_size > 1) {
1194                 integer             = create_conv(dbgi, integer, mode_Is);
1195                 ir_node *const cnst = new_Const_long(mode_Is, (long)elem_size);
1196                 ir_node *const mul  = new_d_Mul(dbgi, integer, cnst, mode_Is);
1197                 integer = mul;
1198         }
1199
1200         ir_mode *const mode = get_ir_mode(type);
1201         return func(dbgi, pointer, integer, mode);
1202 }
1203
1204 static ir_node *create_arithmetic_assign_binop(
1205                 const binary_expression_t *expression, create_arithmetic_func func)
1206 {
1207         dbg_info *const dbgi = get_dbg_info(&expression->expression.source_position);
1208         type_t   *const type = skip_typeref(expression->expression.datatype);
1209         ir_node  *value;
1210
1211         if (is_type_pointer(type)) {
1212                 ir_node        *const pointer = expression_to_firm(expression->left);
1213                 ir_node        *      integer = expression_to_firm(expression->right);
1214                 value = pointer_arithmetic(pointer, integer, type, dbgi, func);
1215         } else {
1216                 value = create_arithmetic_binop(expression, func);
1217         }
1218
1219         ir_mode  *const mode = get_ir_mode(type);
1220         value = create_conv(dbgi, value, mode);
1221         set_value_for_expression(expression->left, value);
1222
1223         return value;
1224 }
1225
1226 static ir_node *create_add(const binary_expression_t *expression)
1227 {
1228         dbg_info *dbgi  = get_dbg_info(&expression->expression.source_position);
1229         ir_node  *left  = expression_to_firm(expression->left);
1230         ir_node  *right = expression_to_firm(expression->right);
1231         type_t   *type  = expression->expression.datatype;
1232
1233         expression_t *expr_left  = expression->left;
1234         expression_t *expr_right = expression->right;
1235         type_t       *type_left  = skip_typeref(expr_left->base.datatype);
1236         type_t       *type_right = skip_typeref(expr_right->base.datatype);
1237
1238         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
1239                 ir_mode *const mode = get_ir_mode(type);
1240                 return new_d_Add(dbgi, left, right, mode);
1241         }
1242
1243         if (is_type_pointer(type_left)) {
1244                 return pointer_arithmetic(left, right, type, dbgi, new_d_Add);
1245         } else {
1246                 assert(is_type_pointer(type_right));
1247                 return pointer_arithmetic(right, left, type, dbgi, new_d_Add);
1248         }
1249 }
1250
1251 static ir_node *create_sub(const binary_expression_t *expression)
1252 {
1253         dbg_info *const dbgi  = get_dbg_info(&expression->expression.source_position);
1254         expression_t *const expr_left  = expression->left;
1255         expression_t *const expr_right = expression->right;
1256         ir_node      *const left       = expression_to_firm(expr_left);
1257         ir_node      *const right      = expression_to_firm(expr_right);
1258         type_t       *const type       = expression->expression.datatype;
1259         type_t       *const type_left  = skip_typeref(expr_left->base.datatype);
1260         type_t       *const type_right = skip_typeref(expr_right->base.datatype);
1261
1262         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
1263                 ir_mode *const mode = get_ir_mode(type);
1264                 return new_d_Sub(dbgi, left, right, mode);
1265         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
1266                 const pointer_type_t *const ptr_type = &type_left->pointer;
1267                 const unsigned elem_size             = get_type_size(ptr_type->points_to);
1268                 ir_mode *const mode   = get_ir_mode(type);
1269                 ir_node *const sub    = new_d_Sub(dbgi, left, right, mode);
1270                 ir_node *const cnst   = new_Const_long(mode_Is, (long)elem_size);
1271                 ir_node *const no_mem = new_NoMem();
1272                 ir_node *const div    = new_d_Div(dbgi, no_mem, sub, cnst, mode,
1273                                                   op_pin_state_floats);
1274                 return new_d_Proj(dbgi, div, mode, pn_Div_res);
1275         }
1276
1277         assert(is_type_pointer(type_left));
1278         return pointer_arithmetic(left, right, type_left, dbgi, new_d_Sub);
1279 }
1280
1281 static ir_node *create_shift(const binary_expression_t *expression)
1282 {
1283         dbg_info *dbgi  = get_dbg_info(&expression->expression.source_position);
1284         ir_node  *left  = expression_to_firm(expression->left);
1285         ir_node  *right = expression_to_firm(expression->right);
1286         type_t   *type  = expression->expression.datatype;
1287         ir_mode  *mode  = get_ir_mode(type);
1288
1289         /* firm always wants the shift count to be unsigned */
1290         right = create_conv(dbgi, right, mode_Iu);
1291
1292         ir_node *res;
1293
1294         switch(expression->type) {
1295         case BINEXPR_SHIFTLEFT_ASSIGN:
1296         case BINEXPR_SHIFTLEFT:
1297                 res = new_d_Shl(dbgi, left, right, mode);
1298                 break;
1299         case BINEXPR_SHIFTRIGHT_ASSIGN:
1300         case BINEXPR_SHIFTRIGHT: {
1301                  expression_t *expr_left = expression->left;
1302                  type_t       *type_left = skip_typeref(expr_left->base.datatype);
1303
1304                  if(is_type_signed(type_left)) {
1305                         res = new_d_Shrs(dbgi, left, right, mode);
1306                  } else {
1307                          res = new_d_Shr(dbgi, left, right, mode);
1308                  }
1309                  break;
1310         }
1311         default:
1312                 panic("create shift op called for non-shift op");
1313         }
1314
1315         return res;
1316 }
1317
1318
1319 static ir_node *create_divmod(const binary_expression_t *expression)
1320 {
1321         dbg_info *dbgi  = get_dbg_info(&expression->expression.source_position);
1322         ir_node  *left  = expression_to_firm(expression->left);
1323         ir_node  *right = expression_to_firm(expression->right);
1324         ir_node  *pin   = new_Pin(new_NoMem());
1325         /* be careful with the modes, because in arithmetic assign nodes only
1326          * the right operand has the mode of the arithmetic already */
1327         type_t   *type  = expression->right->base.datatype;
1328         ir_mode  *mode  = get_ir_mode(type);
1329         left            = create_conv(dbgi, left, mode);
1330         ir_node  *op;
1331         ir_node  *res;
1332
1333         switch (expression->type)  {
1334                 case BINEXPR_DIV:
1335                 case BINEXPR_DIV_ASSIGN:
1336                         if(mode_is_float(mode)) {
1337                                 op  = new_d_Quot(dbgi, pin, left, right, mode, op_pin_state_floats);
1338                                 res = new_d_Proj(dbgi, op, mode, pn_Quot_res);
1339                         } else {
1340                                 op  = new_d_Div(dbgi, pin, left, right, mode, op_pin_state_floats);
1341                                 res = new_d_Proj(dbgi, op, mode, pn_Div_res);
1342                         }
1343                         break;
1344
1345                 case BINEXPR_MOD:
1346                 case BINEXPR_MOD_ASSIGN:
1347                         assert(!mode_is_float(mode));
1348                         op  = new_d_Mod(dbgi, pin, left, right, mode, op_pin_state_floats);
1349                         res = new_d_Proj(dbgi, op, mode, pn_Mod_res);
1350                         break;
1351
1352                 default: panic("unexpected binary expression type in create_divmod()");
1353         }
1354
1355         return res;
1356 }
1357
1358 static ir_node *create_arithmetic_assign_divmod(
1359                 const binary_expression_t *expression)
1360 {
1361         ir_node  *      value = create_divmod(expression);
1362         dbg_info *const dbgi  = get_dbg_info(&expression->expression.source_position);
1363         type_t   *const type  = expression->expression.datatype;
1364         ir_mode  *const mode  = get_ir_mode(type);
1365
1366         assert(type->type != TYPE_POINTER);
1367
1368         value = create_conv(dbgi, value, mode);
1369         set_value_for_expression(expression->left, value);
1370
1371         return value;
1372 }
1373
1374 static ir_node *create_arithmetic_assign_shift(
1375                 const binary_expression_t *expression)
1376 {
1377         ir_node  *      value = create_shift(expression);
1378         dbg_info *const dbgi  = get_dbg_info(&expression->expression.source_position);
1379         type_t   *const type  = expression->expression.datatype;
1380         ir_mode  *const mode  = get_ir_mode(type);
1381
1382         value = create_conv(dbgi, value, mode);
1383         set_value_for_expression(expression->left, value);
1384
1385         return value;
1386 }
1387
1388 static ir_node *binary_expression_to_firm(const binary_expression_t *expression)
1389 {
1390         binary_expression_type_t type = expression->type;
1391         switch(type) {
1392         case BINEXPR_EQUAL:
1393         case BINEXPR_NOTEQUAL:
1394         case BINEXPR_LESS:
1395         case BINEXPR_LESSEQUAL:
1396         case BINEXPR_GREATER:
1397         case BINEXPR_GREATEREQUAL: {
1398                 dbg_info *dbgi = get_dbg_info(&expression->expression.source_position);
1399                 ir_node *left  = expression_to_firm(expression->left);
1400                 ir_node *right = expression_to_firm(expression->right);
1401                 ir_node *cmp   = new_d_Cmp(dbgi, left, right);
1402                 long     pnc   = get_pnc(type);
1403                 ir_node *proj  = new_d_Proj(dbgi, cmp, mode_b, pnc);
1404                 return proj;
1405         }
1406         case BINEXPR_ASSIGN: {
1407                 ir_node *right = expression_to_firm(expression->right);
1408                 set_value_for_expression(expression->left, right);
1409
1410                 return right;
1411         }
1412         case BINEXPR_ADD:
1413                 return create_add(expression);
1414         case BINEXPR_SUB:
1415                 return create_sub(expression);
1416         case BINEXPR_MUL:
1417                 return create_arithmetic_binop(expression, new_d_Mul);
1418         case BINEXPR_BITWISE_AND:
1419                 return create_arithmetic_binop(expression, new_d_And);
1420         case BINEXPR_BITWISE_OR:
1421                 return create_arithmetic_binop(expression, new_d_Or);
1422         case BINEXPR_BITWISE_XOR:
1423                 return create_arithmetic_binop(expression, new_d_Eor);
1424         case BINEXPR_SHIFTLEFT:
1425         case BINEXPR_SHIFTRIGHT:
1426                 return create_shift(expression);
1427         case BINEXPR_DIV:
1428         case BINEXPR_MOD:
1429                 return create_divmod(expression);
1430         case BINEXPR_LOGICAL_AND:
1431         case BINEXPR_LOGICAL_OR:
1432                 return create_lazy_op(expression);
1433         case BINEXPR_COMMA:
1434                 expression_to_firm(expression->left);
1435                 return expression_to_firm(expression->right);
1436         case BINEXPR_ADD_ASSIGN:
1437                 return create_arithmetic_assign_binop(expression, new_d_Add);
1438         case BINEXPR_SUB_ASSIGN:
1439                 return create_arithmetic_assign_binop(expression, new_d_Sub);
1440         case BINEXPR_MUL_ASSIGN:
1441                 return create_arithmetic_assign_binop(expression, new_d_Mul);
1442         case BINEXPR_DIV_ASSIGN:
1443                 return create_arithmetic_assign_divmod(expression);
1444         case BINEXPR_BITWISE_AND_ASSIGN:
1445                 return create_arithmetic_assign_binop(expression, new_d_And);
1446         case BINEXPR_BITWISE_OR_ASSIGN:
1447                 return create_arithmetic_assign_binop(expression, new_d_Or);
1448         case BINEXPR_BITWISE_XOR_ASSIGN:
1449                 return create_arithmetic_assign_binop(expression, new_d_Eor);
1450         case BINEXPR_SHIFTLEFT_ASSIGN:
1451         case BINEXPR_SHIFTRIGHT_ASSIGN:
1452                 return create_arithmetic_assign_shift(expression);
1453         default:
1454                 panic("TODO binexpr type");
1455         }
1456 }
1457
1458 static ir_node *array_access_addr(const array_access_expression_t *expression)
1459 {
1460         dbg_info *dbgi      = get_dbg_info(&expression->expression.source_position);
1461         ir_node  *base_addr = expression_to_firm(expression->array_ref);
1462         ir_node  *offset    = expression_to_firm(expression->index);
1463         offset              = create_conv(dbgi, offset, mode_Iu);
1464
1465         type_t *ref_type = skip_typeref(expression->array_ref->base.datatype);
1466         assert(is_type_pointer(ref_type));
1467         pointer_type_t *pointer_type = (pointer_type_t*) ref_type;
1468
1469         unsigned elem_size       = get_type_size(pointer_type->points_to);
1470         ir_node *elem_size_const = new_Const_long(mode_Iu, elem_size);
1471         ir_node *real_offset     = new_d_Mul(dbgi, offset, elem_size_const,
1472                                              mode_Iu);
1473         ir_node *result          = new_d_Add(dbgi, base_addr, real_offset, mode_P);
1474
1475         return result;
1476 }
1477
1478 static ir_node *array_access_to_firm(
1479                 const array_access_expression_t *expression)
1480 {
1481         dbg_info *dbgi   = get_dbg_info(&expression->expression.source_position);
1482         ir_node  *addr   = array_access_addr(expression);
1483         type_t   *type   = revert_automatic_type_conversion(
1484                         (const expression_t*) expression);
1485         type             = skip_typeref(type);
1486         ir_type  *irtype = get_ir_type(type);
1487
1488         return deref_address(irtype, addr, dbgi);
1489 }
1490
1491 static ir_node *sizeof_to_firm(const sizeof_expression_t *expression)
1492 {
1493         type_t *type = expression->type;
1494         if(type == NULL) {
1495                 type = expression->size_expression->base.datatype;
1496                 assert(type != NULL);
1497         }
1498
1499         ir_mode  *mode      = get_ir_mode(expression->expression.datatype);
1500         unsigned  size      = get_type_size(type);
1501         ir_node  *size_node = new_Const_long(mode, size);
1502
1503         return size_node;
1504 }
1505
1506 static ir_node *conditional_to_firm(const conditional_expression_t *expression)
1507 {
1508         dbg_info *dbgi = get_dbg_info(&expression->expression.source_position);
1509
1510         ir_node *cur_block   = get_cur_block();
1511
1512         /* create the true block */
1513         ir_node *true_block  = new_immBlock();
1514
1515         ir_node *true_val = expression_to_firm(expression->true_expression);
1516         ir_node *true_jmp = new_Jmp();
1517
1518         /* create the false block */
1519         ir_node *false_block = new_immBlock();
1520
1521         ir_node *false_val = expression_to_firm(expression->false_expression);
1522         ir_node *false_jmp = new_Jmp();
1523
1524         /* create the condition evaluation */
1525         set_cur_block(cur_block);
1526         create_condition_evaluation(expression->condition, true_block, false_block);
1527         mature_immBlock(true_block);
1528         mature_immBlock(false_block);
1529
1530         /* create the common block */
1531         ir_node *common_block = new_immBlock();
1532         add_immBlock_pred(common_block, true_jmp);
1533         add_immBlock_pred(common_block, false_jmp);
1534         mature_immBlock(common_block);
1535
1536         /* TODO improve static semantics, so either both or no values are NULL */
1537         if (true_val == NULL || false_val == NULL)
1538                 return NULL;
1539
1540         ir_node *in[2] = { true_val, false_val };
1541         ir_mode *mode  = get_irn_mode(true_val);
1542         assert(get_irn_mode(false_val) == mode);
1543         ir_node *val   = new_d_Phi(dbgi, 2, in, mode);
1544
1545         return val;
1546 }
1547
1548 static ir_node *select_addr(const select_expression_t *expression)
1549 {
1550         dbg_info *dbgi = get_dbg_info(&expression->expression.source_position);
1551
1552         ir_node *compound_addr = expression_to_firm(expression->compound);
1553
1554         declaration_t *entry = expression->compound_entry;
1555         assert(entry->declaration_type == DECLARATION_TYPE_COMPOUND_MEMBER);
1556         ir_entity     *entity = entry->v.entity;
1557
1558         assert(entity != NULL);
1559
1560         ir_node *sel = new_d_simpleSel(dbgi, new_NoMem(), compound_addr, entity);
1561
1562         return sel;
1563 }
1564
1565 static ir_node *select_to_firm(const select_expression_t *expression)
1566 {
1567         dbg_info *dbgi   = get_dbg_info(&expression->expression.source_position);
1568         ir_node  *addr   = select_addr(expression);
1569         type_t   *type   = revert_automatic_type_conversion(
1570                         (const expression_t*) expression);
1571         type             = skip_typeref(type);
1572         ir_type  *irtype = get_ir_type(type);
1573
1574         return deref_address(irtype, addr, dbgi);
1575 }
1576
1577 /* Values returned by __builtin_classify_type. */
1578 typedef enum gcc_type_class
1579 {
1580         no_type_class = -1,
1581         void_type_class,
1582         integer_type_class,
1583         char_type_class,
1584         enumeral_type_class,
1585         boolean_type_class,
1586         pointer_type_class,
1587         reference_type_class,
1588         offset_type_class,
1589         real_type_class,
1590         complex_type_class,
1591         function_type_class,
1592         method_type_class,
1593         record_type_class,
1594         union_type_class,
1595         array_type_class,
1596         string_type_class,
1597         set_type_class,
1598         file_type_class,
1599         lang_type_class
1600 } gcc_type_class;
1601
1602 static ir_node *classify_type_to_firm(const classify_type_expression_t *const expr)
1603 {
1604         const type_t *const type = expr->type_expression->base.datatype;
1605
1606         gcc_type_class tc;
1607         switch (type->type)
1608         {
1609                 case TYPE_ATOMIC: {
1610                         const atomic_type_t *const atomic_type = &type->atomic;
1611                         switch (atomic_type->atype) {
1612                                 // should not be reached
1613                                 case ATOMIC_TYPE_INVALID:
1614                                         tc = no_type_class;
1615                                         break;
1616
1617                                 // gcc cannot do that
1618                                 case ATOMIC_TYPE_VOID:
1619                                         tc = void_type_class;
1620                                         break;
1621
1622                                 case ATOMIC_TYPE_CHAR:      // gcc handles this as integer
1623                                 case ATOMIC_TYPE_SCHAR:     // gcc handles this as integer
1624                                 case ATOMIC_TYPE_UCHAR:     // gcc handles this as integer
1625                                 case ATOMIC_TYPE_SHORT:
1626                                 case ATOMIC_TYPE_USHORT:
1627                                 case ATOMIC_TYPE_INT:
1628                                 case ATOMIC_TYPE_UINT:
1629                                 case ATOMIC_TYPE_LONG:
1630                                 case ATOMIC_TYPE_ULONG:
1631                                 case ATOMIC_TYPE_LONGLONG:
1632                                 case ATOMIC_TYPE_ULONGLONG:
1633                                 case ATOMIC_TYPE_BOOL:      // gcc handles this as integer
1634                                         tc = integer_type_class;
1635                                         break;
1636
1637                                 case ATOMIC_TYPE_FLOAT:
1638                                 case ATOMIC_TYPE_DOUBLE:
1639                                 case ATOMIC_TYPE_LONG_DOUBLE:
1640                                         tc = real_type_class;
1641                                         break;
1642
1643 #ifdef PROVIDE_COMPLEX
1644                                 case ATOMIC_TYPE_FLOAT_COMPLEX:
1645                                 case ATOMIC_TYPE_DOUBLE_COMPLEX:
1646                                 case ATOMIC_TYPE_LONG_DOUBLE_COMPLEX:
1647                                         tc = complex_type_class;
1648                                         break;
1649                                 case ATOMIC_TYPE_FLOAT_IMAGINARY:
1650                                 case ATOMIC_TYPE_DOUBLE_IMAGINARY:
1651                                 case ATOMIC_TYPE_LONG_DOUBLE_IMAGINARY:
1652                                         tc = complex_type_class;
1653                                         break;
1654 #endif
1655
1656                                 default:
1657                                         panic("Unimplemented case in classify_type_to_firm().");
1658                         }
1659                         break;
1660                 }
1661
1662                 case TYPE_ARRAY:           // gcc handles this as pointer
1663                 case TYPE_FUNCTION:        // gcc handles this as pointer
1664                 case TYPE_POINTER:         tc = pointer_type_class; break;
1665                 case TYPE_COMPOUND_STRUCT: tc = record_type_class;  break;
1666                 case TYPE_COMPOUND_UNION:  tc = union_type_class;   break;
1667
1668                 // gcc handles this as integer
1669                 case TYPE_ENUM:            tc = integer_type_class; break;
1670
1671                 default:
1672                         panic("Unimplemented case in classify_type_to_firm().");
1673         }
1674
1675         dbg_info *const dbgi = get_dbg_info(&expr->expression.source_position);
1676         ir_mode  *const mode = mode_Is;
1677         tarval   *const tv   = new_tarval_from_long(tc, mode);
1678         return new_d_Const(dbgi, mode, tv);
1679 }
1680
1681 static ir_node *function_name_to_firm(
1682                 const string_literal_expression_t *const expr)
1683 {
1684         if (current_function_name == NULL) {
1685                 const source_position_t *const src_pos =
1686                         &expr->expression.source_position;
1687                 const char *const name = current_function_decl->symbol->string;
1688                 current_function_name = string_to_firm(src_pos, "__func__", name);
1689         }
1690
1691         return current_function_name;
1692 }
1693
1694 static ir_node *statement_expression_to_firm(const statement_expression_t *expr)
1695 {
1696         statement_t *statement = expr->statement;
1697
1698         assert(statement->type == STATEMENT_COMPOUND);
1699         return compound_statement_to_firm((compound_statement_t*) statement);
1700 }
1701
1702 static ir_node *dereference_addr(const unary_expression_t *const expression)
1703 {
1704         assert(expression->type == UNEXPR_DEREFERENCE);
1705         return expression_to_firm(expression->value);
1706 }
1707
1708 static ir_node *expression_to_addr(const expression_t *expression)
1709 {
1710         switch(expression->type) {
1711         case EXPR_REFERENCE:
1712                 return reference_addr(&expression->reference);
1713         case EXPR_ARRAY_ACCESS:
1714                 return array_access_addr(&expression->array_access);
1715         case EXPR_SELECT:
1716                 return select_addr(&expression->select);
1717         case EXPR_CALL:
1718                 return call_expression_to_firm(&expression->call);
1719         case EXPR_UNARY: {
1720                 const unary_expression_t *const unary_expr = &expression->unary;
1721                 if (unary_expr->type == UNEXPR_DEREFERENCE) {
1722                         return dereference_addr(unary_expr);
1723                 }
1724                 break;
1725         }
1726         default:
1727                 break;
1728         }
1729         panic("trying to get address of non-lvalue");
1730 }
1731
1732 static ir_node *_expression_to_firm(const expression_t *expression)
1733 {
1734         switch(expression->type) {
1735         case EXPR_CONST:
1736                 return const_to_firm(&expression->conste);
1737         case EXPR_STRING_LITERAL:
1738                 return string_literal_to_firm(&expression->string);
1739         case EXPR_WIDE_STRING_LITERAL:
1740                 return wide_string_literal_to_firm(&expression->wide_string);
1741         case EXPR_REFERENCE:
1742                 return reference_expression_to_firm(&expression->reference);
1743         case EXPR_CALL:
1744                 return call_expression_to_firm(&expression->call);
1745         case EXPR_UNARY:
1746                 return unary_expression_to_firm(&expression->unary);
1747         case EXPR_BINARY:
1748                 return binary_expression_to_firm(&expression->binary);
1749         case EXPR_ARRAY_ACCESS:
1750                 return array_access_to_firm(&expression->array_access);
1751         case EXPR_SIZEOF:
1752                 return sizeof_to_firm(&expression->sizeofe);
1753         case EXPR_CONDITIONAL:
1754                 return conditional_to_firm(&expression->conditional);
1755         case EXPR_SELECT:
1756                 return select_to_firm(&expression->select);
1757         case EXPR_CLASSIFY_TYPE:
1758                 return classify_type_to_firm(&expression->classify_type);
1759         case EXPR_FUNCTION:
1760         case EXPR_PRETTY_FUNCTION:
1761                 return function_name_to_firm(&expression->string);
1762         case EXPR_STATEMENT:
1763                 return statement_expression_to_firm(&expression->statement);
1764         case EXPR_OFFSETOF:
1765         case EXPR_VA_ARG:
1766         case EXPR_BUILTIN_SYMBOL:
1767                 panic("unimplemented expression found");
1768
1769         case EXPR_UNKNOWN:
1770         case EXPR_INVALID:
1771                 break;
1772         }
1773         panic("invalid expression found");
1774 }
1775
1776 static ir_node *expression_to_firm(const expression_t *expression)
1777 {
1778         ir_node *res = _expression_to_firm(expression);
1779
1780         if(res != NULL && get_irn_mode(res) == mode_b) {
1781                 ir_mode *mode = get_ir_mode(expression->base.datatype);
1782                 res           = create_conv(NULL, res, mode);
1783         }
1784
1785         return res;
1786 }
1787
1788 static ir_node *expression_to_modeb(const expression_t *expression)
1789 {
1790         ir_node *res = _expression_to_firm(expression);
1791         res          = create_conv(NULL, res, mode_b);
1792
1793         return res;
1794 }
1795
1796 /**
1797  * create a short-circuit expression evaluation that tries to construct
1798  * efficient control flow structures for &&, || and ! expressions
1799  */
1800 static void create_condition_evaluation(const expression_t *expression,
1801                                         ir_node *true_block,
1802                                         ir_node *false_block)
1803 {
1804         switch(expression->type) {
1805         case EXPR_UNARY: {
1806                 unary_expression_t *unary_expression = (unary_expression_t*) expression;
1807                 if(unary_expression->type == UNEXPR_NOT) {
1808                         create_condition_evaluation(unary_expression->value, false_block,
1809                                                     true_block);
1810                         return;
1811                 }
1812                 break;
1813         }
1814         case EXPR_BINARY: {
1815                 binary_expression_t *binary_expression
1816                         = (binary_expression_t*) expression;
1817                 if(binary_expression->type == BINEXPR_LOGICAL_AND) {
1818                         ir_node *cur_block   = get_cur_block();
1819                         ir_node *extra_block = new_immBlock();
1820                         set_cur_block(cur_block);
1821                         create_condition_evaluation(binary_expression->left, extra_block,
1822                                                     false_block);
1823                         mature_immBlock(extra_block);
1824                         set_cur_block(extra_block);
1825                         create_condition_evaluation(binary_expression->right, true_block,
1826                                                     false_block);
1827                         return;
1828                 }
1829                 if(binary_expression->type == BINEXPR_LOGICAL_OR) {
1830                         ir_node *cur_block   = get_cur_block();
1831                         ir_node *extra_block = new_immBlock();
1832                         set_cur_block(cur_block);
1833                         create_condition_evaluation(binary_expression->left, true_block,
1834                                                     extra_block);
1835                         mature_immBlock(extra_block);
1836                         set_cur_block(extra_block);
1837                         create_condition_evaluation(binary_expression->right, true_block,
1838                                                     false_block);
1839                         return;
1840                 }
1841                 break;
1842         }
1843         default:
1844                 break;
1845         }
1846
1847         dbg_info *dbgi       = get_dbg_info(&expression->base.source_position);
1848         ir_node  *condition  = expression_to_modeb(expression);
1849         ir_node  *cond       = new_d_Cond(dbgi, condition);
1850         ir_node  *true_proj  = new_d_Proj(dbgi, cond, mode_X, pn_Cond_true);
1851         ir_node  *false_proj = new_d_Proj(dbgi, cond, mode_X, pn_Cond_false);
1852
1853         add_immBlock_pred(true_block, true_proj);
1854         add_immBlock_pred(false_block, false_proj);
1855
1856         set_cur_block(NULL);
1857 }
1858
1859 static void return_statement_to_firm(return_statement_t *statement)
1860 {
1861         if(get_cur_block() == NULL)
1862                 return;
1863
1864         ir_type *func_irtype = get_ir_type(current_function_decl->type);
1865
1866         dbg_info *dbgi  = get_dbg_info(&statement->statement.source_position);
1867
1868         ir_node *in[1];
1869         int      in_len;
1870         if(get_method_n_ress(func_irtype) > 0) {
1871                 ir_type *res_type = get_method_res_type(func_irtype, 0);
1872
1873                 if(statement->return_value != NULL) {
1874                         ir_node *node = expression_to_firm(statement->return_value);
1875                         node  = do_strict_conv(dbgi, node);
1876                         in[0] = node;
1877                 } else {
1878                         ir_mode *mode;
1879                         if(is_compound_type(res_type)) {
1880                                 mode = mode_P_data;
1881                         } else {
1882                                 mode = get_type_mode(res_type);
1883                         }
1884                         in[0] = new_Unknown(mode);
1885                 }
1886                 in_len = 1;
1887         } else {
1888                 /* build return_value for its side effects */
1889                 if(statement->return_value != NULL) {
1890                         expression_to_firm(statement->return_value);
1891                 }
1892                 in_len = 0;
1893         }
1894
1895         ir_node  *store = get_store();
1896         ir_node  *ret   = new_d_Return(dbgi, store, in_len, in);
1897
1898         ir_node *end_block = get_irg_end_block(current_ir_graph);
1899         add_immBlock_pred(end_block, ret);
1900
1901         set_cur_block(NULL);
1902 }
1903
1904 static ir_node *expression_statement_to_firm(expression_statement_t *statement)
1905 {
1906         if(get_cur_block() == NULL)
1907                 return NULL;
1908
1909         return expression_to_firm(statement->expression);
1910 }
1911
1912 static ir_node *compound_statement_to_firm(compound_statement_t *compound)
1913 {
1914         ir_node     *result    = NULL;
1915         statement_t *statement = compound->statements;
1916         for( ; statement != NULL; statement = statement->base.next) {
1917                 //context2firm(&statement->context);
1918
1919                 if(statement->base.next == NULL
1920                                 && statement->type == STATEMENT_EXPRESSION) {
1921                         result = expression_statement_to_firm(
1922                                         (expression_statement_t*) statement);
1923                         break;
1924                 }
1925                 statement_to_firm(statement);
1926         }
1927
1928         return result;
1929 }
1930
1931 static void if_statement_to_firm(if_statement_t *statement)
1932 {
1933         ir_node *cur_block = get_cur_block();
1934
1935         ir_node *fallthrough_block = new_immBlock();
1936
1937         /* the true (blocks) */
1938         ir_node *true_block;
1939         if (statement->true_statement != NULL) {
1940                 true_block = new_immBlock();
1941                 statement_to_firm(statement->true_statement);
1942                 if(get_cur_block() != NULL) {
1943                         ir_node *jmp = new_Jmp();
1944                         add_immBlock_pred(fallthrough_block, jmp);
1945                 }
1946         } else {
1947                 true_block = fallthrough_block;
1948         }
1949
1950         /* the false (blocks) */
1951         ir_node *false_block;
1952         if(statement->false_statement != NULL) {
1953                 false_block = new_immBlock();
1954
1955                 statement_to_firm(statement->false_statement);
1956                 if(get_cur_block() != NULL) {
1957                         ir_node *jmp = new_Jmp();
1958                         add_immBlock_pred(fallthrough_block, jmp);
1959                 }
1960         } else {
1961                 false_block = fallthrough_block;
1962         }
1963
1964         /* create the condition */
1965         if(cur_block != NULL) {
1966                 set_cur_block(cur_block);
1967                 create_condition_evaluation(statement->condition, true_block,
1968                                             false_block);
1969         }
1970
1971         mature_immBlock(true_block);
1972         if(false_block != fallthrough_block) {
1973                 mature_immBlock(false_block);
1974         }
1975         mature_immBlock(fallthrough_block);
1976
1977         set_cur_block(fallthrough_block);
1978 }
1979
1980 static void while_statement_to_firm(while_statement_t *statement)
1981 {
1982         ir_node *jmp = NULL;
1983         if(get_cur_block() != NULL) {
1984                 jmp = new_Jmp();
1985         }
1986
1987         /* create the header block */
1988         ir_node *header_block = new_immBlock();
1989         if(jmp != NULL) {
1990                 add_immBlock_pred(header_block, jmp);
1991         }
1992
1993         /* the false block */
1994         ir_node *false_block = new_immBlock();
1995
1996         /* the loop body */
1997         ir_node *body_block;
1998         if (statement->body != NULL) {
1999                 ir_node *old_continue_label = continue_label;
2000                 ir_node *old_break_label    = break_label;
2001                 continue_label              = header_block;
2002                 break_label                 = false_block;
2003
2004                 body_block = new_immBlock();
2005                 statement_to_firm(statement->body);
2006
2007                 assert(continue_label == header_block);
2008                 assert(break_label    == false_block);
2009                 continue_label = old_continue_label;
2010                 break_label    = old_break_label;
2011
2012                 if(get_cur_block() != NULL) {
2013                         jmp = new_Jmp();
2014                         add_immBlock_pred(header_block, jmp);
2015                 }
2016         } else {
2017                 body_block = header_block;
2018         }
2019
2020         /* create the condition */
2021         set_cur_block(header_block);
2022
2023         create_condition_evaluation(statement->condition, body_block, false_block);
2024         mature_immBlock(body_block);
2025         mature_immBlock(false_block);
2026         mature_immBlock(header_block);
2027
2028         set_cur_block(false_block);
2029 }
2030
2031 static void do_while_statement_to_firm(do_while_statement_t *statement)
2032 {
2033         ir_node *jmp = NULL;
2034         if(get_cur_block() != NULL) {
2035                 jmp = new_Jmp();
2036         }
2037
2038         /* create the header block */
2039         ir_node *header_block = new_immBlock();
2040
2041         /* the false block */
2042         ir_node *false_block = new_immBlock();
2043
2044         /* the loop body */
2045         ir_node *body_block = new_immBlock();
2046         if(jmp != NULL) {
2047                 add_immBlock_pred(body_block, jmp);
2048         }
2049
2050         if (statement->body != NULL) {
2051                 ir_node *old_continue_label = continue_label;
2052                 ir_node *old_break_label    = break_label;
2053                 continue_label              = header_block;
2054                 break_label                 = false_block;
2055
2056                 statement_to_firm(statement->body);
2057
2058                 assert(continue_label == header_block);
2059                 assert(break_label    == false_block);
2060                 continue_label = old_continue_label;
2061                 break_label    = old_break_label;
2062
2063                 if (get_cur_block() == NULL) {
2064                         mature_immBlock(header_block);
2065                         mature_immBlock(body_block);
2066                         mature_immBlock(false_block);
2067                         return;
2068                 }
2069         }
2070
2071         ir_node *body_jmp = new_Jmp();
2072         add_immBlock_pred(header_block, body_jmp);
2073         mature_immBlock(header_block);
2074
2075         /* create the condition */
2076         set_cur_block(header_block);
2077
2078         create_condition_evaluation(statement->condition, body_block, false_block);
2079         mature_immBlock(body_block);
2080         mature_immBlock(false_block);
2081         mature_immBlock(header_block);
2082
2083         set_cur_block(false_block);
2084 }
2085
2086 static void for_statement_to_firm(for_statement_t *statement)
2087 {
2088         ir_node *jmp = NULL;
2089         if (get_cur_block() != NULL) {
2090                 if(statement->initialisation != NULL) {
2091                         expression_to_firm(statement->initialisation);
2092                 }
2093                 jmp = new_Jmp();
2094         }
2095
2096         /* create the step block */
2097         ir_node *const step_block = new_immBlock();
2098         if (statement->step != NULL) {
2099                 expression_to_firm(statement->step);
2100         }
2101         ir_node *const step_jmp = new_Jmp();
2102
2103         /* create the header block */
2104         ir_node *const header_block = new_immBlock();
2105         if (jmp != NULL) {
2106                 add_immBlock_pred(header_block, jmp);
2107         }
2108         add_immBlock_pred(header_block, step_jmp);
2109
2110         /* the false block */
2111         ir_node *const false_block = new_immBlock();
2112
2113         /* the loop body */
2114         ir_node * body_block;
2115         if (statement->body != NULL) {
2116                 ir_node *const old_continue_label = continue_label;
2117                 ir_node *const old_break_label    = break_label;
2118                 continue_label = step_block;
2119                 break_label    = false_block;
2120
2121                 body_block = new_immBlock();
2122                 statement_to_firm(statement->body);
2123
2124                 assert(continue_label == step_block);
2125                 assert(break_label    == false_block);
2126                 continue_label = old_continue_label;
2127                 break_label    = old_break_label;
2128
2129                 if (get_cur_block() != NULL) {
2130                         jmp = new_Jmp();
2131                         add_immBlock_pred(step_block, jmp);
2132                 }
2133         } else {
2134                 body_block = step_block;
2135         }
2136
2137         /* create the condition */
2138         set_cur_block(header_block);
2139         if (statement->condition != NULL) {
2140                 create_condition_evaluation(statement->condition, body_block,
2141                                             false_block);
2142         } else {
2143                 keep_alive(header_block);
2144                 jmp = new_Jmp();
2145                 add_immBlock_pred(body_block, jmp);
2146         }
2147
2148         mature_immBlock(body_block);
2149         mature_immBlock(false_block);
2150         mature_immBlock(step_block);
2151         mature_immBlock(header_block);
2152         mature_immBlock(false_block);
2153
2154         set_cur_block(false_block);
2155 }
2156
2157 static void create_declaration_entity(declaration_t *declaration,
2158                                       declaration_type_t declaration_type,
2159                                       ir_type *parent_type)
2160 {
2161         ident     *id     = new_id_from_str(declaration->symbol->string);
2162         ir_type   *irtype = get_ir_type(declaration->type);
2163         ir_entity *entity = new_entity(parent_type, id, irtype);
2164         set_entity_ld_ident(entity, id);
2165
2166         declaration->declaration_type = (unsigned char) declaration_type;
2167         declaration->v.entity         = entity;
2168         set_entity_variability(entity, variability_uninitialized);
2169         /* TODO: visibility? */
2170 }
2171
2172 typedef struct compound_graph_path_entry_t compound_graph_path_entry_t;
2173
2174 enum compound_graph_entry_type_t {
2175         COMPOUND_GRAPH_ENTRY_ARRAY,
2176         COMPOUND_GRAPH_ENTRY_COMPOUND
2177 };
2178
2179 struct compound_graph_path_entry_t {
2180         int type;
2181         union {
2182                 ir_entity *entity;
2183                 int        array_index;
2184         } v;
2185         compound_graph_path_entry_t *prev;
2186 };
2187
2188 static void create_initializer_object(initializer_t *initializer, type_t *type,
2189                 ir_entity *entity, compound_graph_path_entry_t *entry, int len);
2190
2191 static compound_graph_path *create_compound_path(ir_type *type,
2192                 compound_graph_path_entry_t *entry, int len)
2193 {
2194         compound_graph_path *path = new_compound_graph_path(type, len);
2195
2196         int i = len - 1;
2197         for( ; entry != NULL; entry = entry->prev, --i) {
2198                 assert(i >= 0);
2199                 if(entry->type == COMPOUND_GRAPH_ENTRY_COMPOUND) {
2200                         set_compound_graph_path_node(path, i, entry->v.entity);
2201                 } else {
2202                         assert(entry->type == COMPOUND_GRAPH_ENTRY_ARRAY);
2203                         set_compound_graph_path_array_index(path, i, entry->v.array_index);
2204                 }
2205         }
2206         assert(i == -1);
2207
2208         return path;
2209 }
2210
2211 static void create_initializer_value(initializer_value_t *initializer,
2212                                      ir_entity *entity,
2213                                      compound_graph_path_entry_t *entry,
2214                                      int len)
2215 {
2216         ir_node             *node = expression_to_firm(initializer->value);
2217         ir_type             *type = get_entity_type(entity);
2218         compound_graph_path *path = create_compound_path(type, entry, len);
2219         add_compound_ent_value_w_path(entity, node, path);
2220 }
2221
2222 static void create_initializer_compound(initializer_list_t *initializer,
2223                                         compound_type_t *type,
2224                                         ir_entity *entity,
2225                                         compound_graph_path_entry_t *last_entry,
2226                                         int len)
2227 {
2228         declaration_t *compound_declaration = type->declaration;
2229
2230         declaration_t *compound_entry = compound_declaration->context.declarations;
2231
2232         compound_graph_path_entry_t entry;
2233         entry.type = COMPOUND_GRAPH_ENTRY_COMPOUND;
2234         entry.prev = last_entry;
2235         ++len;
2236
2237         size_t i = 0;
2238         for( ; compound_entry != NULL; compound_entry = compound_entry->next) {
2239                 if(compound_entry->symbol == NULL)
2240                         continue;
2241                 if(compound_entry->namespc != NAMESPACE_NORMAL)
2242                         continue;
2243
2244                 if(i >= initializer->len)
2245                         break;
2246
2247                 entry.v.entity = compound_entry->v.entity;
2248
2249                 initializer_t *sub_initializer = initializer->initializers[i];
2250
2251                 assert(compound_entry != NULL);
2252                 assert(compound_entry->declaration_type
2253                                 == DECLARATION_TYPE_COMPOUND_MEMBER);
2254
2255                 if(sub_initializer->type == INITIALIZER_VALUE) {
2256                         create_initializer_value(&sub_initializer->value,
2257                                                  entity, &entry, len);
2258                 } else {
2259                         type_t *entry_type = skip_typeref(compound_entry->type);
2260                         create_initializer_object(sub_initializer, entry_type, entity,
2261                                                   &entry, len);
2262                 }
2263
2264                 ++i;
2265         }
2266 }
2267
2268 static void create_initializer_array(initializer_list_t *initializer,
2269                                      array_type_t *type, ir_entity *entity,
2270                                      compound_graph_path_entry_t *last_entry,
2271                                      int len)
2272 {
2273         type_t *element_type = type->element_type;
2274         element_type         = skip_typeref(element_type);
2275
2276         compound_graph_path_entry_t entry;
2277         entry.type = COMPOUND_GRAPH_ENTRY_ARRAY;
2278         entry.prev = last_entry;
2279         ++len;
2280
2281         size_t i;
2282         for(i = 0; i < initializer->len; ++i) {
2283                 entry.v.array_index = i;
2284
2285                 initializer_t *sub_initializer = initializer->initializers[i];
2286
2287                 if(sub_initializer->type == INITIALIZER_VALUE) {
2288                         create_initializer_value(&sub_initializer->value,
2289                                                  entity, &entry, len);
2290                 } else {
2291                         create_initializer_object(sub_initializer, element_type, entity,
2292                                                   &entry, len);
2293                 }
2294         }
2295
2296 #if 0
2297         /* TODO: initialize rest... */
2298         if(type->size_expression != NULL) {
2299                 size_t array_len = fold_constant(type->size_expression);
2300                 for( ; i < array_len; ++i) {
2301
2302                 }
2303         }
2304 #endif
2305 }
2306
2307 static void create_initializer_string(initializer_string_t *initializer,
2308                                       array_type_t *type, ir_entity *entity,
2309                                       compound_graph_path_entry_t *last_entry,
2310                                       int len)
2311 {
2312         type_t *element_type = type->element_type;
2313         element_type         = skip_typeref(element_type);
2314
2315         compound_graph_path_entry_t entry;
2316         entry.type = COMPOUND_GRAPH_ENTRY_ARRAY;
2317         entry.prev = last_entry;
2318         ++len;
2319
2320         ir_type    *irtype  = get_entity_type(entity);
2321         size_t      arr_len = get_array_type_size(type);
2322         const char *p       = initializer->string;
2323         size_t      i       = 0;
2324         for(i = 0; i < arr_len; ++i, ++p) {
2325                 entry.v.array_index = i;
2326
2327                 ir_node             *node = new_Const_long(mode_Bs, *p);
2328                 compound_graph_path *path = create_compound_path(irtype, &entry, len);
2329                 add_compound_ent_value_w_path(entity, node, path);
2330
2331                 if(*p == '\0')
2332                         break;
2333         }
2334 }
2335
2336 static void create_initializer_object(initializer_t *initializer, type_t *type,
2337                 ir_entity *entity, compound_graph_path_entry_t *entry, int len)
2338 {
2339         if(is_type_array(type)) {
2340                 array_type_t *array_type = &type->array;
2341
2342                 if(initializer->type == INITIALIZER_STRING) {
2343                         initializer_string_t *string = &initializer->string;
2344                         create_initializer_string(string, array_type, entity, entry, len);
2345                 } else {
2346                         assert(initializer->type == INITIALIZER_LIST);
2347                         initializer_list_t *list = &initializer->list;
2348                         create_initializer_array(list, array_type, entity, entry, len);
2349                 }
2350         } else {
2351                 assert(initializer->type == INITIALIZER_LIST);
2352                 initializer_list_t *list = &initializer->list;
2353
2354                 assert(is_type_compound(type));
2355                 compound_type_t *compound_type = &type->compound;
2356                 create_initializer_compound(list, compound_type, entity, entry, len);
2357         }
2358 }
2359
2360 static void create_initializer_local_variable_entity(declaration_t *declaration)
2361 {
2362         initializer_t *initializer = declaration->init.initializer;
2363         dbg_info      *dbgi        = get_dbg_info(&declaration->source_position);
2364         ir_entity     *entity      = declaration->v.entity;
2365         ir_node       *memory      = get_store();
2366         ir_node       *nomem       = new_NoMem();
2367         ir_node       *frame       = get_irg_frame(current_ir_graph);
2368         ir_node       *addr        = new_d_simpleSel(dbgi, nomem, frame, entity);
2369
2370         if(is_atomic_entity(entity)) {
2371                 assert(initializer->type == INITIALIZER_VALUE);
2372                 initializer_value_t *initializer_value = &initializer->value;
2373
2374                 ir_node *value     = expression_to_firm(initializer_value->value);
2375                 ir_node *store     = new_d_Store(dbgi, memory, addr, value);
2376                 ir_node *store_mem = new_d_Proj(dbgi, store, mode_M, pn_Store_M);
2377                 set_store(store_mem);
2378                 return;
2379         }
2380
2381         /* create a "template" entity which is copied to the entity on the stack */
2382         ident     *id          = unique_ident("initializer");
2383         ir_type   *irtype      = get_ir_type(declaration->type);
2384         ir_type   *global_type = get_glob_type();
2385         ir_entity *init_entity = new_entity(global_type, id, irtype);
2386         set_entity_ld_ident(init_entity, id);
2387
2388         set_entity_variability(init_entity, variability_initialized);
2389         set_entity_visibility(init_entity, visibility_local);
2390
2391         ir_graph *old_current_ir_graph = current_ir_graph;
2392         current_ir_graph = get_const_code_irg();
2393
2394         type_t *type = skip_typeref(declaration->type);
2395         create_initializer_object(initializer, type, init_entity, NULL, 0);
2396
2397         assert(current_ir_graph == get_const_code_irg());
2398         current_ir_graph = old_current_ir_graph;
2399
2400         ir_node *src_addr  = create_symconst(dbgi, init_entity);
2401         ir_node *copyb     = new_d_CopyB(dbgi, memory, addr, src_addr, irtype);
2402
2403         ir_node *copyb_mem = new_Proj(copyb, mode_M, pn_CopyB_M_regular);
2404         set_store(copyb_mem);
2405 }
2406
2407 static void create_initializer(declaration_t *declaration)
2408 {
2409         initializer_t *initializer = declaration->init.initializer;
2410         if(initializer == NULL)
2411                 return;
2412
2413         declaration_type_t declaration_type
2414                 = (declaration_type_t) declaration->declaration_type;
2415         if(declaration_type == DECLARATION_TYPE_LOCAL_VARIABLE_ENTITY) {
2416                 create_initializer_local_variable_entity(declaration);
2417                 return;
2418         }
2419
2420         if(initializer->type == INITIALIZER_VALUE) {
2421                 initializer_value_t *initializer_value = &initializer->value;
2422
2423                 ir_node *value = expression_to_firm(initializer_value->value);
2424
2425                 if(declaration_type == DECLARATION_TYPE_LOCAL_VARIABLE) {
2426                         set_value(declaration->v.value_number, value);
2427                 } else {
2428                         assert(declaration_type == DECLARATION_TYPE_GLOBAL_VARIABLE);
2429
2430                         ir_entity *entity = declaration->v.entity;
2431
2432                         set_entity_variability(entity, variability_initialized);
2433                         set_atomic_ent_value(entity, value);
2434                 }
2435         } else {
2436                 assert(declaration_type == DECLARATION_TYPE_LOCAL_VARIABLE_ENTITY
2437                                 || declaration_type == DECLARATION_TYPE_GLOBAL_VARIABLE);
2438
2439                 ir_entity *entity = declaration->v.entity;
2440                 set_entity_variability(entity, variability_initialized);
2441
2442                 type_t *type = skip_typeref(declaration->type);
2443                 create_initializer_object(initializer, type, entity, NULL, 0);
2444         }
2445 }
2446
2447 static void create_local_variable(declaration_t *declaration)
2448 {
2449         assert(declaration->declaration_type == DECLARATION_TYPE_UNKNOWN);
2450
2451         bool needs_entity = declaration->address_taken;
2452         type_t *type = skip_typeref(declaration->type);
2453
2454         if(is_type_array(type) || is_type_compound(type)) {
2455                 needs_entity = true;
2456         }
2457
2458         if(needs_entity) {
2459                 ir_type *frame_type = get_irg_frame_type(current_ir_graph);
2460                 create_declaration_entity(declaration,
2461                                           DECLARATION_TYPE_LOCAL_VARIABLE_ENTITY,
2462                                           frame_type);
2463         } else {
2464                 declaration->declaration_type = DECLARATION_TYPE_LOCAL_VARIABLE;
2465                 declaration->v.value_number   = next_value_number_function;
2466                 ++next_value_number_function;
2467         }
2468
2469         create_initializer(declaration);
2470 }
2471
2472 static void create_local_static_variable(declaration_t *declaration)
2473 {
2474         assert(declaration->declaration_type == DECLARATION_TYPE_UNKNOWN);
2475
2476         type_t    *type        = skip_typeref(declaration->type);
2477         ir_type   *global_type = get_glob_type();
2478         ident     *id          = unique_ident(declaration->symbol->string);
2479         ir_type   *irtype      = get_ir_type(type);
2480         ir_entity *entity      = new_entity(global_type, id, irtype);
2481         set_entity_ld_ident(entity, id);
2482
2483         declaration->declaration_type = DECLARATION_TYPE_GLOBAL_VARIABLE;
2484         declaration->v.entity         = entity;
2485         set_entity_variability(entity, variability_uninitialized);
2486         set_entity_visibility(entity, visibility_local);
2487
2488         ir_graph *old_current_ir_graph = current_ir_graph;
2489         current_ir_graph = get_const_code_irg();
2490
2491         create_initializer(declaration);
2492
2493         assert(current_ir_graph == get_const_code_irg());
2494         current_ir_graph = old_current_ir_graph;
2495 }
2496
2497 static void declaration_statement_to_firm(declaration_statement_t *statement)
2498 {
2499         declaration_t *declaration = statement->declarations_begin;
2500         declaration_t *end         = statement->declarations_end->next;
2501         for( ; declaration != end; declaration = declaration->next) {
2502                 type_t *type = skip_typeref(declaration->type);
2503
2504                 switch ((storage_class_tag_t) declaration->storage_class) {
2505                 case STORAGE_CLASS_TYPEDEF:
2506                         continue;
2507                 case STORAGE_CLASS_STATIC:
2508                         create_local_static_variable(declaration);
2509                         continue;
2510                 case STORAGE_CLASS_ENUM_ENTRY:
2511                         panic("enum entry declaration in local block found");
2512                 case STORAGE_CLASS_EXTERN:
2513                         panic("extern declaration in local block found");
2514                 case STORAGE_CLASS_NONE:
2515                 case STORAGE_CLASS_AUTO:
2516                 case STORAGE_CLASS_REGISTER:
2517                         if(is_type_function(type)) {
2518                                 panic("nested functions not supported yet");
2519                         } else {
2520                                 create_local_variable(declaration);
2521                         }
2522                         continue;
2523                 case STORAGE_CLASS_THREAD:
2524                 case STORAGE_CLASS_THREAD_EXTERN:
2525                 case STORAGE_CLASS_THREAD_STATIC:
2526                         break;
2527                 }
2528                 panic("invalid storage class found");
2529         }
2530 }
2531
2532 static void create_jump_statement(const statement_t *statement,
2533                                   ir_node *target_block)
2534 {
2535         if(get_cur_block() == NULL)
2536                 return;
2537
2538         dbg_info *dbgi = get_dbg_info(&statement->base.source_position);
2539         ir_node  *jump = new_d_Jmp(dbgi);
2540         add_immBlock_pred(target_block, jump);
2541
2542         set_cur_block(NULL);
2543 }
2544
2545 static void switch_statement_to_firm(const switch_statement_t *statement)
2546 {
2547         dbg_info *dbgi = get_dbg_info(&statement->statement.source_position);
2548
2549         ir_node *expression  = expression_to_firm(statement->expression);
2550         ir_node *cond        = new_d_Cond(dbgi, expression);
2551         ir_node *break_block = new_immBlock();
2552
2553         set_cur_block(NULL);
2554
2555         ir_node *const old_switch_cond       = current_switch_cond;
2556         ir_node *const old_break_label       = break_label;
2557         const bool     old_saw_default_label = saw_default_label;
2558         current_switch_cond                  = cond;
2559         break_label                          = break_block;
2560
2561         statement_to_firm(statement->body);
2562
2563         if(get_cur_block() != NULL) {
2564                 ir_node *jmp = new_Jmp();
2565                 add_immBlock_pred(break_block, jmp);
2566         }
2567
2568         if (!saw_default_label) {
2569                 set_cur_block(get_nodes_block(cond));
2570                 ir_node *const proj = new_d_defaultProj(dbgi, cond,
2571                                                         MAGIC_DEFAULT_PN_NUMBER);
2572                 add_immBlock_pred(break_block, proj);
2573         }
2574
2575         assert(current_switch_cond == cond);
2576         assert(break_label         == break_block);
2577         current_switch_cond = old_switch_cond;
2578         break_label         = old_break_label;
2579         saw_default_label   = old_saw_default_label;
2580
2581         mature_immBlock(break_block);
2582         set_cur_block(break_block);
2583 }
2584
2585 static long fold_constant(const expression_t *expression)
2586 {
2587         ir_graph *old_current_ir_graph = current_ir_graph;
2588         current_ir_graph = get_const_code_irg();
2589
2590         ir_node *cnst = expression_to_firm(expression);
2591         if(!is_Const(cnst)) {
2592                 panic("couldn't fold constantl");
2593         }
2594         tarval *tv = get_Const_tarval(cnst);
2595         if(!tarval_is_long(tv)) {
2596                 panic("folded constant not an integer");
2597         }
2598
2599         long res = get_tarval_long(tv);
2600
2601         current_ir_graph = old_current_ir_graph;
2602         return res;
2603 }
2604
2605 static void case_label_to_firm(const case_label_statement_t *statement)
2606 {
2607         dbg_info *dbgi = get_dbg_info(&statement->statement.source_position);
2608
2609         ir_node *const fallthrough = (get_cur_block() == NULL ? NULL : new_Jmp());
2610
2611         /* let's create a node and hope firm constant folding creates a Const
2612          * node... */
2613         ir_node *proj;
2614         set_cur_block(get_nodes_block(current_switch_cond));
2615         if(statement->expression) {
2616                 long pn = fold_constant(statement->expression);
2617                 if(pn == MAGIC_DEFAULT_PN_NUMBER) {
2618                         /* oops someone detected our cheating... */
2619                         panic("magic default pn used");
2620                 }
2621                 proj = new_d_Proj(dbgi, current_switch_cond, mode_X, pn);
2622         } else {
2623                 saw_default_label = true;
2624                 proj = new_d_defaultProj(dbgi, current_switch_cond,
2625                                          MAGIC_DEFAULT_PN_NUMBER);
2626         }
2627
2628         ir_node *block = new_immBlock();
2629         if (fallthrough != NULL) {
2630                 add_immBlock_pred(block, fallthrough);
2631         }
2632         add_immBlock_pred(block, proj);
2633         mature_immBlock(block);
2634
2635         statement_to_firm(statement->label_statement);
2636 }
2637
2638 static ir_node *get_label_block(declaration_t *label)
2639 {
2640         assert(label->namespc == NAMESPACE_LABEL);
2641
2642         if(label->declaration_type == DECLARATION_TYPE_LABEL_BLOCK) {
2643                 return label->v.block;
2644         }
2645         assert(label->declaration_type == DECLARATION_TYPE_UNKNOWN);
2646
2647         ir_node *old_cur_block = get_cur_block();
2648         ir_node *block         = new_immBlock();
2649         set_cur_block(old_cur_block);
2650
2651         label->declaration_type = DECLARATION_TYPE_LABEL_BLOCK;
2652         label->v.block          = block;
2653
2654         ARR_APP1(ir_node *, imature_blocks, block);
2655
2656         return block;
2657 }
2658
2659 static void label_to_firm(const label_statement_t *statement)
2660 {
2661         ir_node *block = get_label_block(statement->label);
2662
2663         if(get_cur_block() != NULL) {
2664                 ir_node *jmp = new_Jmp();
2665                 add_immBlock_pred(block, jmp);
2666         }
2667
2668         set_cur_block(block);
2669         keep_alive(block);
2670
2671         statement_to_firm(statement->label_statement);
2672 }
2673
2674 static void goto_to_firm(const goto_statement_t *statement)
2675 {
2676         if(get_cur_block() == NULL)
2677                 return;
2678
2679         ir_node *block = get_label_block(statement->label);
2680         ir_node *jmp   = new_Jmp();
2681         add_immBlock_pred(block, jmp);
2682
2683         set_cur_block(NULL);
2684 }
2685
2686 static void statement_to_firm(statement_t *statement)
2687 {
2688         switch(statement->type) {
2689         case STATEMENT_INVALID:
2690                 panic("invalid statement found");
2691         case STATEMENT_COMPOUND:
2692                 compound_statement_to_firm(&statement->compound);
2693                 return;
2694         case STATEMENT_RETURN:
2695                 return_statement_to_firm(&statement->returns);
2696                 return;
2697         case STATEMENT_EXPRESSION:
2698                 expression_statement_to_firm(&statement->expression);
2699                 return;
2700         case STATEMENT_IF:
2701                 if_statement_to_firm(&statement->ifs);
2702                 return;
2703         case STATEMENT_WHILE:
2704                 while_statement_to_firm(&statement->whiles);
2705                 return;
2706         case STATEMENT_DO_WHILE:
2707                 do_while_statement_to_firm(&statement->do_while);
2708                 return;
2709         case STATEMENT_DECLARATION:
2710                 declaration_statement_to_firm(&statement->declaration);
2711                 return;
2712         case STATEMENT_BREAK:
2713                 create_jump_statement(statement, break_label);
2714                 return;
2715         case STATEMENT_CONTINUE:
2716                 create_jump_statement(statement, continue_label);
2717                 return;
2718         case STATEMENT_SWITCH:
2719                 switch_statement_to_firm(&statement->switchs);
2720                 return;
2721         case STATEMENT_CASE_LABEL:
2722                 case_label_to_firm(&statement->case_label);
2723                 return;
2724         case STATEMENT_FOR:
2725                 for_statement_to_firm(&statement->fors);
2726                 return;
2727         case STATEMENT_LABEL:
2728                 label_to_firm(&statement->label);
2729                 return;
2730         case STATEMENT_GOTO:
2731                 goto_to_firm(&statement->gotos);
2732                 return;
2733         case STATEMENT_ASM:
2734                 break;
2735         }
2736         panic("Statement not implemented\n");
2737 }
2738
2739 static int count_local_declarations(const declaration_t *      decl,
2740                                     const declaration_t *const end)
2741 {
2742         int count = 0;
2743         for (; decl != end; decl = decl->next) {
2744                 const type_t *type = skip_typeref(decl->type);
2745                 switch (type->type) {
2746                         case TYPE_ATOMIC:
2747                         case TYPE_ENUM:
2748                         case TYPE_POINTER:
2749                                 if (!decl->address_taken)
2750                                         ++count;
2751                                 break;
2752
2753                         default: break;
2754                 }
2755         }
2756         return count;
2757 }
2758
2759 static int count_decls_in_stmts(const statement_t *stmt)
2760 {
2761         int count = 0;
2762         for (; stmt != NULL; stmt = stmt->base.next) {
2763                 switch (stmt->type) {
2764                         case STATEMENT_DECLARATION: {
2765                                 const declaration_statement_t *const decl_stmt =
2766                                         (const declaration_statement_t*)stmt;
2767                                 count += count_local_declarations(decl_stmt->declarations_begin,
2768                                                                   decl_stmt->declarations_end->next);
2769                                 break;
2770                         }
2771
2772                         case STATEMENT_COMPOUND: {
2773                                 const compound_statement_t *const comp =
2774                                         (const compound_statement_t*)stmt;
2775                                 count += count_decls_in_stmts(comp->statements);
2776                                 break;
2777                         }
2778
2779                         case STATEMENT_IF: {
2780                                 const if_statement_t *const if_stmt = (const if_statement_t*)stmt;
2781                                 count += count_decls_in_stmts(if_stmt->true_statement);
2782                                 count += count_decls_in_stmts(if_stmt->false_statement);
2783                                 break;
2784                         }
2785
2786                         case STATEMENT_SWITCH: {
2787                                 const switch_statement_t *const switch_stmt =
2788                                         (const switch_statement_t*)stmt;
2789                                 count += count_decls_in_stmts(switch_stmt->body);
2790                                 break;
2791                         }
2792
2793                         case STATEMENT_LABEL: {
2794                                 const label_statement_t *const label_stmt =
2795                                         (const label_statement_t*)stmt;
2796                                 count += count_decls_in_stmts(label_stmt->label_statement);
2797                                 break;
2798                         }
2799
2800                         case STATEMENT_WHILE: {
2801                                 const while_statement_t *const while_stmt =
2802                                         (const while_statement_t*)stmt;
2803                                 count += count_decls_in_stmts(while_stmt->body);
2804                                 break;
2805                         }
2806
2807                         case STATEMENT_DO_WHILE: {
2808                                 const do_while_statement_t *const do_while_stmt =
2809                                         (const do_while_statement_t*)stmt;
2810                                 count += count_decls_in_stmts(do_while_stmt->body);
2811                                 break;
2812                         }
2813
2814                         case STATEMENT_FOR: {
2815                                 const for_statement_t *const for_stmt =
2816                                         (const for_statement_t*)stmt;
2817                                 /* TODO initialisation */
2818                                 count += count_decls_in_stmts(for_stmt->body);
2819                                 break;
2820                         }
2821
2822                         case STATEMENT_ASM:
2823                         case STATEMENT_BREAK:
2824                         case STATEMENT_CASE_LABEL:
2825                         case STATEMENT_CONTINUE:
2826                         case STATEMENT_EXPRESSION:
2827                         case STATEMENT_GOTO:
2828                         case STATEMENT_INVALID:
2829                         case STATEMENT_RETURN:
2830                                 break;
2831                 }
2832         }
2833         return count;
2834 }
2835
2836 static int get_function_n_local_vars(declaration_t *declaration)
2837 {
2838         int count = 0;
2839
2840         /* count parameters */
2841         count += count_local_declarations(declaration->context.declarations, NULL);
2842
2843         /* count local variables declared in body */
2844         count += count_decls_in_stmts(declaration->init.statement);
2845
2846         /* TODO FIXME: Matze: I'm lazy don't want to scan all expressions
2847          * for expression statements... */
2848         count += 10;
2849
2850         return count;
2851 }
2852
2853 static void initialize_function_parameters(declaration_t *declaration)
2854 {
2855         ir_graph        *irg             = current_ir_graph;
2856         ir_node         *args            = get_irg_args(irg);
2857         ir_node         *start_block     = get_irg_start_block(irg);
2858         ir_type         *function_irtype = get_ir_type(declaration->type);
2859
2860         int            n         = 0;
2861         declaration_t *parameter = declaration->context.declarations;
2862         for( ; parameter != NULL; parameter = parameter->next, ++n) {
2863                 assert(parameter->declaration_type == DECLARATION_TYPE_UNKNOWN);
2864                 type_t *type = skip_typeref(parameter->type);
2865
2866                 bool needs_entity = parameter->address_taken;
2867                 assert(!is_type_array(type));
2868                 if(is_type_compound(type)) {
2869                         needs_entity = true;
2870                 }
2871
2872                 if(needs_entity) {
2873                         ir_entity *entity = get_method_value_param_ent(function_irtype, n);
2874                         ident     *id     = new_id_from_str(parameter->symbol->string);
2875                         set_entity_ident(entity, id);
2876
2877                         parameter->declaration_type
2878                                 = DECLARATION_TYPE_LOCAL_VARIABLE_ENTITY;
2879                         parameter->v.entity = entity;
2880                         continue;
2881                 }
2882
2883                 ir_mode *mode = get_ir_mode(parameter->type);
2884                 long     pn   = n;
2885                 ir_node *proj = new_r_Proj(irg, start_block, args, mode, pn);
2886
2887                 parameter->declaration_type = DECLARATION_TYPE_LOCAL_VARIABLE;
2888                 parameter->v.value_number   = next_value_number_function;
2889                 ++next_value_number_function;
2890
2891                 set_value(parameter->v.value_number, proj);
2892         }
2893 }
2894
2895 static void create_function(declaration_t *declaration)
2896 {
2897         ir_entity *function_entity = get_function_entity(declaration);
2898
2899         if(declaration->init.statement == NULL)
2900                 return;
2901
2902         current_function_decl = declaration;
2903         current_function_name = NULL;
2904
2905         assert(imature_blocks == NULL);
2906         imature_blocks = NEW_ARR_F(ir_node*, 0);
2907
2908         int       n_local_vars = get_function_n_local_vars(declaration);
2909         ir_graph *irg          = new_ir_graph(function_entity, n_local_vars);
2910         ir_node  *first_block  = get_cur_block();
2911
2912         next_value_number_function = 0;
2913         initialize_function_parameters(declaration);
2914
2915         statement_to_firm(declaration->init.statement);
2916
2917         ir_node *end_block = get_irg_end_block(irg);
2918
2919         /* do we have a return statement yet? */
2920         if(get_cur_block() != NULL) {
2921                 type_t *type = skip_typeref(declaration->type);
2922                 assert(is_type_function(type));
2923                 const function_type_t *func_type   = &type->function;
2924                 const type_t          *return_type
2925                         = skip_typeref(func_type->return_type);
2926
2927                 ir_node *ret;
2928                 if (is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
2929                         ret = new_Return(get_store(), 0, NULL);
2930                 } else {
2931                         ir_mode *mode;
2932                         if(is_type_scalar(return_type)) {
2933                                 mode = get_ir_mode(func_type->return_type);
2934                         } else {
2935                                 mode = mode_P_data;
2936                         }
2937
2938                         ir_node *in[1];
2939                         // ยง5.1.2.2.3 main implicitly returns 0
2940                         if (strcmp(declaration->symbol->string, "main") == 0) {
2941                                 in[0] = new_Const(mode, get_mode_null(mode));
2942                         } else {
2943                                 in[0] = new_Unknown(mode);
2944                         }
2945                         ret = new_Return(get_store(), 1, in);
2946                 }
2947                 add_immBlock_pred(end_block, ret);
2948         }
2949
2950         for(int i = 0; i < ARR_LEN(imature_blocks); ++i) {
2951                 mature_immBlock(imature_blocks[i]);
2952         }
2953         DEL_ARR_F(imature_blocks);
2954         imature_blocks = NULL;
2955
2956         mature_immBlock(first_block);
2957         mature_immBlock(end_block);
2958
2959         irg_finalize_cons(irg);
2960
2961         /* finalize the frame type */
2962         ir_type *frame_type = get_irg_frame_type(irg);
2963         int      n          = get_compound_n_members(frame_type);
2964         int      align_all  = 4;
2965         int      offset     = 0;
2966         for(int i = 0; i < n; ++i) {
2967                 ir_entity *entity      = get_compound_member(frame_type, i);
2968                 ir_type   *entity_type = get_entity_type(entity);
2969
2970                 int align = get_type_alignment_bytes(entity_type);
2971                 if(align > align_all)
2972                         align_all = align;
2973                 int misalign = 0;
2974                 if(align > 0) {
2975                         misalign  = offset % align;
2976                         if(misalign > 0) {
2977                                 offset += align - misalign;
2978                         }
2979                 }
2980
2981                 set_entity_offset(entity, offset);
2982                 offset += get_type_size_bytes(entity_type);
2983         }
2984         set_type_size_bytes(frame_type, offset);
2985         set_type_alignment_bytes(frame_type, align_all);
2986         set_type_state(frame_type, layout_fixed);
2987
2988         irg_vrfy(irg);
2989 }
2990
2991 static void create_global_variable(declaration_t *declaration)
2992 {
2993         ir_visibility  vis;
2994         ir_type       *var_type;
2995         switch ((storage_class_tag_t)declaration->storage_class) {
2996                 case STORAGE_CLASS_STATIC:
2997                         vis = visibility_local;
2998                         goto global_var;
2999
3000                 case STORAGE_CLASS_EXTERN:
3001                         vis = visibility_external_allocated;
3002                         goto global_var;
3003
3004                 case STORAGE_CLASS_NONE:
3005                         vis = visibility_external_visible;
3006                         goto global_var;
3007
3008                 case STORAGE_CLASS_THREAD:
3009                         vis = visibility_external_visible;
3010                         goto tls_var;
3011
3012                 case STORAGE_CLASS_THREAD_EXTERN:
3013                         vis = visibility_external_allocated;
3014                         goto tls_var;
3015
3016                 case STORAGE_CLASS_THREAD_STATIC:
3017                         vis = visibility_local;
3018                         goto tls_var;
3019
3020 tls_var:
3021                         var_type = get_tls_type();
3022                         goto create_var;
3023
3024 global_var:
3025                         var_type = get_glob_type();
3026                         goto create_var;
3027
3028 create_var:
3029                         create_declaration_entity(declaration, DECLARATION_TYPE_GLOBAL_VARIABLE,
3030                                                   var_type);
3031                         set_entity_visibility(declaration->v.entity, vis);
3032
3033                         current_ir_graph = get_const_code_irg();
3034                         create_initializer(declaration);
3035                         return;
3036
3037                 case STORAGE_CLASS_TYPEDEF:
3038                 case STORAGE_CLASS_AUTO:
3039                 case STORAGE_CLASS_REGISTER:
3040                 case STORAGE_CLASS_ENUM_ENTRY:
3041                         break;
3042         }
3043         panic("Invalid storage class for global variable");
3044 }
3045
3046 static void context_to_firm(context_t *context)
3047 {
3048         /* first pass: create declarations */
3049         declaration_t *declaration = context->declarations;
3050         for( ; declaration != NULL; declaration = declaration->next) {
3051                 if(declaration->namespc != NAMESPACE_NORMAL)
3052                         continue;
3053                 if(declaration->storage_class == STORAGE_CLASS_ENUM_ENTRY
3054                                 || declaration->storage_class == STORAGE_CLASS_TYPEDEF)
3055                         continue;
3056                 if(declaration->symbol == NULL)
3057                         continue;
3058
3059                 type_t *type = skip_typeref(declaration->type);
3060                 if(is_type_function(type)) {
3061                         get_function_entity(declaration);
3062                 } else {
3063                         create_global_variable(declaration);
3064                 }
3065         }
3066
3067         /* second pass: create code */
3068         declaration = context->declarations;
3069         for( ; declaration != NULL; declaration = declaration->next) {
3070                 if(declaration->namespc != NAMESPACE_NORMAL)
3071                         continue;
3072                 if(declaration->storage_class == STORAGE_CLASS_ENUM_ENTRY
3073                                 || declaration->storage_class == STORAGE_CLASS_TYPEDEF)
3074                         continue;
3075                 if(declaration->symbol == NULL)
3076                         continue;
3077
3078                 type_t *type = declaration->type;
3079                 if(type->type != TYPE_FUNCTION)
3080                         continue;
3081
3082                 create_function(declaration);
3083         }
3084 }
3085
3086 void translation_unit_to_firm(translation_unit_t *unit)
3087 {
3088         type_const_char = make_atomic_type(ATOMIC_TYPE_CHAR, TYPE_QUALIFIER_CONST);
3089         type_void       = make_atomic_type(ATOMIC_TYPE_VOID, TYPE_QUALIFIER_NONE);
3090         type_int        = make_atomic_type(ATOMIC_TYPE_INT,  TYPE_QUALIFIER_NONE);
3091
3092         ir_type_int        = get_ir_type(type_int);
3093         ir_type_const_char = get_ir_type(type_const_char);
3094         ir_type_wchar_t    = get_ir_type(type_wchar_t);
3095         ir_type_void       = get_ir_type(type_int); /* we don't have a real void
3096                                                        type in firm */
3097
3098         type_void->base.firm_type = ir_type_void;
3099
3100         /* just to be sure */
3101         continue_label      = NULL;
3102         break_label         = NULL;
3103         current_switch_cond = NULL;
3104
3105         context_to_firm(& unit->context);
3106 }