618aab71a6fb3345ad05b88e7919ca1ae45c8f3d
[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
442 ir_node *copy_const_value(ir_node *n) {
443   ir_node *nn;
444   ir_mode *m;
445
446   m = get_irn_mode(n);
447   switch(get_irn_opcode(n)) {
448   case iro_Const:
449     nn = new_Const(m, get_Const_tarval(n)); break;
450   case iro_SymConst:
451     nn = new_SymConst(get_SymConst_type_or_id(n), get_SymConst_kind(n)); break;
452   case iro_Add:
453     nn = new_Add(copy_const_value(get_Add_left(n)), copy_const_value(get_Add_right(n)), m); break;
454   case iro_Unknown:
455     nn = new_Unknown(); break;
456   default:
457     DDMN(n);
458     assert(0 && "opdope invalid or not implemented");
459     nn = NULL;
460     break;
461   }
462   return nn;
463 }
464
465 compound_graph_path *
466 new_compound_graph_path(type *tp, int length) {
467   compound_graph_path *res;
468   assert(is_type(tp) && is_compound_type(tp));
469   assert(length > 0);
470
471   res = (compound_graph_path *) malloc (sizeof(compound_graph_path) + (length-1) * sizeof(entity *));
472   res->kind = k_ir_compound_graph_path;
473   res->tp = tp;
474   res->len = length;
475   memset(res->nodes, 0, sizeof(entity *) * length);
476   return res;
477 }
478
479 INLINE void
480 free_compound_graph_path (compound_graph_path *gr) {
481   assert(gr && is_compound_graph_path(gr));
482   gr->kind = k_BAD;
483   free(gr);
484 }
485
486 INLINE int
487 is_compound_graph_path(void *thing) {
488   return (get_kind(thing) == k_ir_compound_graph_path);
489 }
490
491 /* checks whether nodes 0..pos are correct (all lie on a path.) */
492 /* @@@ not implemented */
493 INLINE int is_proper_compound_graph_path(compound_graph_path *gr, int pos) {
494   int i;
495   entity *node;
496   type *owner = gr->tp;
497   for (i = 0; i <= pos; i++) {
498     node = get_compound_graph_path_node(gr, i);
499     if (get_entity_owner(node) != owner) return false;
500     owner = get_entity_type(node);
501   }
502   if (pos == get_compound_graph_path_length(gr) -1)
503     if (!is_atomic_type(owner)) return false;
504   return true;
505 }
506
507 INLINE int
508 get_compound_graph_path_length(compound_graph_path *gr) {
509   assert(gr && is_compound_graph_path(gr));
510   return gr->len;
511 }
512
513 INLINE entity *
514 get_compound_graph_path_node(compound_graph_path *gr, int pos) {
515   assert(gr && is_compound_graph_path(gr));
516   assert(pos >= 0 && pos < gr->len);
517   return gr->nodes[pos];
518 }
519
520 INLINE void
521 set_compound_graph_path_node(compound_graph_path *gr, int pos, entity *node) {
522   assert(gr && is_compound_graph_path(gr));
523   assert(pos >= 0 && pos < gr->len);
524   assert(is_entity(node));
525   gr->nodes[pos] = node;
526   assert(is_proper_compound_graph_path(gr, pos));
527 }
528
529 /* A value of a compound entity is a pair of value and the corresponding path to a member of
530    the compound. */
531 INLINE void
532 add_compound_ent_value_w_path(entity *ent, ir_node *val, compound_graph_path *path) {
533   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
534   ARR_APP1 (ir_node *, ent->values, val);
535   ARR_APP1 (compound_graph_path *, ent->val_paths, path);
536 }
537
538 INLINE void
539 set_compound_ent_value_w_path(entity *ent, ir_node *val, compound_graph_path *path, int pos) {
540   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
541   ent->values[pos+1] = val;
542   ent->val_paths[pos+1] = path;
543 }
544
545 INLINE int
546 get_compound_ent_n_values(entity *ent) {
547   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
548   return (ARR_LEN (ent->values))-1;
549 }
550
551 INLINE ir_node  *
552 get_compound_ent_value(entity *ent, int pos) {
553   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
554   return ent->values[pos+1];
555 }
556
557 INLINE compound_graph_path *
558 get_compound_ent_value_path(entity *ent, int pos) {
559   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
560   return ent->val_paths[pos+1];
561 }
562
563 void
564 remove_compound_ent_value(entity *ent, entity *value_ent) {
565   int i;
566   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
567   for (i = 1; i < (ARR_LEN (ent->val_paths)); i++) {
568     compound_graph_path *path = ent->val_paths[i];
569     if (path->nodes[path->len-1] == value_ent) {
570       for(; i < (ARR_LEN (ent->val_paths))-1; i++) {
571         ent->val_paths[i] = ent->val_paths[i+1];
572         ent->values[i]   = ent->values[i+1];
573       }
574       ARR_SETLEN(entity*,  ent->val_paths, ARR_LEN(ent->val_paths) - 1);
575       ARR_SETLEN(ir_node*, ent->values,    ARR_LEN(ent->values)    - 1);
576       break;
577     }
578   }
579 }
580
581 INLINE void
582 add_compound_ent_value(entity *ent, ir_node *val, entity *member) {
583   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
584   compound_graph_path *path = new_compound_graph_path(get_entity_owner(ent), 1);
585   path->nodes[0] = member;
586   add_compound_ent_value_w_path(ent, val, path);
587 }
588
589 /* Copies the firm subgraph referenced by val to const_code_irg and adds
590    the node as constant initialization to ent.
591    The subgraph may not contain control flow operations.
592 INLINE void
593 copy_and_add_compound_ent_value(entity *ent, ir_node *val, entity *member) {
594   ir_graph *rem = current_ir_graph;
595
596   assert(get_entity_variability(ent) != variability_uninitialized);
597   current_ir_graph = get_const_code_irg();
598
599   val = copy_const_value(val);
600   add_compound_ent_value(ent, val, member);
601   current_ir_graph = rem;
602   }*/
603
604 /* Copies the value i of the entity to current_block in current_ir_graph.
605 ir_node *
606 copy_compound_ent_value(entity *ent, int pos) {
607   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
608   return copy_const_value(ent->values[pos+1]);
609   }*/
610
611 INLINE entity   *
612 get_compound_ent_value_member(entity *ent, int pos) {
613   compound_graph_path *path;
614   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
615   path = get_compound_ent_value_path(ent, pos);
616
617   return get_compound_graph_path_node(path, get_compound_graph_path_length(path)-1);
618 }
619
620 INLINE void
621 set_compound_ent_value(entity *ent, ir_node *val, entity *member, int pos) {
622   compound_graph_path *path;
623   assert(ent && is_compound_entity(ent) && (ent->variability != variability_uninitialized));
624   path = get_compound_ent_value_path(ent, pos);
625   set_compound_graph_path_node(path, 0, member);
626   set_compound_ent_value_w_path(ent, val, path, pos);
627 }
628
629 void
630 set_array_entity_values(entity *ent, tarval **values, int num_vals) {
631   int i;
632   ir_graph *rem = current_ir_graph;
633   type *arrtp = get_entity_type(ent);
634   ir_node *val;
635
636   assert(is_array_type(arrtp));
637   assert(get_array_n_dimensions(arrtp) == 1);
638   /* One bound is sufficient, the nunmber of constant fields makes the
639      size. */
640   assert(get_array_lower_bound (arrtp, 0) || get_array_upper_bound (arrtp, 0));
641   assert(get_entity_variability(ent) != variability_uninitialized);
642   current_ir_graph = get_const_code_irg();
643
644   for (i = 0; i < num_vals; i++) {
645     val = new_Const(get_tarval_mode (values[i]), values[i]);
646     add_compound_ent_value(ent, val, get_array_element_entity(arrtp));
647   }
648   current_ir_graph = rem;
649 }
650
651 INLINE int
652 get_entity_offset (entity *ent) {
653   return ent->offset;
654 }
655
656 INLINE void
657 set_entity_offset (entity *ent, int offset) {
658   ent->offset = offset;
659 }
660
661 INLINE void
662 add_entity_overwrites   (entity *ent, entity *overwritten) {
663   assert(ent);
664   assert(is_class_type(get_entity_owner(ent)));
665   ARR_APP1 (entity *, ent->overwrites, overwritten);
666   ARR_APP1 (entity *, overwritten->overwrittenby, ent);
667 }
668
669 INLINE int
670 get_entity_n_overwrites (entity *ent) {
671   assert(ent);
672   assert(is_class_type(get_entity_owner(ent)));
673   return (ARR_LEN (ent->overwrites))-1;
674 }
675
676 int
677 get_entity_overwrites_index(entity *ent, entity *overwritten) {
678   int i;
679   assert(ent && is_class_type(get_entity_owner(ent)));
680   for (i = 0; i < get_entity_n_overwrites(ent); i++)
681     if (get_entity_overwrites(ent, i) == overwritten)
682       return i;
683   return -1;
684 }
685
686 INLINE entity *
687 get_entity_overwrites   (entity *ent, int pos) {
688   assert(ent);
689   assert(is_class_type(get_entity_owner(ent)));
690   assert(pos < get_entity_n_overwrites(ent));
691   return ent->overwrites[pos+1];
692 }
693
694 INLINE void
695 set_entity_overwrites   (entity *ent, int pos, entity *overwritten) {
696   assert(ent);
697   assert(is_class_type(get_entity_owner(ent)));
698   assert(pos < get_entity_n_overwrites(ent));
699   ent->overwrites[pos+1] = overwritten;
700 }
701
702 void
703 remove_entity_overwrites(entity *ent, entity *overwritten) {
704   int i;
705   assert(ent && is_class_type(get_entity_owner(ent)));
706   for (i = 1; i < (ARR_LEN (ent->overwrites)); i++)
707     if (ent->overwrites[i] == overwritten) {
708       for(; i < (ARR_LEN (ent->overwrites))-1; i++)
709         ent->overwrites[i] = ent->overwrites[i+1];
710       ARR_SETLEN(entity*, ent->overwrites, ARR_LEN(ent->overwrites) - 1);
711       break;
712     }
713 }
714
715 INLINE void
716 add_entity_overwrittenby   (entity *ent, entity *overwrites) {
717   assert(ent);
718   assert(is_class_type(get_entity_owner(ent)));
719   add_entity_overwrites(overwrites, ent);
720 }
721
722 INLINE int
723 get_entity_n_overwrittenby (entity *ent) {
724   assert(ent);
725   assert(is_class_type(get_entity_owner(ent)));
726   return (ARR_LEN (ent->overwrittenby))-1;
727 }
728
729 int
730 get_entity_overwrittenby_index(entity *ent, entity *overwrites) {
731   int i;
732   assert(ent && is_class_type(get_entity_owner(ent)));
733   for (i = 0; i < get_entity_n_overwrittenby(ent); i++)
734     if (get_entity_overwrittenby(ent, i) == overwrites)
735       return i;
736   return -1;
737 }
738
739 INLINE entity *
740 get_entity_overwrittenby   (entity *ent, int pos) {
741   assert(ent);
742   assert(is_class_type(get_entity_owner(ent)));
743   assert(pos < get_entity_n_overwrittenby(ent));
744   return ent->overwrittenby[pos+1];
745 }
746
747 INLINE void
748 set_entity_overwrittenby   (entity *ent, int pos, entity *overwrites) {
749   assert(ent);
750   assert(is_class_type(get_entity_owner(ent)));
751   assert(pos < get_entity_n_overwrittenby(ent));
752   ent->overwrittenby[pos+1] = overwrites;
753 }
754
755 void    remove_entity_overwrittenby(entity *ent, entity *overwrites) {
756   int i;
757   assert(ent && is_class_type(get_entity_owner(ent)));
758   for (i = 1; i < (ARR_LEN (ent->overwrittenby)); i++)
759     if (ent->overwrittenby[i] == overwrites) {
760       for(; i < (ARR_LEN (ent->overwrittenby))-1; i++)
761         ent->overwrittenby[i] = ent->overwrittenby[i+1];
762       ARR_SETLEN(entity*, ent->overwrittenby, ARR_LEN(ent->overwrittenby) - 1);
763       break;
764     }
765 }
766
767 /* A link to store intermediate information */
768 void *
769 get_entity_link(entity *ent) {
770   assert(ent);
771   return ent->link;
772 }
773
774 void
775 set_entity_link(entity *ent, void *l) {
776   assert(ent);
777   ent->link = l;
778 }
779
780 INLINE ir_graph *
781 get_entity_irg(entity *ent) {
782   assert (ent);
783   assert (is_method_type(ent->type));
784   return ent->irg;
785 }
786
787 INLINE void
788 set_entity_irg(entity *ent, ir_graph *irg) {
789   assert (ent && ent->type);
790   /* Wie kann man die Referenz auf einen IRG löschen, z.B. wenn die
791    * Methode selbst nicht mehr aufgerufen werden kann, die Entität
792    * aber erhalten bleiben soll. */
793   /* assert (irg); */
794   assert (is_method_type(ent->type));
795   assert (ent->peculiarity == peculiarity_existent);
796   ent->irg = irg;
797 }
798
799 int is_entity (void *thing) {
800   assert(thing);
801   if (get_kind(thing) == k_entity)
802     return 1;
803   else
804     return 0;
805 }
806
807 int is_atomic_entity(entity *ent) {
808   type* t = get_entity_type(ent);
809   return (is_primitive_type(t) || is_pointer_type(t) ||
810           is_enumeration_type(t) || is_method_type(t));
811 }
812
813 int is_compound_entity(entity *ent) {
814   type* t = get_entity_type(ent);
815   return (is_class_type(t) || is_struct_type(t) ||
816           is_array_type(t) || is_union_type(t));
817 }
818
819 /* @@@ not implemnted!!! */
820 bool equal_entity(entity *ent1, entity *ent2) {
821   printf(" calling unimplemented equal entity!!! \n");
822   return true;
823 }
824
825
826 unsigned long get_entity_visited(entity *ent) {
827   assert (ent);
828   return ent->visit;
829 }
830 void        set_entity_visited(entity *ent, unsigned long num) {
831   assert (ent);
832   ent->visit = num;
833 }
834 /* Sets visited field in entity to entity_visited. */
835 void        mark_entity_visited(entity *ent) {
836   assert (ent);
837   ent->visit = type_visited;
838 }
839
840
841 INLINE bool entity_visited(entity *ent) {
842   return get_entity_visited(ent) >= type_visited;
843 }
844
845 INLINE bool entity_not_visited(entity *ent) {
846   return get_entity_visited(ent) < type_visited;
847 }