changed semantics of Unknown: now has a mode.
[libfirm] / ir / tr / entity.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/tr/entity.c
4  * Purpose:     Representation of all program known entities.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 # include <config.h>
15 #endif
16
17 # include <stdlib.h>
18 # include <stddef.h>
19 # include <string.h>
20
21 # include "entity_t.h"
22 # include "mangle.h"
23 # include "typegmod.h"
24 # include "array.h"
25 /* All this is needed to build the constant node for methods: */
26 # include "irprog_t.h"
27 # include "ircons.h"
28 # include "tv_t.h"
29
30 /*******************************************************************/
31 /** general                                                       **/
32 /*******************************************************************/
33
34 void
35 init_entity (void)
36 {
37 }
38
39 /*******************************************************************/
40 /** ENTITY                                                        **/
41 /*******************************************************************/
42
43 /* redeclared to declare INLINE. */
44 INLINE entity *get_entity_overwrites   (entity *ent, int pos);
45 INLINE entity *get_entity_overwrittenby   (entity *ent, int pos);
46 INLINE type   *get_entity_owner (entity *ent);
47
48 INLINE void insert_entity_in_owner (entity *ent) {
49   type *owner = ent->owner;
50   switch (get_type_tpop_code(owner)) {
51   case tpo_class: {
52     add_class_member (owner, ent);
53   } break;
54   case tpo_struct: {
55     add_struct_member (owner, ent);
56   } break;
57   case tpo_union: {
58     add_union_member (owner, ent);
59   } break;
60   case tpo_array: {
61     set_array_element_entity(owner, ent);
62   } break;
63   default: assert(0);
64   }
65 }
66
67 entity *
68 new_entity (type *owner, ident *name, type *type)
69 {
70   entity *res;
71   ir_graph *rem;
72
73   assert(!id_contains_char(name, ' ') && "entity name should not contain spaces");
74
75   res = (entity *) xmalloc (sizeof (entity));
76   res->kind = k_entity;
77   assert_legal_owner_of_ent(owner);
78   res->owner = owner;
79   res->name = name;
80   res->type = type;
81
82   if (get_type_tpop(type) == type_method)
83     res->allocation = allocation_static;
84   else
85     res->allocation = allocation_automatic;
86
87   res->visibility = visibility_local;
88   res->offset = -1;
89   if (is_method_type(type)) {
90     res->variability = variability_constant;
91     rem = current_ir_graph;
92     current_ir_graph = get_const_code_irg();
93     res->value = new_Const(mode_P_mach, new_tarval_from_entity(res, mode_P_mach));
94     current_ir_graph = rem;
95   } else {
96     res->variability = variability_uninitialized;
97     res->value  = NULL;
98     res->values = NULL;
99   }
100   res->peculiarity   = peculiarity_existent;
101   res->volatility    = volatility_non_volatile;
102   res->ld_name       = NULL;
103   res->overwrites    = NEW_ARR_F(entity *, 1);
104   res->overwrittenby = NEW_ARR_F(entity *, 1);
105
106   res->irg = NULL;
107
108 #ifdef DEBUG_libfirm
109   res->nr = get_irp_new_node_nr();
110 #endif
111
112   res->visit = 0;
113
114   /* Remember entity in it's owner. */
115   insert_entity_in_owner (res);
116   return res;
117 }
118 entity *
119 new_d_entity (type *owner, ident *name, type *type, dbg_info *db) {
120   entity *res = new_entity(owner, name, type);
121   set_entity_dbg_info(res, db);
122   return res;
123 }
124 INLINE void free_entity_attrs(entity *ent) {
125   assert(ent);
126   if (get_type_tpop(get_entity_owner(ent)) == type_class) {
127     DEL_ARR_F(ent->overwrites);
128     DEL_ARR_F(ent->overwrittenby);
129   }
130 }
131
132 entity *
133 copy_entity_own (entity *old, type *new_owner) {
134   entity *new;
135
136   assert_legal_owner_of_ent(new_owner);
137   if (old->owner == new_owner) return old;
138   new = (entity *) xmalloc (sizeof (entity));
139   memcpy (new, old, sizeof (entity));
140   new->owner = new_owner;
141   /*
142   if ((get_type_tpop(get_entity_owner(old)) == type_class) &&
143       (get_type_tpop(new_owner) == type_class)) {
144     new->overwrites = DUP_ARR_F(entity *, old->overwrites);
145     new->overwrittenby = DUP_ARR_F(entity *, old->overwrittenby);
146   } else if ((get_type_tpop(get_entity_owner(old)) != type_class) &&
147              (get_type_tpop(new_owner) == type_class)) {
148     new->overwrites = NEW_ARR_F(entity *, 1);
149     new->overwrittenby = NEW_ARR_F(entity *, 1);
150   }
151   */
152   if (is_class_type(new_owner)) {
153     new->overwrites = NEW_ARR_F(entity *, 1);
154     new->overwrittenby = NEW_ARR_F(entity *, 1);
155   }
156 #ifdef DEBUG_libfirm
157   new->nr = get_irp_new_node_nr();
158 #endif
159
160   insert_entity_in_owner (new);
161
162   return new;
163 }
164
165 entity *
166 copy_entity_name (entity *old, ident *new_name) {
167   entity *new;
168
169   if (old->name == new_name) return old;
170   new = (entity *) xmalloc (sizeof (entity));
171   memcpy (new, old, sizeof (entity));
172   new->name = new_name;
173   new->ld_name = NULL;
174   if (is_class_type(new->owner)) {
175     new->overwrites = DUP_ARR_F(entity *, old->overwrites);
176     new->overwrittenby = DUP_ARR_F(entity *, old->overwrittenby);
177   }
178 #ifdef DEBUG_libfirm
179   new->nr = get_irp_new_node_nr();
180 #endif
181
182   insert_entity_in_owner (new);
183
184   return new;
185 }
186
187
188 void
189 free_entity (entity *ent) {
190   free_tarval_entity(ent);
191   free_entity_attrs(ent);
192   ent->kind = k_BAD;
193   free(ent);
194 }
195
196 /* Outputs a unique number for this node */
197 INLINE long
198 get_entity_nr(entity *ent) {
199   assert(ent);
200 #ifdef DEBUG_libfirm
201   return ent->nr;
202 #else
203   return 0;
204 #endif
205 }
206
207 INLINE const char *
208 get_entity_name (entity *ent) {
209   assert (ent);
210   return get_id_str(get_entity_ident(ent));
211 }
212
213 ident *
214 get_entity_ident    (entity *ent) {
215   assert(ent);
216   return ent->name;
217 }
218
219 /*
220 void   set_entitye_ld_name  (entity *, char *ld_name);
221 void   set_entity_ld_ident (entity *, ident *ld_ident);
222 */
223
224 INLINE type *
225 get_entity_owner (entity *ent) {
226   return ent->owner = skip_tid(ent->owner);
227 }
228
229 INLINE void
230 set_entity_owner (entity *ent, type *owner) {
231   assert_legal_owner_of_ent(owner);
232   ent->owner = owner;
233 }
234
235 INLINE void   /* should this go into type.c? */
236 assert_legal_owner_of_ent(type *owner) {
237   assert (get_type_tpop_code(owner) == tpo_class ||
238           get_type_tpop_code(owner) == tpo_union ||
239           get_type_tpop_code(owner) == tpo_struct ||
240           get_type_tpop_code(owner) == tpo_array);   /* Yes, array has an entity
241                                                         -- to select fields! */
242 }
243
244 INLINE ident *
245 get_entity_ld_ident (entity *ent)
246 {
247   if (ent->ld_name == NULL)
248     ent->ld_name = mangle_entity (ent);
249   return ent->ld_name;
250 }
251
252 INLINE void
253 set_entity_ld_ident (entity *ent, ident *ld_ident) {
254   ent->ld_name = ld_ident;
255 }
256
257 INLINE const char *
258 get_entity_ld_name (entity *ent) {
259   return get_id_str(get_entity_ld_ident(ent));
260 }
261
262 /*
263 char  *get_entity_ld_name  (entity *);
264 void   set_entity_ld_name  (entity *, char *ld_name);
265 */
266
267 INLINE type *
268 get_entity_type (entity *ent) {
269   return ent->type = skip_tid(ent->type);
270 }
271
272 INLINE void
273 set_entity_type (entity *ent, type *type) {
274   ent->type = type;
275 }
276
277
278 INLINE ent_allocation
279 get_entity_allocation (entity *ent) {
280   return ent->allocation;
281 }
282
283 INLINE void
284 set_entity_allocation (entity *ent, ent_allocation al) {
285   ent->allocation = al;
286 }
287
288 /* return the name of the visibility */
289 const char *get_allocation_name(ent_allocation all)
290 {
291 #define X(a)    case a: return #a
292   switch (all) {
293     X(allocation_automatic);
294     X(allocation_parameter);
295     X(allocation_dynamic);
296     X(allocation_static);
297     default: return "BAD VALUE";
298   }
299 #undef X
300 }
301
302
303 INLINE ent_visibility
304 get_entity_visibility (entity *ent) {
305   return ent->visibility;
306 }
307
308 INLINE void
309 set_entity_visibility (entity *ent, ent_visibility vis) {
310   if (vis != visibility_local)
311     assert((ent->allocation == allocation_static) ||
312            (ent->allocation == allocation_automatic));
313   /* @@@ Test that the owner type is not local, but how??
314          && get_class_visibility(get_entity_owner(ent)) != local));*/
315   ent->visibility = vis;
316 }
317
318 /* return the name of the visibility */
319 const char *get_visibility_name(ent_visibility vis)
320 {
321 #define X(a)    case a: return #a
322   switch (vis) {
323     X(visibility_local);
324     X(visibility_external_visible);
325     X(visibility_external_allocated);
326     default: return "BAD VALUE";
327   }
328 #undef X
329 }
330
331 INLINE ent_variability
332 get_entity_variability (entity *ent) {
333   return ent->variability;
334 }
335
336 INLINE void
337 set_entity_variability (entity *ent, ent_variability var)
338 {
339   if (var == variability_part_constant)
340     assert(is_class_type(ent->type) || is_struct_type(ent->type));
341
342   if ((is_compound_type(ent->type)) &&
343       (ent->variability == variability_uninitialized) && (var != variability_uninitialized)) {
344     /* Allocate datastructures for constant values */
345     ent->values = NEW_ARR_F(ir_node *, 1);
346     ent->val_paths = NEW_ARR_F(compound_graph_path *, 1);
347   }
348
349   if ((is_compound_type(ent->type)) &&
350       (var == variability_uninitialized) && (ent->variability != variability_uninitialized)) {
351     /* Free datastructures for constant values */
352     DEL_ARR_F(ent->values);
353     DEL_ARR_F(ent->val_paths);
354   }
355   ent->variability = var;
356 }
357
358 /* return the name of the variablity */
359 const char *get_variability_name(ent_variability var)
360 {
361 #define X(a)    case a: return #a
362   switch (var) {
363     X(variability_uninitialized);
364     X(variability_initialized);
365     X(variability_part_constant);
366     X(variability_constant);
367     default: return "BAD VALUE";
368   }
369 #undef X
370 }
371
372 INLINE ent_volatility
373 get_entity_volatility (entity *ent) {
374   assert (ent);
375   return ent->volatility;
376 }
377
378 INLINE void
379 set_entity_volatility (entity *ent, ent_volatility vol) {
380   assert (ent);
381   ent->volatility = vol;
382 }
383
384 /* return the name of the volatility */
385 const char *get_volatility_name(ent_volatility var)
386 {
387 #define X(a)    case a: return #a
388   switch (var) {
389     X(volatility_non_volatile);
390     X(volatility_is_volatile);
391     default: return "BAD VALUE";
392   }
393 #undef X
394 }
395
396 INLINE peculiarity
397 get_entity_peculiarity (entity *ent) {
398   assert (ent);
399   return ent->peculiarity;
400 }
401
402 INLINE void
403 set_entity_peculiarity (entity *ent, peculiarity pec) {
404   assert (ent);
405   /* @@@ why peculiarity only for methods? */
406   assert (is_method_type(ent->type));
407   ent->peculiarity = pec;
408 }
409
410 /* return the name of the peculiarity */
411 const char *get_peculiarity_name(peculiarity var)
412 {
413 #define X(a)    case a: return #a
414   switch (var) {
415     X(peculiarity_description);
416     X(peculiarity_inherited);
417     X(peculiarity_existent);
418     default: return "BAD VALUE";
419   }
420 #undef X
421 }
422
423 /* Set has no effect for existent entities of type method. */
424 INLINE ir_node *
425 get_atomic_ent_value(entity *ent)
426 {
427   assert(ent);
428   assert(is_atomic_entity(ent));
429   assert(ent->variability != variability_uninitialized);
430   return ent->value;
431 }
432
433 INLINE void
434 set_atomic_ent_value(entity *ent, ir_node *val) {
435   assert(ent && is_atomic_entity(ent) && (ent->variability != variability_uninitialized));
436   if (is_method_type(ent->type) && (ent->peculiarity == peculiarity_existent))
437     return;
438   ent->value = val;
439 }
440
441 /* Returns true if the the node is representable as code on
442  *  const_code_irg. */
443 int is_irn_const_expression(ir_node *n) {
444   ir_mode *m;
445
446   m = get_irn_mode(n);
447   switch(get_irn_opcode(n)) {
448   case iro_Const:
449   case iro_SymConst:
450   case iro_Unknown:
451     return true; break;
452   case iro_Add:
453     if (is_irn_const_expression(get_Add_left(n)))
454       return is_irn_const_expression(get_Add_right(n));
455   case iro_Conv:
456   case iro_Cast:
457     return is_irn_const_expression(get_irn_n(n, 0));
458   default:
459     return false;
460     break;
461   }
462   return false;
463 }
464
465
466 ir_node *copy_const_value(ir_node *n) {
467   ir_node *nn;
468   ir_mode *m;
469
470   m = get_irn_mode(n);
471   switch(get_irn_opcode(n)) {
472   case iro_Const:
473     nn = new_Const(m, get_Const_tarval(n)); break;
474   case iro_SymConst:
475     nn = new_SymConst(get_SymConst_type_or_id(n), get_SymConst_kind(n)); break;
476   case iro_Add:
477     nn = new_Add(copy_const_value(get_Add_left(n)),
478                  copy_const_value(get_Add_right(n)), m); break;
479   case iro_Cast:
480     nn = new_Cast(copy_const_value(get_Cast_op(n)), get_Cast_type(n)); break;
481   case iro_Conv:
482     nn = new_Conv(copy_const_value(get_Conv_op(n)), m); break;
483   case iro_Unknown:
484     nn = new_Unknown(m); break;
485   default:
486     DDMN(n);
487     assert(0 && "opdope invalid or not implemented");
488     nn = NULL;
489     break;
490   }
491   return nn;
492 }
493
494 compound_graph_path *
495 new_compound_graph_path(type *tp, int length) {
496   compound_graph_path *res;
497   assert(is_type(tp) && is_compound_type(tp));
498   assert(length > 0);
499
500   res = (compound_graph_path *) malloc (sizeof(compound_graph_path) + (length-1) * sizeof(entity *));
501   res->kind = k_ir_compound_graph_path;
502   res->tp = tp;
503   res->len = length;
504   memset(res->nodes, 0, sizeof(entity *) * length);
505   return res;
506 }
507
508 INLINE void
509 free_compound_graph_path (compound_graph_path *gr) {
510   assert(gr && is_compound_graph_path(gr));
511   gr->kind = k_BAD;
512   free(gr);
513 }
514
515 INLINE int
516 is_compound_graph_path(void *thing) {
517   return (get_kind(thing) == k_ir_compound_graph_path);
518 }
519
520 /* checks whether nodes 0..pos are correct (all lie on a path.) */
521 /* @@@ not implemented */
522 INLINE int is_proper_compound_graph_path(compound_graph_path *gr, int pos) {
523   int i;
524   entity *node;
525   type *owner = gr->tp;
526   for (i = 0; i <= pos; i++) {
527     node = get_compound_graph_path_node(gr, i);
528     if (get_entity_owner(node) != owner) return false;
529     owner = get_entity_type(node);
530   }
531   if (pos == get_compound_graph_path_length(gr) -1)
532     if (!is_atomic_type(owner)) return false;
533   return true;
534 }
535
536 INLINE int
537 get_compound_graph_path_length(compound_graph_path *gr) {
538   assert(gr && is_compound_graph_path(gr));
539   return gr->len;
540 }
541
542 INLINE entity *
543 get_compound_graph_path_node(compound_graph_path *gr, int pos) {
544   assert(gr && is_compound_graph_path(gr));
545   assert(pos >= 0 && pos < gr->len);
546   return gr->nodes[pos];
547 }
548
549 INLINE void
550 set_compound_graph_path_node(compound_graph_path *gr, int pos, entity *node) {
551   assert(gr && is_compound_graph_path(gr));
552   assert(pos >= 0 && pos < gr->len);
553   assert(is_entity(node));
554   gr->nodes[pos] = node;
555   assert(is_proper_compound_graph_path(gr, pos));
556 }
557
558 /* A value of a compound entity is a pair of value and the corresponding path to a member of
559    the compound. */
560 INLINE void
561 add_compound_ent_value_w_path(entity *ent, ir_node *val, compound_graph_path *path) {
562   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
563   ARR_APP1 (ir_node *, ent->values, val);
564   ARR_APP1 (compound_graph_path *, ent->val_paths, path);
565 }
566
567 INLINE void
568 set_compound_ent_value_w_path(entity *ent, ir_node *val, compound_graph_path *path, int pos) {
569   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
570   ent->values[pos+1] = val;
571   ent->val_paths[pos+1] = path;
572 }
573
574 INLINE int
575 get_compound_ent_n_values(entity *ent) {
576   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
577   return (ARR_LEN (ent->values))-1;
578 }
579
580 INLINE ir_node  *
581 get_compound_ent_value(entity *ent, int pos) {
582   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
583   return ent->values[pos+1];
584 }
585
586 INLINE compound_graph_path *
587 get_compound_ent_value_path(entity *ent, int pos) {
588   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
589   return ent->val_paths[pos+1];
590 }
591
592 void
593 remove_compound_ent_value(entity *ent, entity *value_ent) {
594   int i;
595   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
596   for (i = 1; i < (ARR_LEN (ent->val_paths)); i++) {
597     compound_graph_path *path = ent->val_paths[i];
598     if (path->nodes[path->len-1] == value_ent) {
599       for(; i < (ARR_LEN (ent->val_paths))-1; i++) {
600         ent->val_paths[i] = ent->val_paths[i+1];
601         ent->values[i]   = ent->values[i+1];
602       }
603       ARR_SETLEN(entity*,  ent->val_paths, ARR_LEN(ent->val_paths) - 1);
604       ARR_SETLEN(ir_node*, ent->values,    ARR_LEN(ent->values)    - 1);
605       break;
606     }
607   }
608 }
609
610 INLINE void
611 add_compound_ent_value(entity *ent, ir_node *val, entity *member) {
612   compound_graph_path *path;
613   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
614   path = new_compound_graph_path(get_entity_owner(ent), 1);
615   path->nodes[0] = member;
616   add_compound_ent_value_w_path(ent, val, path);
617 }
618
619 /* Copies the firm subgraph referenced by val to const_code_irg and adds
620    the node as constant initialization to ent.
621    The subgraph may not contain control flow operations.
622 INLINE void
623 copy_and_add_compound_ent_value(entity *ent, ir_node *val, entity *member) {
624   ir_graph *rem = current_ir_graph;
625
626   assert(get_entity_variability(ent) != variability_uninitialized);
627   current_ir_graph = get_const_code_irg();
628
629   val = copy_const_value(val);
630   add_compound_ent_value(ent, val, member);
631   current_ir_graph = rem;
632   }*/
633
634 /* Copies the value i of the entity to current_block in current_ir_graph.
635 ir_node *
636 copy_compound_ent_value(entity *ent, int pos) {
637   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
638   return copy_const_value(ent->values[pos+1]);
639   }*/
640
641 INLINE entity   *
642 get_compound_ent_value_member(entity *ent, int pos) {
643   compound_graph_path *path;
644   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
645   path = get_compound_ent_value_path(ent, pos);
646
647   return get_compound_graph_path_node(path, get_compound_graph_path_length(path)-1);
648 }
649
650 INLINE void
651 set_compound_ent_value(entity *ent, ir_node *val, entity *member, int pos) {
652   compound_graph_path *path;
653   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
654   path = get_compound_ent_value_path(ent, pos);
655   set_compound_graph_path_node(path, 0, member);
656   set_compound_ent_value_w_path(ent, val, path, pos);
657 }
658
659 void
660 set_array_entity_values(entity *ent, tarval **values, int num_vals) {
661   int i;
662   ir_graph *rem = current_ir_graph;
663   type *arrtp = get_entity_type(ent);
664   ir_node *val;
665
666   assert(is_array_type(arrtp));
667   assert(get_array_n_dimensions(arrtp) == 1);
668   /* One bound is sufficient, the nunmber of constant fields makes the
669      size. */
670   assert(get_array_lower_bound (arrtp, 0) || get_array_upper_bound (arrtp, 0));
671   assert(get_entity_variability(ent) != variability_uninitialized);
672   current_ir_graph = get_const_code_irg();
673
674   for (i = 0; i < num_vals; i++) {
675     val = new_Const(get_tarval_mode (values[i]), values[i]);
676     add_compound_ent_value(ent, val, get_array_element_entity(arrtp));
677   }
678   current_ir_graph = rem;
679 }
680
681 INLINE int
682 get_entity_offset (entity *ent) {
683   return ent->offset;
684 }
685
686 INLINE void
687 set_entity_offset (entity *ent, int offset) {
688   ent->offset = offset;
689 }
690
691 INLINE void
692 add_entity_overwrites   (entity *ent, entity *overwritten) {
693   assert(ent);
694   assert(is_class_type(get_entity_owner(ent)));
695   ARR_APP1 (entity *, ent->overwrites, overwritten);
696   ARR_APP1 (entity *, overwritten->overwrittenby, ent);
697 }
698
699 INLINE int
700 get_entity_n_overwrites (entity *ent) {
701   assert(ent);
702   assert(is_class_type(get_entity_owner(ent)));
703   return (ARR_LEN (ent->overwrites))-1;
704 }
705
706 int
707 get_entity_overwrites_index(entity *ent, entity *overwritten) {
708   int i;
709   assert(ent && is_class_type(get_entity_owner(ent)));
710   for (i = 0; i < get_entity_n_overwrites(ent); i++)
711     if (get_entity_overwrites(ent, i) == overwritten)
712       return i;
713   return -1;
714 }
715
716 INLINE entity *
717 get_entity_overwrites   (entity *ent, int pos) {
718   assert(ent);
719   assert(is_class_type(get_entity_owner(ent)));
720   assert(pos < get_entity_n_overwrites(ent));
721   return ent->overwrites[pos+1];
722 }
723
724 INLINE void
725 set_entity_overwrites   (entity *ent, int pos, entity *overwritten) {
726   assert(ent);
727   assert(is_class_type(get_entity_owner(ent)));
728   assert(pos < get_entity_n_overwrites(ent));
729   ent->overwrites[pos+1] = overwritten;
730 }
731
732 void
733 remove_entity_overwrites(entity *ent, entity *overwritten) {
734   int i;
735   assert(ent && is_class_type(get_entity_owner(ent)));
736   for (i = 1; i < (ARR_LEN (ent->overwrites)); i++)
737     if (ent->overwrites[i] == overwritten) {
738       for(; i < (ARR_LEN (ent->overwrites))-1; i++)
739         ent->overwrites[i] = ent->overwrites[i+1];
740       ARR_SETLEN(entity*, ent->overwrites, ARR_LEN(ent->overwrites) - 1);
741       break;
742     }
743 }
744
745 INLINE void
746 add_entity_overwrittenby   (entity *ent, entity *overwrites) {
747   assert(ent);
748   assert(is_class_type(get_entity_owner(ent)));
749   add_entity_overwrites(overwrites, ent);
750 }
751
752 INLINE int
753 get_entity_n_overwrittenby (entity *ent) {
754   assert(ent);
755   assert(is_class_type(get_entity_owner(ent)));
756   return (ARR_LEN (ent->overwrittenby))-1;
757 }
758
759 int
760 get_entity_overwrittenby_index(entity *ent, entity *overwrites) {
761   int i;
762   assert(ent && is_class_type(get_entity_owner(ent)));
763   for (i = 0; i < get_entity_n_overwrittenby(ent); i++)
764     if (get_entity_overwrittenby(ent, i) == overwrites)
765       return i;
766   return -1;
767 }
768
769 INLINE entity *
770 get_entity_overwrittenby   (entity *ent, int pos) {
771   assert(ent);
772   assert(is_class_type(get_entity_owner(ent)));
773   assert(pos < get_entity_n_overwrittenby(ent));
774   return ent->overwrittenby[pos+1];
775 }
776
777 INLINE void
778 set_entity_overwrittenby   (entity *ent, int pos, entity *overwrites) {
779   assert(ent);
780   assert(is_class_type(get_entity_owner(ent)));
781   assert(pos < get_entity_n_overwrittenby(ent));
782   ent->overwrittenby[pos+1] = overwrites;
783 }
784
785 void    remove_entity_overwrittenby(entity *ent, entity *overwrites) {
786   int i;
787   assert(ent && is_class_type(get_entity_owner(ent)));
788   for (i = 1; i < (ARR_LEN (ent->overwrittenby)); i++)
789     if (ent->overwrittenby[i] == overwrites) {
790       for(; i < (ARR_LEN (ent->overwrittenby))-1; i++)
791         ent->overwrittenby[i] = ent->overwrittenby[i+1];
792       ARR_SETLEN(entity*, ent->overwrittenby, ARR_LEN(ent->overwrittenby) - 1);
793       break;
794     }
795 }
796
797 /* A link to store intermediate information */
798 void *
799 get_entity_link(entity *ent) {
800   assert(ent);
801   return ent->link;
802 }
803
804 void
805 set_entity_link(entity *ent, void *l) {
806   assert(ent);
807   ent->link = l;
808 }
809
810 INLINE ir_graph *
811 get_entity_irg(entity *ent) {
812   assert (ent);
813   assert (is_method_type(ent->type));
814   return ent->irg;
815 }
816
817 INLINE void
818 set_entity_irg(entity *ent, ir_graph *irg) {
819   assert (ent && ent->type);
820   /* Wie kann man die Referenz auf einen IRG löschen, z.B. wenn die
821    * Methode selbst nicht mehr aufgerufen werden kann, die Entität
822    * aber erhalten bleiben soll. */
823   /* assert (irg); */
824   assert (is_method_type(ent->type));
825   assert (ent->peculiarity == peculiarity_existent);
826   ent->irg = irg;
827 }
828
829 int is_entity (void *thing) {
830   assert(thing);
831   if (get_kind(thing) == k_entity)
832     return 1;
833   else
834     return 0;
835 }
836
837 int is_atomic_entity(entity *ent) {
838   type* t = get_entity_type(ent);
839   return (is_primitive_type(t) || is_pointer_type(t) ||
840           is_enumeration_type(t) || is_method_type(t));
841 }
842
843 int is_compound_entity(entity *ent) {
844   type* t = get_entity_type(ent);
845   return (is_class_type(t) || is_struct_type(t) ||
846           is_array_type(t) || is_union_type(t));
847 }
848
849 /* @@@ not implemnted!!! */
850 bool equal_entity(entity *ent1, entity *ent2) {
851   printf(" calling unimplemented equal entity!!! \n");
852   return true;
853 }
854
855
856 unsigned long get_entity_visited(entity *ent) {
857   assert (ent);
858   return ent->visit;
859 }
860 void        set_entity_visited(entity *ent, unsigned long num) {
861   assert (ent);
862   ent->visit = num;
863 }
864 /* Sets visited field in entity to entity_visited. */
865 void        mark_entity_visited(entity *ent) {
866   assert (ent);
867   ent->visit = type_visited;
868 }
869
870
871 INLINE bool entity_visited(entity *ent) {
872   return get_entity_visited(ent) >= type_visited;
873 }
874
875 INLINE bool entity_not_visited(entity *ent) {
876   return get_entity_visited(ent) < type_visited;
877 }