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