Added Goetz' proposal to replace loads of constant entities by their constants
[libfirm] / ir / tr / type_t.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/tr/type_t.h
4  * Purpose:     Representation of types -- private header.
5  * Author:      Goetz Lindenmaier
6  * Modified by:
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 2001-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 # ifndef _TYPE_T_H_
14 # define _TYPE_T_H_
15 # ifdef HAVE_CONFIG_H
16 # include "config.h"
17 # endif
18 # include "type.h"
19 # include "tpop_t.h"
20
21 # include "array.h"
22
23 /**
24  * @file type_t.h
25  * This file contains the datatypes hidden in type.h.
26  *
27  * @author Goetz Lindenmaier
28  * @see  type.h tpop_t.h tpop.h
29  */
30
31 /** class attributes */
32 typedef struct {
33   entity **members;    /**< fields and methods of this class */
34   type   **subtypes;   /**< direct subtypes */
35   type   **supertypes; /**< direct supertypes */
36   peculiarity peculiarity;
37   int dfn;             /**< number used for 'instanceof' operator */
38 } cls_attr;
39
40 /** struct attributs */
41 typedef struct {
42   entity **members;    /**< fields of this struct. No method entities
43                           allowed. */
44 } stc_attr;
45
46 /** method attributes */
47 typedef struct {
48   int n_params;              /**< number of parameters */
49   type **param_type;         /**< code generation needs this information. */
50   type *value_params;        /**< A type whose entities represent copied value arguments. */
51   int n_res;                 /**< number of results */
52   type **res_type;           /**< array with result types */
53   type *value_ress;          /**< A type whose entities represent copied value results. */
54   variadicity variadicity;   /**< variadicity of the method. */
55   int first_variadic_param;  /**< index of the first variadic param or -1 if non-variadic .*/
56 } mtd_attr;
57
58 /** union attributs */
59 typedef struct {
60   int     n_types;
61   /* type  **unioned_type; * a list of unioned types. */
62   /* ident **delim_names;  * names of the union delimiters. */
63   entity **members;    /**< fields of this union. No method entities
64                           allowed.  */
65
66 } uni_attr;
67
68 /** array attributs */
69 typedef struct {
70   int   n_dimensions;  /**< Number of array dimensions.  */
71   ir_node **lower_bound;   /**< Lower bounds of dimensions.  Usually all 0. */
72   ir_node **upper_bound;   /**< Upper bounds or dimensions. */
73   int *order;              /**< Ordering of dimensions. */
74   type *element_type;  /**< The type of the array elements. */
75   entity *element_ent; /**< Entity for the array elements, to be used for
76                           element selection with Sel. */
77 } arr_attr;
78
79 /** enum attributs */
80 typedef struct {
81   int      n_enums;    /**< Number of enumerators. */
82   tarval **enumer;     /**< Contains all constants that represent a member
83                           of the enum -- enumerators. */
84   ident  **enum_nameid;/**< Contains the names of the enum fields as specified by
85                           the source program */
86 } enm_attr;
87
88 /** pointer attributs */
89 typedef struct {
90   type *points_to;     /**< The type of the enitity the pointer points to. */
91 } ptr_attr;
92
93 /*
94 typedef struct {   * No private attr yet! *
95 } pri_attr; */
96
97
98 /*
99 typedef struct {        * No private attr, must be smaller than others! *
100 } id_attr;
101 */
102
103 /** General type attributs. */
104 typedef union {
105   cls_attr ca;          /**< attributes of a class type */
106   stc_attr sa;          /**< attributes of a struct type */
107   mtd_attr ma;          /**< attributes of a method type */
108   uni_attr ua;          /**< attributes of an union type */
109   arr_attr aa;          /**< attributes of an array type */
110   enm_attr ea;          /**< attributes of an enumeration type */
111   ptr_attr pa;          /**< attributes of a pointer type */
112 } tp_attr;
113
114 /** the structure of a type */
115 struct type {
116   firm_kind kind;
117   tp_op *type_op;
118   ident *name;
119   type_state state;        /**< Represents the types state: layout undefined or
120                               fixed. */
121   int size;                /**< Size of an entity of this type. This is determined
122                               when fixing the layout of this class.  Size must be
123                               given in bits. */
124   int align;               /**< Alignment of an entity of this type. This should be
125                                 set according to the source language needs. If not set it's
126                                 calculated automatically by get_type_alignment().
127                                 Alignment must be given in bits. */
128   ir_mode *mode;           /**< The mode for atomic types */
129   unsigned long visit;     /**< visited counter for walks of the type information */
130   void *link;              /**< holds temporary data - like in irnode_t.h */
131   struct dbg_info* dbi;    /**< A pointer to information for debug support. */
132
133   /* ------------- fields for analyses ---------------*/
134   ir_node **allocations;    /**< array of all Alloc nodes with this type
135                               @@@ Should not be in here, hash table! */
136
137 #ifdef DEBUG_libfirm
138   int nr;             /**< a unique node number for each node to make output
139                               readable. */
140 #endif
141   tp_attr attr;            /* type kind specific fields. This must be the last
142                               entry in this struct!  Varying size! */
143 };
144
145 /**
146  *   Creates a new type representation:
147  *
148  *   @param type_op - the kind of this type.  May not be type_id.
149  *   @param mode    - the mode to be used for this type, may be NULL
150  *   @param name    - an ident for the name of this type.
151  *   @return a new type of the given type.  The remaining private attributes are not
152  *   @return initalized.  The type is in state layout_undefined.
153  *
154  */
155 INLINE type *
156 new_type(tp_op *type_op,
157          ir_mode *mode,
158          ident* name);
159 void free_type_attrs       (type *tp);
160
161 INLINE void free_class_entities      (type *clss);
162 INLINE void free_struct_entities     (type *strct);
163 INLINE void free_method_entities     (type *method);
164 INLINE void free_union_entities      (type *uni);
165 INLINE void free_array_entities      (type *array);
166 INLINE void free_enumeration_entities(type *enumeration);
167 INLINE void free_pointer_entities    (type *pointer);
168 INLINE void free_primitive_entities  (type *primitive);
169
170 INLINE void free_class_attrs      (type *clss);
171 INLINE void free_struct_attrs     (type *strct);
172 INLINE void free_method_attrs     (type *method);
173 INLINE void free_union_attrs      (type *uni);
174 INLINE void free_array_attrs      (type *array);
175 INLINE void free_enumeration_attrs(type *enumeration);
176 INLINE void free_pointer_attrs    (type *pointer);
177 INLINE void free_primitive_attrs  (type *primitive);
178
179
180 /** initialize the type module */
181 void init_type (void);
182
183
184 /* ------------------- *
185  *  inline functions   *
186  * ------------------- */
187
188 extern unsigned long type_visited;
189
190 static INLINE void __set_master_type_visited(unsigned long val) { type_visited = val; }
191 static INLINE unsigned long __get_master_type_visited(void)     { return type_visited; }
192 static INLINE void __inc_master_type_visited(void)              { type_visited++; }
193
194 static INLINE void *
195 __get_type_link(const type *tp) {
196   assert(tp && tp->kind == k_type);
197   return(tp -> link);
198 }
199
200 static INLINE void
201 __set_type_link(type *tp, void *l) {
202   assert(tp && tp->kind == k_type);
203   tp -> link = l;
204 }
205
206 static INLINE tp_op*
207 __get_type_tpop(const type *tp) {
208   assert(tp && tp->kind == k_type);
209   return tp->type_op;
210 }
211
212 static INLINE ident*
213 __get_type_tpop_nameid(const type *tp) {
214   assert(tp && tp->kind == k_type);
215   return get_tpop_ident(tp->type_op);
216 }
217
218 static INLINE tp_opcode
219 __get_type_tpop_code(const type *tp) {
220   assert(tp && tp->kind == k_type);
221   return get_tpop_code(tp->type_op);
222 }
223
224 static INLINE ir_mode *
225 __get_type_mode(const type *tp) {
226   assert(tp && tp->kind == k_type);
227   return tp->mode;
228 }
229
230 static INLINE ident *
231 __get_type_ident(const type *tp) {
232   assert(tp && tp->kind == k_type);
233   return tp->name;
234 }
235
236 static INLINE void
237 __set_type_ident(type *tp, ident* id) {
238   assert(tp && tp->kind == k_type);
239   tp->name = id;
240 }
241
242 static INLINE long
243 __get_type_nr(const type *tp) {
244   assert(tp);
245 #ifdef DEBUG_libfirm
246   return tp->nr;
247 #else
248   return (long)tp;
249 #endif
250 }
251
252 static INLINE int
253 __get_type_size_bits(const type *tp) {
254   assert(tp && tp->kind == k_type);
255   return tp->size;
256 }
257
258 static INLINE int
259 __get_type_size_bytes(const type *tp) {
260   int size = __get_type_size_bits(tp);
261   if (size < 0)
262     return -1;
263   if ((size & 7) != 0) {
264     assert(0 && "cannot take byte size of this type");
265     return -1;
266   }
267   return size >> 3;
268 }
269
270 static INLINE type_state
271 __get_type_state(const type *tp) {
272   assert(tp && tp->kind == k_type);
273   return tp->state;
274 }
275
276 static INLINE unsigned long
277 __get_type_visited(const type *tp) {
278   assert(tp && tp->kind == k_type);
279   return tp->visit;
280 }
281
282 static INLINE void
283 __set_type_visited(type *tp, unsigned long num) {
284   assert(tp && tp->kind == k_type);
285   tp->visit = num;
286 }
287
288 static INLINE void
289 __mark_type_visited(type *tp) {
290   assert(tp && tp->kind == k_type);
291   assert(tp->visit < type_visited);
292   tp->visit = type_visited;
293 }
294
295 static INLINE int
296 __type_visited(const type *tp) {
297   assert(tp && tp->kind == k_type);
298   return tp->visit >= type_visited;
299 }
300
301 static INLINE int
302 __type_not_visited(const type *tp) {
303   assert(tp && tp->kind == k_type);
304   return tp->visit  < type_visited;
305 }
306
307 static INLINE int
308 __is_type(const void *thing) {
309   return (get_kind(thing) == k_type);
310 }
311
312 static INLINE int
313 __is_class_type(const type *clss) {
314   assert(clss);
315   return (clss->type_op == type_class);
316 }
317
318 static INLINE int
319 __get_class_n_members (const type *clss) {
320   assert(clss && (clss->type_op == type_class));
321   return (ARR_LEN (clss->attr.ca.members));
322 }
323
324 static INLINE entity *
325 __get_class_member   (const type *clss, int pos) {
326   assert(clss && (clss->type_op == type_class));
327   assert(pos >= 0 && pos < __get_class_n_members(clss));
328   return clss->attr.ca.members[pos];
329 }
330
331 static INLINE int
332 __is_struct_type(const type *strct) {
333   assert(strct);
334   return (strct->type_op == type_struct);
335 }
336
337 static INLINE int
338 __is_method_type(const type *method) {
339   assert(method);
340   return (method->type_op == type_method);
341 }
342
343 static INLINE int
344 __is_union_type(const type *uni) {
345   assert(uni);
346   return (uni->type_op == type_union);
347 }
348
349 static INLINE int
350 __is_array_type(const type *array) {
351   assert(array);
352   return (array->type_op == type_array);
353 }
354
355 static INLINE int
356 __is_enumeration_type(const type *enumeration) {
357   assert(enumeration);
358   return (enumeration->type_op == type_enumeration);
359 }
360
361 static INLINE int
362 __is_pointer_type(const type *pointer) {
363   assert(pointer);
364   return (pointer->type_op == type_pointer);
365 }
366
367 /** Returns true if a type is a primitive type. */
368 static INLINE int
369 __is_primitive_type(const type *primitive) {
370   assert(primitive && primitive->kind == k_type);
371   return (primitive->type_op == type_primitive);
372 }
373
374 static INLINE int
375 __is_atomic_type(const type *tp) {
376   assert(tp && tp->kind == k_type);
377   return (is_primitive_type(tp) || is_pointer_type(tp) ||
378           is_enumeration_type(tp));
379 }
380
381
382 #define set_master_type_visited(val)      __set_master_type_visited(val)
383 #define get_master_type_visited()         __get_master_type_visited()
384 #define inc_master_type_visited()         __inc_master_type_visited()
385 #define get_type_link(tp)                 __get_type_link(tp)
386 #define set_type_link(tp, l)              __set_type_link(tp, l)
387 #define get_type_tpop(tp)                 __get_type_tpop(tp)
388 #define get_type_tpop_nameid(tp)          __get_type_tpop_nameid(tp)
389 #define get_type_tpop_code(tp)            __get_type_tpop_code(tp)
390 #define get_type_mode(tp)                 __get_type_mode(tp)
391 #define get_type_ident(tp)                __get_type_ident(tp)
392 #define set_type_ident(tp, id)            __set_type_ident(tp, id)
393 #define get_type_nr(tp)                   __get_type_nr(tp)
394 #define get_type_size(tp)                 __get_type_size(tp)
395 #define get_type_state(tp)                __get_type_state(tp)
396 #define get_type_visited(tp)              __get_type_visited(tp)
397 #define set_type_visited(tp, num)         __set_type_visited(tp, num)
398 #define mark_type_visited(tp)             __mark_type_visited(tp)
399 #define type_visited(tp)                  __type_visited(tp)
400 #define type_not_visited(tp)              __type_not_visited(tp)
401 #define is_type(thing)                    __is_type(thing)
402 #define is_class_type(clss)               __is_class_type(clss)
403 #define get_class_n_members(clss)         __get_class_n_members(clss)
404 #define get_class_member(clss, pos)       __get_class_member(clss, pos)
405 #define is_struct_type(strct)             __is_struct_type(strct)
406 #define is_method_type(method)            __is_method_type(method)
407 #define is_union_type(uni)                __is_union_type(uni)
408 #define is_array_type(array)              __is_array_type(array)
409 #define is_enumeration_type(enumeration)  __is_enumeration_type(enumeration)
410 #define is_pointer_type(pointer)          __is_pointer_type(pointer)
411 #define is_primitive_type(primitive)      __is_primitive_type(primitive)
412 #define is_atomic_type(tp)                __is_atomic_type(tp)
413
414 # endif /* _TYPE_T_H_ */