don't emit dead initializers
[cparser] / type.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <assert.h>
24
25 #include "type_t.h"
26 #include "types.h"
27 #include "entity_t.h"
28 #include "symbol_t.h"
29 #include "type_hash.h"
30 #include "adt/error.h"
31 #include "adt/util.h"
32 #include "lang_features.h"
33
34 static struct obstack   _type_obst;
35 static FILE            *out;
36 struct obstack         *type_obst                 = &_type_obst;
37 static int              type_visited              = 0;
38 static bool             print_implicit_array_size = false;
39
40 static void intern_print_type_pre(const type_t *type);
41 static void intern_print_type_post(const type_t *type);
42
43 typedef struct atomic_type_properties_t atomic_type_properties_t;
44 struct atomic_type_properties_t {
45         unsigned   size;              /**< type size in bytes */
46         unsigned   alignment;         /**< type alignment in bytes */
47         unsigned   flags;             /**< type flags from atomic_type_flag_t */
48 };
49
50 /**
51  * Properties of atomic types.
52  */
53 static atomic_type_properties_t atomic_type_properties[ATOMIC_TYPE_LAST+1] = {
54         //ATOMIC_TYPE_INVALID = 0,
55         [ATOMIC_TYPE_VOID] = {
56                 .size       = 0,
57                 .alignment  = 0,
58                 .flags      = ATOMIC_TYPE_FLAG_NONE
59         },
60         [ATOMIC_TYPE_WCHAR_T] = {
61                 .size       = (unsigned)-1,
62                 .alignment  = (unsigned)-1,
63                 /* signed flag will be set when known */
64                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC,
65         },
66         [ATOMIC_TYPE_CHAR] = {
67                 .size       = 1,
68                 .alignment  = 1,
69                 /* signed flag will be set when known */
70                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC,
71         },
72         [ATOMIC_TYPE_SCHAR] = {
73                 .size       = 1,
74                 .alignment  = 1,
75                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC
76                               | ATOMIC_TYPE_FLAG_SIGNED,
77         },
78         [ATOMIC_TYPE_UCHAR] = {
79                 .size       = 1,
80                 .alignment  = 1,
81                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC,
82         },
83         [ATOMIC_TYPE_SHORT] = {
84                 .size       = 2,
85                 .alignment  = 2,
86                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC
87                               | ATOMIC_TYPE_FLAG_SIGNED
88         },
89         [ATOMIC_TYPE_USHORT] = {
90                 .size       = 2,
91                 .alignment  = 2,
92                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC,
93         },
94         [ATOMIC_TYPE_INT] = {
95                 .size       = (unsigned) -1,
96                 .alignment  = (unsigned) -1,
97                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC
98                               | ATOMIC_TYPE_FLAG_SIGNED,
99         },
100         [ATOMIC_TYPE_UINT] = {
101                 .size       = (unsigned) -1,
102                 .alignment  = (unsigned) -1,
103                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC,
104         },
105         [ATOMIC_TYPE_LONG] = {
106                 .size       = (unsigned) -1,
107                 .alignment  = (unsigned) -1,
108                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC
109                               | ATOMIC_TYPE_FLAG_SIGNED,
110         },
111         [ATOMIC_TYPE_ULONG] = {
112                 .size       = (unsigned) -1,
113                 .alignment  = (unsigned) -1,
114                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC,
115         },
116         [ATOMIC_TYPE_LONGLONG] = {
117                 .size       = (unsigned) -1,
118                 .alignment  = (unsigned) -1,
119                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC
120                               | ATOMIC_TYPE_FLAG_SIGNED,
121         },
122         [ATOMIC_TYPE_ULONGLONG] = {
123                 .size       = (unsigned) -1,
124                 .alignment  = (unsigned) -1,
125                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC,
126         },
127         [ATOMIC_TYPE_BOOL] = {
128                 .size       = (unsigned) -1,
129                 .alignment  = (unsigned) -1,
130                 .flags      = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC,
131         },
132         [ATOMIC_TYPE_FLOAT] = {
133                 .size       = 4,
134                 .alignment  = (unsigned) -1,
135                 .flags      = ATOMIC_TYPE_FLAG_FLOAT | ATOMIC_TYPE_FLAG_ARITHMETIC
136                               | ATOMIC_TYPE_FLAG_SIGNED,
137         },
138         [ATOMIC_TYPE_DOUBLE] = {
139                 .size       = 8,
140                 .alignment  = (unsigned) -1,
141                 .flags      = ATOMIC_TYPE_FLAG_FLOAT | ATOMIC_TYPE_FLAG_ARITHMETIC
142                               | ATOMIC_TYPE_FLAG_SIGNED,
143         },
144         [ATOMIC_TYPE_LONG_DOUBLE] = {
145                 .size       = 12,
146                 .alignment  = (unsigned) -1,
147                 .flags      = ATOMIC_TYPE_FLAG_FLOAT | ATOMIC_TYPE_FLAG_ARITHMETIC
148                               | ATOMIC_TYPE_FLAG_SIGNED,
149         },
150         /* complex and imaginary types are set in init_types */
151 };
152
153 void init_types(void)
154 {
155         obstack_init(type_obst);
156
157         atomic_type_properties_t *props = atomic_type_properties;
158
159         if (char_is_signed) {
160                 props[ATOMIC_TYPE_CHAR].flags |= ATOMIC_TYPE_FLAG_SIGNED;
161         }
162
163         unsigned int_size   = machine_size < 32 ? 2 : 4;
164         unsigned long_size  = machine_size < 64 ? 4 : 8;
165         unsigned llong_size = machine_size < 32 ? 4 : 8;
166
167         props[ATOMIC_TYPE_INT].size            = int_size;
168         props[ATOMIC_TYPE_INT].alignment       = int_size;
169         props[ATOMIC_TYPE_UINT].size           = int_size;
170         props[ATOMIC_TYPE_UINT].alignment      = int_size;
171         props[ATOMIC_TYPE_LONG].size           = long_size;
172         props[ATOMIC_TYPE_LONG].alignment      = long_size;
173         props[ATOMIC_TYPE_ULONG].size          = long_size;
174         props[ATOMIC_TYPE_ULONG].alignment     = long_size;
175         props[ATOMIC_TYPE_LONGLONG].size       = llong_size;
176         props[ATOMIC_TYPE_LONGLONG].alignment  = llong_size;
177         props[ATOMIC_TYPE_ULONGLONG].size      = llong_size;
178         props[ATOMIC_TYPE_ULONGLONG].alignment = llong_size;
179
180         /* TODO: backend specific, need a way to query the backend for this.
181          * The following are good settings for x86 */
182         props[ATOMIC_TYPE_FLOAT].alignment       = 4;
183         props[ATOMIC_TYPE_DOUBLE].alignment      = 4;
184         props[ATOMIC_TYPE_LONG_DOUBLE].alignment = 4;
185         props[ATOMIC_TYPE_LONGLONG].alignment    = 4;
186         props[ATOMIC_TYPE_ULONGLONG].alignment   = 4;
187
188         /* TODO: make this configurable for platforms which do not use byte sized
189          * bools. */
190         props[ATOMIC_TYPE_BOOL] = props[ATOMIC_TYPE_UCHAR];
191
192         props[ATOMIC_TYPE_WCHAR_T] = props[wchar_atomic_kind];
193 }
194
195 void exit_types(void)
196 {
197         obstack_free(type_obst, NULL);
198 }
199
200 void type_set_output(FILE *stream)
201 {
202         out = stream;
203 }
204
205 void inc_type_visited(void)
206 {
207         type_visited++;
208 }
209
210 void print_type_qualifiers(type_qualifiers_t qualifiers)
211 {
212         int first = 1;
213         if (qualifiers & TYPE_QUALIFIER_CONST) {
214                 fputs(" const" + first,    out);
215                 first = 0;
216         }
217         if (qualifiers & TYPE_QUALIFIER_VOLATILE) {
218                 fputs(" volatile" + first, out);
219                 first = 0;
220         }
221         if (qualifiers & TYPE_QUALIFIER_RESTRICT) {
222                 fputs(" restrict" + first, out);
223                 first = 0;
224         }
225 }
226
227 const char *get_atomic_kind_name(atomic_type_kind_t kind)
228 {
229         switch(kind) {
230         case ATOMIC_TYPE_INVALID: break;
231         case ATOMIC_TYPE_VOID:        return "void";
232         case ATOMIC_TYPE_WCHAR_T:     return "wchar_t";
233         case ATOMIC_TYPE_BOOL:        return c_mode & _CXX ? "bool" : "_Bool";
234         case ATOMIC_TYPE_CHAR:        return "char";
235         case ATOMIC_TYPE_SCHAR:       return "signed char";
236         case ATOMIC_TYPE_UCHAR:       return "unsigned char";
237         case ATOMIC_TYPE_INT:         return "int";
238         case ATOMIC_TYPE_UINT:        return "unsigned int";
239         case ATOMIC_TYPE_SHORT:       return "short";
240         case ATOMIC_TYPE_USHORT:      return "unsigned short";
241         case ATOMIC_TYPE_LONG:        return "long";
242         case ATOMIC_TYPE_ULONG:       return "unsigned long";
243         case ATOMIC_TYPE_LONGLONG:    return "long long";
244         case ATOMIC_TYPE_ULONGLONG:   return "unsigned long long";
245         case ATOMIC_TYPE_LONG_DOUBLE: return "long double";
246         case ATOMIC_TYPE_FLOAT:       return "float";
247         case ATOMIC_TYPE_DOUBLE:      return "double";
248         }
249         return "INVALIDATOMIC";
250 }
251
252 /**
253  * Prints the name of an atomic type kinds.
254  *
255  * @param kind  The type kind.
256  */
257 static void print_atomic_kinds(atomic_type_kind_t kind)
258 {
259         const char *s = get_atomic_kind_name(kind);
260         fputs(s, out);
261 }
262
263 /**
264  * Prints the name of an atomic type.
265  *
266  * @param type  The type.
267  */
268 static void print_atomic_type(const atomic_type_t *type)
269 {
270         print_type_qualifiers(type->base.qualifiers);
271         if (type->base.qualifiers != 0)
272                 fputc(' ', out);
273         print_atomic_kinds(type->akind);
274 }
275
276 /**
277  * Prints the name of a complex type.
278  *
279  * @param type  The type.
280  */
281 static
282 void print_complex_type(const complex_type_t *type)
283 {
284         int empty = type->base.qualifiers == 0;
285         print_type_qualifiers(type->base.qualifiers);
286         fputs(" _Complex " + empty, out);
287         print_atomic_kinds(type->akind);
288 }
289
290 /**
291  * Prints the name of an imaginary type.
292  *
293  * @param type  The type.
294  */
295 static
296 void print_imaginary_type(const imaginary_type_t *type)
297 {
298         int empty = type->base.qualifiers == 0;
299         print_type_qualifiers(type->base.qualifiers);
300         fputs(" _Imaginary " + empty, out);
301         print_atomic_kinds(type->akind);
302 }
303
304 /**
305  * Print the first part (the prefix) of a type.
306  *
307  * @param type   The type to print.
308  */
309 static void print_function_type_pre(const function_type_t *type)
310 {
311         switch (type->linkage) {
312                 case LINKAGE_INVALID:
313                         break;
314
315                 case LINKAGE_C:
316                         if (c_mode & _CXX)
317                                 fputs("extern \"C\" ",   out);
318                         break;
319
320                 case LINKAGE_CXX:
321                         if (!(c_mode & _CXX))
322                                 fputs("extern \"C++\" ", out);
323                         break;
324         }
325
326         print_type_qualifiers(type->base.qualifiers);
327         if (type->base.qualifiers != 0)
328                 fputc(' ', out);
329
330         intern_print_type_pre(type->return_type);
331
332         switch (type->calling_convention) {
333         case CC_CDECL:    fputs("__cdecl ",    out); break;
334         case CC_STDCALL:  fputs("__stdcall ",  out); break;
335         case CC_FASTCALL: fputs("__fastcall ", out); break;
336         case CC_THISCALL: fputs("__thiscall ", out); break;
337         case CC_DEFAULT:  break;
338         }
339 }
340
341 /**
342  * Print the second part (the postfix) of a type.
343  *
344  * @param type   The type to print.
345  */
346 static void print_function_type_post(const function_type_t *type,
347                                      const scope_t *parameters)
348 {
349         fputc('(', out);
350         bool first = true;
351         if (parameters == NULL) {
352                 function_parameter_t *parameter = type->parameters;
353                 for( ; parameter != NULL; parameter = parameter->next) {
354                         if (first) {
355                                 first = false;
356                         } else {
357                                 fputs(", ", out);
358                         }
359                         print_type(parameter->type);
360                 }
361         } else {
362                 entity_t *parameter = parameters->entities;
363                 for (; parameter != NULL; parameter = parameter->base.next) {
364                         if (parameter->kind != ENTITY_PARAMETER)
365                                 continue;
366
367                         if (first) {
368                                 first = false;
369                         } else {
370                                 fputs(", ", out);
371                         }
372                         const type_t *const type = parameter->declaration.type;
373                         if (type == NULL) {
374                                 fputs(parameter->base.symbol->string, out);
375                         } else {
376                                 print_type_ext(type, parameter->base.symbol, NULL);
377                         }
378                 }
379         }
380         if (type->variadic) {
381                 if (first) {
382                         first = false;
383                 } else {
384                         fputs(", ", out);
385                 }
386                 fputs("...", out);
387         }
388         if (first && !type->unspecified_parameters) {
389                 fputs("void", out);
390         }
391         fputc(')', out);
392
393         intern_print_type_post(type->return_type);
394 }
395
396 /**
397  * Prints the prefix part of a pointer type.
398  *
399  * @param type   The pointer type.
400  */
401 static void print_pointer_type_pre(const pointer_type_t *type)
402 {
403         type_t const *const points_to = type->points_to;
404         intern_print_type_pre(points_to);
405         if (points_to->kind == TYPE_ARRAY || points_to->kind == TYPE_FUNCTION)
406                 fputs(" (", out);
407         variable_t *const variable = type->base_variable;
408         if (variable != NULL) {
409                 fputs(" __based(", out);
410                 fputs(variable->base.base.symbol->string, out);
411                 fputs(") ", out);
412         }
413         fputc('*', out);
414         type_qualifiers_t const qual = type->base.qualifiers;
415         if (qual != 0)
416                 fputc(' ', out);
417         print_type_qualifiers(qual);
418 }
419
420 /**
421  * Prints the postfix part of a pointer type.
422  *
423  * @param type   The pointer type.
424  */
425 static void print_pointer_type_post(const pointer_type_t *type)
426 {
427         type_t const *const points_to = type->points_to;
428         if (points_to->kind == TYPE_ARRAY || points_to->kind == TYPE_FUNCTION)
429                 fputc(')', out);
430         intern_print_type_post(points_to);
431 }
432
433 /**
434  * Prints the prefix part of a reference type.
435  *
436  * @param type   The reference type.
437  */
438 static void print_reference_type_pre(const reference_type_t *type)
439 {
440         type_t const *const refers_to = type->refers_to;
441         intern_print_type_pre(refers_to);
442         if (refers_to->kind == TYPE_ARRAY || refers_to->kind == TYPE_FUNCTION)
443                 fputs(" (", out);
444         fputc('&', out);
445 }
446
447 /**
448  * Prints the postfix part of a reference type.
449  *
450  * @param type   The reference type.
451  */
452 static void print_reference_type_post(const reference_type_t *type)
453 {
454         type_t const *const refers_to = type->refers_to;
455         if (refers_to->kind == TYPE_ARRAY || refers_to->kind == TYPE_FUNCTION)
456                 fputc(')', out);
457         intern_print_type_post(refers_to);
458 }
459
460 /**
461  * Prints the prefix part of an array type.
462  *
463  * @param type   The array type.
464  */
465 static void print_array_type_pre(const array_type_t *type)
466 {
467         intern_print_type_pre(type->element_type);
468 }
469
470 /**
471  * Prints the postfix part of an array type.
472  *
473  * @param type   The array type.
474  */
475 static void print_array_type_post(const array_type_t *type)
476 {
477         fputc('[', out);
478         if (type->is_static) {
479                 fputs("static ", out);
480         }
481         print_type_qualifiers(type->base.qualifiers);
482         if (type->base.qualifiers != 0)
483                 fputc(' ', out);
484         if (type->size_expression != NULL
485                         && (print_implicit_array_size || !type->has_implicit_size)) {
486                 print_expression(type->size_expression);
487         }
488         fputc(']', out);
489         intern_print_type_post(type->element_type);
490 }
491
492 /**
493  * Prints the postfix part of a bitfield type.
494  *
495  * @param type   The array type.
496  */
497 static void print_bitfield_type_post(const bitfield_type_t *type)
498 {
499         fputs(" : ", out);
500         print_expression(type->size_expression);
501         intern_print_type_post(type->base_type);
502 }
503
504 /**
505  * Prints an enum definition.
506  *
507  * @param declaration  The enum's type declaration.
508  */
509 void print_enum_definition(const enum_t *enume)
510 {
511         fputs("{\n", out);
512
513         change_indent(1);
514
515         entity_t *entry = enume->base.next;
516         for( ; entry != NULL && entry->kind == ENTITY_ENUM_VALUE;
517                entry = entry->base.next) {
518
519                 print_indent();
520                 fputs(entry->base.symbol->string, out);
521                 if (entry->enum_value.value != NULL) {
522                         fputs(" = ", out);
523
524                         /* skip the implicit cast */
525                         expression_t *expression = entry->enum_value.value;
526                         if (expression->kind == EXPR_UNARY_CAST_IMPLICIT) {
527                                 expression = expression->unary.value;
528                         }
529                         print_expression(expression);
530                 }
531                 fputs(",\n", out);
532         }
533
534         change_indent(-1);
535         print_indent();
536         fputc('}', out);
537 }
538
539 /**
540  * Prints an enum type.
541  *
542  * @param type  The enum type.
543  */
544 static void print_type_enum(const enum_type_t *type)
545 {
546         int empty = type->base.qualifiers == 0;
547         print_type_qualifiers(type->base.qualifiers);
548         fputs(" enum " + empty, out);
549
550         enum_t   *enume  = type->enume;
551         symbol_t *symbol = enume->base.symbol;
552         if (symbol != NULL) {
553                 fputs(symbol->string, out);
554         } else {
555                 print_enum_definition(enume);
556         }
557 }
558
559 /**
560  * Print the compound part of a compound type.
561  */
562 void print_compound_definition(const compound_t *compound)
563 {
564         fputs("{\n", out);
565         change_indent(1);
566
567         entity_t *entity = compound->members.entities;
568         for( ; entity != NULL; entity = entity->base.next) {
569                 if (entity->kind != ENTITY_COMPOUND_MEMBER)
570                         continue;
571
572                 print_indent();
573                 print_entity(entity);
574                 fputc('\n', out);
575         }
576
577         change_indent(-1);
578         print_indent();
579         fputc('}', out);
580         if (compound->modifiers & DM_TRANSPARENT_UNION) {
581                 fputs("__attribute__((__transparent_union__))", out);
582         }
583 }
584
585 /**
586  * Prints a compound type.
587  *
588  * @param type  The compound type.
589  */
590 static void print_compound_type(const compound_type_t *type)
591 {
592         int empty = type->base.qualifiers == 0;
593         print_type_qualifiers(type->base.qualifiers);
594
595         if (type->base.kind == TYPE_COMPOUND_STRUCT) {
596                 fputs(" struct " + empty, out);
597         } else {
598                 assert(type->base.kind == TYPE_COMPOUND_UNION);
599                 fputs(" union " + empty, out);
600         }
601
602         compound_t *compound = type->compound;
603         symbol_t   *symbol   = compound->base.symbol;
604         if (symbol != NULL) {
605                 fputs(symbol->string, out);
606         } else {
607                 print_compound_definition(compound);
608         }
609 }
610
611 /**
612  * Prints the prefix part of a typedef type.
613  *
614  * @param type   The typedef type.
615  */
616 static void print_typedef_type_pre(const typedef_type_t *const type)
617 {
618         print_type_qualifiers(type->base.qualifiers);
619         if (type->base.qualifiers != 0)
620                 fputc(' ', out);
621         fputs(type->typedefe->base.symbol->string, out);
622 }
623
624 /**
625  * Prints the prefix part of a typeof type.
626  *
627  * @param type   The typeof type.
628  */
629 static void print_typeof_type_pre(const typeof_type_t *const type)
630 {
631         fputs("typeof(", out);
632         if (type->expression != NULL) {
633                 print_expression(type->expression);
634         } else {
635                 print_type(type->typeof_type);
636         }
637         fputc(')', out);
638 }
639
640 /**
641  * Prints the prefix part of a type.
642  *
643  * @param type   The type.
644  */
645 static void intern_print_type_pre(const type_t *const type)
646 {
647         switch(type->kind) {
648         case TYPE_ERROR:
649                 fputs("<error>", out);
650                 return;
651         case TYPE_INVALID:
652                 fputs("<invalid>", out);
653                 return;
654         case TYPE_ENUM:
655                 print_type_enum(&type->enumt);
656                 return;
657         case TYPE_ATOMIC:
658                 print_atomic_type(&type->atomic);
659                 return;
660         case TYPE_COMPLEX:
661                 print_complex_type(&type->complex);
662                 return;
663         case TYPE_IMAGINARY:
664                 print_imaginary_type(&type->imaginary);
665                 return;
666         case TYPE_COMPOUND_STRUCT:
667         case TYPE_COMPOUND_UNION:
668                 print_compound_type(&type->compound);
669                 return;
670         case TYPE_BUILTIN:
671                 fputs(type->builtin.symbol->string, out);
672                 return;
673         case TYPE_FUNCTION:
674                 print_function_type_pre(&type->function);
675                 return;
676         case TYPE_POINTER:
677                 print_pointer_type_pre(&type->pointer);
678                 return;
679         case TYPE_REFERENCE:
680                 print_reference_type_pre(&type->reference);
681                 return;
682         case TYPE_BITFIELD:
683                 intern_print_type_pre(type->bitfield.base_type);
684                 return;
685         case TYPE_ARRAY:
686                 print_array_type_pre(&type->array);
687                 return;
688         case TYPE_TYPEDEF:
689                 print_typedef_type_pre(&type->typedeft);
690                 return;
691         case TYPE_TYPEOF:
692                 print_typeof_type_pre(&type->typeoft);
693                 return;
694         }
695         fputs("unknown", out);
696 }
697
698 /**
699  * Prints the postfix part of a type.
700  *
701  * @param type   The type.
702  */
703 static void intern_print_type_post(const type_t *const type)
704 {
705         switch(type->kind) {
706         case TYPE_FUNCTION:
707                 print_function_type_post(&type->function, NULL);
708                 return;
709         case TYPE_POINTER:
710                 print_pointer_type_post(&type->pointer);
711                 return;
712         case TYPE_REFERENCE:
713                 print_reference_type_post(&type->reference);
714                 return;
715         case TYPE_ARRAY:
716                 print_array_type_post(&type->array);
717                 return;
718         case TYPE_BITFIELD:
719                 print_bitfield_type_post(&type->bitfield);
720                 return;
721         case TYPE_ERROR:
722         case TYPE_INVALID:
723         case TYPE_ATOMIC:
724         case TYPE_COMPLEX:
725         case TYPE_IMAGINARY:
726         case TYPE_ENUM:
727         case TYPE_COMPOUND_STRUCT:
728         case TYPE_COMPOUND_UNION:
729         case TYPE_BUILTIN:
730         case TYPE_TYPEOF:
731         case TYPE_TYPEDEF:
732                 break;
733         }
734
735         if (type->base.modifiers & DM_TRANSPARENT_UNION) {
736                 fputs("__attribute__((__transparent_union__))", out);
737         }
738 }
739
740 /**
741  * Prints a type.
742  *
743  * @param type   The type.
744  */
745 void print_type(const type_t *const type)
746 {
747         print_type_ext(type, NULL, NULL);
748 }
749
750 void print_type_ext(const type_t *const type, const symbol_t *symbol,
751                     const scope_t *parameters)
752 {
753         if (type == NULL) {
754                 fputs("nil type", out);
755                 return;
756         }
757
758         intern_print_type_pre(type);
759         if (symbol != NULL) {
760                 fputc(' ', out);
761                 fputs(symbol->string, out);
762         }
763         if (type->kind == TYPE_FUNCTION) {
764                 print_function_type_post(&type->function, parameters);
765         } else {
766                 intern_print_type_post(type);
767         }
768 }
769
770 /**
771  * Return the size of a type AST node.
772  *
773  * @param type  The type.
774  */
775 static size_t get_type_size(const type_t *type)
776 {
777         switch(type->kind) {
778         case TYPE_ATOMIC:          return sizeof(atomic_type_t);
779         case TYPE_COMPLEX:         return sizeof(complex_type_t);
780         case TYPE_IMAGINARY:       return sizeof(imaginary_type_t);
781         case TYPE_COMPOUND_STRUCT:
782         case TYPE_COMPOUND_UNION:  return sizeof(compound_type_t);
783         case TYPE_ENUM:            return sizeof(enum_type_t);
784         case TYPE_FUNCTION:        return sizeof(function_type_t);
785         case TYPE_POINTER:         return sizeof(pointer_type_t);
786         case TYPE_REFERENCE:       return sizeof(reference_type_t);
787         case TYPE_ARRAY:           return sizeof(array_type_t);
788         case TYPE_BUILTIN:         return sizeof(builtin_type_t);
789         case TYPE_TYPEDEF:         return sizeof(typedef_type_t);
790         case TYPE_TYPEOF:          return sizeof(typeof_type_t);
791         case TYPE_BITFIELD:        return sizeof(bitfield_type_t);
792         case TYPE_ERROR:           panic("error type found");
793         case TYPE_INVALID:         panic("invalid type found");
794         }
795         panic("unknown type found");
796 }
797
798 /**
799  * Duplicates a type.
800  *
801  * @param type  The type to copy.
802  * @return A copy of the type.
803  *
804  * @note This does not produce a deep copy!
805  */
806 type_t *duplicate_type(const type_t *type)
807 {
808         size_t size = get_type_size(type);
809
810         type_t *copy = obstack_alloc(type_obst, size);
811         memcpy(copy, type, size);
812         copy->base.firm_type = NULL;
813
814         return copy;
815 }
816
817 /**
818  * Returns the unqualified type of a given type.
819  *
820  * @param type  The type.
821  * @returns The unqualified type.
822  */
823 type_t *get_unqualified_type(type_t *type)
824 {
825         assert(!is_typeref(type));
826
827         if (type->base.qualifiers == TYPE_QUALIFIER_NONE)
828                 return type;
829
830         type_t *unqualified_type          = duplicate_type(type);
831         unqualified_type->base.qualifiers = TYPE_QUALIFIER_NONE;
832
833         return identify_new_type(unqualified_type);
834 }
835
836 type_t *get_qualified_type(type_t *orig_type, type_qualifiers_t const qual)
837 {
838         type_t *type = skip_typeref(orig_type);
839
840         type_t *copy;
841         if (is_type_array(type)) {
842                 /* For array types the element type has to be adjusted */
843                 type_t *element_type      = type->array.element_type;
844                 type_t *qual_element_type = get_qualified_type(element_type, qual);
845
846                 if (qual_element_type == element_type)
847                         return orig_type;
848
849                 copy                     = duplicate_type(type);
850                 copy->array.element_type = qual_element_type;
851         } else if (is_type_valid(type)) {
852                 if ((type->base.qualifiers & qual) == qual)
853                         return orig_type;
854
855                 copy                   = duplicate_type(type);
856                 copy->base.qualifiers |= qual;
857         } else {
858                 return type;
859         }
860
861         return identify_new_type(copy);
862 }
863
864 /**
865  * Check if a type is valid.
866  *
867  * @param type  The type to check.
868  * @return true if type represents a valid type.
869  */
870 bool type_valid(const type_t *type)
871 {
872         return type->kind != TYPE_INVALID;
873 }
874
875 static bool test_atomic_type_flag(atomic_type_kind_t kind,
876                                   atomic_type_flag_t flag)
877 {
878         assert(kind <= ATOMIC_TYPE_LAST);
879         return (atomic_type_properties[kind].flags & flag) != 0;
880 }
881
882 /**
883  * Returns true if the given type is an integer type.
884  *
885  * @param type  The type to check.
886  * @return True if type is an integer type.
887  */
888 bool is_type_integer(const type_t *type)
889 {
890         assert(!is_typeref(type));
891
892         if (type->kind == TYPE_ENUM)
893                 return true;
894         if (type->kind == TYPE_BITFIELD)
895                 return true;
896
897         if (type->kind != TYPE_ATOMIC)
898                 return false;
899
900         return test_atomic_type_flag(type->atomic.akind, ATOMIC_TYPE_FLAG_INTEGER);
901 }
902
903 /**
904  * Returns true if the given type is an enum type.
905  *
906  * @param type  The type to check.
907  * @return True if type is an enum type.
908  */
909 bool is_type_enum(const type_t *type)
910 {
911         assert(!is_typeref(type));
912         return type->kind == TYPE_ENUM;
913 }
914
915 /**
916  * Returns true if the given type is an floating point type.
917  *
918  * @param type  The type to check.
919  * @return True if type is a floating point type.
920  */
921 bool is_type_float(const type_t *type)
922 {
923         assert(!is_typeref(type));
924
925         if (type->kind != TYPE_ATOMIC)
926                 return false;
927
928         return test_atomic_type_flag(type->atomic.akind, ATOMIC_TYPE_FLAG_FLOAT);
929 }
930
931 /**
932  * Returns true if the given type is an complex type.
933  *
934  * @param type  The type to check.
935  * @return True if type is a complex type.
936  */
937 bool is_type_complex(const type_t *type)
938 {
939         assert(!is_typeref(type));
940
941         if (type->kind != TYPE_ATOMIC)
942                 return false;
943
944         return test_atomic_type_flag(type->atomic.akind, ATOMIC_TYPE_FLAG_COMPLEX);
945 }
946
947 /**
948  * Returns true if the given type is a signed type.
949  *
950  * @param type  The type to check.
951  * @return True if type is a signed type.
952  */
953 bool is_type_signed(const type_t *type)
954 {
955         assert(!is_typeref(type));
956
957         /* enum types are int for now */
958         if (type->kind == TYPE_ENUM)
959                 return true;
960         if (type->kind == TYPE_BITFIELD)
961                 return is_type_signed(type->bitfield.base_type);
962
963         if (type->kind != TYPE_ATOMIC)
964                 return false;
965
966         return test_atomic_type_flag(type->atomic.akind, ATOMIC_TYPE_FLAG_SIGNED);
967 }
968
969 /**
970  * Returns true if the given type represents an arithmetic type.
971  *
972  * @param type  The type to check.
973  * @return True if type represents an arithmetic type.
974  */
975 bool is_type_arithmetic(const type_t *type)
976 {
977         assert(!is_typeref(type));
978
979         switch(type->kind) {
980         case TYPE_BITFIELD:
981         case TYPE_ENUM:
982                 return true;
983         case TYPE_ATOMIC:
984                 return test_atomic_type_flag(type->atomic.akind, ATOMIC_TYPE_FLAG_ARITHMETIC);
985         case TYPE_COMPLEX:
986                 return test_atomic_type_flag(type->complex.akind, ATOMIC_TYPE_FLAG_ARITHMETIC);
987         case TYPE_IMAGINARY:
988                 return test_atomic_type_flag(type->imaginary.akind, ATOMIC_TYPE_FLAG_ARITHMETIC);
989         default:
990                 return false;
991         }
992 }
993
994 /**
995  * Returns true if the given type is an integer or float type.
996  *
997  * @param type  The type to check.
998  * @return True if type is an integer or float type.
999  */
1000 bool is_type_real(const type_t *type)
1001 {
1002         /* 6.2.5 (17) */
1003         return is_type_integer(type) || is_type_float(type);
1004 }
1005
1006 /**
1007  * Returns true if the given type represents a scalar type.
1008  *
1009  * @param type  The type to check.
1010  * @return True if type represents a scalar type.
1011  */
1012 bool is_type_scalar(const type_t *type)
1013 {
1014         assert(!is_typeref(type));
1015
1016         switch (type->kind) {
1017                 case TYPE_POINTER: return true;
1018                 case TYPE_BUILTIN: return is_type_scalar(type->builtin.real_type);
1019                 default:           break;
1020         }
1021
1022         return is_type_arithmetic(type);
1023 }
1024
1025 /**
1026  * Check if a given type is incomplete.
1027  *
1028  * @param type  The type to check.
1029  * @return True if the given type is incomplete (ie. just forward).
1030  */
1031 bool is_type_incomplete(const type_t *type)
1032 {
1033         assert(!is_typeref(type));
1034
1035         switch(type->kind) {
1036         case TYPE_COMPOUND_STRUCT:
1037         case TYPE_COMPOUND_UNION: {
1038                 const compound_type_t *compound_type = &type->compound;
1039                 return !compound_type->compound->complete;
1040         }
1041         case TYPE_ENUM:
1042                 return false;
1043
1044         case TYPE_ARRAY:
1045                 return type->array.size_expression == NULL
1046                         && !type->array.size_constant;
1047
1048         case TYPE_ATOMIC:
1049                 return type->atomic.akind == ATOMIC_TYPE_VOID;
1050
1051         case TYPE_COMPLEX:
1052                 return type->complex.akind == ATOMIC_TYPE_VOID;
1053
1054         case TYPE_IMAGINARY:
1055                 return type->imaginary.akind == ATOMIC_TYPE_VOID;
1056
1057         case TYPE_BITFIELD:
1058         case TYPE_FUNCTION:
1059         case TYPE_POINTER:
1060         case TYPE_REFERENCE:
1061         case TYPE_BUILTIN:
1062         case TYPE_ERROR:
1063                 return false;
1064
1065         case TYPE_TYPEDEF:
1066         case TYPE_TYPEOF:
1067                 panic("is_type_incomplete called without typerefs skipped");
1068         case TYPE_INVALID:
1069                 break;
1070         }
1071
1072         panic("invalid type found");
1073 }
1074
1075 bool is_type_object(const type_t *type)
1076 {
1077         return !is_type_function(type) && !is_type_incomplete(type);
1078 }
1079
1080 bool is_builtin_va_list(type_t *type)
1081 {
1082         type_t *tp = skip_typeref(type);
1083
1084         return tp->kind == type_valist->kind &&
1085                tp->builtin.symbol == type_valist->builtin.symbol;
1086 }
1087
1088 /**
1089  * Check if two function types are compatible.
1090  */
1091 static bool function_types_compatible(const function_type_t *func1,
1092                                       const function_type_t *func2)
1093 {
1094         const type_t* const ret1 = skip_typeref(func1->return_type);
1095         const type_t* const ret2 = skip_typeref(func2->return_type);
1096         if (!types_compatible(ret1, ret2))
1097                 return false;
1098
1099         if (func1->linkage != func2->linkage)
1100                 return false;
1101
1102         if (func1->calling_convention != func2->calling_convention)
1103                 return false;
1104
1105         /* can parameters be compared? */
1106         if (func1->unspecified_parameters || func2->unspecified_parameters)
1107                 return true;
1108
1109         if (func1->variadic != func2->variadic)
1110                 return false;
1111
1112         /* TODO: handling of unspecified parameters not correct yet */
1113
1114         /* all argument types must be compatible */
1115         function_parameter_t *parameter1 = func1->parameters;
1116         function_parameter_t *parameter2 = func2->parameters;
1117         for ( ; parameter1 != NULL && parameter2 != NULL;
1118                         parameter1 = parameter1->next, parameter2 = parameter2->next) {
1119                 type_t *parameter1_type = skip_typeref(parameter1->type);
1120                 type_t *parameter2_type = skip_typeref(parameter2->type);
1121
1122                 parameter1_type = get_unqualified_type(parameter1_type);
1123                 parameter2_type = get_unqualified_type(parameter2_type);
1124
1125                 if (!types_compatible(parameter1_type, parameter2_type))
1126                         return false;
1127         }
1128         /* same number of arguments? */
1129         if (parameter1 != NULL || parameter2 != NULL)
1130                 return false;
1131
1132         return true;
1133 }
1134
1135 /**
1136  * Check if two array types are compatible.
1137  */
1138 static bool array_types_compatible(const array_type_t *array1,
1139                                    const array_type_t *array2)
1140 {
1141         type_t *element_type1 = skip_typeref(array1->element_type);
1142         type_t *element_type2 = skip_typeref(array2->element_type);
1143         if (!types_compatible(element_type1, element_type2))
1144                 return false;
1145
1146         if (!array1->size_constant || !array2->size_constant)
1147                 return true;
1148
1149         return array1->size == array2->size;
1150 }
1151
1152 /**
1153  * Check if two types are compatible.
1154  */
1155 bool types_compatible(const type_t *type1, const type_t *type2)
1156 {
1157         assert(!is_typeref(type1));
1158         assert(!is_typeref(type2));
1159
1160         /* shortcut: the same type is always compatible */
1161         if (type1 == type2)
1162                 return true;
1163
1164         if (!is_type_valid(type1) || !is_type_valid(type2))
1165                 return true;
1166
1167         if (type1->base.qualifiers != type2->base.qualifiers)
1168                 return false;
1169         if (type1->kind != type2->kind)
1170                 return false;
1171
1172         switch (type1->kind) {
1173         case TYPE_FUNCTION:
1174                 return function_types_compatible(&type1->function, &type2->function);
1175         case TYPE_ATOMIC:
1176                 return type1->atomic.akind == type2->atomic.akind;
1177         case TYPE_COMPLEX:
1178                 return type1->complex.akind == type2->complex.akind;
1179         case TYPE_IMAGINARY:
1180                 return type1->imaginary.akind == type2->imaginary.akind;
1181         case TYPE_ARRAY:
1182                 return array_types_compatible(&type1->array, &type2->array);
1183
1184         case TYPE_POINTER: {
1185                 const type_t *const to1 = skip_typeref(type1->pointer.points_to);
1186                 const type_t *const to2 = skip_typeref(type2->pointer.points_to);
1187                 return types_compatible(to1, to2);
1188         }
1189
1190         case TYPE_REFERENCE: {
1191                 const type_t *const to1 = skip_typeref(type1->reference.refers_to);
1192                 const type_t *const to2 = skip_typeref(type2->reference.refers_to);
1193                 return types_compatible(to1, to2);
1194         }
1195
1196         case TYPE_COMPOUND_STRUCT:
1197         case TYPE_COMPOUND_UNION:
1198         case TYPE_ENUM:
1199         case TYPE_BUILTIN:
1200                 /* TODO: not implemented */
1201                 break;
1202
1203         case TYPE_BITFIELD:
1204                 /* not sure if this makes sense or is even needed, implement it if you
1205                  * really need it! */
1206                 panic("type compatibility check for bitfield type");
1207
1208         case TYPE_ERROR:
1209                 /* Hmm, the error type should be compatible to all other types */
1210                 return true;
1211         case TYPE_INVALID:
1212                 panic("invalid type found in compatible types");
1213         case TYPE_TYPEDEF:
1214         case TYPE_TYPEOF:
1215                 panic("typerefs not skipped in compatible types?!?");
1216         }
1217
1218         /* TODO: incomplete */
1219         return false;
1220 }
1221
1222 /**
1223  * Skip all typerefs and return the underlying type.
1224  */
1225 type_t *skip_typeref(type_t *type)
1226 {
1227         type_qualifiers_t qualifiers = TYPE_QUALIFIER_NONE;
1228         type_modifiers_t  modifiers  = TYPE_MODIFIER_NONE;
1229         il_alignment_t    alignment  = 0;
1230
1231         while (true) {
1232                 if (alignment < type->base.alignment)
1233                         alignment = type->base.alignment;
1234
1235                 switch (type->kind) {
1236                 case TYPE_ERROR:
1237                         return type;
1238                 case TYPE_TYPEDEF: {
1239                         qualifiers |= type->base.qualifiers;
1240                         modifiers  |= type->base.modifiers;
1241
1242                         const typedef_type_t *typedef_type = &type->typedeft;
1243                         if (typedef_type->resolved_type != NULL) {
1244                                 type = typedef_type->resolved_type;
1245                                 break;
1246                         }
1247                         type = typedef_type->typedefe->type;
1248                         continue;
1249                 }
1250                 case TYPE_TYPEOF:
1251                         qualifiers |= type->base.qualifiers;
1252                         modifiers  |= type->base.modifiers;
1253                         type        = type->typeoft.typeof_type;
1254                         continue;
1255                 default:
1256                         break;
1257                 }
1258                 break;
1259         }
1260
1261         if (qualifiers != TYPE_QUALIFIER_NONE ||
1262                         modifiers  != TYPE_MODIFIER_NONE  ||
1263                         alignment  >  type->base.alignment) {
1264                 type_t *const copy = duplicate_type(type);
1265
1266                 /* for const with typedefed array type the element type has to be
1267                  * adjusted */
1268                 if (is_type_array(copy)) {
1269                         type_t *element_type           = copy->array.element_type;
1270                         element_type                   = duplicate_type(element_type);
1271                         element_type->base.qualifiers |= qualifiers;
1272                         element_type->base.modifiers  |= modifiers;
1273                         element_type->base.alignment   = alignment;
1274                         copy->array.element_type       = element_type;
1275                 } else {
1276                         copy->base.qualifiers |= qualifiers;
1277                         copy->base.modifiers  |= modifiers;
1278                         copy->base.alignment   = alignment;
1279                 }
1280
1281                 type = identify_new_type(copy);
1282         }
1283
1284         return type;
1285 }
1286
1287 type_qualifiers_t get_type_qualifier(const type_t *type, bool skip_array_type)
1288 {
1289         type_qualifiers_t qualifiers = TYPE_QUALIFIER_NONE;
1290
1291         while (true) {
1292                 switch (type->base.kind) {
1293                 case TYPE_ERROR:
1294                         return TYPE_QUALIFIER_NONE;
1295                 case TYPE_TYPEDEF:
1296                         qualifiers |= type->base.qualifiers;
1297                         const typedef_type_t *typedef_type = &type->typedeft;
1298                         if (typedef_type->resolved_type != NULL)
1299                                 type = typedef_type->resolved_type;
1300                         else
1301                                 type = typedef_type->typedefe->type;
1302                         continue;
1303                 case TYPE_TYPEOF:
1304                         type = type->typeoft.typeof_type;
1305                         continue;
1306                 case TYPE_ARRAY:
1307                         if (skip_array_type) {
1308                                 type = type->array.element_type;
1309                                 continue;
1310                         }
1311                         break;
1312                 default:
1313                         break;
1314                 }
1315                 break;
1316         }
1317         return type->base.qualifiers | qualifiers;
1318 }
1319
1320 unsigned get_atomic_type_size(atomic_type_kind_t kind)
1321 {
1322         assert(kind <= ATOMIC_TYPE_LAST);
1323         return atomic_type_properties[kind].size;
1324 }
1325
1326 unsigned get_atomic_type_alignment(atomic_type_kind_t kind)
1327 {
1328         assert(kind <= ATOMIC_TYPE_LAST);
1329         return atomic_type_properties[kind].alignment;
1330 }
1331
1332 unsigned get_atomic_type_flags(atomic_type_kind_t kind)
1333 {
1334         assert(kind <= ATOMIC_TYPE_LAST);
1335         return atomic_type_properties[kind].flags;
1336 }
1337
1338 atomic_type_kind_t get_intptr_kind(void)
1339 {
1340         if (machine_size <= 32)
1341                 return ATOMIC_TYPE_INT;
1342         else if (machine_size <= 64)
1343                 return ATOMIC_TYPE_LONG;
1344         else
1345                 return ATOMIC_TYPE_LONGLONG;
1346 }
1347
1348 atomic_type_kind_t get_uintptr_kind(void)
1349 {
1350         if (machine_size <= 32)
1351                 return ATOMIC_TYPE_UINT;
1352         else if (machine_size <= 64)
1353                 return ATOMIC_TYPE_ULONG;
1354         else
1355                 return ATOMIC_TYPE_ULONGLONG;
1356 }
1357
1358 /**
1359  * Find the atomic type kind representing a given size (signed).
1360  */
1361 atomic_type_kind_t find_signed_int_atomic_type_kind_for_size(unsigned size)
1362 {
1363         static atomic_type_kind_t kinds[32];
1364
1365         assert(size < 32);
1366         atomic_type_kind_t kind = kinds[size];
1367         if (kind == ATOMIC_TYPE_INVALID) {
1368                 static const atomic_type_kind_t possible_kinds[] = {
1369                         ATOMIC_TYPE_SCHAR,
1370                         ATOMIC_TYPE_SHORT,
1371                         ATOMIC_TYPE_INT,
1372                         ATOMIC_TYPE_LONG,
1373                         ATOMIC_TYPE_LONGLONG
1374                 };
1375                 for (size_t i = 0; i < lengthof(possible_kinds); ++i) {
1376                         if (get_atomic_type_size(possible_kinds[i]) == size) {
1377                                 kind = possible_kinds[i];
1378                                 break;
1379                         }
1380                 }
1381                 kinds[size] = kind;
1382         }
1383         return kind;
1384 }
1385
1386 /**
1387  * Find the atomic type kind representing a given size (signed).
1388  */
1389 atomic_type_kind_t find_unsigned_int_atomic_type_kind_for_size(unsigned size)
1390 {
1391         static atomic_type_kind_t kinds[32];
1392
1393         assert(size < 32);
1394         atomic_type_kind_t kind = kinds[size];
1395         if (kind == ATOMIC_TYPE_INVALID) {
1396                 static const atomic_type_kind_t possible_kinds[] = {
1397                         ATOMIC_TYPE_UCHAR,
1398                         ATOMIC_TYPE_USHORT,
1399                         ATOMIC_TYPE_UINT,
1400                         ATOMIC_TYPE_ULONG,
1401                         ATOMIC_TYPE_ULONGLONG
1402                 };
1403                 for (size_t i = 0; i < lengthof(possible_kinds); ++i) {
1404                         if (get_atomic_type_size(possible_kinds[i]) == size) {
1405                                 kind = possible_kinds[i];
1406                                 break;
1407                         }
1408                 }
1409                 kinds[size] = kind;
1410         }
1411         return kind;
1412 }
1413
1414 /**
1415  * Hash the given type and return the "singleton" version
1416  * of it.
1417  */
1418 type_t *identify_new_type(type_t *type)
1419 {
1420         type_t *result = typehash_insert(type);
1421         if (result != type) {
1422                 obstack_free(type_obst, type);
1423         }
1424         return result;
1425 }
1426
1427 /**
1428  * Creates a new atomic type.
1429  *
1430  * @param akind       The kind of the atomic type.
1431  * @param qualifiers  Type qualifiers for the new type.
1432  */
1433 type_t *make_atomic_type(atomic_type_kind_t akind, type_qualifiers_t qualifiers)
1434 {
1435         type_t *type = obstack_alloc(type_obst, sizeof(atomic_type_t));
1436         memset(type, 0, sizeof(atomic_type_t));
1437
1438         type->kind            = TYPE_ATOMIC;
1439         type->base.size       = get_atomic_type_size(akind);
1440         type->base.alignment  = get_atomic_type_alignment(akind);
1441         type->base.qualifiers = qualifiers;
1442         type->atomic.akind    = akind;
1443
1444         return identify_new_type(type);
1445 }
1446
1447 /**
1448  * Creates a new complex type.
1449  *
1450  * @param akind       The kind of the atomic type.
1451  * @param qualifiers  Type qualifiers for the new type.
1452  */
1453 type_t *make_complex_type(atomic_type_kind_t akind, type_qualifiers_t qualifiers)
1454 {
1455         type_t *type = obstack_alloc(type_obst, sizeof(complex_type_t));
1456         memset(type, 0, sizeof(complex_type_t));
1457
1458         type->kind            = TYPE_COMPLEX;
1459         type->base.qualifiers = qualifiers;
1460         type->base.alignment  = get_atomic_type_alignment(akind);
1461         type->complex.akind   = akind;
1462
1463         return identify_new_type(type);
1464 }
1465
1466 /**
1467  * Creates a new imaginary type.
1468  *
1469  * @param akind       The kind of the atomic type.
1470  * @param qualifiers  Type qualifiers for the new type.
1471  */
1472 type_t *make_imaginary_type(atomic_type_kind_t akind, type_qualifiers_t qualifiers)
1473 {
1474         type_t *type = obstack_alloc(type_obst, sizeof(imaginary_type_t));
1475         memset(type, 0, sizeof(imaginary_type_t));
1476
1477         type->kind            = TYPE_IMAGINARY;
1478         type->base.qualifiers = qualifiers;
1479         type->base.alignment  = get_atomic_type_alignment(akind);
1480         type->imaginary.akind = akind;
1481
1482         return identify_new_type(type);
1483 }
1484
1485 /**
1486  * Creates a new pointer type.
1487  *
1488  * @param points_to   The points-to type for the new type.
1489  * @param qualifiers  Type qualifiers for the new type.
1490  */
1491 type_t *make_pointer_type(type_t *points_to, type_qualifiers_t qualifiers)
1492 {
1493         type_t *type = obstack_alloc(type_obst, sizeof(pointer_type_t));
1494         memset(type, 0, sizeof(pointer_type_t));
1495
1496         type->kind                  = TYPE_POINTER;
1497         type->base.qualifiers       = qualifiers;
1498         type->base.alignment        = 0;
1499         type->pointer.points_to     = points_to;
1500         type->pointer.base_variable = NULL;
1501
1502         return identify_new_type(type);
1503 }
1504
1505 /**
1506  * Creates a new reference type.
1507  *
1508  * @param refers_to   The referred-to type for the new type.
1509  */
1510 type_t *make_reference_type(type_t *refers_to)
1511 {
1512         type_t *type = obstack_alloc(type_obst, sizeof(reference_type_t));
1513         memset(type, 0, sizeof(reference_type_t));
1514
1515         type->kind                = TYPE_REFERENCE;
1516         type->base.qualifiers     = 0;
1517         type->base.alignment      = 0;
1518         type->reference.refers_to = refers_to;
1519
1520         return identify_new_type(type);
1521 }
1522
1523 /**
1524  * Creates a new based pointer type.
1525  *
1526  * @param points_to   The points-to type for the new type.
1527  * @param qualifiers  Type qualifiers for the new type.
1528  * @param variable    The based variable
1529  */
1530 type_t *make_based_pointer_type(type_t *points_to,
1531                                                                 type_qualifiers_t qualifiers, variable_t *variable)
1532 {
1533         type_t *type = obstack_alloc(type_obst, sizeof(pointer_type_t));
1534         memset(type, 0, sizeof(pointer_type_t));
1535
1536         type->kind                  = TYPE_POINTER;
1537         type->base.qualifiers       = qualifiers;
1538         type->base.alignment        = 0;
1539         type->pointer.points_to     = points_to;
1540         type->pointer.base_variable = variable;
1541
1542         return identify_new_type(type);
1543 }
1544
1545
1546 type_t *make_array_type(type_t *element_type, size_t size,
1547                         type_qualifiers_t qualifiers)
1548 {
1549         type_t *type = obstack_alloc(type_obst, sizeof(array_type_t));
1550         memset(type, 0, sizeof(array_type_t));
1551
1552         type->kind                = TYPE_ARRAY;
1553         type->base.qualifiers     = qualifiers;
1554         type->base.alignment      = 0;
1555         type->array.element_type  = element_type;
1556         type->array.size          = size;
1557         type->array.size_constant = true;
1558
1559         return identify_new_type(type);
1560 }
1561
1562 /**
1563  * Debug helper. Prints the given type to stdout.
1564  */
1565 static __attribute__((unused))
1566 void dbg_type(const type_t *type)
1567 {
1568         FILE *old_out = out;
1569         out = stderr;
1570         print_type(type);
1571         puts("\n");
1572         fflush(stderr);
1573         out = old_out;
1574 }