typos fixed
[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
16 # include "firm_config.h"
17 # include "type.h"
18 # include "tpop_t.h"
19
20 # include "array.h"
21
22 /**
23  * @file type_t.h
24  * This file contains the datatypes hidden in type.h.
25  *
26  * @author Goetz Lindenmaier
27  * @see  type.h tpop_t.h tpop.h
28  */
29
30 /** class attributes */
31 typedef struct {
32   entity **members;    /**< fields and methods of this class */
33   type   **subtypes;   /**< direct subtypes */
34   type   **supertypes; /**< direct supertypes */
35   peculiarity peculiarity;
36   int dfn;             /**< number used for 'instanceof' operator */
37 } cls_attr;
38
39 /** struct attributes */
40 typedef struct {
41   entity **members;    /**< fields of this struct. No method entities
42               allowed. */
43 } stc_attr;
44
45 /** method attributes */
46 typedef struct {
47   int n_params;              /**< number of parameters */
48   type **param_type;         /**< code generation needs this information. */
49   type *value_params;        /**< A type whose entities represent copied value arguments. */
50   int n_res;                 /**< number of results */
51   type **res_type;           /**< array with result types */
52   type *value_ress;          /**< A type whose entities represent copied value results. */
53   variadicity variadicity;   /**< variadicity of the method. */
54   int first_variadic_param;  /**< index of the first variadic param or -1 if non-variadic .*/
55 } mtd_attr;
56
57 /** union attributes */
58 typedef struct {
59   int     n_types;
60   /* type  **unioned_type; * a list of unioned types. */
61   /* ident **delim_names;  * names of the union delimiters. */
62   entity **members;    /**< fields of this union. No method entities
63               allowed.  */
64
65 } uni_attr;
66
67 /** array attributes */
68 typedef struct {
69   int   n_dimensions;  /**< Number of array dimensions.  */
70   ir_node **lower_bound;   /**< Lower bounds of dimensions.  Usually all 0. */
71   ir_node **upper_bound;   /**< Upper bounds or dimensions. */
72   int *order;              /**< Ordering of dimensions. */
73   type *element_type;  /**< The type of the array elements. */
74   entity *element_ent; /**< Entity for the array elements, to be used for
75               element selection with Sel. */
76 } arr_attr;
77
78 /** enum attributes */
79 typedef struct {
80   int      n_enums;    /**< Number of enumerators. */
81   tarval **enumer;     /**< Contains all constants that represent a member
82                           of the enum -- enumerators. */
83   ident  **enum_nameid;/**< Contains the names of the enum fields as specified by
84                           the source program */
85 } enm_attr;
86
87 /** pointer attributes */
88 typedef struct {
89   type *points_to;     /**< The type of the entity the pointer points to. */
90 } ptr_attr;
91
92 /*
93 typedef struct {   * No private attr yet! *
94 } pri_attr; */
95
96
97 /*
98 typedef struct {        * No private attr, must be smaller than others! *
99 } id_attr;
100 */
101
102 /** General type attributes. */
103 typedef union {
104   cls_attr ca;      /**< attributes of a class type */
105   stc_attr sa;      /**< attributes of a struct type */
106   mtd_attr ma;      /**< attributes of a method type */
107   uni_attr ua;      /**< attributes of an union type */
108   arr_attr aa;      /**< attributes of an array type */
109   enm_attr ea;      /**< attributes of an enumeration type */
110   ptr_attr pa;      /**< attributes of a pointer type */
111 } tp_attr;
112
113 /** the structure of a type */
114 struct type {
115   firm_kind kind;          /**< the firm kind, must be k_type */
116   const tp_op *type_op;    /**< the type operation of the type */
117   ident *name;             /**< The name of the type */
118   visibility visibility;   /**< Visibility of entities of this type. */
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
135 #ifdef DEBUG_libfirm
136   int nr;             /**< a unique node number for each node to make output
137                            readable. */
138 #endif
139   tp_attr attr;            /* type kind specific fields. This must be the last
140                   entry in this struct!  Varying size! */
141 };
142
143 /**
144  *   Creates a new type representation:
145  *
146  *   @param type_op - the kind of this type.  May not be type_id.
147  *   @param mode    - the mode to be used for this type, may be NULL
148  *   @param name    - an ident for the name of this type.
149  *
150  *   @return A new type of the given type.  The remaining private attributes are not
151  *           initialized.  The type is in state layout_undefined.
152  */
153 INLINE type *
154 new_type(tp_op *type_op,
155      ir_mode *mode,
156      ident* name);
157 void free_type_attrs       (type *tp);
158
159 INLINE void free_class_entities      (type *clss);
160 INLINE void free_struct_entities     (type *strct);
161 INLINE void free_method_entities     (type *method);
162 INLINE void free_union_entities      (type *uni);
163 INLINE void free_array_entities      (type *array);
164 INLINE void free_enumeration_entities(type *enumeration);
165 INLINE void free_pointer_entities    (type *pointer);
166 INLINE void free_primitive_entities  (type *primitive);
167
168 INLINE void free_class_attrs      (type *clss);
169 INLINE void free_struct_attrs     (type *strct);
170 INLINE void free_method_attrs     (type *method);
171 INLINE void free_union_attrs      (type *uni);
172 INLINE void free_array_attrs      (type *array);
173 INLINE void free_enumeration_attrs(type *enumeration);
174 INLINE void free_pointer_attrs    (type *pointer);
175 INLINE void free_primitive_attrs  (type *primitive);
176
177
178 /** initialize the type module */
179 void init_type (void);
180
181
182 /* ------------------- *
183  *  inline functions   *
184  * ------------------- */
185
186 extern unsigned long type_visited;
187
188 static INLINE void _set_master_type_visited(unsigned long val) { type_visited = val; }
189 static INLINE unsigned long _get_master_type_visited(void)     { return type_visited; }
190 static INLINE void _inc_master_type_visited(void)              { type_visited++; }
191
192 static INLINE void *
193 _get_type_link(const type *tp) {
194   assert(tp && tp->kind == k_type);
195   return(tp -> link);
196 }
197
198 static INLINE void
199 _set_type_link(type *tp, void *l) {
200   assert(tp && tp->kind == k_type);
201   tp -> link = l;
202 }
203
204 static INLINE const tp_op*
205 _get_type_tpop(const type *tp) {
206   assert(tp && tp->kind == k_type);
207   return tp->type_op;
208 }
209
210 static INLINE ident*
211 _get_type_tpop_nameid(const type *tp) {
212   assert(tp && tp->kind == k_type);
213   return get_tpop_ident(tp->type_op);
214 }
215
216 static INLINE tp_opcode
217 _get_type_tpop_code(const type *tp) {
218   assert(tp && tp->kind == k_type);
219   return get_tpop_code(tp->type_op);
220 }
221
222 static INLINE ir_mode *
223 _get_type_mode(const type *tp) {
224   assert(tp && tp->kind == k_type);
225   return tp->mode;
226 }
227
228 static INLINE ident *
229 _get_type_ident(const type *tp) {
230   assert(tp && tp->kind == k_type);
231   return tp->name;
232 }
233
234 static INLINE void
235 _set_type_ident(type *tp, ident* id) {
236   assert(tp && tp->kind == k_type);
237   tp->name = id;
238 }
239
240 static INLINE int
241 _get_type_size_bits(const type *tp) {
242   assert(tp && tp->kind == k_type);
243   return tp->size;
244 }
245
246 static INLINE int
247 _get_type_size_bytes(const type *tp) {
248   int size = _get_type_size_bits(tp);
249   if (size < 0)
250     return -1;
251   if ((size & 7) != 0) {
252     assert(0 && "cannot take byte size of this type");
253     return -1;
254   }
255   return size >> 3;
256 }
257
258 static INLINE type_state
259 _get_type_state(const type *tp) {
260   assert(tp && tp->kind == k_type);
261   return tp->state;
262 }
263
264 static INLINE unsigned long
265 _get_type_visited(const type *tp) {
266   assert(tp && tp->kind == k_type);
267   return tp->visit;
268 }
269
270 static INLINE void
271 _set_type_visited(type *tp, unsigned long num) {
272   assert(tp && tp->kind == k_type);
273   tp->visit = num;
274 }
275
276 static INLINE void
277 _mark_type_visited(type *tp) {
278   assert(tp && tp->kind == k_type);
279   assert(tp->visit < type_visited);
280   tp->visit = type_visited;
281 }
282
283 static INLINE int
284 _type_visited(const type *tp) {
285   assert(tp && tp->kind == k_type);
286   return tp->visit >= type_visited;
287 }
288
289 static INLINE int
290 _type_not_visited(const type *tp) {
291   assert(tp && tp->kind == k_type);
292   return tp->visit  < type_visited;
293 }
294
295 static INLINE int
296 _is_type(const void *thing) {
297   return (get_kind(thing) == k_type);
298 }
299
300 static INLINE int
301 _is_class_type(const type *clss) {
302   assert(clss);
303   return (clss->type_op == type_class);
304 }
305
306 static INLINE int
307 _get_class_n_members (const type *clss) {
308   assert(clss && (clss->type_op == type_class));
309   return (ARR_LEN (clss->attr.ca.members));
310 }
311
312 static INLINE entity *
313 _get_class_member   (const type *clss, int pos) {
314   assert(clss && (clss->type_op == type_class));
315   assert(pos >= 0 && pos < _get_class_n_members(clss));
316   return clss->attr.ca.members[pos];
317 }
318
319 static INLINE int
320 _is_struct_type(const type *strct) {
321   assert(strct);
322   return (strct->type_op == type_struct);
323 }
324
325 static INLINE int
326 _is_method_type(const type *method) {
327   assert(method);
328   return (method->type_op == type_method);
329 }
330
331 static INLINE int
332 _is_union_type(const type *uni) {
333   assert(uni);
334   return (uni->type_op == type_union);
335 }
336
337 static INLINE int
338 _is_array_type(const type *array) {
339   assert(array);
340   return (array->type_op == type_array);
341 }
342
343 static INLINE int
344 _is_enumeration_type(const type *enumeration) {
345   assert(enumeration);
346   return (enumeration->type_op == type_enumeration);
347 }
348
349 static INLINE int
350 _is_pointer_type(const type *pointer) {
351   assert(pointer);
352   return (pointer->type_op == type_pointer);
353 }
354
355 /** Returns true if a type is a primitive type. */
356 static INLINE int
357 _is_primitive_type(const type *primitive) {
358   assert(primitive && primitive->kind == k_type);
359   return (primitive->type_op == type_primitive);
360 }
361
362 static INLINE int
363 _is_atomic_type(const type *tp) {
364   assert(tp && tp->kind == k_type);
365   return (_is_primitive_type(tp) || _is_pointer_type(tp) ||
366       _is_enumeration_type(tp));
367 }
368
369
370 #define set_master_type_visited(val)      _set_master_type_visited(val)
371 #define get_master_type_visited()         _get_master_type_visited()
372 #define inc_master_type_visited()         _inc_master_type_visited()
373 #define get_type_link(tp)                 _get_type_link(tp)
374 #define set_type_link(tp, l)              _set_type_link(tp, l)
375 #define get_type_tpop(tp)                 _get_type_tpop(tp)
376 #define get_type_tpop_nameid(tp)          _get_type_tpop_nameid(tp)
377 #define get_type_tpop_code(tp)            _get_type_tpop_code(tp)
378 #define get_type_mode(tp)                 _get_type_mode(tp)
379 #define get_type_ident(tp)                _get_type_ident(tp)
380 #define set_type_ident(tp, id)            _set_type_ident(tp, id)
381 #define get_type_size(tp)                 _get_type_size(tp)
382 #define get_type_state(tp)                _get_type_state(tp)
383 #define get_type_visited(tp)              _get_type_visited(tp)
384 #define set_type_visited(tp, num)         _set_type_visited(tp, num)
385 #define mark_type_visited(tp)             _mark_type_visited(tp)
386 #define type_visited(tp)                  _type_visited(tp)
387 #define type_not_visited(tp)              _type_not_visited(tp)
388 #define is_type(thing)                    _is_type(thing)
389 #define is_Class_type(clss)               _is_class_type(clss)
390 #define get_class_n_members(clss)         _get_class_n_members(clss)
391 #define get_class_member(clss, pos)       _get_class_member(clss, pos)
392 #define is_Struct_type(strct)             _is_struct_type(strct)
393 #define is_Method_type(method)            _is_method_type(method)
394 #define is_Union_type(uni)                _is_union_type(uni)
395 #define is_Array_type(array)              _is_array_type(array)
396 #define is_Enumeration_type(enumeration)  _is_enumeration_type(enumeration)
397 #define is_Pointer_type(pointer)          _is_pointer_type(pointer)
398 #define is_Primitive_type(primitive)      _is_primitive_type(primitive)
399 #define is_atomic_type(tp)                _is_atomic_type(tp)
400
401 # endif /* _TYPE_T_H_ */