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