Fixed method attribute access
[libfirm] / ir / tr / type.h
1 /**
2  * @file type.h
3  *
4  * Project:     libFIRM                                                   <br>
5  * File name:   ir/tr/type.h                                              <br>
6  * Purpose:     Representation of types.                                  <br>
7  * Author:      Goetz Lindenmaier                                         <br>
8  * Modified by:                                                           <br>
9  * Created:                                                               <br>
10  * Copyright:   (c) 2001-2003 Universität Karlsruhe                       <br>
11  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE. <br>
12  * CVS-ID:      $Id$
13  *
14  *
15  *  Datastructure to hold type information.
16  *
17  *  This module supplies a datastructure to represent all types
18  *  known in the compiled program.  This includes types specified
19  *  in the program as well as types defined by the language.  In the
20  *  view of the intermediate representation there is no difference
21  *  between these types.  Finally it specifies some auxiliary types.
22  *
23  *  There exist several kinds of types, arranged by the structure of
24  *  the type.  A type is described by a set of attributes.  Some of
25  *  these attributes are common to all types, others depend on the
26  *  kind of the type.
27  *
28  *  Types are different from the modes defined in irmode:  Types are
29  *  on the level of the programming language, modes at the level of
30  *  the target processor.
31  *
32  *  @see  tpop.h
33  */
34
35 #ifndef _FIRM_TR_TYPE_H_
36 #define _FIRM_TR_TYPE_H_
37
38 #include "firm_types.h"
39 #include "tpop.h"
40 #include "firm_common.h"
41 #include "dbginfo.h"
42
43 /**
44  *  An abstract data type to represent types.
45  *
46  *  This is the abstract data type with which any type known in the
47  *  compiled program can be represented.  This includes types specified
48  *  in the program as well as types defined by the language.  In the
49  *  view of the intermediate representation there is no difference
50  *  between these types.
51  *
52  *  There exist several kinds of types, arranged by the structure of
53  *  the type.  These are distinguished by a type opcode.
54  *  A type is described by a set of attributes.  Some of these attributes
55  *  are common to all types, others depend on the kind of the type.
56  *
57  *  The following describes the common attributes.  They can only be
58  *  accessed by the functions given below.
59  *
60  *  The common fields are:
61  *
62  *  - firm_kind: A firm_kind tag containing k_type.  This is useful
63  *               for dynamically checking whether a node is a type node.
64  *  - type_op:   A tp_op specifying the kind of the type.
65  *  - mode:      The mode to be used to represent the type on a machine.
66  *  - name:      An identifier specifying the name of the type.  To be
67  *               set by the frontend.
68  *  - size:      The size of the type, i.e. an entity of this type will
69  *               occupy size bits in memory.  In several cases this is
70  *               determined when fixing the layout of this type (class,
71  *               struct, union, array, enumeration).
72  *  - alignment  The alignment of the type, i.e. an entity of this type will
73  *               be allocated an an address in memory with this alignment.
74  *               In several cases this is determined when fixing the layout
75  *               of this type (class, struct, union, array)
76  *  - state:     The state of the type.  The state represents whether the
77  *               layout of the type is undefined or fixed (values: layout_undefined
78  *               or layout_fixed).  Compound types can have an undefined
79  *               layout.  The layout of the basic types primitive and pointer
80  *               is always layout_fixed.  If the layout of
81  *               compound types is fixed all entities must have an offset
82  *               and the size of the type must be set.
83  *               A fixed layout for enumeration types means that each enumeration
84  *               is associated with an implementation value.
85  *  - visit:     A counter for walks of the type information.
86  *  - link:      A void* to associate some additional information with the type.
87  *
88  *  These fields can only be accessed via access functions.
89  *
90  *  Depending on the value of @c type_op, i.e., depending on the kind of the
91  *  type the adt contains further attributes.  These are documented below.
92  *
93  *  @see
94  *
95  *  @link class_type class @endlink, @link struct_type struct @endlink,
96  *  @link method_type method @endlink, @link union_type union @endlink,
97  *  @link array_type array @endlink, @link enumeration_type enumeration @endlink,
98  *  @link pointer_type pointer @endlink, @link primitive_type primitive @endlink
99  *
100  *  @todo
101  *      mode maybe not global field??
102  */
103 #ifndef _IR_TYPE_TYPEDEF_
104 #define _IR_TYPE_TYPEDEF_
105 typedef struct ir_type ir_type;
106 #endif
107
108 # include "type_or_entity.h"
109
110 /** frees all entities associated with a type.
111     Does not free array entity.
112     Warning: make sure these entities are not referenced anywhere else.
113 */
114 void        free_type_entities(ir_type *tp);
115
116 /** Frees the memory used by the type.
117  *
118  * Removes the type from the type list. Does not free the entities
119  * belonging to the type, except for the array element entity.  Does
120  * not free if tp is "none" or "unknown".  Frees entities in value
121  * param subtypes of method types!!! Make sure these are not
122  * referenced any more.  Further make sure there is no pointer type
123  * that refers to this type.                           */
124 void        free_type(ir_type *tp);
125
126 const tp_op*get_type_tpop(const ir_type *tp);
127 ident*      get_type_tpop_nameid(const ir_type *tp);
128 const char* get_type_tpop_name(const ir_type *tp);
129 tp_opcode   get_type_tpop_code(const ir_type *tp);
130
131 ident*      get_type_ident(const ir_type *tp);
132 void        set_type_ident(ir_type *tp, ident* id);
133 const char* get_type_name(const ir_type *tp);
134
135 /** This enumeration flags the visibility of entities and types.
136  *
137  * This is necessary for partial compilation.
138  * We rely on the ordering of the flags.
139  */
140 typedef enum {
141   visibility_local,              /**< The entity is only visible locally.  This is the default for
142                                       entities.
143                                       The type is only visible locally.  All instances are allocated
144                                       locally, and no pointer to entities of this type are passed
145                                       out of this compilation unit. */
146   visibility_external_visible,   /**< The entity is visible to other external program parts, but
147                                       it is defined here.  It may not be optimized away.  The entity must
148                                       be static_allocated.
149                                       For types:  entities of this type can be accessed externally.  No
150                                       instances of this type are allocated externally.  */
151   visibility_external_allocated  /**< The entity is defined and allocated externally.  This compilation
152                                       must not allocate memory for this entity. The entity must
153                                       be static_allocated.  This can also be an external defined
154                                       method.
155                                       For types:  entities of this type are allocated and accessed from
156                                       external code.  Default for types.  */
157 } visibility;
158
159 /** The visibility of a type.
160  *
161  *  The visibility of a type indicates, whether entities of this type
162  *  are accessed or allocated in external code.
163  *
164  *  An entity of a type is allocated in external code, if the external
165  *  code declares a variable of this type, or dynamically allocates
166  *  an entity of this type.  If the external code declares a (compound)
167  *  type, that contains entities of this type, the visibility also
168  *  must be external_allocated.
169  *
170  *  The visibility must be higher than that of all entities, if the
171  *  type is a compound.  Here it is questionable, what happens with
172  *  static entities.  If these are accessed external by direct reference,
173  *  (a static call to a method, that is also in the dispatch table)
174  *  it should not affect the visibility of the type.
175  *
176  *
177  * @@@ Do we need a visibility for types?
178  * I change the layout of types radically when doing type splitting.
179  * I need to know, which fields of classes are accessed in the RTS,
180  * e.g., [_length.  I may not move [_length to the split part.
181  * The layout though, is a property of the type.
182  *
183  * One could also think of changing the mode of a type ...
184  *
185  * But, we could also output macros to access the fields, e.g.,
186  *  ACCESS_[_length (X)   X->length              // conventional
187  *  ACCESS_[_length (X)   X->_split_ref->length  // with type splitting
188  *
189  * For now I implement this function, that returns the visibility
190  * based on the visibility of the entities of a compound ...
191  *
192  * This function returns visibility_external_visible if one or more
193  * entities of a compound type have visibility_external_visible.
194  * Entities of types are never visibility_external_allocated (right?).
195  * Else returns visibility_local.
196  */
197 visibility get_type_visibility (const ir_type *tp);
198 void       set_type_visibility (ir_type *tp, visibility v);
199
200
201
202 /** The state of the type layout. */
203 typedef enum {
204   layout_undefined,    /**< The layout of this type is not defined.
205               Address computation to access fields is not
206               possible, fields must be accessed by Sel
207               nodes.  This is the default value except for
208               pointer, primitive and method types. */
209   layout_fixed         /**< The layout is fixed, all component/member entities
210               have an offset assigned.  Size of the type is known.
211               Arrays can be accessed by explicit address
212               computation. Default for pointer, primitive and method
213               types.  */
214 } type_state;
215
216 /** Returns a human readable string for the enum entry. */
217 const char *get_type_state_name(type_state s);
218
219 /** Returns the type layout state of a type. */
220 type_state  get_type_state(const ir_type *tp);
221
222 /** Sets the type layout state of a type.
223  *
224  * For primitives, pointer and method types the layout is always fixed.
225  * This call is legal but has no effect.
226  */
227 void        set_type_state(ir_type *tp, type_state state);
228
229 /** Returns the mode of a type.
230  *
231  * Returns NULL for all non atomic types.
232  */
233 ir_mode*    get_type_mode(const ir_type *tp);
234
235 /** Sets the mode of a type.
236  *
237  * Only has an effect on primitive, enumeration and pointer types.
238  */
239 void        set_type_mode(ir_type *tp, ir_mode* m);
240
241 /** Returns the size of a type in bytes, returns -1 if the size is NOT
242  *  a byte size, i.e. not dividable by 8. */
243 int         get_type_size_bytes(const ir_type *tp);
244
245 /** Returns the size of a type in bits. */
246 int         get_type_size_bits(const ir_type *tp);
247
248 /** Sets the size of a type in bytes.
249  *
250  * For primitive, enumeration, pointer and method types the size
251  * is always fixed. This call is legal but has no effect.
252  */
253 void        set_type_size_bytes(ir_type *tp, int size);
254
255 /** Sets the size of a type in bits.
256  *
257  * For primitive, enumeration, pointer and method types the size
258  * is always fixed. This call is legal but has no effect.
259  */
260 void        set_type_size_bits(ir_type *tp, int size);
261
262 /** Returns the alignment of a type in bytes.
263  *
264  *  Returns -1 if the alignment is NOT
265  *  a byte size, i.e. not dividable by 8. Calls get_type_alignment_bits(). */
266 int         get_type_alignment_bytes(ir_type *tp);
267
268 /** Returns the alignment of a type in bits.
269  *
270  *  If the alignment of a type is
271  *  not set, it is calculated here according to the following rules:
272  *  -#.) if a type has a mode, the alignment is the mode size.
273  *  -#.) compound types have the alignment of there biggest member.
274  *  -#.) array types have the alignment of there element type.
275  *  -#.) method types return 0 here.
276  *  -#.) all other types return 8 here (i.e. aligned at byte).
277  */
278 int         get_type_alignment_bits(ir_type *tp);
279
280 /** Sets the alignment of a type in bytes. */
281 void        set_type_alignment_bytes(ir_type *tp, int size);
282
283 /** Sets the alignment of a type in bits.
284  *
285  * For method types the alignment is always fixed.
286  * This call is legal but has no effect.
287  */
288 void        set_type_alignment_bits(ir_type *tp, int size);
289
290 unsigned long get_type_visited(const ir_type *tp);
291 void          set_type_visited(ir_type *tp, unsigned long num);
292 /* Sets visited field in type to type_visited. */
293 void          mark_type_visited(ir_type *tp);
294 int           type_visited(const ir_type *tp);
295 int           type_not_visited(const ir_type *tp);
296
297 /** Returns the associated link field of a type. */
298 void*         get_type_link(const ir_type *tp);
299 /** Sets the associated link field of a type. */
300 void          set_type_link(ir_type *tp, void *l);
301
302 /**
303  * Visited flag to traverse the type information.
304  *
305  * Increase this flag by one before traversing the type information
306  * using inc_master_type_visited().
307  * Mark type nodes as visited by mark_type_visited(ir_type).
308  * Check whether node was already visited by type_visited(ir_type)
309  * and type_not_visited(ir_type).
310  * Or use the function to walk all types.
311  *
312  * @see  typewalk
313  */
314 void          set_master_type_visited(unsigned long val);
315 unsigned long get_master_type_visited(void);
316 void          inc_master_type_visited(void);
317
318 /**
319  * Checks whether a pointer points to a type.
320  *
321  * @param thing     an arbitrary pointer
322  *
323  * @return
324  *     true if the thing is a type, else false
325  */
326 int is_type  (const void *thing);
327
328 /**
329  *   Checks whether two types are structurally equal.
330  *
331  *   @param typ1  the first type
332  *   @param typ2  the second type
333  *
334  *   @return
335  *    true if the types are equal, else false.
336  *
337  *   Types are equal if :
338  *    - they are the same type kind
339  *    - they have the same name
340  *    - they have the same mode (if applicable)
341  *    - they have the same type_state and, ev., the same size
342  *    - they are class types and have:
343  *      - the same members (see same_entity in entity.h)
344  *      - the same supertypes -- the C-pointers are compared --> no recursive call.
345  *      - the same number of subtypes.  Subtypes are not compared,
346  *        as this could cause a cyclic test.
347  *      - the same peculiarity
348  *    - they are structure types and have the same members
349  *    - they are method types and have
350  *      - the same parameter types
351  *      - the same result types
352  *    - they are union types and have the same members
353  *    - they are array types and have
354  *      - the same number of dimensions
355  *      - the same dimension bounds
356  *      - the same dimension order
357  *      - the same element type
358  *    - they are enumeration types and have the same enumerator names
359  *    - they are pointer types and have the identical points_to type
360  *      (i.e., the same C-struct to represent the type, type_id is skipped.
361  *       This is to avoid endless recursions; with pointer types cyclic
362  *       type graphs are possible.)
363  */
364 int equal_type(ir_type *typ1, ir_type *typ2);
365
366 /**
367  *   Checks whether two types are structural comparable.
368  *
369  *   @param st pointer type
370  *   @param lt pointer type
371  *
372  *   @return
373  *    true if type st is smaller than type lt, i.e. whenever
374  *    lt is expected a st can be used.
375  *    This is true if
376  *    - they are the same type kind
377  *    - mode(st) < mode (lt)  (if applicable)
378  *    - they are class types and st is (transitive) subtype of lt,
379  *    - they are structure types and
380  *       - the members of st have exactly one counterpart in lt with the same name,
381  *       - the counterpart has a bigger type.
382  *    - they are method types and have
383  *      - the same number of parameter and result types,
384  *      - the parameter types of st are smaller than those of lt,
385  *      - the result types of st are smaller than those of lt
386  *    - they are union types and have the members of st have exactly one
387  *      @return counterpart in lt and the type is smaller
388  *    - they are array types and have
389  *      - the same number of dimensions
390  *      - all bounds of lt are bound of st
391  *      - the same dimension order
392  *      - the same element type
393  *      @return or
394  *      - the element type of st is smaller than that of lt
395  *      - the element types have the same size and fixed layout.
396  *    - they are enumeration types and have the same enumerator names
397  *    - they are pointer types and have the points_to type of st is
398  *      @return smaller than the points_to type of lt.
399  *
400  */
401 int smaller_type (ir_type *st, ir_type *lt);
402
403 /**
404  *  @page class_type    Representation of a class type
405  *
406  *  If the type opcode is set to type_class the type represents class
407  *  types.  A list of fields and methods is associated with a class.
408  *  Further a class can inherit from and bequest to other classes.
409  *  @@@ value class???
410  *  The following attributes are private to this type kind:
411  *  - member:     All entities belonging to this class.  This are method entities
412  *                which have type_method or fields that can have any of the
413  *                following type kinds: type_class, type_struct, type_union,
414  *                type_array, type_enumeration, type_pointer, type_primitive.
415  *
416  *  The following two are dynamic lists that can be grown with an "add_" function,
417  *  but not shrinked:
418  *
419  *  - subtypes:    A list of direct subclasses.
420  *
421  *  - supertypes:  A list of direct superclasses.
422  *
423  *  - peculiarity: The peculiarity of this class.  If the class is of peculiarity
424  *                 "description" it only is a description of requirements to a class,
425  *                 as, e.g., a Java interface.  The class will never be allocated.
426  *                 Peculiarity inherited is only possible for entities.  An entity
427  *                 is of peculiarity inherited if the compiler generated the entity
428  *                 to explicitly resolve inheritance.  An inherited method entity has
429  *                 no value for irg.
430  *                 Values: description, existent, inherited.  Default: existent.
431  *
432  *  - type_info:   An entity representing the type information of this class.
433  *                 This entity can be of arbitrari type, Firm did not use it yet.
434  *                 It allows to express the coupling of a type with an entity
435  *                 representing this type.  This information is useful for lowering
436  *                 of InstOf and TypeChk nodes.  Default: NULL
437  *
438  *  - final:       A final class is always a leaf in the class hierarchy.  Final
439  *                 classes cannot be super classes of other ones.  As this information
440  *                 can only be computed in whole world compilations, we allow to
441  *                 set this flag.  It is used in optimizations if get_opt_closed_world()
442  *                 is false.  Default:  false
443  */
444
445 /** Creates a new class type. */
446 ir_type *new_type_class (ident *name);
447
448 /** Creates a new class type with debug information. */
449 ir_type *new_d_type_class (ident *name, dbg_info *db);
450
451 /* --- manipulate private fields of class type  --- */
452
453 /** Adds the entity as member of the class.  */
454 void    add_class_member   (ir_type *clss, entity *member);
455
456 /** Returns the number of members of this class. */
457 int     get_class_n_members (const ir_type *clss);
458
459 /** Returns the member at position pos, 0 <= pos < n_member */
460 entity *get_class_member   (const ir_type *clss, int pos);
461
462 /** Returns index of mem in clss, -1 if not contained. */
463 int     get_class_member_index(const ir_type *clss, entity *mem);
464
465 /** Finds the member with name 'name'. If several members with the same
466  *  name returns one of them.  Returns NULL if no member found. */
467 entity *get_class_member_by_name(ir_type *clss, ident *name);
468
469 /** Overwrites the member at position pos, 0 <= pos < n_member with
470  *  the passed entity. */
471 void    set_class_member   (ir_type *clss, entity *member, int pos);
472
473 /** Replaces complete member list in class type by the list passed.
474  *
475  *  Copies the list passed. This function is necessary to reduce the number of members.
476  *  members is an array of entities, num the size of this array.  Sets all
477  *  owners of the members passed to clss. */
478 void    set_class_members  (ir_type *clss, entity *members[], int arity);
479
480 /** Finds member in the list of members and removes it.
481  *
482  *  Shrinks the member list, so iterate from the end!!!
483  *  Does not deallocate the entity.  */
484 void    remove_class_member(ir_type *clss, entity *member);
485
486
487 /** Adds subtype as subtype to clss.
488  *
489  *  Checks whether clss is a supertype of subtype.  If not
490  *  adds also clss as supertype to subtype.  */
491 void    add_class_subtype   (ir_type *clss, ir_type *subtype);
492
493 /** Returns the number of subtypes */
494 int     get_class_n_subtypes (const ir_type *clss);
495
496 /** Gets the subtype at position pos, 0 <= pos < n_subtype. */
497 ir_type *get_class_subtype   (ir_type *clss, int pos);
498
499 /** Returns the index to access subclass as subtype of class.
500  *
501  *  If subclass is no direct subtype of class returns -1.
502  */
503 int get_class_subtype_index(ir_type *clss, const ir_type *subclass);
504
505 /** Sets the subtype at position pos, 0 <= pos < n_subtype.
506  *
507  *  Does not set the corresponding supertype relation for subtype: this might
508  *  be a different position! */
509 void    set_class_subtype   (ir_type *clss, ir_type *subtype, int pos);
510
511 /** Finds subtype in the list of subtypes and removes it  */
512 void    remove_class_subtype(ir_type *clss, ir_type *subtype);
513
514 /* Convenience macros */
515 #define add_class_derived_type(clss, drvtype)       add_class_subtype(clss, drvtype)
516 #define get_class_n_derived_types(clss)             get_class_n_subtypes(clss)
517 #define get_class_derived_type(clss, pos)           get_class_subtype(clss, pos)
518 #define get_class_derived_type_index(clss, drvtype) get_class_subtype_index(clss, drvtype)
519 #define set_class_derived_type(clss, drvtype, pos)  set_class_subtype(clss, drvtype, pos)
520 #define remove_class_derived_type(clss, drvtype)    remove_class_subtype(clss, drvtype)
521
522 /** Adds supertype as supertype to class.
523  *
524  *  Checks whether clss is a subtype of supertype.  If not
525  *  adds also clss as subtype to supertype.  */
526 void    add_class_supertype   (ir_type *clss, ir_type *supertype);
527
528 /** Returns the number of supertypes */
529 int     get_class_n_supertypes (const ir_type *clss);
530
531 /** Returns the index to access superclass as supertype of class.
532  *
533  *  If superclass is no direct supertype of class returns -1.
534  */
535 int     get_class_supertype_index(ir_type *clss, ir_type *super_clss);
536
537 /** Gets the supertype at position pos,  0 <= pos < n_supertype. */
538 ir_type *get_class_supertype   (ir_type *clss, int pos);
539
540 /** Sets the supertype at position pos, 0 <= pos < n_supertype.
541  *
542  *  Does not set the corresponding subtype relation for supertype: this might
543  *  be at a different position! */
544 void    set_class_supertype   (ir_type *clss, ir_type *supertype, int pos);
545
546 /** Finds supertype in the list of supertypes and removes it */
547 void    remove_class_supertype(ir_type *clss, ir_type *supertype);
548
549 /** Convenience macro */
550 #define add_class_base_type(clss, basetype)  add_class_supertype(clss, basetype)
551 #define get_class_n_base_types(clss)  get_class_n_supertypes(clss)
552 #define get_class_base_type_index(clss, base_clss) get_class_supertype_index(clss, base_clss)
553 #define get_class_base_type(clss, pos)  get_class_supertype(clss, pos)
554 #define set_class_base_type(clss, basetype, pos) set_class_supertype(clss, basetype, pos)
555 #define remove_class_base_type(clss, basetype)  remove_class_supertype(clss, basetype)
556
557 /** Convenience macro */
558 #define add_class_base_type(clss, basetype)        add_class_supertype(clss, basetype)
559 #define get_class_n_base_types(clss)               get_class_n_supertypes(clss)
560 #define get_class_base_type_index(clss, base_clss) get_class_supertype_index(clss, base_clss)
561 #define get_class_base_type(clss, pos)             get_class_supertype(clss, pos)
562 #define set_class_base_type(clss, basetype, pos)   set_class_supertype(clss, basetype, pos)
563 #define remove_class_base_type(clss, basetype)     remove_class_supertype(clss, basetype)
564
565 /** This enumeration flags the peculiarity of entities and types. */
566 typedef enum peculiarity {
567   peculiarity_description,     /**< Represents only a description.  The entity/type is never
568                             allocated, no code/data exists for this entity/type.
569                         @@@ eventually rename to descriptive (adjective as the others!)*/
570   peculiarity_inherited,       /**< Describes explicitly that other entities are
571                             inherited to the owner of this entity.
572                             Overwrites must refer to at least one other
573                             entity.  If this is a method entity there exists
574                             no irg for this entity, only for one of the
575                             overwritten ones.
576                         Only for entity. */
577   peculiarity_existent         /**< The entity/type (can) exist.
578                     @@@ eventually rename to 'real' i.e., 'echt'
579                         This serves better as opposition to description _and_ inherited.*/
580 } peculiarity;
581 const char *get_peculiarity_string(peculiarity p);
582
583 /** Returns the peculiarity of the class. */
584 peculiarity get_class_peculiarity (const ir_type *clss);
585 /** Sets the peculiarity of the class. */
586 void        set_class_peculiarity (ir_type *clss, peculiarity pec);
587
588 /** Returns the type info entity of a class. */
589 entity *get_class_type_info(const ir_type *clss);
590
591 /** Set a type info entity for the class. */
592 void set_class_type_info(ir_type *clss, entity *ent);
593
594 /** Returns non-zero if a class is final. */
595 int is_class_final(const ir_type *clss);
596
597 /** Sets if a class is final. */
598 void set_class_final(ir_type *clss, int flag);
599
600 /* Set and get a class' dfn --
601    @todo This is an undocumented field, subject to change! */
602 void set_class_dfn (ir_type *clss, int dfn);
603 int  get_class_dfn (const ir_type *clss);
604
605 /** Returns true if a type is a class type. */
606 int is_Class_type(const ir_type *clss);
607
608 /**
609  *  @page struct_type   Representation of a struct type
610  *
611  *  Type_strct represents aggregate types that consist of a list
612  *  of fields.
613  *  The following attributes are private to this type kind:
614  *  - member:  All entities belonging to this class.  This are the fields
615  *             that can have any of the following types:  type_class,
616  *             type_struct, type_union, type_array, type_enumeration,
617  *             type_pointer, type_primitive.
618  *             This is a dynamic list that can be grown with an "add_" function,
619  *             but not shrinked.
620  *             This is a dynamic list that can be grown with an "add_" function,
621  *             but not shrinked.
622  */
623 /** Creates a new type struct */
624 ir_type *new_type_struct (ident *name);
625 /** Creates a new type struct with debug information. */
626 ir_type *new_d_type_struct (ident *name, dbg_info* db);
627
628 /* --- manipulate private fields of struct --- */
629
630 /** Adds the entity as member of the struct.  */
631 void    add_struct_member   (ir_type *strct, entity *member);
632
633 /** Returns the number of members of this struct. */
634 int     get_struct_n_members (const ir_type *strct);
635
636 /** Returns the member at position pos, 0 <= pos < n_member */
637 entity *get_struct_member   (const ir_type *strct, int pos);
638
639 /** Returns index of member in strct, -1 if not contained. */
640 int     get_struct_member_index(const ir_type *strct, entity *member);
641
642 /** Overwrites the member at position pos, 0 <= pos < n_member with
643    the passed entity. */
644 void    set_struct_member   (ir_type *strct, int pos, entity *member);
645
646 /** Finds member in the list of members and removes it. */
647 void    remove_struct_member (ir_type *strct, entity *member);
648
649 /** Returns true if a type is a struct type. */
650 int     is_Struct_type(const ir_type *strct);
651
652 /**
653  * @page method_type    Representation of a method type
654  *
655  * A method type represents a method, function or procedure type.
656  * It contains a list of the parameter and result types, as these
657  * are part of the type description.  These lists should not
658  * be changed by a optimization, as a change creates a new method
659  * type.  Therefore optimizations should allocated new method types.
660  * The set_ routines are only for construction by a frontend.
661  *
662  * - n_params:   Number of parameters to the procedure.
663  *               A procedure in FIRM has only call by value parameters.
664  *
665  * - param_type: A list with the types of parameters.  This list is ordered.
666  *               The nth type in this list corresponds to the nth element
667  *               in the parameter tuple that is a result of the start node.
668  *               (See ircons.h for more information.)
669  *
670  * - value_param_ents
671  *               A list of entities (whose owner is a struct private to the
672  *               method type) that represent parameters passed by value.
673  *
674  * - n_res:      The number of results of the method.  In general, procedures
675  *               have zero results, functions one.
676  *
677  * - res_type:   A list with the types of parameters.  This list is ordered.
678  *               The nth type in this list corresponds to the nth input to
679  *               Return nodes.  (See ircons.h for more information.)
680  *
681  * - value_res_ents
682  *               A list of entities (whose owner is a struct private to the
683  *               method type) that represent results passed by value.
684  */
685
686 /* These macros define the suffixes for the types and entities used
687    to represent value parameters / results. */
688 #define VALUE_PARAMS_SUFFIX  "val_param"
689 #define VALUE_RESS_SUFFIX    "val_res"
690
691 /** Create a new method type.
692  *
693  * @param name      the name (ident) of this type
694  * @param n_param   the number of parameters
695  * @param n_res     the number of results
696  *
697  * The arrays for the parameter and result types are not initialized by
698  * the constructor.
699  */
700 ir_type *new_type_method (ident *name, int n_param, int n_res);
701
702 /** Create a new method type with debug information.
703  *
704  * @param name      the name (ident) of this type
705  * @param n_param   the number of parameters
706  * @param n_res     the number of results
707  * @param db        user defined debug information
708  *
709  * The arrays for the parameter and result types are not initialized by
710  * the constructor.
711  */
712 ir_type *new_d_type_method (ident *name, int n_param, int n_res, dbg_info* db);
713
714 /* -- manipulate private fields of method. -- */
715
716 /** Returns the number of parameters of this method. */
717 int   get_method_n_params  (const ir_type *method);
718
719 /** Returns the type of the parameter at position pos of a method. */
720 ir_type *get_method_param_type(ir_type *method, int pos);
721 /** Sets the type of the parameter at position pos of a method.
722     Also changes the type in the pass-by-value representation by just
723     changing the type of the corresponding entity if the representation is constructed. */
724 void  set_method_param_type(ir_type *method, int pos, ir_type *tp);
725 /** Returns an entity that represents the copied value argument.  Only necessary
726    for compounds passed by value. This information is constructed only on demand. */
727 entity *get_method_value_param_ent(ir_type *method, int pos);
728 /**
729  * Returns a type that represents the copied value arguments.
730  */
731 ir_type *get_method_value_param_type(const ir_type *method);
732
733 /** Returns the number of results of a method type. */
734 int   get_method_n_ress   (const ir_type *method);
735 /** Returns the return type of a method type at position pos. */
736 ir_type *get_method_res_type(ir_type *method, int pos);
737 /** Sets the type of the result at position pos of a method.
738     Also changes the type in the pass-by-value representation by just
739     changing the type of the corresponding entity if the representation is constructed. */
740 void  set_method_res_type(ir_type *method, int pos, ir_type *tp);
741 /** Returns an entity that represents the copied value result.  Only necessary
742    for compounds passed by value. This information is constructed only on demand. */
743 entity *get_method_value_res_ent(ir_type *method, int pos);
744
745 /**
746  * Returns a type that represents the copied value results.
747  */
748 ir_type *get_method_value_res_type(const ir_type *method);
749
750 /**
751  * This enum flags the variadicity of methods (methods with a
752  * variable amount of arguments (e.g. C's printf). Default is
753  * non_variadic.
754  */
755 typedef enum variadicity {
756   variadicity_non_variadic, /**< non variadic */
757   variadicity_variadic      /**< variadic */
758 } variadicity;
759
760 /** Returns the null-terminated name of this variadicity. */
761 const char *get_variadicity_name(variadicity vari);
762
763 /** Returns the variadicity of a method. */
764 variadicity get_method_variadicity(const ir_type *method);
765
766 /** Sets the variadicity of a method. */
767 void set_method_variadicity(ir_type *method, variadicity vari);
768
769 /**
770  * Returns the first variadic parameter index of a type.
771  * If this index was NOT set, the index of the last parameter
772  * of the method type plus one is returned for variadic functions.
773  * Non-variadic function types always return -1 here.
774  */
775 int get_method_first_variadic_param_index(const ir_type *method);
776
777 /**
778  * Sets the first variadic parameter index. This allows to specify
779  * a complete call type (containing the type of all parameters)
780  * but still have the knowledge, which parameter must be passed as
781  * variadic one.
782  */
783 void set_method_first_variadic_param_index(ir_type *method, int index);
784
785 /**
786  * additional method type properties:
787  *  Tell about special properties of a method type. Some
788  *  of these may be discovered by analyses.
789  */
790 typedef enum {
791   mtp_no_property        = 0x00000000, /**< no additional properties, default */
792   mtp_property_const     = 0x00000001, /**< This method did not access memory and calculates
793                                          its return values solely from its parameters.
794                                          GCC: __attribute__((const)). */
795   mtp_property_pure      = 0x00000002, /**< This method did NOT write to memory and calculates
796                                          its return values solely from its parameters and
797                                          the memory they points to (or global vars).
798                                          GCC: __attribute__((pure)). */
799   mtp_property_noreturn  = 0x00000004, /**< This method did not return due to an aborting system
800                                          call.
801                                          GCC: __attribute__((noreturn)). */
802   mtp_property_nothrow   = 0x00000008, /**< This method cannot throw an exception.
803                                          GCC: __attribute__((nothrow)). */
804   mtp_property_naked     = 0x00000010, /**< This method is naked.
805                                          GCC: __attribute__((naked)). */
806   mtp_property_malloc    = 0x00000020, /**< This method returns newly allocate memory.
807                                          GCC: __attribute__((malloc)). */
808   mtp_property_intrinsic = 0x00000040, /**< This method is intrinsic. It is expected that
809                                          a lowering phase will remove all calls to it. */
810   mtp_property_inherited = (1<<31)     /**< used only in irg's, means property is inherited
811                                          from type. */
812 } mtp_additional_property;
813
814 /** Returns the mask of the additional graph properties. */
815 unsigned get_method_additional_properties(const ir_type *method);
816
817 /** Sets the mask of the additional graph properties. */
818 void set_method_additional_properties(ir_type *method, unsigned property_mask);
819
820 /** Sets one additional graph property. */
821 void set_method_additional_property(ir_type *method, mtp_additional_property flag);
822
823 /**
824  * calling conventions: lower 24 bits are the number of register parameters,
825  * upper 8 encode the calling conventions
826  */
827 typedef enum {
828   cc_reg_param        = 0x01000000, /**< Transmit parameters in registers, else the stack is used.
829                                          This flag may be set as default on some architectures. */
830   cc_last_on_top      = 0x02000000, /**< The last non-register parameter is transmitted on top of
831                                              the stack. This is equivalent to the stdcall or pascal
832                                              calling convention. If this flag is not set, the first
833                                              non-register parameter is used (cdecl calling convention) */
834   cc_callee_clear_stk = 0x04000000, /**< The callee clears the stack. This forbids variadic
835                                          function calls (stdcall). */
836   cc_this_call        = 0x08000000, /**< The first parameter is a this pointer and is transmitted
837                                          in a special way. */
838
839
840   cc_bits             = (0xFF << 24)  /**< the calling convention bits */
841 } calling_convention;
842
843 /* some often used cases: made as defines for firmjni */
844 /** cdecl calling convention */
845 #define cc_cdecl_set    (0)
846 /** stdcall calling convention */
847 #define cc_stdcall_set  cc_callee_clear_stk
848 /** fastcall calling convention */
849 #define cc_fastcall_set (cc_reg_param|cc_callee_clear_stk)
850
851 /** return the default calling convention for method types */
852 unsigned get_default_cc_mask(void);
853
854 /**
855  * check for the CDECL calling convention
856  */
857 #define IS_CDECL(cc_mask)     (((cc_mask) & cc_bits) == cc_cdecl_set)
858
859 /**
860  * check for the STDCALL calling convention
861  */
862 #define IS_STDCALL(cc_mask)   (((cc_mask) & cc_bits) == cc_stdcall_set)
863
864 /**
865  * check for the FASTCALL calling convention
866  */
867 #define IS_FASTCALL(cc_mask)  (((cc_mask) & cc_bits) == cc_fastcall_set)
868
869 /**
870  * set the CDECL convention bits
871  */
872 #define SET_CDECL(cc_mask)    (((cc_mask) & ~cc_bits) | cc_cdecl_set)
873
874 /**
875  * set the STDCALL convention bits
876  */
877 #define SET_STDCALL(cc_mask)  (((cc_mask) & ~cc_bits) | cc_stdcall_set)
878
879 /**
880  * set the FASTCALL convention bits
881  */
882 #define SET_FASTCALL(cc_mask) (((cc_mask) & ~cc_bits) | cc_fastcall_set)
883
884 /** Returns the calling convention of an entities graph. */
885 unsigned get_method_calling_convention(const ir_type *method);
886
887 /** Sets the calling convention of an entities graph. */
888 void set_method_calling_convention(ir_type *method, unsigned cc_mask);
889
890 /** Returns the number of registers parameters, 0 means default. */
891 unsigned get_method_n_regparams(ir_type *method);
892
893 /** Sets the number of registers parameters, 0 means default. */
894 void set_method_n_regparams(ir_type *method, unsigned n_regs);
895
896 /** Returns true if a type is a method type. */
897 int   is_Method_type     (const ir_type *method);
898
899 /**
900  *   @page union_type   Representation of a union (variant) type.
901  *
902  *   The union type represents union types.
903  *   - n_types:     Number of unioned types.
904  *   - members:     Entities for unioned types.  Fixed length array.
905  *                  This is a dynamic list that can be grown with an "add_" function,
906  *                  but not shrinked.
907  */
908 /** Creates a new type union. */
909 ir_type   *new_type_union (ident *name);
910
911 /** Creates a new type union with debug information. */
912 ir_type   *new_d_type_union (ident *name, dbg_info* db);
913
914 /* --- manipulate private fields of struct --- */
915
916 /** Returns the number of unioned types of this union */
917 int     get_union_n_members      (const ir_type *uni);
918
919 /** Adds a new entity to a union type */
920 void    add_union_member (ir_type *uni, entity *member);
921
922 /** Returns the entity at position pos of a union */
923 entity *get_union_member (const ir_type *uni, int pos);
924
925 /** Returns index of member in uni, -1 if not contained. */
926 int     get_union_member_index(const ir_type *uni, entity *member);
927
928 /** Overwrites a entity at position pos in a union type. */
929 void    set_union_member (ir_type *uni, int pos, entity *member);
930
931 /** Finds member in the list of members and removes it. */
932 void    remove_union_member (ir_type *uni, entity *member);
933
934 /** Returns true if a type is a union type. */
935 int     is_Union_type          (const ir_type *uni);
936
937 /**
938  * @page array_type Representation of an array type
939  *
940  * The array type represents rectangular multi dimensional arrays.
941  * The constants representing the bounds must be allocated to
942  * get_const_code_irg() by setting current_ir_graph accordingly.
943  *
944  * - n_dimensions:    Number of array dimensions.
945  * - *lower_bound:    Lower bounds of dimensions.  Usually all 0.
946  * - *upper_bound:    Upper bounds or dimensions.
947  * - *element_type:   The type of the array elements.
948  * - *element_ent:    An entity for the array elements to be used for
949  *                      element selection with Sel.
950  * @todo
951  *   Do we need several entities?  One might want
952  *   to select a dimension and not a single element in case of multi
953  *   dimensional arrays.
954  */
955
956 /** Create a new type array.
957  *
958  * Sets n_dimension to dimension and all dimension entries to NULL.
959  * Initializes order to the order of the dimensions.
960  * The entity for array elements is built automatically.
961  * Set dimension sizes after call to constructor with set_* routines.
962  */
963 ir_type *new_type_array         (ident *name, int n_dimensions,
964                   ir_type *element_type);
965
966 /** Create a new type array with debug information.
967  *
968  * Sets n_dimension to dimension and all dimension entries to NULL.
969  * Initializes order to the order of the dimensions.
970  * The entity for array elements is built automatically.
971  * Set dimension sizes after call to constructor with set_* routines.
972  * A legal array type must have at least one dimension set.
973  */
974 ir_type *new_d_type_array         (ident *name, int n_dimensions,
975                   ir_type *element_type, dbg_info* db);
976
977 /* --- manipulate private fields of array type --- */
978
979 /** Returns the number of array dimensions of this type. */
980 int   get_array_n_dimensions (const ir_type *array);
981
982 /**
983  * Allocates Const nodes of mode_I for one array dimension.
984  * Upper bound in Firm is the element next to the last, i.e. [lower,upper[
985  */
986 void  set_array_bounds_int   (ir_type *array, int dimension, int lower_bound,
987                                                           int upper_bound);
988 /**
989  * Sets the bounds for one array dimension.
990  * Upper bound in Firm is the element next to the last, i.e. [lower,upper[
991  */
992 void  set_array_bounds       (ir_type *array, int dimension, ir_node *lower_bound,
993                                                           ir_node *upper_bound);
994 /** Sets the lower bound for one array dimension, i.e. [lower,upper[ */
995 void  set_array_lower_bound  (ir_type *array, int dimension, ir_node *lower_bound);
996
997 /** Allocates Const nodes of mode_I for the lower bound of an array
998     dimension, i.e. [lower,upper[ */
999 void  set_array_lower_bound_int (ir_type *array, int dimension, int lower_bound);
1000
1001 /** Sets the upper bound for one array dimension, i.e. [lower,upper[ */
1002 void  set_array_upper_bound  (ir_type *array, int dimension, ir_node *upper_bound);
1003
1004 /** Allocates Const nodes of mode_I for the upper bound of an array
1005     dimension, i.e. [lower,upper[. */
1006 void  set_array_upper_bound_int (ir_type *array, int dimension, int upper_bound);
1007
1008 /** Returns true if lower bound != Unknown. */
1009 int       has_array_lower_bound     (const ir_type *array, int dimension);
1010 /** Returns the lower bound of an array. */
1011 ir_node * get_array_lower_bound     (const ir_type *array, int dimension);
1012 /** Works only if bound is Const node with tarval that can be converted to long. */
1013 long      get_array_lower_bound_int (const ir_type *array, int dimension);
1014 /** returns true if lower bound != Unknown */
1015 int       has_array_upper_bound     (const ir_type *array, int dimension);
1016 /** Returns the upper bound of an array. */
1017 ir_node * get_array_upper_bound     (const ir_type *array, int dimension);
1018 /** Works only if bound is Const node with tarval that can be converted to long. */
1019 long      get_array_upper_bound_int (const ir_type *array, int dimension);
1020
1021 /** Sets an array dimension to a specific order. */
1022 void set_array_order (ir_type *array, int dimension, int order);
1023
1024 /** Returns the order of an array dimension. */
1025 int  get_array_order (const ir_type *array, int dimension);
1026
1027 /** Find the array dimension that is placed at order ord. */
1028 int find_array_dimension(const ir_type *array, int order);
1029
1030 /** Sets the array element type. */
1031 void  set_array_element_type (ir_type *array, ir_type* tp);
1032
1033 /** Gets the array element type. */
1034 ir_type *get_array_element_type (ir_type *array);
1035
1036 /** Sets the array element entity. */
1037 void  set_array_element_entity (ir_type *array, entity *ent);
1038
1039 /** Get the array element entity. */
1040 entity *get_array_element_entity (const ir_type *array);
1041
1042 /** Returns true if a type is an array type. */
1043 int    is_Array_type(const ir_type *array);
1044
1045 /**
1046  * @page enumeration_type   Representation of an enumeration type
1047  *
1048  * Enumeration types need not necessarily be represented explicitly
1049  * by Firm types, as the frontend can lower them to integer constants as
1050  * well.  For debugging purposes or similar tasks this information is useful.
1051  *
1052  * - *enum:         The target values representing the constants used to
1053  *                  represent individual enumerations.
1054  * - *enum_nameid:  Idents containing the source program name of the enumeration
1055  *                  constants
1056  */
1057 /** Create a new type enumeration -- set the enumerators independently. */
1058 ir_type   *new_type_enumeration    (ident *name, int n_enums);
1059
1060 /** Create a new type enumeration with debug information -- set the enumerators independently. */
1061 ir_type   *new_d_type_enumeration    (ident *name, int n_enums, dbg_info* db);
1062
1063 /* --- manipulate fields of enumeration type. --- */
1064
1065 /** Returns the number of enumeration values of this enumeration */
1066 int     get_enumeration_n_enums (const ir_type *enumeration);
1067
1068 /** Sets the enumeration value at a given position. */
1069 void    set_enumeration_enum    (ir_type *enumeration, int pos, tarval *con);
1070
1071 /** Returns the enumeration value at a given position. */
1072 tarval *get_enumeration_enum    (const ir_type *enumeration, int pos);
1073
1074 /** Assign an ident to an enumeration value at a given position. */
1075 void    set_enumeration_nameid  (ir_type *enumeration, int pos, ident *id);
1076
1077 /** Returns the assigned ident of an enumeration value at a given position. */
1078 ident  *get_enumeration_nameid  (const ir_type *enumeration, int pos);
1079
1080 /** Returns the assigned name of an enumeration value at a given position. */
1081 const char *get_enumeration_name(const ir_type *enumeration, int pos);
1082
1083 /** Returns true if a type is a enumeration type. */
1084 int     is_Enumeration_type     (const ir_type *enumeration);
1085
1086 /**
1087  * @page pointer_type   Representation of a pointer type
1088  *
1089  * The mode of the pointer type must be a reference mode.
1090  *
1091  * Pointer types:
1092  * - points_to:      The type of the entity this pointer points to.
1093  */
1094
1095 /** Creates a new type pointer. */
1096 ir_type *new_type_pointer           (ident *name, ir_type *points_to, ir_mode *ptr_mode);
1097
1098 /** Creates a new type pointer with debug information. */
1099 ir_type *new_d_type_pointer         (ident *name, ir_type *points_to, ir_mode *ptr_mode, dbg_info* db);
1100
1101 /* --- manipulate fields of type_pointer --- */
1102
1103 /** Sets the type to which a pointer points to. */
1104 void  set_pointer_points_to_type (ir_type *pointer, ir_type *tp);
1105
1106 /** Returns the type to which a pointer points to. */
1107 ir_type *get_pointer_points_to_type (ir_type *pointer);
1108
1109 /** Returns true if a type is a pointer type. */
1110 int   is_Pointer_type            (const ir_type *pointer);
1111
1112 /** Returns the first pointer type that has as points_to tp.
1113  *  Not efficient: O(#types).
1114  *  If not found returns firm_unknown_type. */
1115 ir_type *find_pointer_type_to_type (ir_type *tp);
1116
1117 /**
1118  * @page primitive_type Representation of a primitive type
1119  *
1120  * Primitive types are types that represent indivisible data values that
1121  * map directly to modes.  They don't have a private attribute.  The
1122  * important information they carry is held in the common mode field.
1123  */
1124 /** Creates a new primitive type. */
1125 ir_type *new_type_primitive (ident *name, ir_mode *mode);
1126
1127 /** Creates a new primitive type with debug information. */
1128 ir_type *new_d_type_primitive (ident *name, ir_mode *mode, dbg_info* db);
1129
1130 /** Returns true if a type is a primitive type. */
1131 int  is_Primitive_type  (const ir_type *primitive);
1132
1133
1134 /**
1135  * @page none_type The None type
1136  *
1137  *  This type is an auxiliary type dedicated to support type analyses.
1138  *
1139  *  The none type represents that there is no type.  The type can be used to
1140  *  initialize fields of type* that actually can not contain a type or that
1141  *  are initialized for an analysis. There exists exactly one type none.
1142  *  This type is not on the type list in ir_prog. It is
1143  *  allocated when initializing the type module.
1144  *
1145  *  The following values are set:
1146  *    - mode:  mode_BAD
1147  *    - name:  "type_none"
1148  *    - state: layout_fixed
1149  *    - size:  0
1150  */
1151 /** A variable that contains the only none type. */
1152 extern ir_type *firm_none_type;
1153 /** Returns the none type */
1154 ir_type *get_none_type(void);
1155
1156 /**
1157  * @page unknown_type
1158  *
1159  *  This type is an auxiliary type dedicated to support type analyses.
1160  *
1161  *  The unknown type represents that there could be a type, but it is not
1162  *  known.  This type can be used to initialize fields before an analysis (not known
1163  *  yet) or to represent the top of a lattice (could not be determined).  There exists
1164  *  exactly one type unknown. This type is not on the type list in ir_prog.  It is
1165  *  allocated when initializing the type module.
1166  *
1167  *  The following values are set:
1168  *    - mode:  mode_ANY
1169  *    - name:  "type_unknown"
1170  *    - state: layout_fixed
1171  *    - size:  0
1172  */
1173 /** A variable that contains the only unknown type. */
1174 extern ir_type *firm_unknown_type;
1175 /** Returns the unknown type */
1176 ir_type *get_unknown_type(void);
1177
1178
1179 /**
1180  *  Checks whether a type is atomic.
1181  *  @param tp   any type
1182  *  @return true if type is primitive, pointer or enumeration
1183  */
1184 int is_atomic_type(const ir_type *tp);
1185
1186 /* --- Support for compound types --- */
1187
1188 /**
1189  * Gets the number of elements in a firm compound type.
1190  *
1191  * This is just a comfortability function, because structs and
1192  * classes can often be treated be the same code, but they have
1193  * different access functions to their members.
1194  *
1195  * @param tp  The type (must be struct, union or class).
1196  *
1197  * @return Number of members in the compound type.
1198  */
1199 int get_compound_n_members(const ir_type *tp);
1200
1201 /**
1202  * Gets the member of a firm compound type at position pos.
1203  *
1204  * @param tp  The type (must be struct, union or class).
1205  * @param pos The number of the member.
1206  *
1207  * @return The member entity at position pos.
1208  *
1209  * @see get_compound_n_members() for justification of existence.
1210  */
1211 entity *get_compound_member(const ir_type *tp, int pos);
1212
1213 /** Returns index of member in tp, -1 if not contained. */
1214 int     get_compound_member_index(const ir_type *tp, entity *member);
1215
1216 /**
1217  * Checks whether a type is compound.
1218  *
1219  * @param tp - any type
1220  *
1221  * @return true if the type is class, structure, union or array type.
1222  */
1223 int is_compound_type(const ir_type *tp);
1224
1225 /**
1226  * Checks, whether a type is a frame type.
1227  */
1228 int is_frame_type(const ir_type *tp);
1229
1230 /**
1231  * Checks, whether a type is a lowered type.
1232  */
1233 int is_lowered_type(const ir_type *tp);
1234
1235 /**
1236  * Makes a new frame type. Frame types are class types,
1237  * so all class access functions work.
1238  * Frame types are not in the global list of types.
1239  */
1240 ir_type   *new_type_frame(ident *name);
1241
1242 /**
1243  * Sets a lowered type for a type. This sets both associations
1244  * and marks lowered type as a "lowered" one.
1245  */
1246 void set_lowered_type(ir_type *tp, ir_type *lowered_type);
1247
1248 /**
1249  * Gets the lowered/unlowered type of a type or NULL if this type
1250  * has no lowered/unlowered one.
1251  */
1252 ir_type *get_associated_type(const ir_type *tp);
1253
1254 /**
1255  * Allocate an area of size bytes aligned at alignment
1256  * at the start or the end of a frame type.
1257  * The frame type must have already an fixed layout.
1258  *
1259  * @param frame_type a frame type
1260  * @param size       the size of the entity
1261  * @param alignment  the alignment of the entity
1262  * @param at_start   if true, put the area at the frame type's start, else at end
1263  *
1264  * @return the entity representing the area
1265  */
1266 entity *frame_alloc_area(type *frame_type, int size, int alignment, int at_start);
1267
1268 /*-----------------------------------------------------------------*/
1269 /** Debug aides                                                   **/
1270 /*-----------------------------------------------------------------*/
1271
1272 /**
1273  *  Outputs a unique number for this type if libfirm is compiled for
1274  *  debugging, (configure with --enable-debug) else returns the address
1275  *  of the type cast to long.
1276  */
1277 long get_type_nr(const ir_type *tp);
1278
1279 #endif /* _FIRM_TR_TYPE_H_ */