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