- fixed some memory leaks by maturing the generated loops (putting flexible arrays...
[libfirm] / ir / tr / type.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file    type.c
22  * @brief   Representation of types.
23  * @author  Goetz Lindenmaier, Michael Beck
24  * @version $Id$
25  * @summary
26  *
27  *  Implementation of the datastructure to hold
28  *  type information.
29  *
30  *  This module supplies a datastructure to represent all types
31  *  known in the compiled program.  This includes types specified
32  *  in the program as well as types defined by the language.  In the
33  *  view of the intermediate representation there is no difference
34  *  between these types.
35  *
36  *  There exist several kinds of types, arranged by the structure of
37  *  the type.  A type is described by a set of attributes.  Some of
38  *  these attributes are common to all types, others depend on the
39  *  kind of the type.
40  *
41  *  Types are different from the modes defined in irmode:  Types are
42  *  on the level of the programming language, modes at the level of
43  *  the target processor.
44  *
45  * @see  type_t.h type tpop
46  */
47
48 #ifdef HAVE_CONFIG_H
49 # include "config.h"
50 #endif
51
52 #ifdef HAVE_STRING_H
53 # include <string.h>
54 #endif
55 #ifdef HAVE_STDLIB_H
56 # include <stdlib.h>
57 #endif
58
59 #include <stddef.h>
60
61 #include "type_t.h"
62
63 #include "xmalloc.h"
64 #include "irprog_t.h"
65 #include "ircons.h"
66 #include "tpop_t.h"
67 #include "tv_t.h"
68 #include "irhooks.h"
69 #include "irtools.h"
70 #include "entity_t.h"
71
72 #include "array.h"
73
74 /*-----------------------------------------------------------------*/
75 /** TYPE                                                          **/
76 /*-----------------------------------------------------------------*/
77
78 ir_type *firm_none_type;    ir_type *get_none_type(void)    { return firm_none_type;    }
79 ir_type *firm_unknown_type; ir_type *get_unknown_type(void) { return firm_unknown_type; }
80
81
82 /* Suffixes added to types used for pass-by-value representations. */
83 static ident *value_params_suffix = NULL;
84 static ident *value_ress_suffix = NULL;
85
86 /** The default calling convention for method types. */
87 static unsigned default_cc_mask;
88
89 /* return the default calling convention for method types */
90 unsigned get_default_cc_mask(void) {
91         return default_cc_mask;
92 }
93
94 /* Initialize the type module. */
95 void firm_init_type(dbg_info *builtin_db, unsigned def_cc_mask) {
96         default_cc_mask     = def_cc_mask;
97         value_params_suffix = new_id_from_str(VALUE_PARAMS_SUFFIX);
98         value_ress_suffix   = new_id_from_str(VALUE_RESS_SUFFIX);
99
100         /* construct none and unknown type. */
101         firm_none_type    = new_type(tpop_none,    mode_BAD, new_id_from_str("type_none"), builtin_db);
102         set_type_size_bytes(firm_none_type, 0);
103         set_type_state (firm_none_type, layout_fixed);
104         remove_irp_type(firm_none_type);
105
106         firm_unknown_type = new_type(tpop_unknown, mode_ANY, new_id_from_str("type_unknown"), builtin_db);
107         set_type_size_bytes(firm_unknown_type, 0);
108         set_type_state (firm_unknown_type, layout_fixed);
109         remove_irp_type(firm_unknown_type);
110 }
111
112 /** the global type visited flag */
113 unsigned long firm_type_visited;
114
115 void (set_master_type_visited)(unsigned long val) { _set_master_type_visited(val); }
116 unsigned long (get_master_type_visited)(void)     { return _get_master_type_visited(); }
117 void (inc_master_type_visited)(void)              { _inc_master_type_visited(); }
118
119 /*
120  * Creates a new type representation.
121  */
122 ir_type *
123 new_type(tp_op *type_op, ir_mode *mode, ident *name, dbg_info *db) {
124         ir_type *res;
125         int node_size;
126
127         assert(type_op != type_id);
128         assert(!id_contains_char(name, ' ') && "type name should not contain spaces");
129
130         node_size = offsetof(ir_type, attr) +  type_op->attr_size;
131         res = xmalloc(node_size);
132         memset(res, 0, node_size);
133
134         res->kind       = k_type;
135         res->type_op    = type_op;
136         res->mode       = mode;
137         res->name       = name;
138         res->visibility = visibility_external_allocated;
139         res->flags      = tf_none;
140         res->size       = 0;
141         res->align      = 0;
142         res->visit      = 0;
143         res->link       = NULL;
144         res->dbi        = db;
145         res->assoc_type = NULL;
146 #ifdef DEBUG_libfirm
147         res->nr         = get_irp_new_node_nr();
148 #endif /* defined DEBUG_libfirm */
149
150         add_irp_type(res);   /* Remember the new type global. */
151
152         return res;
153 }
154
155 void free_type(ir_type *tp) {
156         const tp_op *op = get_type_tpop(tp);
157
158         if ((get_type_tpop(tp) == tpop_none) || (get_type_tpop(tp) == tpop_unknown))
159                 return;
160         /* Remove from list of all types */
161         remove_irp_type(tp);
162         /* Free the attributes of the type. */
163         free_type_attrs(tp);
164         /* Free entities automatically allocated with the ir_type */
165         if (op->ops.free_auto_entities)
166                 op->ops.free_auto_entities(tp);
167         /* And now the type itself... */
168         tp->kind = k_BAD;
169         free(tp);
170 }
171
172 void free_type_entities(ir_type *tp) {
173         const tp_op *tpop = get_type_tpop(tp);
174
175         if (tpop->ops.free_entities)
176                 tpop->ops.free_entities(tp);
177 }
178
179 void free_type_attrs(ir_type *tp) {
180         const tp_op *tpop = get_type_tpop(tp);
181
182         if (tpop->ops.free_attrs)
183                 tpop->ops.free_attrs(tp);
184 }
185
186 /* set/get the link field */
187 void *(get_type_link)(const ir_type *tp) {
188         return _get_type_link(tp);
189 }
190
191 void (set_type_link)(ir_type *tp, void *l) {
192         _set_type_link(tp, l);
193 }
194
195 const tp_op *(get_type_tpop)(const ir_type *tp) {
196         return _get_type_tpop(tp);
197 }
198
199 ident *(get_type_tpop_nameid)(const ir_type *tp) {
200         return _get_type_tpop_nameid(tp);
201 }
202
203 const char* get_type_tpop_name(const ir_type *tp) {
204         assert(tp && tp->kind == k_type);
205         return get_id_str(tp->type_op->name);
206 }
207
208 tp_opcode (get_type_tpop_code)(const ir_type *tp) {
209         return _get_type_tpop_code(tp);
210 }
211
212 ir_mode *(get_type_mode)(const ir_type *tp) {
213         return _get_type_mode(tp);
214 }
215
216 void set_type_mode(ir_type *tp, ir_mode *mode) {
217         const tp_op *tpop = get_type_tpop(tp);
218
219         if (tpop->ops.set_type_mode)
220                 tpop->ops.set_type_mode(tp, mode);
221         else
222                 assert(0 && "setting a mode is NOT allowed for this type");
223 }
224
225 ident *(get_type_ident)(const ir_type *tp) {
226         return _get_type_ident(tp);
227 }
228
229 void (set_type_ident)(ir_type *tp, ident* id) {
230         _set_type_ident(tp, id);
231 }
232
233 /* Outputs a unique number for this node */
234 long get_type_nr(const ir_type *tp) {
235         assert(tp);
236 #ifdef DEBUG_libfirm
237         return tp->nr;
238 #else
239         return (long)PTR_TO_INT(tp);
240 #endif
241 }
242
243 const char *get_type_name(const ir_type *tp) {
244         assert(tp && tp->kind == k_type);
245         return (get_id_str(tp->name));
246 }
247
248 unsigned (get_type_size_bytes)(const ir_type *tp) {
249         return _get_type_size_bytes(tp);
250 }
251
252 ir_visibility get_type_visibility(const ir_type *tp) {
253 #if 0
254         visibility res =  visibility_local;
255         if (is_compound_type(tp)) {
256
257                 if (is_Array_type(tp)) {
258                         ir_entity *mem = get_array_element_entity(tp);
259                         if (get_entity_visibility(mem) != visibility_local)
260                                 res = visibility_external_visible;
261                 } else {
262                         int i, n_mems = get_compound_n_members(tp);
263                         for (i = 0; i < n_mems; ++i) {
264                                 ir_entity *mem = get_compound_member(tp, i);
265                                 if (get_entity_visibility(mem) != visibility_local)
266                                         res = visibility_external_visible;
267                         }
268                 }
269         }
270         return res;
271 #endif
272         assert(is_type(tp));
273         return tp->visibility;
274 }
275
276 void set_type_visibility(ir_type *tp, ir_visibility v) {
277         assert(is_type(tp));
278 #if 0
279         /* check for correctness */
280         if (v != visibility_external_allocated) {
281                 visibility res =  visibility_local;
282                 if (is_compound_type(tp)) {
283                         if (is_Array_type(tp)) {
284                                 ir_entity *mem = get_array_element_entity(tp);
285                                 if (get_entity_visibility(mem) >  res)
286                                         res = get_entity_visibility(mem);
287                         } else {
288                                 int i, n_mems = get_compound_n_members(tp);
289                                 for (i = 0; i < n_mems; ++i) {
290                                         ir_entity *mem = get_compound_member(tp, i);
291                                         if (get_entity_visibility(mem) > res)
292                                                 res = get_entity_visibility(mem);
293                                 }
294                         }
295                 }
296                 assert(res < v);
297         }
298 #endif
299         tp->visibility = v;
300 }
301
302 void
303 set_type_size_bytes(ir_type *tp, unsigned size) {
304         const tp_op *tpop = get_type_tpop(tp);
305
306         if (tpop->ops.set_type_size)
307                 tpop->ops.set_type_size(tp, size);
308         else
309                 assert(0 && "Cannot set size for this type");
310 }
311
312 unsigned get_type_alignment_bytes(ir_type *tp) {
313         unsigned align = 1;
314
315         if (tp->align > 0)
316                 return tp->align;
317
318         /* alignment NOT set calculate it "on demand" */
319         if (tp->mode)
320                 align = (get_mode_size_bits(tp->mode) + 7) >> 3;
321         else if (is_Array_type(tp))
322                 align = get_type_alignment_bytes(get_array_element_type(tp));
323         else if (is_compound_type(tp)) {
324                 int i, n = get_compound_n_members(tp);
325
326                 align = 0;
327                 for (i = 0; i < n; ++i) {
328                         ir_type  *t = get_entity_type(get_compound_member(tp, i));
329                         unsigned a  = get_type_alignment_bytes(t);
330
331                         if (a > align)
332                                 align = a;
333                 }
334         } else if (is_Method_type(tp)) {
335                 align = 0;
336         }
337
338         /* write back */
339         tp->align = align;
340
341         return align;
342 }
343
344 void
345 set_type_alignment_bytes(ir_type *tp, unsigned align) {
346         assert(tp && tp->kind == k_type);
347         /* Methods don't have an alignment. */
348         if (tp->type_op != type_method) {
349                 tp->align = align;
350         }
351 }
352
353 /* Returns a human readable string for the enum entry. */
354 const char *get_type_state_name(ir_type_state s) {
355 #define X(a)    case a: return #a;
356         switch (s) {
357                 X(layout_undefined);
358                 X(layout_fixed);
359         }
360         return "<unknown>";
361 #undef X
362 }
363
364
365 ir_type_state (get_type_state)(const ir_type *tp) {
366         return _get_type_state(tp);
367 }
368
369 void
370 set_type_state(ir_type *tp, ir_type_state state) {
371         assert(tp && tp->kind == k_type);
372
373         if ((tp->type_op == type_pointer) || (tp->type_op == type_primitive) ||
374                 (tp->type_op == type_method))
375                 return;
376
377         /* Just a correctness check: */
378         if (state == layout_fixed) {
379                 int i;
380                 switch (get_type_tpop_code(tp)) {
381                 case tpo_class:
382                         if (tp != get_glob_type()) {
383                                 int n_mem = get_class_n_members(tp);
384                                 for (i = 0; i < n_mem; i++) {
385                                         assert(get_entity_offset(get_class_member(tp, i)) > -1);
386                                         /* TR ??
387                                         assert(is_Method_type(get_entity_type(get_class_member(tp, i))) ||
388                                         (get_entity_allocation(get_class_member(tp, i)) == allocation_automatic));
389                                         */
390                                 }
391                         }
392                         break;
393                 case tpo_struct:
394                         for (i = 0; i < get_struct_n_members(tp); i++) {
395                                 assert(get_entity_offset(get_struct_member(tp, i)) > -1);
396                                 assert((get_entity_allocation(get_struct_member(tp, i)) == allocation_automatic));
397                         }
398                         break;
399                 case tpo_union:
400                         /* ?? */
401                         break;
402                 case tpo_array:
403                         /* ??
404                            Check order?
405                            Assure that only innermost dimension is dynamic? */
406                         break;
407                 case tpo_enumeration:
408 #ifndef NDEBUG
409                         assert(get_type_mode != NULL);
410                         for (i = get_enumeration_n_enums(tp) - 1; i >= 0; --i) {
411                                 ir_enum_const *ec = get_enumeration_const(tp, i);
412                                 tarval        *tv = get_enumeration_value(ec);
413                                 assert(tv != NULL && tv != tarval_bad);
414                         }
415 #endif
416                         break;
417                 default: break;
418                 } /* switch (tp) */
419         }
420         if (state == layout_fixed)
421                 tp->flags |= tf_layout_fixed;
422         else
423                 tp->flags &= ~tf_layout_fixed;
424 }
425
426 unsigned long (get_type_visited)(const ir_type *tp) {
427         return _get_type_visited(tp);
428 }
429
430 void (set_type_visited)(ir_type *tp, unsigned long num) {
431         _set_type_visited(tp, num);
432 }
433
434 /* Sets visited field in type to type_visited. */
435 void (mark_type_visited)(ir_type *tp) {
436         _mark_type_visited(tp);
437 }
438
439 int (type_visited)(const ir_type *tp) {
440         return _type_visited(tp);
441 }
442
443 int (type_not_visited)(const ir_type *tp) {
444         return _type_not_visited(tp);
445 }
446
447 dbg_info *(get_type_dbg_info)(const ir_type *tp) {
448         return _get_type_dbg_info(tp);
449 }
450
451 void (set_type_dbg_info)(ir_type *tp, dbg_info *db) {
452         _set_type_dbg_info(tp, db);
453 }
454
455 int (is_type)(const void *thing) {
456   return _is_type(thing);
457 }
458
459 /* Checks whether two types are structural equal.*/
460 int equal_type(ir_type *typ1, ir_type *typ2) {
461         ir_entity **m;
462         ir_type **t;
463         int i, j;
464
465         if (typ1 == typ2) return 1;
466
467         if ((get_type_tpop_code(typ1) != get_type_tpop_code(typ2)) ||
468             (get_type_ident(typ1) != get_type_ident(typ2)) ||
469             (get_type_mode(typ1) != get_type_mode(typ2)) ||
470             (get_type_state(typ1) != get_type_state(typ2)))
471                 return 0;
472         if ((get_type_state(typ1) == layout_fixed) &&
473                 (get_type_size_bytes(typ1) != get_type_size_bytes(typ2)))
474                 return 0;
475
476         switch (get_type_tpop_code(typ1)) {
477         case tpo_class:
478                 if (get_class_n_members(typ1) != get_class_n_members(typ2)) return 0;
479                 if (get_class_n_subtypes(typ1) != get_class_n_subtypes(typ2)) return 0;
480                 if (get_class_n_supertypes(typ1) != get_class_n_supertypes(typ2)) return 0;
481                 if (get_class_peculiarity(typ1) != get_class_peculiarity(typ2)) return 0;
482                 /** Compare the members **/
483                 m = alloca(sizeof(ir_entity *) * get_class_n_members(typ1));
484                 memset(m, 0, sizeof(ir_entity *) * get_class_n_members(typ1));
485                 /* First sort the members of typ2 */
486                 for (i = 0; i < get_class_n_members(typ1); i++) {
487                         ir_entity *e1 = get_class_member(typ1, i);
488                         for (j = 0; j < get_class_n_members(typ2); j++) {
489                                 ir_entity *e2 = get_class_member(typ2, j);
490                                 if (get_entity_name(e1) == get_entity_name(e2))
491                                         m[i] = e2;
492                         }
493                 }
494                 for (i = 0; i < get_class_n_members(typ1); i++) {
495                         if (!m[i]  ||  /* Found no counterpart */
496                                 !equal_entity(get_class_member(typ1, i), m[i]))
497                                 return 0;
498                 }
499                 /** Compare the supertypes **/
500                 t = alloca(sizeof(ir_entity *) * get_class_n_supertypes(typ1));
501                 memset(t, 0, sizeof(ir_entity *) * get_class_n_supertypes(typ1));
502                 /* First sort the supertypes of typ2 */
503                 for (i = 0; i < get_class_n_supertypes(typ1); i++) {
504                         ir_type *t1 = get_class_supertype(typ1, i);
505                         for (j = 0; j < get_class_n_supertypes(typ2); j++) {
506                                 ir_type *t2 = get_class_supertype(typ2, j);
507                                 if (get_type_ident(t2) == get_type_ident(t1))
508                                         t[i] = t2;
509                         }
510                 }
511                 for (i = 0; i < get_class_n_supertypes(typ1); i++) {
512                         if (!t[i]  ||  /* Found no counterpart */
513                                 get_class_supertype(typ1, i) != t[i])
514                                 return 0;
515                 }
516                 break;
517
518         case tpo_struct:
519                 if (get_struct_n_members(typ1) != get_struct_n_members(typ2)) return 0;
520                 m = alloca(sizeof(ir_entity *) * get_struct_n_members(typ1));
521                 memset(m, 0, sizeof(ir_entity *) * get_struct_n_members(typ1));
522                 /* First sort the members of lt */
523                 for (i = 0; i < get_struct_n_members(typ1); i++) {
524                         ir_entity *e1 = get_struct_member(typ1, i);
525                         for (j = 0; j < get_struct_n_members(typ2); j++) {
526                                 ir_entity *e2 = get_struct_member(typ2, j);
527                                 if (get_entity_name(e1) == get_entity_name(e2))
528                                         m[i] = e2;
529                         }
530                 }
531                 for (i = 0; i < get_struct_n_members(typ1); i++) {
532                         if (!m[i]  ||  /* Found no counterpart */
533                                 !equal_entity(get_struct_member(typ1, i), m[i]))
534                                 return 0;
535                 }
536                 break;
537
538         case tpo_method: {
539                 int n_param1, n_param2;
540
541                 if (get_method_variadicity(typ1) != get_method_variadicity(typ2)) return 0;
542                 if (get_method_n_ress(typ1)      != get_method_n_ress(typ2)) return 0;
543                 if (get_method_calling_convention(typ1) !=
544                     get_method_calling_convention(typ2)) return 0;
545
546                 if (get_method_variadicity(typ1) == variadicity_non_variadic) {
547                         n_param1 = get_method_n_params(typ1);
548                         n_param2 = get_method_n_params(typ2);
549                 } else {
550                         n_param1 = get_method_first_variadic_param_index(typ1);
551                         n_param2 = get_method_first_variadic_param_index(typ2);
552                 }
553
554                 if (n_param1 != n_param2) return 0;
555
556                 for (i = 0; i < n_param1; i++) {
557                         if (!equal_type(get_method_param_type(typ1, i), get_method_param_type(typ2, i)))
558                                 return 0;
559                 }
560                 for (i = 0; i < get_method_n_ress(typ1); i++) {
561                         if (!equal_type(get_method_res_type(typ1, i), get_method_res_type(typ2, i)))
562                                 return 0;
563                 }
564         } break;
565
566         case tpo_union:
567                 if (get_union_n_members(typ1) != get_union_n_members(typ2)) return 0;
568                 m = alloca(sizeof(ir_entity *) * get_union_n_members(typ1));
569                 memset(m, 0, sizeof(ir_entity *) * get_union_n_members(typ1));
570                 /* First sort the members of lt */
571                 for (i = 0; i < get_union_n_members(typ1); i++) {
572                         ir_entity *e1 = get_union_member(typ1, i);
573                         for (j = 0; j < get_union_n_members(typ2); j++) {
574                                 ir_entity *e2 = get_union_member(typ2, j);
575                                 if (get_entity_name(e1) == get_entity_name(e2))
576                                         m[i] = e2;
577                         }
578                 }
579                 for (i = 0; i < get_union_n_members(typ1); i++) {
580                         if (!m[i]  ||  /* Found no counterpart */
581                                 !equal_entity(get_union_member(typ1, i), m[i]))
582                                 return 0;
583                 }
584                 break;
585
586         case tpo_array:
587                 if (get_array_n_dimensions(typ1) != get_array_n_dimensions(typ2))
588                         return 0;
589                 if (!equal_type(get_array_element_type(typ1), get_array_element_type(typ2)))
590                         return 0;
591                 for(i = 0; i < get_array_n_dimensions(typ1); i++) {
592                         if (get_array_lower_bound(typ1, i) != get_array_lower_bound(typ2, i) ||
593                                 get_array_upper_bound(typ1, i) != get_array_upper_bound(typ2, i))
594                                 return 0;
595                         if (get_array_order(typ1, i) != get_array_order(typ2, i))
596                                 assert(0 && "type compare with different dimension orders not implemented");
597                 }
598                 break;
599
600         case tpo_enumeration:
601                 assert(0 && "enumerations not implemented");
602                 break;
603
604         case tpo_pointer:
605                 if (get_pointer_points_to_type(typ1) != get_pointer_points_to_type(typ2))
606                         return 0;
607                 break;
608
609         case tpo_primitive:
610                 break;
611
612         default: break;
613         }
614         return 1;
615 }
616
617 /* Checks whether two types are structural comparable. */
618 int smaller_type(ir_type *st, ir_type *lt) {
619         ir_entity **m;
620         int i, j, n_st_members;
621
622         if (st == lt) return 1;
623
624         if (get_type_tpop_code(st) != get_type_tpop_code(lt))
625                 return 0;
626
627         switch(get_type_tpop_code(st)) {
628         case tpo_class:
629                 return is_SubClass_of(st, lt);
630
631         case tpo_struct:
632                 n_st_members = get_struct_n_members(st);
633                 if (n_st_members != get_struct_n_members(lt))
634                         return 0;
635
636                 m = alloca(sizeof(ir_entity *) * n_st_members);
637                 memset(m, 0, sizeof(ir_entity *) * n_st_members);
638                 /* First sort the members of lt */
639                 for (i = 0; i < n_st_members; ++i) {
640                         ir_entity *se = get_struct_member(st, i);
641                         int n = get_struct_n_members(lt);
642                         for (j = 0; j < n; ++j) {
643                                 ir_entity *le = get_struct_member(lt, j);
644                                 if (get_entity_name(le) == get_entity_name(se))
645                                         m[i] = le;
646                         }
647                 }
648                 for (i = 0; i < n_st_members; i++) {
649                         if (!m[i]  ||  /* Found no counterpart */
650                             !smaller_type(get_entity_type(get_struct_member(st, i)), get_entity_type(m[i])))
651                                 return 0;
652                 }
653                 break;
654
655         case tpo_method: {
656                 int n_param1, n_param2;
657
658                 /** FIXME: is this still 1? */
659                 if (get_method_variadicity(st) != get_method_variadicity(lt)) return 0;
660                 if (get_method_n_ress(st) != get_method_n_ress(lt)) return 0;
661                 if (get_method_calling_convention(st) !=
662                     get_method_calling_convention(lt)) return 0;
663
664                 if (get_method_variadicity(st) == variadicity_non_variadic) {
665                         n_param1 = get_method_n_params(st);
666                         n_param2 = get_method_n_params(lt);
667                 } else {
668                         n_param1 = get_method_first_variadic_param_index(st);
669                         n_param2 = get_method_first_variadic_param_index(lt);
670                 }
671
672                 if (n_param1 != n_param2) return 0;
673
674                 for (i = 0; i < get_method_n_params(st); i++) {
675                         if (!smaller_type(get_method_param_type(st, i), get_method_param_type(lt, i)))
676                                 return 0;
677                 }
678                 for (i = 0; i < get_method_n_ress(st); i++) {
679                         if (!smaller_type(get_method_res_type(st, i), get_method_res_type(lt, i)))
680                                 return 0;
681                 }
682         } break;
683
684         case tpo_union:
685                 n_st_members = get_union_n_members(st);
686                 if (n_st_members != get_union_n_members(lt)) return 0;
687                 m = alloca(sizeof(ir_entity *) * n_st_members);
688                 memset(m, 0, sizeof(ir_entity *) * n_st_members);
689                 /* First sort the members of lt */
690                 for (i = 0; i < n_st_members; ++i) {
691                         ir_entity *se = get_union_member(st, i);
692                         int n = get_union_n_members(lt);
693                         for (j = 0; j < n; ++j) {
694                                 ir_entity *le = get_union_member(lt, j);
695                                 if (get_entity_name(le) == get_entity_name(se))
696                                         m[i] = le;
697                         }
698                 }
699                 for (i = 0; i < n_st_members; ++i) {
700                         if (!m[i]  ||  /* Found no counterpart */
701                                 !smaller_type(get_entity_type(get_union_member(st, i)), get_entity_type(m[i])))
702                                 return 0;
703                 }
704                 break;
705
706         case tpo_array: {
707                 ir_type *set, *let;  /* small/large elt. ir_type */
708                 if (get_array_n_dimensions(st) != get_array_n_dimensions(lt))
709                         return 0;
710                 set = get_array_element_type(st);
711                 let = get_array_element_type(lt);
712                 if (set != let) {
713                         /* If the element types are different, set must be convertible
714                            to let, and they must have the same size so that address
715                            computations work out.  To have a size the layout must
716                            be fixed. */
717                         if ((get_type_state(set) != layout_fixed) ||
718                             (get_type_state(let) != layout_fixed))
719                                 return 0;
720                         if (!smaller_type(set, let) ||
721                             get_type_size_bytes(set) != get_type_size_bytes(let))
722                                 return 0;
723                 }
724                 for(i = 0; i < get_array_n_dimensions(st); i++) {
725                         if (get_array_lower_bound(lt, i))
726                                 if(get_array_lower_bound(st, i) != get_array_lower_bound(lt, i))
727                                         return 0;
728                                 if (get_array_upper_bound(lt, i))
729                                         if(get_array_upper_bound(st, i) != get_array_upper_bound(lt, i))
730                                                 return 0;
731                 }
732         } break;
733
734         case tpo_enumeration:
735                 assert(0 && "enumerations not implemented");
736                 break;
737
738         case tpo_pointer:
739                 if (!smaller_type(get_pointer_points_to_type(st), get_pointer_points_to_type(lt)))
740                         return 0;
741                 break;
742
743         case tpo_primitive:
744                 if (!smaller_mode(get_type_mode(st), get_type_mode(lt)))
745                         return 0;
746                 break;
747
748         default: break;
749         }
750         return 1;
751 }
752
753 /*-----------------------------------------------------------------*/
754 /* TYPE_CLASS                                                      */
755 /*-----------------------------------------------------------------*/
756
757 /* create a new class ir_type */
758 ir_type *new_d_type_class (ident *name, dbg_info *db) {
759         ir_type *res;
760
761         res = new_type(type_class, NULL, name, db);
762
763         res->attr.ca.members     = NEW_ARR_F (ir_entity *, 0);
764         res->attr.ca.subtypes    = NEW_ARR_F (ir_type *, 0);
765         res->attr.ca.supertypes  = NEW_ARR_F (ir_type *, 0);
766         res->attr.ca.peculiarity = peculiarity_existent;
767         res->attr.ca.type_info   = NULL;
768         res->attr.ca.vtable_size = 0;
769         res->attr.ca.clss_flags  = cf_none;
770         res->attr.ca.dfn         = 0;
771         hook_new_type(res);
772         return res;
773 }
774
775 ir_type *new_type_class (ident *name) {
776         return new_d_type_class (name, NULL);
777 }
778
779 /* free all entities of a class */
780 void free_class_entities(ir_type *clss) {
781         int i;
782         assert(clss && (clss->type_op == type_class));
783         for (i = get_class_n_members(clss) - 1; i >= 0; --i)
784                 free_entity(get_class_member(clss, i));
785         /* do NOT free the type info here. It belongs to another class */
786 }
787
788 void free_class_attrs(ir_type *clss) {
789         assert(clss && (clss->type_op == type_class));
790         DEL_ARR_F(clss->attr.ca.members);
791         DEL_ARR_F(clss->attr.ca.subtypes);
792         DEL_ARR_F(clss->attr.ca.supertypes);
793 }
794
795 /* manipulate private fields of class type  */
796 void add_class_member(ir_type *clss, ir_entity *member) {
797         assert(clss && (clss->type_op == type_class));
798         assert(clss != get_entity_type(member) && "recursive type");
799         ARR_APP1 (ir_entity *, clss->attr.ca.members, member);
800 }
801
802 int (get_class_n_members)(const ir_type *clss) {
803         return _get_class_n_members(clss);
804 }
805
806 int get_class_member_index(const ir_type *clss, ir_entity *mem) {
807         int i, n;
808         assert(clss && (clss->type_op == type_class));
809         for (i = 0, n = get_class_n_members(clss); i < n; ++i)
810                 if (get_class_member(clss, i) == mem)
811                         return i;
812                 return -1;
813 }
814
815 ir_entity *(get_class_member)(const ir_type *clss, int pos) {
816         return _get_class_member(clss, pos);
817 }
818
819 ir_entity *get_class_member_by_name(ir_type *clss, ident *name) {
820         int i, n_mem;
821         assert(clss && (clss->type_op == type_class));
822         n_mem = get_class_n_members(clss);
823         for (i = 0; i < n_mem; ++i) {
824                 ir_entity *mem = get_class_member(clss, i);
825                 if (get_entity_ident(mem) == name) return mem;
826         }
827         return NULL;
828 }
829
830 void set_class_member(ir_type *clss, ir_entity *member, int pos) {
831         assert(clss && (clss->type_op == type_class));
832         assert(pos >= 0 && pos < get_class_n_members(clss));
833         clss->attr.ca.members[pos] = member;
834 }
835
836 void set_class_members(ir_type *clss, ir_entity **members, int arity) {
837         int i;
838         assert(clss && (clss->type_op == type_class));
839         DEL_ARR_F(clss->attr.ca.members);
840         clss->attr.ca.members = NEW_ARR_F(ir_entity *, 0);
841         for (i = 0; i < arity; ++i) {
842                 set_entity_owner(members[i], clss);
843                 ARR_APP1(ir_entity *, clss->attr.ca.members, members[i]);
844         }
845 }
846
847 void remove_class_member(ir_type *clss, ir_entity *member) {
848         int i;
849         assert(clss && (clss->type_op == type_class));
850         for (i = 0; i < (ARR_LEN (clss->attr.ca.members)); i++) {
851                 if (clss->attr.ca.members[i] == member) {
852                         for (; i < (ARR_LEN (clss->attr.ca.members)) - 1; i++)
853                                 clss->attr.ca.members[i] = clss->attr.ca.members[i + 1];
854                         ARR_SETLEN(ir_entity*, clss->attr.ca.members, ARR_LEN(clss->attr.ca.members) - 1);
855                         break;
856                 }
857         }
858 }
859
860 void add_class_subtype(ir_type *clss, ir_type *subtype) {
861         int i;
862         assert(clss && (clss->type_op == type_class));
863         ARR_APP1 (ir_type *, clss->attr.ca.subtypes, subtype);
864         for (i = 0; i < get_class_n_supertypes(subtype); i++)
865                 if (get_class_supertype(subtype, i) == clss)
866                         /* Class already registered */
867                         return;
868                 ARR_APP1(ir_type *, subtype->attr.ca.supertypes, clss);
869 }
870
871 int get_class_n_subtypes(const ir_type *clss) {
872         assert(clss && (clss->type_op == type_class));
873         return (ARR_LEN (clss->attr.ca.subtypes));
874 }
875
876 ir_type *get_class_subtype(ir_type *clss, int pos) {
877         assert(clss && (clss->type_op == type_class));
878         assert(pos >= 0 && pos < get_class_n_subtypes(clss));
879         return clss->attr.ca.subtypes[pos] = skip_tid(clss->attr.ca.subtypes[pos]);
880 }
881
882 int get_class_subtype_index(ir_type *clss, const ir_type *subclass) {
883         int i, n_subtypes = get_class_n_subtypes(clss);
884         assert(is_Class_type(subclass));
885         for (i = 0; i < n_subtypes; ++i) {
886                 if (get_class_subtype(clss, i) == subclass) return i;
887         }
888         return -1;
889 }
890
891 void set_class_subtype(ir_type *clss, ir_type *subtype, int pos) {
892         assert(clss && (clss->type_op == type_class));
893         assert(pos >= 0 && pos < get_class_n_subtypes(clss));
894         clss->attr.ca.subtypes[pos] = subtype;
895 }
896
897 void remove_class_subtype(ir_type *clss, ir_type *subtype) {
898         int i;
899         assert(clss && (clss->type_op == type_class));
900         for (i = 0; i < (ARR_LEN (clss->attr.ca.subtypes)); i++)
901                 if (clss->attr.ca.subtypes[i] == subtype) {
902                         for (; i < (ARR_LEN (clss->attr.ca.subtypes))-1; i++)
903                                 clss->attr.ca.subtypes[i] = clss->attr.ca.subtypes[i+1];
904                         ARR_SETLEN(ir_entity*, clss->attr.ca.subtypes, ARR_LEN(clss->attr.ca.subtypes) - 1);
905                         break;
906                 }
907 }
908
909 void add_class_supertype(ir_type *clss, ir_type *supertype) {
910         int i;
911         assert(clss && (clss->type_op == type_class));
912         assert(supertype && (supertype -> type_op == type_class));
913         ARR_APP1 (ir_type *, clss->attr.ca.supertypes, supertype);
914         for (i = get_class_n_subtypes(supertype) - 1; i >= 0; --i)
915                 if (get_class_subtype(supertype, i) == clss)
916                         /* Class already registered */
917                         return;
918         ARR_APP1(ir_type *, supertype->attr.ca.subtypes, clss);
919 }
920
921 int get_class_n_supertypes(const ir_type *clss) {
922         assert(clss && (clss->type_op == type_class));
923         return ARR_LEN(clss->attr.ca.supertypes);
924 }
925
926 int get_class_supertype_index(ir_type *clss, ir_type *super_clss) {
927         int i, n_supertypes = get_class_n_supertypes(clss);
928         assert(super_clss && (super_clss->type_op == type_class));
929         for (i = 0; i < n_supertypes; i++)
930                 if (get_class_supertype(clss, i) == super_clss)
931                         return i;
932                 return -1;
933 }
934
935 ir_type *get_class_supertype(ir_type *clss, int pos) {
936         assert(clss && (clss->type_op == type_class));
937         assert(pos >= 0 && pos < get_class_n_supertypes(clss));
938         return clss->attr.ca.supertypes[pos] = skip_tid(clss->attr.ca.supertypes[pos]);
939 }
940
941 void set_class_supertype(ir_type *clss, ir_type *supertype, int pos) {
942         assert(clss && (clss->type_op == type_class));
943         assert(pos >= 0 && pos < get_class_n_supertypes(clss));
944         clss->attr.ca.supertypes[pos] = supertype;
945 }
946
947 void remove_class_supertype(ir_type *clss, ir_type *supertype) {
948         int i;
949         assert(clss && (clss->type_op == type_class));
950         for (i = 0; i < (ARR_LEN(clss->attr.ca.supertypes)); i++)
951                 if (clss->attr.ca.supertypes[i] == supertype) {
952                         for(; i < (ARR_LEN(clss->attr.ca.supertypes))-1; i++)
953                                 clss->attr.ca.supertypes[i] = clss->attr.ca.supertypes[i+1];
954                         ARR_SETLEN(ir_entity*, clss->attr.ca.supertypes, ARR_LEN(clss->attr.ca.supertypes) - 1);
955                         break;
956                 }
957 }
958
959 ir_entity *get_class_type_info(const ir_type *clss) {
960         return clss->attr.ca.type_info;
961 }
962
963 void set_class_type_info(ir_type *clss, ir_entity *ent) {
964         clss->attr.ca.type_info = ent;
965         if (ent)
966                 ent->repr_class = clss;
967 }
968
969 const char *get_peculiarity_name(ir_peculiarity p) {
970 #define X(a)    case a: return #a
971         switch (p) {
972         X(peculiarity_description);
973         X(peculiarity_inherited);
974         X(peculiarity_existent);
975         }
976 #undef X
977         return "invalid peculiarity";
978 }
979
980 ir_peculiarity get_class_peculiarity(const ir_type *clss) {
981         assert(clss && (clss->type_op == type_class));
982         return clss->attr.ca.peculiarity;
983 }
984
985 void set_class_peculiarity(ir_type *clss, ir_peculiarity pec) {
986         assert(clss && (clss->type_op == type_class));
987         assert(pec != peculiarity_inherited);  /* There is no inheritance of types in libFirm. */
988         clss->attr.ca.peculiarity = pec;
989 }
990
991 /* Returns the size of the virtual function table. */
992 unsigned (get_class_vtable_size)(const ir_type *clss) {
993         return _get_class_vtable_size(clss);
994 }
995
996 /* Sets a new size of the virtual function table. */
997 void (set_class_vtable_size)(ir_type *clss, unsigned size) {
998         _set_class_vtable_size(clss, size);
999 }
1000
1001 /* Returns non-zero if a class is final. */
1002 int (is_class_final)(const ir_type *clss) {
1003         return _is_class_final(clss);
1004 }
1005
1006 /* Sets if a class is final. */
1007 void (set_class_final)(ir_type *clss, int flag) {
1008         _set_class_final(clss, flag);
1009 }
1010
1011 /* Returns non-zero if a class is an interface. */
1012 int (is_class_interface)(const ir_type *clss) {
1013         return _is_class_interface(clss);
1014 }
1015
1016 /* Sets the class interface flag. */
1017 void (set_class_interface)(ir_type *clss, int flag) {
1018         _set_class_interface(clss, flag);
1019 }
1020
1021 /* Returns non-zero if a class is abstract. */
1022 int (is_class_abstract)(const ir_type *clss) {
1023          return _is_class_abstract(clss);
1024 }
1025
1026 /* Sets the class abstract flag. */
1027 void (set_class_abstract)(ir_type *clss, int final) {
1028         _set_class_abstract(clss, final);
1029 }
1030
1031 void set_class_dfn(ir_type *clss, int dfn) {
1032         clss->attr.ca.dfn = dfn;
1033 }
1034
1035 int get_class_dfn(const ir_type *clss) {
1036         return (clss->attr.ca.dfn);
1037 }
1038
1039 /* typecheck */
1040 int (is_Class_type)(const ir_type *clss) {
1041         return _is_class_type(clss);
1042 }
1043
1044 void set_class_mode(ir_type *tp, ir_mode *mode) {
1045         /* for classes and structs we allow to set a mode if the layout is fixed AND the size matches */
1046         assert(get_type_state(tp) == layout_fixed &&
1047                tp->size == get_mode_size_bytes(mode) && "mode don't match class layout");
1048         tp->mode = mode;
1049 }
1050
1051 void set_class_size(ir_type *tp, unsigned size) {
1052         tp->size = size;
1053 }
1054
1055 /*----------------------------------------------------------------**/
1056 /* TYPE_STRUCT                                                     */
1057 /*----------------------------------------------------------------**/
1058
1059 /* create a new type struct */
1060 ir_type *new_d_type_struct(ident *name, dbg_info *db) {
1061         ir_type *res = new_type(type_struct, NULL, name, db);
1062
1063         res->attr.sa.members = NEW_ARR_F(ir_entity *, 0);
1064         hook_new_type(res);
1065         return res;
1066 }
1067
1068 ir_type *new_type_struct(ident *name) {
1069         return new_d_type_struct (name, NULL);
1070 }
1071
1072 void free_struct_entities(ir_type *strct) {
1073         int i;
1074         assert(strct && (strct->type_op == type_struct));
1075         for (i = get_struct_n_members(strct)-1; i >= 0; --i)
1076                 free_entity(get_struct_member(strct, i));
1077 }
1078
1079 void free_struct_attrs(ir_type *strct) {
1080         assert(strct && (strct->type_op == type_struct));
1081         DEL_ARR_F(strct->attr.sa.members);
1082 }
1083
1084 /* manipulate private fields of struct */
1085 int get_struct_n_members(const ir_type *strct) {
1086         assert(strct && (strct->type_op == type_struct));
1087         return ARR_LEN(strct->attr.sa.members);
1088 }
1089
1090 void add_struct_member(ir_type *strct, ir_entity *member) {
1091         assert(strct && (strct->type_op == type_struct));
1092         assert(get_type_tpop(get_entity_type(member)) != type_method);
1093         assert(strct != get_entity_type(member) && "recursive type");
1094         ARR_APP1 (ir_entity *, strct->attr.sa.members, member);
1095 }
1096
1097 ir_entity *get_struct_member(const ir_type *strct, int pos) {
1098         assert(strct && (strct->type_op == type_struct));
1099         assert(pos >= 0 && pos < get_struct_n_members(strct));
1100         return strct->attr.sa.members[pos];
1101 }
1102
1103 int get_struct_member_index(const ir_type *strct, ir_entity *mem) {
1104         int i, n;
1105         assert(strct && (strct->type_op == type_struct));
1106         for (i = 0, n = get_struct_n_members(strct); i < n; ++i)
1107                 if (get_struct_member(strct, i) == mem)
1108                         return i;
1109                 return -1;
1110 }
1111
1112 void set_struct_member(ir_type *strct, int pos, ir_entity *member) {
1113         assert(strct && (strct->type_op == type_struct));
1114         assert(pos >= 0 && pos < get_struct_n_members(strct));
1115         assert(get_entity_type(member)->type_op != type_method);/* @@@ lowerfirm !!*/
1116         strct->attr.sa.members[pos] = member;
1117 }
1118
1119 void remove_struct_member(ir_type *strct, ir_entity *member) {
1120         int i;
1121         assert(strct && (strct->type_op == type_struct));
1122         for (i = 0; i < (ARR_LEN (strct->attr.sa.members)); i++)
1123                 if (strct->attr.sa.members[i] == member) {
1124                         for(; i < (ARR_LEN (strct->attr.sa.members))-1; i++)
1125                                 strct->attr.sa.members[i] = strct->attr.sa.members[i+1];
1126                         ARR_SETLEN(ir_entity*, strct->attr.sa.members, ARR_LEN(strct->attr.sa.members) - 1);
1127                         break;
1128                 }
1129 }
1130
1131 /* typecheck */
1132 int (is_Struct_type)(const ir_type *strct) {
1133         return _is_struct_type(strct);
1134 }
1135
1136 void set_struct_mode(ir_type *tp, ir_mode *mode) {
1137         /* for classes and structs we allow to set a mode if the layout is fixed AND the size matches */
1138         assert(get_type_state(tp) == layout_fixed &&
1139                tp->size == get_mode_size_bytes(mode) && "mode don't match struct layout");
1140         tp->mode = mode;
1141 }
1142
1143 void set_struct_size(ir_type *tp, unsigned size) {
1144         tp->size = size;
1145 }
1146
1147 /*******************************************************************/
1148 /** TYPE_METHOD                                                   **/
1149 /*******************************************************************/
1150
1151 /**
1152  * Lazy construction of value argument / result representation.
1153  * Constructs a struct type and its member.  The types of the members
1154  * are passed in the argument list.
1155  *
1156  * @param name    name of the type constructed
1157  * @param len     number of fields
1158  * @param tps     array of field types with length len
1159  */
1160 static ir_type *
1161 build_value_type(ident *name, int len, tp_ent_pair *tps) {
1162         int i;
1163         ir_type *res = new_type_struct(name);
1164         res->flags |= tf_value_param_type;
1165         /* Remove type from type list.  Must be treated differently than other types. */
1166         remove_irp_type(res);
1167         for (i = 0; i < len; i++) {
1168                 ident *id = tps[i].param_name;
1169
1170                 /* use res as default if corresponding type is not yet set. */
1171                 ir_type *elt_type = tps[i].tp ? tps[i].tp : res;
1172
1173                 /* use the parameter name if specified */
1174                 if (! id)
1175                         id = mangle_u(name, get_type_ident(elt_type));
1176                 tps[i].ent = new_entity(res, id, elt_type);
1177                 set_entity_allocation(tps[i].ent, allocation_parameter);
1178         }
1179         return res;
1180 }
1181
1182 /* Create a new method type.
1183    N_param is the number of parameters, n_res the number of results.  */
1184 ir_type *new_d_type_method(ident *name, int n_param, int n_res, dbg_info *db) {
1185         ir_type *res;
1186
1187         assert((get_mode_size_bits(mode_P_code) % 8 == 0) && "unorthodox modes not implemented");
1188         res = new_type(type_method, mode_P_code, name, db);
1189         res->flags                       |= tf_layout_fixed;
1190         res->size                         = get_mode_size_bytes(mode_P_code);
1191         res->attr.ma.n_params             = n_param;
1192         res->attr.ma.params               = xcalloc(n_param, sizeof(res->attr.ma.params[0]));
1193         res->attr.ma.value_params         = NULL;
1194         res->attr.ma.n_res                = n_res;
1195         res->attr.ma.res_type             = xcalloc(n_res, sizeof(res->attr.ma.res_type[0]));
1196         res->attr.ma.value_ress           = NULL;
1197         res->attr.ma.variadicity          = variadicity_non_variadic;
1198         res->attr.ma.first_variadic_param = -1;
1199         res->attr.ma.additional_properties = mtp_no_property;
1200         res->attr.ma.irg_calling_conv     = default_cc_mask;
1201         hook_new_type(res);
1202         return res;
1203 }
1204
1205 ir_type *new_type_method(ident *name, int n_param, int n_res) {
1206         return new_d_type_method(name, n_param, n_res, NULL);
1207 }
1208
1209 /* clone an existing method type */
1210 ir_type *clone_type_method(ir_type *tp, ident *prefix) {
1211         ir_type  *res;
1212         ident    *name;
1213         ir_mode  *mode;
1214         int      n_params, n_res;
1215         dbg_info *db;
1216
1217         assert(is_Method_type(tp));
1218
1219         name = tp->name;
1220         if (prefix != NULL)
1221                 name = mangle(prefix, name);
1222
1223         mode     = tp->mode;
1224         n_params = tp->attr.ma.n_params;
1225         n_res    = tp->attr.ma.n_res;
1226         db       = tp->dbi;
1227
1228         res = new_type(type_method, mode, name, db);
1229
1230         res->flags                         = tp->flags;
1231         res->size                          = tp->size;
1232         res->attr.ma.n_params              = n_params;
1233         res->attr.ma.params                = xcalloc(n_params, sizeof(res->attr.ma.params[0]));
1234         memcpy(res->attr.ma.params, tp->attr.ma.params, n_params * sizeof(res->attr.ma.params[0]));
1235         res->attr.ma.value_params          = tp->attr.ma.value_params;
1236         res->attr.ma.n_res                 = n_res;
1237         res->attr.ma.res_type              = xcalloc(n_res, sizeof(res->attr.ma.res_type[0]));
1238         memcpy(res->attr.ma.res_type, tp->attr.ma.res_type, n_res * sizeof(res->attr.ma.res_type[0]));
1239         res->attr.ma.value_ress            = tp->attr.ma.value_ress;
1240         res->attr.ma.variadicity           = tp->attr.ma.variadicity;
1241         res->attr.ma.first_variadic_param  = tp->attr.ma.first_variadic_param;
1242         res->attr.ma.additional_properties = tp->attr.ma.additional_properties;
1243         res->attr.ma.irg_calling_conv      = tp->attr.ma.irg_calling_conv;
1244         hook_new_type(res);
1245         return res;
1246 }
1247
1248 void free_method_entities(ir_type *method) {
1249   (void) method;
1250         assert(method && (method->type_op == type_method));
1251 }
1252
1253 /* Attention: also frees entities in value parameter subtypes! */
1254 void free_method_attrs(ir_type *method) {
1255         assert(method && (method->type_op == type_method));
1256         free(method->attr.ma.params);
1257         free(method->attr.ma.res_type);
1258         /* cannot free it yet, type could be cloned ...
1259         if (method->attr.ma.value_params) {
1260                 free_type_entities(method->attr.ma.value_params);
1261                 free_type(method->attr.ma.value_params);
1262         }
1263         */
1264         if (method->attr.ma.value_ress) {
1265                 free_type_entities(method->attr.ma.value_ress);
1266                 free_type(method->attr.ma.value_ress);
1267         }
1268 }
1269
1270 /* manipulate private fields of method. */
1271 int (get_method_n_params)(const ir_type *method) {
1272         return _get_method_n_params(method);
1273 }
1274
1275 /* Returns the type of the parameter at position pos of a method. */
1276 ir_type *get_method_param_type(ir_type *method, int pos) {
1277         ir_type *res;
1278         assert(method && (method->type_op == type_method));
1279         assert(pos >= 0 && pos < get_method_n_params(method));
1280         res = method->attr.ma.params[pos].tp;
1281         assert(res != NULL && "empty method param type");
1282         return method->attr.ma.params[pos].tp = skip_tid(res);
1283 }
1284
1285 void  set_method_param_type(ir_type *method, int pos, ir_type *tp) {
1286         assert(method && (method->type_op == type_method));
1287         assert(pos >= 0 && pos < get_method_n_params(method));
1288         method->attr.ma.params[pos].tp = tp;
1289         /* If information constructed set pass-by-value representation. */
1290         if (method->attr.ma.value_params) {
1291                 assert(get_method_n_params(method) == get_struct_n_members(method->attr.ma.value_params));
1292                 set_entity_type(get_struct_member(method->attr.ma.value_params, pos), tp);
1293         }
1294 }
1295
1296 /* Returns an ident representing the parameters name. Returns NULL if not set.
1297    For debug support only. */
1298 ident *get_method_param_ident(ir_type *method, int pos) {
1299         assert(method && (method->type_op == type_method));
1300         assert(pos >= 0 && pos < get_method_n_params(method));
1301         return method->attr.ma.params[pos].param_name;
1302 }
1303
1304 /* Returns a string representing the parameters name. Returns NULL if not set.
1305    For debug support only. */
1306 const char *get_method_param_name(ir_type *method, int pos) {
1307         ident *id = get_method_param_ident(method, pos);
1308         return id ? get_id_str(id) : NULL;
1309 }
1310
1311 /* Sets an ident representing the parameters name. For debug support only. */
1312 void set_method_param_ident(ir_type *method, int pos, ident *id) {
1313         assert(method && (method->type_op == type_method));
1314         assert(pos >= 0 && pos < get_method_n_params(method));
1315         method->attr.ma.params[pos].param_name = id;
1316 }
1317
1318 /* Returns an entity that represents the copied value argument.  Only necessary
1319    for compounds passed by value. */
1320 ir_entity *get_method_value_param_ent(ir_type *method, int pos) {
1321         assert(method && (method->type_op == type_method));
1322         assert(pos >= 0 && pos < get_method_n_params(method));
1323
1324         if (!method->attr.ma.value_params) {
1325                 /* parameter value type not created yet, build */
1326                 method->attr.ma.value_params
1327                         = build_value_type(mangle_u(get_type_ident(method), value_params_suffix),
1328                         get_method_n_params(method), method->attr.ma.params);
1329         }
1330         /*
1331          * build_value_type() sets the method->attr.ma.value_params type as default if
1332          * no type is set!
1333          */
1334         assert((get_entity_type(method->attr.ma.params[pos].ent) != method->attr.ma.value_params)
1335                && "param type not yet set");
1336         return method->attr.ma.params[pos].ent;
1337 }
1338
1339 /*
1340  * Returns a type that represents the copied value arguments.
1341  */
1342 ir_type *get_method_value_param_type(const ir_type *method) {
1343         assert(method && (method->type_op == type_method));
1344         return method->attr.ma.value_params;
1345 }
1346
1347 int (get_method_n_ress)(const ir_type *method) {
1348         return _get_method_n_ress(method);
1349 }
1350
1351 ir_type *get_method_res_type(ir_type *method, int pos) {
1352         ir_type *res;
1353         assert(method && (method->type_op == type_method));
1354         assert(pos >= 0 && pos < get_method_n_ress(method));
1355         res = method->attr.ma.res_type[pos].tp;
1356         assert(res != NULL && "empty method return type");
1357         return method->attr.ma.res_type[pos].tp = skip_tid(res);
1358 }
1359
1360 void  set_method_res_type(ir_type *method, int pos, ir_type *tp) {
1361         assert(method && (method->type_op == type_method));
1362         assert(pos >= 0 && pos < get_method_n_ress(method));
1363         /* set the result ir_type */
1364         method->attr.ma.res_type[pos].tp = tp;
1365         /* If information constructed set pass-by-value representation. */
1366         if (method->attr.ma.value_ress) {
1367                 assert(get_method_n_ress(method) == get_struct_n_members(method->attr.ma.value_ress));
1368                 set_entity_type(get_struct_member(method->attr.ma.value_ress, pos), tp);
1369         }
1370 }
1371
1372 /* Returns an entity that represents the copied value result.  Only necessary
1373    for compounds passed by value. */
1374 ir_entity *get_method_value_res_ent(ir_type *method, int pos) {
1375         assert(method && (method->type_op == type_method));
1376         assert(pos >= 0 && pos < get_method_n_ress(method));
1377
1378         if (!method->attr.ma.value_ress) {
1379                 /* result value type not created yet, build */
1380                 method->attr.ma.value_ress
1381                         = build_value_type(mangle_u(get_type_ident(method), value_ress_suffix),
1382                         get_method_n_ress(method), method->attr.ma.res_type);
1383         }
1384         /*
1385          * build_value_type() sets the method->attr.ma.value_ress type as default if
1386          * no type is set!
1387          */
1388         assert((get_entity_type(method->attr.ma.res_type[pos].ent) != method->attr.ma.value_ress)
1389                && "result type not yet set");
1390
1391         return method->attr.ma.res_type[pos].ent;
1392 }
1393
1394 /*
1395  * Returns a type that represents the copied value results.
1396  */
1397 ir_type *get_method_value_res_type(const ir_type *method) {
1398         assert(method && (method->type_op == type_method));
1399         return method->attr.ma.value_ress;
1400 }
1401
1402 /* Returns the null-terminated name of this variadicity. */
1403 const char *get_variadicity_name(variadicity vari) {
1404 #define X(a)    case a: return #a
1405         switch (vari) {
1406         X(variadicity_non_variadic);
1407         X(variadicity_variadic);
1408         default:
1409                 return "BAD VALUE";
1410         }
1411 #undef X
1412 }
1413
1414 variadicity get_method_variadicity(const ir_type *method) {
1415         assert(method && (method->type_op == type_method));
1416         return method->attr.ma.variadicity;
1417 }
1418
1419 void set_method_variadicity(ir_type *method, variadicity vari) {
1420         assert(method && (method->type_op == type_method));
1421         method->attr.ma.variadicity = vari;
1422 }
1423
1424 /*
1425  * Returns the first variadic parameter index of a type.
1426  * If this index was NOT set, the index of the last parameter
1427  * of the method type plus one is returned for variadic functions.
1428  * Non-variadic function types always return -1 here.
1429  */
1430 int get_method_first_variadic_param_index(const ir_type *method) {
1431         assert(method && (method->type_op == type_method));
1432
1433         if (method->attr.ma.variadicity == variadicity_non_variadic)
1434                 return -1;
1435
1436         if (method->attr.ma.first_variadic_param == -1)
1437                 return get_method_n_params(method);
1438         return method->attr.ma.first_variadic_param;
1439 }
1440
1441 /*
1442  * Sets the first variadic parameter index. This allows to specify
1443  * a complete call type (containing the type of all parameters)
1444  * but still have the knowledge, which parameter must be passed as
1445  * variadic one.
1446  */
1447 void set_method_first_variadic_param_index(ir_type *method, int index) {
1448         assert(method && (method->type_op == type_method));
1449         assert(index >= 0 && index <= get_method_n_params(method));
1450
1451         method->attr.ma.first_variadic_param = index;
1452 }
1453
1454 unsigned (get_method_additional_properties)(const ir_type *method) {
1455         return _get_method_additional_properties(method);
1456 }
1457
1458 void (set_method_additional_properties)(ir_type *method, unsigned mask) {
1459         _set_method_additional_properties(method, mask);
1460 }
1461
1462 void (set_method_additional_property)(ir_type *method, mtp_additional_property flag) {
1463         _set_method_additional_property(method, flag);
1464 }
1465
1466 /* Returns the calling convention of an entities graph. */
1467 unsigned (get_method_calling_convention)(const ir_type *method) {
1468         return _get_method_calling_convention(method);
1469 }
1470
1471 /* Sets the calling convention of an entities graph. */
1472 void (set_method_calling_convention)(ir_type *method, unsigned cc_mask) {
1473         _set_method_calling_convention(method, cc_mask);
1474 }
1475
1476 /* Returns the number of registers parameters, 0 means default. */
1477 unsigned get_method_n_regparams(ir_type *method) {
1478         unsigned cc = get_method_calling_convention(method);
1479         assert(IS_FASTCALL(cc));
1480
1481         return cc & ~cc_bits;
1482 }
1483
1484 /* Sets the number of registers parameters, 0 means default. */
1485 void set_method_n_regparams(ir_type *method, unsigned n_regs) {
1486         unsigned cc = get_method_calling_convention(method);
1487         assert(IS_FASTCALL(cc));
1488
1489         set_method_calling_convention(method, (cc & cc_bits) | (n_regs & ~cc_bits));
1490 }
1491
1492 /* typecheck */
1493 int (is_Method_type)(const ir_type *method) {
1494         return _is_method_type(method);
1495 }
1496
1497 /*-----------------------------------------------------------------*/
1498 /* TYPE_UNION                                                      */
1499 /*-----------------------------------------------------------------*/
1500
1501 /* create a new type uni */
1502 ir_type *new_d_type_union(ident *name, dbg_info *db) {
1503         ir_type *res = new_type(type_union, NULL, name, db);
1504
1505         res->attr.ua.members = NEW_ARR_F(ir_entity *, 0);
1506         hook_new_type(res);
1507         return res;
1508 }
1509
1510 ir_type *new_type_union(ident *name) {
1511         return new_d_type_union(name, NULL);
1512 }
1513
1514 void free_union_entities(ir_type *uni) {
1515         int i;
1516         assert(uni && (uni->type_op == type_union));
1517         for (i = get_union_n_members(uni) - 1; i >= 0; --i)
1518                 free_entity(get_union_member(uni, i));
1519 }
1520
1521 void free_union_attrs (ir_type *uni) {
1522         assert(uni && (uni->type_op == type_union));
1523         DEL_ARR_F(uni->attr.ua.members);
1524 }
1525
1526 /* manipulate private fields of union */
1527 int get_union_n_members(const ir_type *uni) {
1528         assert(uni && (uni->type_op == type_union));
1529         return ARR_LEN(uni->attr.ua.members);
1530 }
1531
1532 void add_union_member(ir_type *uni, ir_entity *member) {
1533         assert(uni && (uni->type_op == type_union));
1534         assert(uni != get_entity_type(member) && "recursive type");
1535         ARR_APP1(ir_entity *, uni->attr.ua.members, member);
1536 }
1537
1538 ir_entity *get_union_member(const ir_type *uni, int pos) {
1539         assert(uni && (uni->type_op == type_union));
1540         assert(pos >= 0 && pos < get_union_n_members(uni));
1541         return uni->attr.ua.members[pos];
1542 }
1543
1544 int get_union_member_index(const ir_type *uni, ir_entity *mem) {
1545         int i, n;
1546         assert(uni && (uni->type_op == type_union));
1547         for (i = 0, n = get_union_n_members(uni); i < n; ++i)
1548                 if (get_union_member(uni, i) == mem)
1549                         return i;
1550                 return -1;
1551 }
1552
1553 void set_union_member(ir_type *uni, int pos, ir_entity *member) {
1554         assert(uni && (uni->type_op == type_union));
1555         assert(pos >= 0 && pos < get_union_n_members(uni));
1556         uni->attr.ua.members[pos] = member;
1557 }
1558
1559 void remove_union_member(ir_type *uni, ir_entity *member) {
1560         int i;
1561         assert(uni && (uni->type_op == type_union));
1562         for (i = 0; i < (ARR_LEN(uni->attr.ua.members)); i++)
1563                 if (uni->attr.ua.members[i] == member) {
1564                         for(; i < (ARR_LEN(uni->attr.ua.members))-1; i++)
1565                                 uni->attr.ua.members[i] = uni->attr.ua.members[i+1];
1566                         ARR_SETLEN(ir_entity*, uni->attr.ua.members, ARR_LEN(uni->attr.ua.members) - 1);
1567                         break;
1568                 }
1569 }
1570
1571 /* typecheck */
1572 int (is_Union_type)(const ir_type *uni) {
1573         return _is_union_type(uni);
1574 }
1575
1576 void set_union_size(ir_type *tp, unsigned size) {
1577         tp->size = size;
1578 }
1579
1580 /*-----------------------------------------------------------------*/
1581 /* TYPE_ARRAY                                                      */
1582 /*-----------------------------------------------------------------*/
1583
1584
1585 /* create a new type array -- set dimension sizes independently */
1586 ir_type *new_d_type_array(ident *name, int n_dimensions, ir_type *element_type, dbg_info *db) {
1587         ir_type *res;
1588         int i;
1589         ir_node *unk;
1590         ir_graph *rem = current_ir_graph;
1591
1592         assert(!is_Method_type(element_type));
1593
1594         res = new_type(type_array, NULL, name, db);
1595         res->attr.aa.n_dimensions = n_dimensions;
1596         res->attr.aa.lower_bound  = xcalloc(n_dimensions, sizeof(*res->attr.aa.lower_bound));
1597         res->attr.aa.upper_bound  = xcalloc(n_dimensions, sizeof(*res->attr.aa.upper_bound));
1598         res->attr.aa.order        = xcalloc(n_dimensions, sizeof(*res->attr.aa.order));
1599
1600         current_ir_graph = get_const_code_irg();
1601         unk = new_Unknown(mode_Iu);
1602         for (i = 0; i < n_dimensions; i++) {
1603                 res->attr.aa.lower_bound[i] =
1604                 res->attr.aa.upper_bound[i] = unk;
1605                 res->attr.aa.order[i]       = i;
1606         }
1607         current_ir_graph = rem;
1608
1609         res->attr.aa.element_type = element_type;
1610         new_entity(res, mangle_u(name, new_id_from_chars("elem_ent", 8)), element_type);
1611         hook_new_type(res);
1612         return res;
1613 }
1614
1615 ir_type *new_type_array(ident *name, int n_dimensions, ir_type *element_type) {
1616         return new_d_type_array(name, n_dimensions, element_type, NULL);
1617 }
1618
1619 void free_array_automatic_entities(ir_type *array) {
1620         assert(array && (array->type_op == type_array));
1621         free_entity(get_array_element_entity(array));
1622 }
1623
1624 void free_array_entities (ir_type *array) {
1625         (void) array;
1626         assert(array && (array->type_op == type_array));
1627 }
1628
1629 void free_array_attrs (ir_type *array) {
1630         assert(array && (array->type_op == type_array));
1631         free(array->attr.aa.lower_bound);
1632         free(array->attr.aa.upper_bound);
1633         free(array->attr.aa.order);
1634 }
1635
1636 /* manipulate private fields of array ir_type */
1637 int get_array_n_dimensions (const ir_type *array) {
1638         assert(array && (array->type_op == type_array));
1639         return array->attr.aa.n_dimensions;
1640 }
1641
1642 void
1643 set_array_bounds(ir_type *array, int dimension, ir_node * lower_bound, ir_node * upper_bound) {
1644         assert(array && (array->type_op == type_array));
1645         assert(lower_bound && "lower_bound node may not be NULL.");
1646         assert(upper_bound && "upper_bound node may not be NULL.");
1647         assert(dimension < array->attr.aa.n_dimensions && dimension >= 0);
1648         array->attr.aa.lower_bound[dimension] = lower_bound;
1649         array->attr.aa.upper_bound[dimension] = upper_bound;
1650 }
1651
1652 void
1653 set_array_bounds_int(ir_type *array, int dimension, int lower_bound, int upper_bound) {
1654         ir_graph *rem = current_ir_graph;
1655         current_ir_graph = get_const_code_irg();
1656         set_array_bounds(array, dimension,
1657                   new_Const(mode_Iu, new_tarval_from_long (lower_bound, mode_Iu)),
1658                   new_Const(mode_Iu, new_tarval_from_long (upper_bound, mode_Iu )));
1659         current_ir_graph = rem;
1660 }
1661
1662 void
1663 set_array_lower_bound(ir_type *array, int dimension, ir_node *lower_bound) {
1664         assert(array && (array->type_op == type_array));
1665         assert(lower_bound && "lower_bound node may not be NULL.");
1666         array->attr.aa.lower_bound[dimension] = lower_bound;
1667 }
1668
1669 void set_array_lower_bound_int(ir_type *array, int dimension, int lower_bound) {
1670         ir_graph *rem = current_ir_graph;
1671         current_ir_graph = get_const_code_irg();
1672         set_array_lower_bound(array, dimension,
1673              new_Const(mode_Iu, new_tarval_from_long (lower_bound, mode_Iu)));
1674         current_ir_graph = rem;
1675 }
1676 void
1677 set_array_upper_bound  (ir_type *array, int dimension, ir_node * upper_bound) {
1678   assert(array && (array->type_op == type_array));
1679   assert(upper_bound && "upper_bound node may not be NULL.");
1680   array->attr.aa.upper_bound[dimension] = upper_bound;
1681 }
1682 void set_array_upper_bound_int(ir_type *array, int dimension, int upper_bound) {
1683         ir_graph *rem = current_ir_graph;
1684         current_ir_graph = get_const_code_irg();
1685         set_array_upper_bound(array, dimension,
1686                     new_Const(mode_Iu, new_tarval_from_long (upper_bound, mode_Iu)));
1687         current_ir_graph = rem;
1688 }
1689
1690 int has_array_lower_bound(const ir_type *array, int dimension) {
1691         assert(array && (array->type_op == type_array));
1692         return (get_irn_op(array->attr.aa.lower_bound[dimension]) != op_Unknown);
1693 }
1694
1695 ir_node *get_array_lower_bound(const ir_type *array, int dimension) {
1696         assert(array && (array->type_op == type_array));
1697         return array->attr.aa.lower_bound[dimension];
1698 }
1699
1700 long get_array_lower_bound_int(const ir_type *array, int dimension) {
1701         ir_node *node;
1702         assert(array && (array->type_op == type_array));
1703         node = array->attr.aa.lower_bound[dimension];
1704         assert(get_irn_op(node) == op_Const);
1705         return get_tarval_long(get_Const_tarval(node));
1706 }
1707
1708 int has_array_upper_bound(const ir_type *array, int dimension) {
1709         assert(array && (array->type_op == type_array));
1710         return get_irn_op(array->attr.aa.upper_bound[dimension]) != op_Unknown;
1711 }
1712
1713 ir_node *get_array_upper_bound(const ir_type *array, int dimension) {
1714         assert(array && (array->type_op == type_array));
1715         return array->attr.aa.upper_bound[dimension];
1716 }
1717
1718 long get_array_upper_bound_int(const ir_type *array, int dimension) {
1719         ir_node *node;
1720         assert(array && (array->type_op == type_array));
1721         node = array->attr.aa.upper_bound[dimension];
1722         assert(get_irn_op(node) == op_Const);
1723         return get_tarval_long(get_Const_tarval(node));
1724 }
1725
1726 void set_array_order(ir_type *array, int dimension, int order) {
1727         assert(array && (array->type_op == type_array));
1728         array->attr.aa.order[dimension] = order;
1729 }
1730
1731 int get_array_order(const ir_type *array, int dimension) {
1732         assert(array && (array->type_op == type_array));
1733         return array->attr.aa.order[dimension];
1734 }
1735
1736 int find_array_dimension(const ir_type *array, int order) {
1737         int dim;
1738
1739         assert(array && (array->type_op == type_array));
1740
1741         for (dim = 0; dim < array->attr.aa.n_dimensions; ++dim) {
1742                 if (array->attr.aa.order[dim] == order)
1743                         return dim;
1744         }
1745         return -1;
1746 }
1747
1748 void set_array_element_type(ir_type *array, ir_type *tp) {
1749         assert(array && (array->type_op == type_array));
1750         assert(!is_Method_type(tp));
1751         array->attr.aa.element_type = tp;
1752 }
1753
1754 ir_type *get_array_element_type(ir_type *array) {
1755         assert(array && (array->type_op == type_array));
1756         return array->attr.aa.element_type = skip_tid(array->attr.aa.element_type);
1757 }
1758
1759 void set_array_element_entity(ir_type *array, ir_entity *ent) {
1760         assert(array && (array->type_op == type_array));
1761         assert((get_entity_type(ent)->type_op != type_method));
1762         array->attr.aa.element_ent = ent;
1763         array->attr.aa.element_type = get_entity_type(ent);
1764 }
1765
1766 ir_entity *get_array_element_entity(const ir_type *array) {
1767         assert(array && (array->type_op == type_array));
1768         return array->attr.aa.element_ent;
1769 }
1770
1771 /* typecheck */
1772 int (is_Array_type)(const ir_type *array) {
1773         return _is_array_type(array);
1774 }
1775
1776 void set_array_size(ir_type *tp, unsigned size) {
1777         /* FIXME: Here we should make some checks with the element type size */
1778         tp->size = size;
1779 }
1780 /*-----------------------------------------------------------------*/
1781 /* TYPE_ENUMERATION                                                */
1782 /*-----------------------------------------------------------------*/
1783
1784 /* create a new type enumeration -- set the enumerators independently */
1785 ir_type *new_d_type_enumeration(ident *name, int n_enums, dbg_info *db) {
1786         ir_type *res;
1787
1788         assert(n_enums >= 0);
1789         res = new_type(type_enumeration, NULL, name, db);
1790         res->attr.ea.enumer = NEW_ARR_F(ir_enum_const, n_enums);
1791         hook_new_type(res);
1792         return res;
1793 }
1794
1795 ir_type *new_type_enumeration(ident *name, int n_enums) {
1796         return new_d_type_enumeration(name, n_enums, NULL);
1797 }
1798
1799 void free_enumeration_entities(ir_type *enumeration) {
1800         (void) enumeration;
1801         assert(enumeration && (enumeration->type_op == type_enumeration));
1802 }
1803 void free_enumeration_attrs(ir_type *enumeration) {
1804         assert(enumeration && (enumeration->type_op == type_enumeration));
1805         DEL_ARR_F(enumeration->attr.ea.enumer);
1806 }
1807
1808 /* manipulate fields of enumeration type. */
1809 int get_enumeration_n_enums(const ir_type *enumeration) {
1810         assert(enumeration && (enumeration->type_op == type_enumeration));
1811         return ARR_LEN(enumeration->attr.ea.enumer);
1812 }
1813
1814 /* create a new constant */
1815 void set_enumeration_const(ir_type *enumeration, int pos, ident *nameid, tarval *con) {
1816         assert(0 <= pos && pos < ARR_LEN(enumeration->attr.ea.enumer));
1817         enumeration->attr.ea.enumer[pos].nameid = nameid;
1818         enumeration->attr.ea.enumer[pos].value  = con;
1819         enumeration->attr.ea.enumer[pos].owner  = enumeration;
1820 }
1821
1822 ir_enum_const *get_enumeration_const(const ir_type *enumeration, int pos) {
1823         assert(enumeration && (enumeration->type_op == type_enumeration));
1824         assert(pos >= 0 && pos < get_enumeration_n_enums(enumeration));
1825         return &enumeration->attr.ea.enumer[pos];
1826 }
1827
1828 ir_type *get_enumeration_owner(const ir_enum_const *enum_cnst) {
1829         return enum_cnst->owner;
1830 }
1831
1832 void set_enumeration_value(ir_enum_const *enum_cnst, tarval *con) {
1833         enum_cnst->value = con;
1834 }
1835
1836 tarval *get_enumeration_value(const ir_enum_const *enum_cnst) {
1837         return enum_cnst->value;
1838 }
1839
1840 void set_enumeration_nameid(ir_enum_const *enum_cnst, ident *id) {
1841         enum_cnst->nameid = id;
1842 }
1843
1844 ident *get_enumeration_nameid(const ir_enum_const *enum_cnst) {
1845         return enum_cnst->nameid;
1846 }
1847
1848 const char *get_enumeration_name(const ir_enum_const *enum_cnst) {
1849         return get_id_str(enum_cnst->nameid);
1850 }
1851
1852 /* typecheck */
1853 int (is_Enumeration_type)(const ir_type *enumeration) {
1854         return _is_enumeration_type(enumeration);
1855 }
1856
1857 void set_enumeration_mode(ir_type *tp, ir_mode *mode) {
1858         assert(mode_is_int(mode) && "Modes of enumerations must be integers");
1859         /* For pointer and enumeration size depends on the mode, but only byte size allowed. */
1860         assert((get_mode_size_bits(mode) % 8) == 0 && "unorthodox modes not implemented");
1861
1862         tp->size = get_mode_size_bytes(mode);
1863         tp->mode = mode;
1864 }
1865
1866 /*-----------------------------------------------------------------*/
1867 /* TYPE_POINTER                                                    */
1868 /*-----------------------------------------------------------------*/
1869
1870 /* Create a new type pointer */
1871 ir_type *new_d_type_pointer(ident *name, ir_type *points_to, ir_mode *ptr_mode, dbg_info *db) {
1872         ir_type *res;
1873
1874         assert(mode_is_reference(ptr_mode));
1875         res = new_type(type_pointer, ptr_mode, name, db);
1876         res->attr.pa.points_to = points_to;
1877         assert((get_mode_size_bits(res->mode) % 8 == 0) && "unorthodox modes not implemented");
1878         res->size = get_mode_size_bytes(res->mode);
1879         res->flags |= tf_layout_fixed;
1880         hook_new_type(res);
1881         return res;
1882 }
1883
1884 ir_type *new_type_pointer(ident *name, ir_type *points_to, ir_mode *ptr_mode) {
1885         return new_d_type_pointer(name, points_to, ptr_mode, NULL);
1886 }
1887
1888 void free_pointer_entities(ir_type *pointer) {
1889         (void) pointer;
1890         assert(pointer && (pointer->type_op == type_pointer));
1891 }
1892
1893 void free_pointer_attrs(ir_type *pointer) {
1894         (void) pointer;
1895         assert(pointer && (pointer->type_op == type_pointer));
1896 }
1897
1898 /* manipulate fields of type_pointer */
1899 void set_pointer_points_to_type(ir_type *pointer, ir_type *tp) {
1900         assert(pointer && (pointer->type_op == type_pointer));
1901         pointer->attr.pa.points_to = tp;
1902 }
1903
1904 ir_type *get_pointer_points_to_type(ir_type *pointer) {
1905         assert(pointer && (pointer->type_op == type_pointer));
1906         return pointer->attr.pa.points_to = skip_tid(pointer->attr.pa.points_to);
1907 }
1908
1909 /* typecheck */
1910 int (is_Pointer_type)(const ir_type *pointer) {
1911         return _is_pointer_type(pointer);
1912 }
1913
1914 void set_pointer_mode(ir_type *tp, ir_mode *mode) {
1915         assert(mode_is_reference(mode) && "Modes of pointers must be references");
1916         /* For pointer and enumeration size depends on the mode, but only byte size allowed. */
1917         assert((get_mode_size_bits(mode) & 7) == 0 && "unorthodox modes not implemented");
1918
1919         tp->size = get_mode_size_bytes(mode);
1920         tp->mode = mode;
1921 }
1922
1923 /* Returns the first pointer type that has as points_to tp.
1924  *  Not efficient: O(#types).
1925  *  If not found returns firm_unknown_type. */
1926 ir_type *find_pointer_type_to_type (ir_type *tp) {
1927         int i, n = get_irp_n_types();
1928         for (i = 0; i < n; ++i) {
1929                 ir_type *found = get_irp_type(i);
1930                 if (is_Pointer_type(found) && get_pointer_points_to_type(found) == tp)
1931                         return (found);
1932         }
1933         return firm_unknown_type;
1934 }
1935
1936
1937 /*-----------------------------------------------------------------*/
1938 /* TYPE_PRIMITIVE                                                  */
1939 /*-----------------------------------------------------------------*/
1940
1941 /* create a new type primitive */
1942 ir_type *new_d_type_primitive(ident *name, ir_mode *mode, dbg_info *db) {
1943         ir_type *res = new_type(type_primitive, mode, name, db);
1944         res->size  = get_mode_size_bytes(mode);
1945         res->flags |= tf_layout_fixed;
1946         res->attr.ba.base_type = NULL;
1947         hook_new_type(res);
1948         return res;
1949 }
1950
1951 ir_type *new_type_primitive(ident *name, ir_mode *mode) {
1952         return new_d_type_primitive(name, mode, NULL);
1953 }
1954
1955 /* type check */
1956 int (is_Primitive_type)(const ir_type *primitive) {
1957         return _is_primitive_type(primitive);
1958 }
1959
1960 void set_primitive_mode(ir_type *tp, ir_mode *mode) {
1961         /* Modes of primitives must be data */
1962         assert(mode_is_data(mode));
1963
1964         /* For primitive size depends on the mode. */
1965         tp->size = get_mode_size_bytes(mode);
1966         tp->mode = mode;
1967 }
1968
1969 /* Return the base type of a primitive (bitfield) type or NULL if none. */
1970 ir_type *get_primitive_base_type(ir_type *tp) {
1971         assert(is_Primitive_type(tp));
1972         return tp->attr.ba.base_type;
1973 }
1974
1975 /* Sets the base type of a primitive (bitfield) type. */
1976 void set_primitive_base_type(ir_type *tp, ir_type *base_tp) {
1977         assert(is_Primitive_type(tp));
1978         tp->attr.ba.base_type = base_tp;
1979 }
1980
1981 /*-----------------------------------------------------------------*/
1982 /* common functionality                                            */
1983 /*-----------------------------------------------------------------*/
1984
1985
1986 int (is_atomic_type)(const ir_type *tp) {
1987         return _is_atomic_type(tp);
1988 }
1989
1990 /*
1991  * Gets the number of elements in a firm compound type.
1992  */
1993 int get_compound_n_members(const ir_type *tp) {
1994         const tp_op *op = get_type_tpop(tp);
1995         int res = 0;
1996
1997         if (op->ops.get_n_members)
1998                 res = op->ops.get_n_members(tp);
1999         else
2000                 assert(0 && "no member count for this type");
2001
2002         return res;
2003 }
2004
2005 /*
2006  * Gets the member of a firm compound type at position pos.
2007  */
2008 ir_entity *get_compound_member(const ir_type *tp, int pos) {
2009         const tp_op *op = get_type_tpop(tp);
2010         ir_entity *res = NULL;
2011
2012         if (op->ops.get_member)
2013                 res = op->ops.get_member(tp, pos);
2014         else
2015                 assert(0 && "no members in this type");
2016
2017         return res;
2018 }
2019
2020 /* Returns index of member in tp, -1 if not contained. */
2021 int get_compound_member_index(const ir_type *tp, ir_entity *member) {
2022         const tp_op *op = get_type_tpop(tp);
2023         int index = -1;
2024
2025         if (op->ops.get_member_index)
2026                 index = op->ops.get_member_index(tp, member);
2027         else
2028                 assert(0 && "no members in this type");
2029
2030         return index;
2031 }
2032
2033 int is_compound_type(const ir_type *tp) {
2034         assert(tp && tp->kind == k_type);
2035         return tp->type_op->flags & TP_OP_FLAG_COMPOUND;
2036 }
2037
2038 /* Checks, whether a type is a frame type */
2039 int is_frame_type(const ir_type *tp) {
2040         return tp->flags & tf_frame_type;
2041 }
2042
2043 /* Checks, whether a type is a value parameter type */
2044 int is_value_param_type(const ir_type *tp) {
2045         return tp->flags & tf_value_param_type;
2046 }
2047
2048 /* Checks, whether a type is a lowered type */
2049 int is_lowered_type(const ir_type *tp) {
2050         return tp->flags & tf_lowered_type;
2051 }
2052
2053 /* Makes a new frame type. */
2054 ir_type *new_type_frame(ident *name) {
2055         ir_type *res = new_type_class(name);
2056
2057         res->flags |= tf_frame_type;
2058
2059         /* Remove type from type list.  Must be treated differently than other types. */
2060         remove_irp_type(res);
2061
2062         /* It is not possible to derive from the frame type. Set the final flag. */
2063         set_class_final(res, 1);
2064
2065         return res;
2066 }
2067
2068 /* Sets a lowered type for a type. This sets both associations. */
2069 void set_lowered_type(ir_type *tp, ir_type *lowered_type) {
2070         assert(is_type(tp) && is_type(lowered_type));
2071         lowered_type->flags |= tf_lowered_type;
2072         tp->assoc_type = lowered_type;
2073         lowered_type->assoc_type = tp;
2074 }
2075
2076 /*
2077  * Gets the lowered/unlowered type of a type or NULL if this type
2078  * has no lowered/unlowered one.
2079  */
2080 ir_type *get_associated_type(const ir_type *tp) {
2081         return tp->assoc_type;
2082 }
2083
2084 /* set the type size for the unknown and none ir_type */
2085 void set_default_size(ir_type *tp, unsigned size) {
2086         tp->size = size;
2087 }
2088
2089 /*
2090  * Allocate an area of size bytes aligned at alignment
2091  * at the start or the end of a frame type.
2092  * The frame type must have already an fixed layout.
2093  */
2094 ir_entity *frame_alloc_area(ir_type *frame_type, int size, unsigned alignment, int at_start) {
2095         ir_entity *area;
2096         ir_type *tp;
2097         ident *name;
2098         char buf[32];
2099         unsigned frame_align;
2100         int i, offset, frame_size;
2101         static unsigned area_cnt = 0;
2102         static ir_type *a_byte = NULL;
2103
2104         assert(is_frame_type(frame_type));
2105         assert(get_type_state(frame_type) == layout_fixed);
2106         assert(get_type_alignment_bytes(frame_type) > 0);
2107
2108         if (! a_byte)
2109                 a_byte = new_type_primitive(new_id_from_chars("byte", 4), mode_Bu);
2110
2111         snprintf(buf, sizeof(buf), "area%u", area_cnt++);
2112         name = new_id_from_str(buf);
2113
2114         /* align the size */
2115         frame_align = get_type_alignment_bytes(frame_type);
2116         size = (size + frame_align - 1) & ~(frame_align - 1);
2117
2118         tp = new_type_array(mangle_u(get_type_ident(frame_type), name), 1, a_byte);
2119         set_array_bounds_int(tp, 0, 0, size);
2120         set_type_alignment_bytes(tp, alignment);
2121
2122         frame_size = get_type_size_bytes(frame_type);
2123         if (at_start) {
2124                 /* fix all offsets so far */
2125                 for (i = get_class_n_members(frame_type) - 1; i >= 0; --i) {
2126                         ir_entity *ent = get_class_member(frame_type, i);
2127
2128                         set_entity_offset(ent, get_entity_offset(ent) + size);
2129                 }
2130                 /* calculate offset and new type size */
2131                 offset = 0;
2132                 frame_size += size;
2133         } else {
2134                 /* calculate offset and new type size */
2135                 offset = (frame_size + alignment - 1) & ~(alignment - 1);
2136                 frame_size = offset + size;
2137         }
2138
2139         area = new_entity(frame_type, name, tp);
2140         set_entity_offset(area, offset);
2141         set_type_size_bytes(frame_type, frame_size);
2142
2143         /* mark this entity as compiler generated */
2144         set_entity_compiler_generated(area, 1);
2145         return area;
2146 }