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