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