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