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