3e28bd28325b2633e7f7dc44ea3d37762bebe1c5
[libfirm] / ir / tr / type.h
1 /*
2  * (C) 2001 by Universitaet Karlsruhe
3  */
4
5 /**
6  *
7  *  @file type.h
8  *
9  *  Datastructure to hold type information.
10  *
11  *  @author Goetz Lindenmaier
12  *
13  *  This module supplies a datastructure to represent all types
14  *  known in the compiled program.  This includes types specified
15  *  in the program as well as types defined by the language.  In the
16  *  view of the intermediate representation there is no difference
17  *  between these types.
18  *
19  *  There exist several kinds of types, arranged by the structure of
20  *  the type.  A type is described by a set of attributes.  Some of
21  *  these attributes are common to all types, others depend on the
22  *  kind of the type.
23  *
24  *  Types are different from the modes defined in irmode:  Types are
25  *  on the level of the programming language, modes at the level of
26  *  the target processor.
27  *
28  * @see  tpop.h
29  */
30
31 /* $Id$ */
32
33 # ifndef _TYPE_H_
34 # define _TYPE_H_
35
36 # include "tpop.h"
37 # include "firm_common.h"
38 # include "ident.h"
39 # include "irmode.h"
40 # include <stdbool.h>
41 # include "dbginfo.h"
42
43
44 /* to resolve recursion between entity.h and type.h */
45 #ifndef _ENTITY_TYPEDEF_
46 #define _ENTITY_TYPEDEF_
47 typedef struct entity entity;
48 #endif
49
50 #ifndef _IR_NODE_TYPEDEF_
51 #define _IR_NODE_TYPEDEF_
52 typedef struct ir_node ir_node;
53 #endif
54
55 /**
56  *  An abstract data type to represent types.
57  *
58  *  This is the abstract data type with which any type known in the
59  *  compiled program can be represented.  This includes types specified
60  *  in the program as well as types defined by the language.  In the
61  *  view of the intermediate representation there is no difference
62  *  between these types.
63  *
64  *  There exist several kinds of types, arranged by the structure of
65  *  the type.  These are distinguished by a type opcode.
66  *  A type is described by a set of attributes.  Some of these attributes
67  *  are common to all types, others depend on the kind of the type.
68  *
69  *  The following describes the common attributes.  They can only be
70  *  accessed by the functions given below.
71  *
72  *  The common fields are:
73  *
74  *  - firm_kind: A firm_kind tag containing k_type.  This is useful
75  *               for dynamically checking whether a node is a type node.
76  *  - type_op:   A tp_op specifying the kind of the type.
77  *  - mode:      The mode to be used to represent the type on a machine.
78  *  - name:      An identifier specifying the name of the type.  To be
79  *               set by the frontend.
80  *  - size:      The size of the type, i.e. an entity of this type will
81  *               occupy size bytes in memory.  In several cases this is
82  *               determined when fixing the layout of this type (class,
83  *               struct, union, array, enumeration).
84  *  - state:     The state of the type.  The state represents whether the
85  *               layout of the type is undefined or fixed (values: layout_undefined
86  *               or layout_fixed).  Compound types can have an undefined
87  *               layout.  The layout of the basic types primitive and pointer
88  *               is always layout_fixed.  If the layout of
89  *               compound types is fixed all entities must have an offset
90  *               and the size of the type must be set.
91  *               A fixed layout for enumeration types means that each enumeration
92  *               is associated with an implementation value.
93  *  - visit:     A counter for walks of the type information.
94  *  - link:      A void* to associate some additional information with the type.
95  *
96  *  These fields can only be accessed via access functions.
97  *
98  *  Depending on the value of @c type_op, i.e., depending on the kind of the
99  *  type the adt contains further attributes.  These are documented below.
100  *
101  *  @see
102  *
103  *  @link class_type class @endlink, @link struct_type struct @endlink,
104  *  @link method_type method @endlink, @link union_type union @endlink,
105  *  @link array_type array @endlink, @link enumeration_type enumeration @endlink,
106  *  @link pointer_type pointer @endlink, @link primitive_type primitive @endlink
107  *
108  *  @todo
109  *      mode maybe not global field??
110  */
111 #ifndef _TYPE_TYPEDEF_
112 #define _TYPE_TYPEDEF_
113 typedef struct type type;
114 #endif
115
116 # include "type_or_entity.h"
117
118 /** Frees the memory used by the type.   Does not free the entities
119    belonging to the type, except for the array element entity.  */
120 void        free_type(type *tp);
121
122 tp_op*      get_type_tpop(type *tp);
123 ident*      get_type_tpop_nameid(type *tp);
124 const char* get_type_tpop_name(type *tp);
125 tp_opcode   get_type_tpop_code(type *tp);
126
127 ident*      get_type_ident(type *tp);
128 void        set_type_ident(type *tp, ident* id);
129 const char* get_type_name(type *tp);
130
131 /** The state of a type layout. */
132 typedef enum {
133   layout_undefined,    /**< The layout of this type is not defined.
134                           Address computation to access fields is not
135                           possible, fields must be accessed by Sel
136                           nodes.  This is the default value except for
137                           pointer, primitive and method types. */
138   layout_fixed         /**< The layout is fixed, all component/member entities
139                           have an offset assigned.  Size of the type is known.
140                           Arrays can be accessed by explicit address
141                           computation. Default for pointer, primitive ane method
142                           types.  */
143 } type_state;
144
145 /** Returns the type layout state of a type. */
146 type_state  get_type_state(type *tp);
147
148 /** Sets the type layout state of a type.
149  *
150  * For primitives, pointer and method types the layout is always fixed.
151  * This call is legal but has no effect.
152  */
153 void        set_type_state(type *tp, type_state state);
154
155 /** Returns the mode of a type.
156  *
157  * Returns NULL for all non atomic types.
158  */
159 ir_mode*    get_type_mode(type *tp);
160
161 /** Sets the mode of a type.
162  *
163  * Only has an effect on primitive and enumeration types.
164  */
165 void        set_type_mode(type *tp, ir_mode* m);
166
167 /** Returns the size of a type. */
168 int         get_type_size(type *tp);
169
170 /** Sets the size of a type.
171  *
172  * For primitive, enumeration, pointer and method types the size
173  * is always fixed. This call is legal but has no effect.
174  */
175 void        set_type_size(type *tp, int size);
176
177
178 unsigned long get_type_visited(type *tp);
179 void          set_type_visited(type *tp, unsigned long num);
180 /* Sets visited field in type to type_visited. */
181 void          mark_type_visited(type *tp);
182 /* @@@ name clash!! bool          type_visited(type *tp); */
183 bool          type_not_visited(type *tp);
184
185 void*         get_type_link(type *tp);
186 void          set_type_link(type *tp, void *l);
187
188 /**
189  * Visited flag to traverse the type information.
190  *
191  * Increase this flag by one before traversing the type information.
192  * Mark type nodes as visited by set_type_visited(type, type_visited).
193  * Check whether node was already visited by comparing get_type_visited(type)
194  * and type_visited.
195  * Or use the function to walk all types.
196  *
197  * @see  typewalk
198  */
199 extern unsigned long type_visited;
200 void          set_master_type_visited(unsigned long val);
201 unsigned long get_master_type_visited(void);
202 void          inc_master_type_visited(void);
203
204 /**
205  * Checks whether a pointer points to a type.
206  *
207  * @param thing     an arbitrary pointer
208  *
209  * @return
210  *     true if the thing is a type, else false
211  */
212 int is_type            (void *thing);
213
214 /**
215  *   Checks whether two types are structural equal.
216  *
217  *   @param st pointer type
218  *   @param lt pointer type
219  *
220  *   @return
221  *    true if the types are equal, else false.
222  *    Types are equal if :
223  *    - they are the same type kind
224  *    - they have the same name
225  *    - they have the same mode (if applicable)
226  *    - they have the same type_state and, ev., the same size
227  *    - they are class types and have
228  *      - the same members (see same_entity in entity.h)
229  *      - the same supertypes -- the C-pointers are compared --> no recursive call.
230  *      - the same number of subtypes.  Subtypes are not compared,
231  *        as this could cause a cyclic test.
232  *      - the same peculiarity
233  *    - they are structure types and have the same members
234  *    - they are method types and have
235  *      - the same parameter types
236  *      - the same result types
237  *    - they are union types and have the same members
238  *    - they are array types and have
239  *      - the same number of dimensions
240  *      - the same dimension bounds
241  *      - the same dimension order
242  *      - the same element type
243  *    - they are enumeration types and have the same enumerator names
244  *    - they are pointer types and have the identical points_to type
245  *      (i.e., the same C-struct to represent the type, type_id is skipped.
246  *       This is to avoid endless recursions; with pointer types circlic
247  *       type graphs are possible.)
248  */
249 bool equal_type(type *tpy1, type *typ2);
250
251 /**
252  *   Checks whether two types are structural comparable.
253  *
254  *   @param st pointer type
255  *   @param lt pointer type
256  *
257  *   @return
258  *    true if type st is smaller than type lt, i.e. whenever
259  *    lt is expected a st can be used.
260  *    This is true if
261  *    - they are the same type kind
262  *    - mode(st) < mode (lt)  (if applicable)
263  *    - they are class types and st is (transitive) subtype of lt,
264  *    - they are structure types and
265  *       - the members of st have exactly one counterpart in lt with the same name,
266  *       - the counterpart has a bigger type.
267  *    - they are method types and have
268  *      - the same number of parameter and result types,
269  *      - the parameter types of st are smaller than those of lt,
270  *      - the result types of st are smaller than those of lt
271  *    - they are union types and have the members of st have exactly one
272  *      @return counterpart in lt and the type is smaller
273  *    - they are array types and have
274  *      - the same number of dimensions
275  *      - all bounds of lt are bound of st
276  *      - the same dimension order
277  *      - the same element type
278  *      @return or
279  *      - the element type of st is smaller than that of lt
280  *      - the element types have the same size and fixed layout.
281  *    - they are enumeration types and have the same enumerator names
282  *    - they are pointer types and have the points_to type of st is
283  *      @return smaller than the points_to type of lt.
284  *
285  */
286 bool smaller_type (type *st, type *lt);
287
288 /**
289  *  @page class_type    Representation of a class type
290  *
291  *  If the type opcode is set to type_class the type represents class
292  *  types.  A list of fields and methods is associated with a class.
293  *  Further a class can inherit from and bequest to other classes.
294  *  @@@ value class???
295  *  The following attributes are private to this type kind:
296  *  - member:     All entities belonging to this class.  This are methode entities
297  *                which have type_method or fields that can have any of the
298  *                following type kinds: type_class, type_struct, type_union,
299  *                type_array, type_enumeration, type_pointer, type_primitive.
300  *
301  *  The following two are dynamic lists that can be grown with an "add_" function,
302  *  but not shrinked:
303  *
304  *  - subtypes:   A list of direct subclasses.
305  *
306  *  - supertypes: A list of direct superclasses.
307  *
308  *  - peculiarity: The peculiarity of this class.  If the class is of peculiarity
309  *                 "description" it only is a description of requirememts to a class,
310  *                 as, e.g., a Java interface.  The class will never be allocated.
311  *                 Peculiatity inherited is only possible for entities.  An entity
312  *                 is of peculiarity inherited if the compiler generated the entity
313  *                 to explicitly resolve inheritance.  An inherited method entity has
314  *                 no value for irg.
315  *                 Values: description, existent, inherited.  Default: existent.
316  *
317  */
318
319 /** Creates a new class type. */
320 type   *new_type_class (ident *name);
321
322 /** Creates a new class type with debug information. */
323 type   *new_d_type_class (ident *name, dbg_info *db);
324
325 /* --- manipulate private fields of class type  --- */
326
327 /** Adds the entity as member of the class.  */
328 void    add_class_member   (type *clss, entity *member);
329
330 /** Returns the number of members of this class. */
331 int     get_class_n_members (type *clss);
332
333 /** Returns the member at position pos, 0 <= pos < n_member */
334 entity *get_class_member   (type *clss, int pos);
335
336 /** Returns index of mem in clss, -1 if not contained. */
337 int     get_class_member_index(type *clss, entity *mem);
338
339 /** Overwrites the member at position pos, 0 <= pos < n_member with
340    the passed entity. */
341 void    set_class_member   (type *clss, entity *member, int pos);
342
343 /** Replaces complete member list in class type by the list passed.
344    Copies the list passed. This function is necessary to reduce the number of members.
345    members is an array of entities, num the size of this array.  Sets all
346    owners of the members passed to clss. */
347 void    set_class_members  (type *clss, entity *members[], int arity);
348
349 /** Finds member in the list of members and removes it.
350    Shrinks the member list, so iterate from the end!!!
351    Does not deallocate the entity.  */
352 void    remove_class_member(type *clss, entity *member);
353
354
355 /** Adds subtype as subtype to clss.
356    Checks whether clss is a supertype of subtype.  If not
357    adds also clss as supertype to subtype.  */
358 void    add_class_subtype   (type *clss, type *subtype);
359
360 /** Returns the number of subtypes */
361 int     get_class_n_subtypes (type *clss);
362
363 /** Gets the subtype at position pos, 0 <= pos < n_subtype. */
364 type   *get_class_subtype   (type *clss, int pos);
365
366 /** Sets the subtype at positioin pos, 0 <= pos < n_subtype.
367    Does not set the corresponding supertype relation for subtype: this might
368    be a different position! */
369 void    set_class_subtype   (type *clss, type *subtype, int pos);
370
371 /** Finds subtype in the list of subtypes and removes it  */
372 void    remove_class_subtype(type *clss, type *subtype);
373
374
375 /** Adds supertype as supertype to class.
376    Checks whether clss is a subtype of supertype.  If not
377    adds also clss as subtype to supertype.  */
378 void    add_class_supertype   (type *clss, type *supertype);
379
380 /** Returns the number of supertypes */
381 int     get_class_n_supertypes (type *clss);
382
383 /** Returns the index of an supertype in a type. */
384 int     get_class_supertype_index(type *clss, type *super_clss);
385
386 /** Gets the supertype at position pos,  0 <= pos < n_supertype. */
387 type   *get_class_supertype   (type *clss, int pos);
388
389 /** Sets the supertype at postition pos, 0 <= pos < n_subtype.
390    Does not set the corresponding subtype relation for supertype: this might
391    be a different position! */
392 void    set_class_supertype   (type *clss, type *supertype, int pos);
393
394 /** Finds supertype in the list of supertypes and removes it */
395 void    remove_class_supertype(type *clss, type *supertype);
396
397 /** This enumeration flags the peculiarity of entities and types. */
398 typedef enum peculiarity {
399   description,     /**< Represents only a description.  The entity/type is never
400                       allocated, no code/data exists for this entity/type. */
401   inherited,       /**< Describes explicitly that other entities are
402                       inherited to the owner of this entity.
403                       Overwrites must refer to at least one other
404                       entity.  If this is a method entity there exists
405                       no irg for this entity, only for one of the
406                       overwritten ones. */
407   existent         /**< The entity/type (can) exist. */
408 } peculiarity;
409
410 /* The peculiarity of the class.  The enumeration peculiarity is defined
411    in entity.h */
412 INLINE peculiarity get_class_peculiarity (type *clss);
413 INLINE void        set_class_peculiarity (type *clss, peculiarity pec);
414
415 /* Set and get a class' dfn --
416    @todo This is an undocumented field, subject to change! */
417 void set_class_dfn (type *clss, int dfn);
418 int  get_class_dfn (type *clss);
419
420 /** Returns true if a type is a class type. */
421 bool is_class_type(type *clss);
422
423 /** Returns true if low is subclass of high. */
424 bool is_subclass_of(type *low, type *high);
425
426 /**
427  *  @page struct_type   Representation of a struct type
428  *
429  *  Type_strct represents aggregate types that consist of a list
430  *  of fields.
431  *  The following attributes are private to this type kind:
432  *  - member:  All entities belonging to this class.  This are the fields
433  *             that can have any of the following types:  type_class,
434  *             type_struct, type_union, type_array, type_enumeration,
435  *             type_pointer, type_primitive.
436  *             This is a dynamic list that can be grown with an "add_" function,
437  *             but not shrinked.
438  *             This is a dynamic list that can be grown with an "add_" function,
439  *             but not shrinked.
440  */
441 /** Creates a new type struct */
442 type   *new_type_struct (ident *name);
443 /** Creates a new type struct with debug information. */
444 type   *new_d_type_struct (ident *name, dbg_info* db);
445
446 /* manipulate private fields of struct */
447 void    add_struct_member   (type *strct, entity *member);
448 int     get_struct_n_members (type *strct);
449 entity *get_struct_member   (type *strct, int pos);
450 void    set_struct_member   (type *strct, int pos, entity *member);
451
452 /** Finds member in the list of members and removes it. */
453 void    remove_struct_member (type *strct, entity *member);
454
455 /** Returns true if a type is a struct type. */
456 bool    is_struct_type(type *strct);
457
458 /**
459  * @page method_type    Representation of a method type
460  *
461  * A method type represents a method, function or procedure type.
462  * It contains a list of the parameter and result types, as these
463  * are part of the type description.  These lists should not
464  * be changed by a optimization, as a change creates a new method
465  * type.  Therefore optimizations should allocated new method types.
466  * The set_ routines are only for construction by a frontend.
467  *
468  * - n_params:   Number of parameters to the procedure.
469  *               A procedure in FIRM has only call by value parameters.
470  *
471  * - param_type: A list with the types of parameters.  This list is ordered.
472  *               The nth type in this list corresponds to the nth element
473  *               in the parameter tuple that is a result of the start node.
474  *               (See ircons.h for more information.)
475  *
476  * - value_param_ents
477  *               A list of entities (whose owner is a struct private to the
478  *               method type) that represent parameters passed by value.
479  *
480  * - n_res:      The number of results of the method.  In general, procedures
481  *               have zero results, functions one.
482  *
483  * - res_type:   A list with the types of parameters.  This list is ordered.
484  *               The nth type in this list corresponds to the nth input to
485  *               Return nodes.  (See ircons.h for more information.)
486  *
487  * - value_res_ents
488  *               A list of entities (whose owner is a struct private to the
489  *               method type) that represent results passed by value.
490  */
491
492 /* These makros define the suffixes for the types and entities used
493    to represent value parameters / results. */
494 #define VALUE_PARAMS_SUFFIX  "val_param"
495 #define VALUE_RESS_SUFFIX    "val_res"
496
497 /** Create a new method type.
498  *
499  * @param name      the name (ident) of this type
500  * @param n_param   the number of parameters
501  * @param n_res     the number of results
502  *
503  * The arrays for the parameter and result types are not initialized by
504  * the constructor.
505  */
506 type *new_type_method (ident *name, int n_param, int n_res);
507
508 /** Create a new method type with debug information.
509  *
510  * @param name      the name (ident) of this type
511  * @param n_param   the number of parameters
512  * @param n_res     the number of results
513  * @param db        user defined debug information
514  *
515  * The arrays for the parameter and result types are not initialized by
516  * the constructor.
517  */
518 type *new_d_type_method (ident *name, int n_param, int n_res, dbg_info* db);
519
520 /* -- manipulate private fields of method. -- */
521
522 /** Returns the number of parameters of this method. */
523 int   get_method_n_params  (type *method);
524
525 /** Returns the type of the parameter at position pos of a method. */
526 type *get_method_param_type(type *method, int pos);
527 /** Sets the type of the parameter at position pos of a method.
528     Also changes the type in the pass-by-value representation by just
529     changing the type of the corresponding entity if the representation is constructed. */
530 void  set_method_param_type(type *method, int pos, type* tp);
531 /* Returns an entity that represents the copied value argument.  Only necessary
532    for compounds passed by value. This information is constructed only on demand. */
533 entity *get_method_value_param_ent(type *method, int pos);
534
535 int   get_method_n_ress   (type *method);
536 type *get_method_res_type(type *method, int pos);
537 /** Sets the type of the result at position pos of a method.
538     Also changes the type in the pass-by-value representation by just
539     changing the type of the corresponding entity if the representation is constructed. */
540 void  set_method_res_type(type *method, int pos, type* tp);
541 /* Returns an entity that represents the copied value result.  Only necessary
542    for compounds passed by value. This information is constructed only on demand. */
543 entity *get_method_value_res_ent(type *method, int pos);
544
545 /**
546  * this enum flags the variadicity of methods (methods with a
547  * variable amount of arguments (e.g. C's printf). Default is
548  * non_variadic.
549  */
550 typedef enum variadicity {
551   non_variadic,         /**< non variadic */
552   variadic              /**< variadic */
553 } variadicity;
554
555 /** Returns the variadicity of a method. */
556 variadicity get_method_variadicity(type *method);
557
558 /** Sets the variadicity of a method. */
559 void set_method_variadicity(type *method, variadicity vari);
560
561 /** Returns true if a type is a method type. */
562 bool  is_method_type     (type *method);
563
564 /**
565  *   @page union_type   Representation of a union type.
566  *
567  *   The union type represents union types.
568  *   - n_types:     Number of unioned types.
569  *   - members:     Entities for unioned types.  Fixed length array.
570  *                  This is a dynamic list that can be grown with an "add_" function,
571  *                  but not shrinked.
572  */
573 /** Creates a new type union. */
574 type   *new_type_union (ident *name);
575
576 /** Creates a new type union with debug information. */
577 type   *new_d_type_union (ident *name, dbg_info* db);
578
579 /* --- manipulate private fields of struct --- */
580
581 /** Returns the number of unioned types of this union */
582 int     get_union_n_members      (type *uni);
583
584 /** Adds a new entity to a union type */
585 void    add_union_member (type *uni, entity *member);
586
587 /** Returns the entity at position pos of a union */
588 entity *get_union_member (type *uni, int pos);
589
590 /** Overwrites a entity at position pos in a union type. */
591 void    set_union_member (type *uni, int pos, entity *member);
592
593 /** Finds member in the list of members and removes it. */
594 void    remove_union_member (type *uni, entity *member);
595
596 /** Returns true if a type is a union type. */
597 bool    is_union_type          (type *uni);
598
599 /**
600  * @page array_type     Representation of an array type
601  *
602  * The array type represents rectangular multi dimensional arrays.
603  * The constants representing the bounds must be allocated to
604  * get_const_code_irg() by setting current_ir_graph accordingly.
605  *
606  * - n_dimensions:    Number of array dimensions.
607  * - *lower_bound:    Lower bounds of dimensions.  Usually all 0.
608  * - *upper_bound:    Upper bounds or dimensions.
609  * - *element_type:   The type of the array elements.
610  * - *element_ent:    An entity for the array elements to be used for
611  *                      element selection with Sel.
612  * @todo
613  *   Do we need several entities?  One might want
614  *   to select a dimension and not a single element in case of multidim arrays.
615  */
616
617 /** Create a new type array.
618  *
619  * Sets n_dimension to dimension and all dimension entries to NULL.
620  * Initializes order to the order of the dimensions.
621  * The entity for array elements is built automatically.
622  * Set dimension sizes after call to constructor with set_* routines.
623  */
624 type *new_type_array         (ident *name, int n_dimensions,
625                               type *element_type);
626
627 /** Create a new type array with debug information.
628  *
629  * Sets n_dimension to dimension and all dimension entries to NULL.
630  * Initializes order to the order of the dimensions.
631  * The entity for array elements is built automatically.
632  * Set dimension sizes after call to constructor with set_* routines.
633  */
634 type *new_d_type_array         (ident *name, int n_dimensions,
635                               type *element_type, dbg_info* db);
636
637 /* --- manipulate private fields of array type --- */
638
639 /** Returns the number of array dimensions of this type. */
640 int   get_array_n_dimensions (type *array);
641
642 /** Allocates Const nodes of mode_I for the array dimensions */
643 void  set_array_bounds_int   (type *array, int dimension, int lower_bound,
644                                                           int upper_bound);
645 void  set_array_bounds       (type *array, int dimension, ir_node *lower_bound,
646                                                           ir_node *upper_bound);
647 void  set_array_lower_bound  (type *array, int dimension, ir_node *lower_bound);
648 void  set_array_lower_bound_int (type *array, int dimension, int lower_bound);
649 void  set_array_upper_bound  (type *array, int dimension, ir_node *upper_bound);
650 void  set_array_upper_bound_int (type *array, int dimension, int lower_bound);
651 ir_node * get_array_lower_bound  (type *array, int dimension);
652 ir_node * get_array_upper_bound  (type *array, int dimension);
653
654 void set_array_order (type *array, int dimension, int order);
655 int  get_array_order (type *array, int dimension);
656
657 void  set_array_element_type (type *array, type *tp);
658 type *get_array_element_type (type *array);
659
660 void  set_array_element_entity (type *array, entity *ent);
661 entity *get_array_element_entity (type *array);
662
663 /** Returns true if a type is an array type. */
664 bool   is_array_type         (type *array);
665
666 /**
667  * @page enumeration_type       Representation of an enumeration type
668  *
669  * Enumeration types need not necessarily be represented explicitly
670  * by Firm types, as the frontend can lower them to integer constants as
671  * well.  For debugging purposes or similar tasks this information is useful.
672  *
673  * - *enum:         The target values representing the constants used to
674  *                  represent individual enumerations.
675  * - *enum_nameid:  Idents containing the source program name of the enumeration
676  *           constants
677  */
678 /** Create a new type enumeration -- set the enumerators independently. */
679 type   *new_type_enumeration    (ident *name, int n_enums);
680
681 /** Create a new type enumeration with debug information -- set the enumerators independently. */
682 type   *new_d_type_enumeration    (ident *name, int n_enums, dbg_info* db);
683
684 /* --- manipulate fields of enumeration type. --- */
685
686 /** Returns the number of enumeration values of this enumeration */
687 int     get_enumeration_n_enums (type *enumeration);
688
689 /** Sets the enumeration value at a given position. */
690 void    set_enumeration_enum    (type *enumeration, int pos, tarval *con);
691
692 /** Returns the enumeration value at a given position. */
693 tarval *get_enumeration_enum    (type *enumeration, int pos);
694
695 /** Assign an ident to an enumeration value at a given position. */
696 void    set_enumeration_nameid  (type *enumeration, int pos, ident *id);
697
698 /** Returns the assigned ident of an enumeration value at a given position. */
699 ident  *get_enumeration_nameid  (type *enumeration, int pos);
700
701 /** Returns the assigned name of an enumeration value at a given position. */
702 const char *get_enumeration_name(type *enumeration, int pos);
703
704 /** Returns true if a type is a enumeration type. */
705 bool    is_enumeration_type     (type *enumeration);
706
707 /**
708  * @page pointer_type   Representation of a pointer type
709  *
710  * The mode of the pointer type must be a mode_reference.
711  *
712  * Pointer types:
713  * - points_to:      The type of the entity this pointer points to.
714  */
715
716 /** Creates a new type pointer with mode mode_p. */
717 #define new_type_pointer(N, P) new_type_pointer_mode(N, P, mode_P)
718 //type *new_type_pointer           (ident *name, type *points_to);
719
720 /** Creates a new type pointer with given pointer mode. */
721 type *new_type_pointer_mode      (ident *name, type *points_to, ir_mode *ptr_mode);
722
723 /** Creates a new type pointer given pointer mode and with debug information. */
724 type *new_d_type_pointer         (ident *name, type *points_to, ir_mode *ptr_mode, dbg_info* db);
725
726 /* --- manipulate fields of type_pointer --- */
727
728 /** Sets the type to which a pointer points to. */
729 void  set_pointer_points_to_type (type *pointer, type *tp);
730
731 /** Returns the type to which a pointer points to. */
732 type *get_pointer_points_to_type (type *pointer);
733
734 /** Returns true if a type is a pointer type. */
735 bool  is_pointer_type            (type *pointer);
736
737 /**
738  * @page primitive_type Representation of a primitive type
739  *
740  * Primitive types are types that represent indivisible data values that
741  * map directly to modes.  They don't have a private attribute.  The
742  * important information they carry is held in the common mode field.
743 */
744 /** Creates a new primitive type. */
745 type *new_type_primitive (ident *name, ir_mode *mode);
746
747 /** Creates a new primitive type with debug information. */
748 type *new_d_type_primitive (ident *name, ir_mode *mode, dbg_info* db);
749
750 /** Returns true if a type is a primitive type. */
751 bool  is_primitive_type  (type *primitive);
752
753
754 /**
755  *  Checks whether a type is atomic.
756  *  @param tp - any type
757  *  @return true if type is primitive, pointer or enumeration
758  */
759 int is_atomic_type(type *tp);
760
761 /* --- Support for compound types --- */
762
763 /**
764  * Gets the number of elements in a firm compound type.
765  *
766  * This is just a comforability function, because structs and
767  * classes can often be treated be the same code, but they have
768  * different access functions to their members.
769  *
770  * @param tp  The type (must be struct, union or class).
771  *
772  * @return Number of members in the compound type.
773  */
774 int get_compound_n_members(type *tp);
775
776 /**
777  * Gets the member of a firm compound type at position pos.
778  *
779  * @param tp  The type (must be struct, union or class).
780  * @param pos The number of the member.
781  *
782  * @return The member entity at position pos.
783  *
784  * @see get_compound_n_members() for justifaction of existence.
785  */
786 entity *get_compound_member(type *tp, int pos);
787
788 /**
789  *  Checks whether a type is compound.
790  *
791  *  @param tp - any type
792  *
793  *  @return true if the type is class, structure, union or array type.
794  */
795 int is_compound_type(type *tp);
796
797
798 /** Outputs a unique number for this type if libfirm is compiled for
799    debugging, (configure with --enable-debug) else returns 0. */
800 INLINE long get_type_nr(type *tp);
801
802 # endif /* _TYPE_H_ */