Fixed some warning about unused variables.
[libfirm] / ir / tr / entity.c
1 /*
2  * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Representation of all program known entities.
23  * @author  Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include <string.h>
29 #include <stdlib.h>
30 #include <stddef.h>
31
32 #include "xmalloc.h"
33 #include "entity_t.h"
34 #include "array.h"
35 #include "irtools.h"
36 #include "irhooks.h"
37 #include "irprintf.h"
38
39 #include "irprog_t.h"
40 #include "ircons.h"
41 #include "tv_t.h"
42 #include "irdump.h"
43 #include "irgraph_t.h"
44 #include "callgraph.h"
45 #include "error.h"
46 #include "compound_path.h"
47
48 /*-----------------------------------------------------------------*/
49 /** general                                                       **/
50 /*-----------------------------------------------------------------*/
51
52 ir_entity *unknown_entity = NULL;
53
54 ir_entity *get_unknown_entity(void) { return unknown_entity; }
55
56 /** The name of the unknown entity. */
57 #define UNKNOWN_ENTITY_NAME "unknown_entity"
58
59 /*-----------------------------------------------------------------*/
60 /* ENTITY                                                          */
61 /*-----------------------------------------------------------------*/
62
63 ir_entity *new_d_entity(ir_type *owner, ident *name, ir_type *type,
64                         dbg_info *db)
65 {
66         ir_entity *res;
67
68         assert(!id_contains_char(name, ' ') && "entity name should not contain spaces");
69
70         res = XMALLOCZ(ir_entity);
71
72         res->kind    = k_entity;
73         res->name    = name;
74         res->ld_name = NULL;
75         res->type    = type;
76         res->owner   = owner;
77
78         res->volatility           = volatility_non_volatile;
79         res->aligned              = align_is_aligned;
80         res->usage                = ir_usage_unknown;
81         res->compiler_gen         = 0;
82         res->visibility           = ir_visibility_default;
83         res->offset               = -1;
84         res->offset_bit_remainder = 0;
85         res->alignment            = 0;
86         res->link                 = NULL;
87         res->repr_class           = NULL;
88
89         if (is_Method_type(type)) {
90                 ir_graph *irg = get_const_code_irg();
91                 symconst_symbol sym;
92                 ir_mode *mode = is_Method_type(type) ? mode_P_code : mode_P_data;
93                 sym.entity_p            = res;
94                 set_atomic_ent_value(res, new_r_SymConst(irg, mode, sym, symconst_addr_ent));
95                 res->linkage            = IR_LINKAGE_CONSTANT;
96                 res->attr.mtd_attr.irg_add_properties = mtp_property_inherited;
97                 res->attr.mtd_attr.vtable_number      = IR_VTABLE_NUM_NOT_SET;
98                 res->attr.mtd_attr.param_access       = NULL;
99                 res->attr.mtd_attr.param_weight       = NULL;
100                 res->attr.mtd_attr.irg                = NULL;
101         } else if (is_compound_type(type)) {
102                 res->attr.cmpd_attr.values    = NULL;
103                 res->attr.cmpd_attr.val_paths = NULL;
104         } else if (is_code_type(type)) {
105                 res->attr.code_attr.label = (ir_label_t) -1;
106         }
107
108         /* Remember entity in its owner. */
109         if (owner != NULL)
110                 add_compound_member(owner, res);
111
112 #ifdef DEBUG_libfirm
113         res->nr = get_irp_new_node_nr();
114 #endif
115
116         res->visit = 0;
117         set_entity_dbg_info(res, db);
118
119         hook_new_entity(res);
120
121         return res;
122 }
123
124 ir_entity *new_entity(ir_type *owner, ident *name, ir_type *type)
125 {
126         return new_d_entity(owner, name, type, NULL);
127 }
128
129 /**
130  * Free entity attributes.
131  *
132  * @param ent  the entity
133  */
134 static void free_entity_attrs(ir_entity *ent)
135 {
136         if (ent->overwrites != NULL) {
137                 DEL_ARR_F(ent->overwrites);
138                 ent->overwrites = NULL;
139         }
140         if (ent->overwrittenby != NULL) {
141                 DEL_ARR_F(ent->overwrittenby);
142                 ent->overwrittenby = NULL;
143         }
144
145         if (ent->initializer != NULL) {
146                 /* TODO: free initializers */
147         } else if (entity_has_compound_ent_values(ent)) {
148                 /* can't free compound graph path as it might be used
149                  * multiple times */
150                 ent->attr.cmpd_attr.val_paths = NULL;
151         }
152         if (is_compound_entity(ent)) {
153                 ent->attr.cmpd_attr.values = NULL;
154         } else if (is_method_entity(ent)) {
155                 if (ent->attr.mtd_attr.param_access) {
156                         DEL_ARR_F(ent->attr.mtd_attr.param_access);
157                         ent->attr.mtd_attr.param_access = NULL;
158                 }
159                 if (ent->attr.mtd_attr.param_weight) {
160                         DEL_ARR_F(ent->attr.mtd_attr.param_weight);
161                         ent->attr.mtd_attr.param_weight = NULL;
162                 }
163         }
164 }
165
166 /**
167  * Creates a deep copy of an entity.
168  */
169 static ir_entity *deep_entity_copy(ir_entity *old)
170 {
171         ir_entity *newe = XMALLOC(ir_entity);
172
173         *newe = *old;
174         if (old->initializer != NULL) {
175                 /* FIXME: the initializers are NOT copied */
176         } else if (entity_has_compound_ent_values(old)) {
177                 newe->attr.cmpd_attr.values    = NULL;
178                 newe->attr.cmpd_attr.val_paths = NULL;
179                 if (old->attr.cmpd_attr.values)
180                         newe->attr.cmpd_attr.values = DUP_ARR_F(ir_node *, old->attr.cmpd_attr.values);
181
182                 /* FIXME: the compound graph paths are NOT copied */
183                 if (old->attr.cmpd_attr.val_paths)
184                         newe->attr.cmpd_attr.val_paths = DUP_ARR_F(compound_graph_path *, old->attr.cmpd_attr.val_paths);
185         } else if (is_method_entity(old)) {
186                 /* do NOT copy them, reanalyze. This might be the best solution */
187                 newe->attr.mtd_attr.param_access = NULL;
188                 newe->attr.mtd_attr.param_weight = NULL;
189         }
190         newe->overwrites    = NULL;
191         newe->overwrittenby = NULL;
192
193 #ifdef DEBUG_libfirm
194         newe->nr = get_irp_new_node_nr();
195 #endif
196         return newe;
197 }
198
199 /*
200  * Copies the entity if the new_owner is different from the
201  * owner of the old entity,  else returns the old entity.
202  */
203 ir_entity *copy_entity_own(ir_entity *old, ir_type *new_owner)
204 {
205         ir_entity *newe;
206         assert(is_entity(old));
207         assert(is_compound_type(new_owner));
208         assert(get_type_state(new_owner) != layout_fixed);
209
210         if (old->owner == new_owner)
211                 return old;
212
213         /* create a deep copy so we are safe of aliasing and double-freeing. */
214         newe        = deep_entity_copy(old);
215         newe->owner = new_owner;
216         add_compound_member(new_owner, newe);
217
218         return newe;
219 }
220
221 ir_entity *copy_entity_name(ir_entity *old, ident *new_name)
222 {
223         ir_entity *newe;
224         assert(old && old->kind == k_entity);
225
226         if (old->name == new_name)
227                 return old;
228
229         newe       = deep_entity_copy(old);
230         newe->name = new_name;
231         newe->ld_name = NULL;
232         add_compound_member(old->owner, newe);
233
234         return newe;
235 }
236
237 void free_entity(ir_entity *ent)
238 {
239         if (ent->owner != NULL && !is_Array_type(ent->owner))
240                 remove_compound_member(ent->owner, ent);
241
242         assert(ent && ent->kind == k_entity);
243         free_entity_attrs(ent);
244         ent->kind = k_BAD;
245         xfree(ent);
246 }
247
248 /* Outputs a unique number for this node */
249 long get_entity_nr(const ir_entity *ent)
250 {
251         assert(ent && ent->kind == k_entity);
252 #ifdef DEBUG_libfirm
253         return ent->nr;
254 #else
255         return (long)PTR_TO_INT(ent);
256 #endif
257 }
258
259 const char *(get_entity_name)(const ir_entity *ent)
260 {
261         return _get_entity_name(ent);
262 }
263
264 ident *(get_entity_ident)(const ir_entity *ent)
265 {
266         return _get_entity_ident(ent);
267 }
268
269 void (set_entity_ident)(ir_entity *ent, ident *id)
270 {
271         _set_entity_ident(ent, id);
272 }
273
274 ir_type *(get_entity_owner)(const ir_entity *ent)
275 {
276         return _get_entity_owner(ent);
277 }
278
279 void set_entity_owner(ir_entity *ent, ir_type *owner)
280 {
281         assert(is_entity(ent));
282         assert(is_compound_type(owner));
283
284         remove_compound_member(ent->owner, ent);
285         add_compound_member(owner, ent);
286         ent->owner = owner;
287 }
288
289 ident *(get_entity_ld_ident)(const ir_entity *ent)
290 {
291         return _get_entity_ld_ident(ent);
292 }
293
294 void (set_entity_ld_ident)(ir_entity *ent, ident *ld_ident)
295 {
296         _set_entity_ld_ident(ent, ld_ident);
297 }
298
299 const char *(get_entity_ld_name)(const ir_entity *ent)
300 {
301         return _get_entity_ld_name(ent);
302 }
303
304 int entity_has_ld_ident(const ir_entity *entity)
305 {
306         return entity->ld_name != NULL;
307 }
308
309 ir_type *(get_entity_type)(const ir_entity *ent)
310 {
311         return _get_entity_type(ent);
312 }
313
314 void (set_entity_type)(ir_entity *ent, ir_type *type)
315 {
316         _set_entity_type(ent, type);
317 }
318
319 ir_volatility (get_entity_volatility)(const ir_entity *ent)
320 {
321         return _get_entity_volatility(ent);
322 }
323
324 void (set_entity_volatility)(ir_entity *ent, ir_volatility vol)
325 {
326         _set_entity_volatility(ent, vol);
327 }
328
329 /* Return the name of the volatility. */
330 const char *get_volatility_name(ir_volatility var)
331 {
332 #define X(a)    case a: return #a
333         switch (var) {
334         X(volatility_non_volatile);
335         X(volatility_is_volatile);
336     default: return "BAD VALUE";
337         }
338 #undef X
339 }
340
341 ir_align (get_entity_aligned)(const ir_entity *ent)
342 {
343         return _get_entity_aligned(ent);
344 }
345
346 void (set_entity_aligned)(ir_entity *ent, ir_align a)
347 {
348         _set_entity_aligned(ent, a);
349 }
350
351 unsigned (get_entity_alignment)(const ir_entity *ent)
352 {
353         return _get_entity_alignment(ent);
354 }
355
356 void (set_entity_alignment)(ir_entity *ent, unsigned alignment)
357 {
358         _set_entity_alignment(ent, alignment);
359 }
360
361 /* Return the name of the alignment. */
362 const char *get_align_name(ir_align a)
363 {
364 #define X(a)    case a: return #a
365         switch (a) {
366         X(align_non_aligned);
367         X(align_is_aligned);
368         default: return "BAD VALUE";
369         }
370 #undef X
371 }
372
373 void set_entity_label(ir_entity *ent, ir_label_t label)
374 {
375         ent->attr.code_attr.label = label;
376 }
377
378 ir_label_t get_entity_label(const ir_entity *ent)
379 {
380         return ent->attr.code_attr.label;
381 }
382
383 static void verify_visibility(const ir_entity *entity)
384 {
385         if (get_entity_visibility(entity) == ir_visibility_external
386                         && !is_method_entity(entity)) {
387                 assert(!entity_has_definition(entity));
388         }
389 }
390
391 void set_entity_visibility(ir_entity *entity, ir_visibility visibility)
392 {
393         entity->visibility = visibility;
394         verify_visibility(entity);
395 }
396
397 ir_visibility get_entity_visibility(const ir_entity *entity)
398 {
399         return (ir_visibility)entity->visibility;
400 }
401
402 void set_entity_linkage(ir_entity *entity, ir_linkage linkage)
403 {
404         entity->linkage = linkage;
405 }
406
407 ir_linkage (get_entity_linkage)(const ir_entity *entity)
408 {
409         return get_entity_linkage(entity);
410 }
411
412 void add_entity_linkage(ir_entity *entity, ir_linkage linkage)
413 {
414         entity->linkage |= linkage;
415 }
416
417 void remove_entity_linkage(ir_entity *entity, ir_linkage linkage)
418 {
419         entity->linkage &= ~linkage;
420 }
421
422 /* Checks if an entity is compiler generated */
423 int (is_entity_compiler_generated)(const ir_entity *ent)
424 {
425         return _is_entity_compiler_generated(ent);
426 }
427
428 /* Sets/resets the compiler generated flag */
429 void (set_entity_compiler_generated)(ir_entity *ent, int flag)
430 {
431         _set_entity_compiler_generated(ent, flag);
432 }
433
434 ir_entity_usage (get_entity_usage)(const ir_entity *ent)
435 {
436         return _get_entity_usage(ent);
437 }
438
439 void (set_entity_usage)(ir_entity *ent, ir_entity_usage flags)
440 {
441         _set_entity_usage(ent, flags);
442 }
443
444 /* Set has no effect for existent entities of type method. */
445 ir_node *get_atomic_ent_value(ir_entity *entity)
446 {
447         ir_initializer_t *initializer = get_entity_initializer(entity);
448
449         assert(entity && is_atomic_entity(entity));
450         if (initializer == NULL) {
451                 ir_type *type = get_entity_type(entity);
452                 return new_r_Unknown(get_const_code_irg(), get_type_mode(type));
453         }
454
455         switch (get_initializer_kind(initializer)) {
456         case IR_INITIALIZER_NULL: {
457                 ir_type *type = get_entity_type(entity);
458                 ir_mode *mode = get_type_mode(type);
459                 return new_r_Const(get_const_code_irg(), get_mode_null(mode));
460         }
461         case IR_INITIALIZER_TARVAL: {
462                 ir_tarval *tv = get_initializer_tarval_value(initializer);
463                 return new_r_Const(get_const_code_irg(), tv);
464         }
465         case IR_INITIALIZER_CONST:
466                 return get_initializer_const_value(initializer);
467         case IR_INITIALIZER_COMPOUND:
468                 panic("compound initializer in atomic entity not allowed (%+F)", entity);
469         }
470
471         panic("invalid initializer kind in get_atomic_ent_value(%+F)", entity);
472 }
473
474 void set_atomic_ent_value(ir_entity *entity, ir_node *val)
475 {
476         ir_initializer_t *initializer;
477
478         assert(is_atomic_entity(entity));
479
480         assert(is_Dummy(val) || get_irn_mode(val) == get_type_mode(entity->type));
481         initializer = create_initializer_const(val);
482         entity->initializer = initializer;
483 }
484
485 /* Returns true if the the node is representable as code on
486  *  const_code_irg. */
487 int is_irn_const_expression(ir_node *n)
488 {
489         /* we are in danger iff an exception will arise. TODO: be more precisely,
490          * for instance Div. will NOT rise if divisor != 0
491          */
492         if (is_binop(n) && !is_fragile_op(n))
493                 return is_irn_const_expression(get_binop_left(n)) && is_irn_const_expression(get_binop_right(n));
494
495         switch (get_irn_opcode(n)) {
496         case iro_Const:
497         case iro_SymConst:
498         case iro_Unknown:
499                 return 1;
500         case iro_Conv:
501         case iro_Cast:
502                 return is_irn_const_expression(get_irn_n(n, 0));
503         default:
504                 break;
505         }
506         return 0;
507 }
508
509 /*
510  * Copies a firm subgraph that complies to the restrictions for
511  * constant expressions to block.
512  */
513 ir_node *copy_const_value(dbg_info *dbg, ir_node *n, ir_node *block)
514 {
515         ir_graph *irg = get_irn_irg(block);
516         ir_node *nn;
517         ir_mode *m;
518
519         /* @@@ GL I think  we should implement this using the routines from irgopt for
520                dead node elimination/inlineing. */
521
522         m = get_irn_mode(n);
523         switch (get_irn_opcode(n)) {
524         case iro_Const:
525                 nn = new_rd_Const(dbg, irg, get_Const_tarval(n));
526                 break;
527         case iro_SymConst:
528                 nn = new_rd_SymConst(dbg, irg, get_irn_mode(n), get_SymConst_symbol(n), get_SymConst_kind(n));
529                 break;
530         case iro_Add:
531                 nn = new_rd_Add(dbg, block,
532                                 copy_const_value(dbg, get_Add_left(n), block),
533                                 copy_const_value(dbg, get_Add_right(n), block), m);
534                 break;
535         case iro_Sub:
536                 nn = new_rd_Sub(dbg, block,
537                                 copy_const_value(dbg, get_Sub_left(n), block),
538                                 copy_const_value(dbg, get_Sub_right(n), block), m);
539                 break;
540         case iro_Mul:
541                 nn = new_rd_Mul(dbg, block,
542                                 copy_const_value(dbg, get_Mul_left(n), block),
543                                 copy_const_value(dbg, get_Mul_right(n), block), m);
544                 break;
545         case iro_And:
546                 nn = new_rd_And(dbg, block,
547                                 copy_const_value(dbg, get_And_left(n), block),
548                                 copy_const_value(dbg, get_And_right(n), block), m);
549                 break;
550         case iro_Or:
551                 nn = new_rd_Or(dbg, block,
552                                copy_const_value(dbg, get_Or_left(n), block),
553                                copy_const_value(dbg, get_Or_right(n), block), m);
554                 break;
555         case iro_Eor:
556                 nn = new_rd_Eor(dbg, block,
557                                 copy_const_value(dbg, get_Eor_left(n), block),
558                                 copy_const_value(dbg, get_Eor_right(n), block), m);
559                 break;
560         case iro_Cast:
561                 nn = new_rd_Cast(dbg, block,
562                                  copy_const_value(dbg, get_Cast_op(n), block),
563                                  get_Cast_type(n));
564                 break;
565         case iro_Conv:
566                 nn = new_rd_Conv(dbg, block,
567                                  copy_const_value(dbg, get_Conv_op(n), block), m);
568                 break;
569         case iro_Unknown:
570                 nn = new_r_Unknown(irg, m); break;
571         default:
572                 panic("opcode invalid or not implemented");
573         }
574         return nn;
575 }
576
577 /** Return the name of the initializer kind. */
578 const char *get_initializer_kind_name(ir_initializer_kind_t ini)
579 {
580 #define X(a)    case a: return #a
581         switch (ini) {
582         X(IR_INITIALIZER_CONST);
583         X(IR_INITIALIZER_TARVAL);
584         X(IR_INITIALIZER_NULL);
585         X(IR_INITIALIZER_COMPOUND);
586     default: return "BAD VALUE";
587         }
588 #undef X
589 }
590
591 static ir_initializer_t null_initializer = { IR_INITIALIZER_NULL };
592
593 ir_initializer_t *get_initializer_null(void)
594 {
595         return &null_initializer;
596 }
597
598 ir_initializer_t *create_initializer_const(ir_node *value)
599 {
600         struct obstack *obst = get_irg_obstack(get_const_code_irg());
601
602         ir_initializer_t *initializer
603                 = (ir_initializer_t*)OALLOC(obst, ir_initializer_const_t);
604         initializer->kind         = IR_INITIALIZER_CONST;
605         initializer->consti.value = value;
606
607         return initializer;
608 }
609
610 ir_initializer_t *create_initializer_tarval(ir_tarval *tv)
611 {
612         struct obstack *obst = get_irg_obstack(get_const_code_irg());
613
614         ir_initializer_t *initializer
615                 = (ir_initializer_t*)OALLOC(obst, ir_initializer_tarval_t);
616         initializer->kind         = IR_INITIALIZER_TARVAL;
617         initializer->tarval.value = tv;
618
619         return initializer;
620 }
621
622 ir_initializer_t *create_initializer_compound(size_t n_entries)
623 {
624         struct obstack *obst = get_irg_obstack(get_const_code_irg());
625
626         size_t i;
627         size_t size  = sizeof(ir_initializer_compound_t)
628                      + n_entries * sizeof(ir_initializer_t*)
629                      - sizeof(ir_initializer_t*);
630
631         ir_initializer_t *initializer
632                 = (ir_initializer_t*)obstack_alloc(obst, size);
633         initializer->kind                    = IR_INITIALIZER_COMPOUND;
634         initializer->compound.n_initializers = n_entries;
635
636         for (i = 0; i < n_entries; ++i) {
637                 initializer->compound.initializers[i] = get_initializer_null();
638         }
639
640         return initializer;
641 }
642
643 ir_node *get_initializer_const_value(const ir_initializer_t *initializer)
644 {
645         assert(initializer->kind == IR_INITIALIZER_CONST);
646         return skip_Id(initializer->consti.value);
647 }
648
649 ir_tarval *get_initializer_tarval_value(const ir_initializer_t *initializer)
650 {
651         assert(initializer->kind == IR_INITIALIZER_TARVAL);
652         return initializer->tarval.value;
653 }
654
655 size_t get_initializer_compound_n_entries(const ir_initializer_t *initializer)
656 {
657         assert(initializer->kind == IR_INITIALIZER_COMPOUND);
658         return initializer->compound.n_initializers;
659 }
660
661 void set_initializer_compound_value(ir_initializer_t *initializer,
662                                     size_t index, ir_initializer_t *value)
663 {
664         assert(initializer->kind == IR_INITIALIZER_COMPOUND);
665         assert(index < initializer->compound.n_initializers);
666
667         initializer->compound.initializers[index] = value;
668 }
669
670 ir_initializer_t *get_initializer_compound_value(
671                 const ir_initializer_t *initializer, size_t index)
672 {
673         assert(initializer->kind == IR_INITIALIZER_COMPOUND);
674         assert(index < initializer->compound.n_initializers);
675
676         return initializer->compound.initializers[index];
677 }
678
679 ir_initializer_kind_t get_initializer_kind(const ir_initializer_t *initializer)
680 {
681         return initializer->kind;
682 }
683
684 static void check_entity_initializer(ir_entity *entity)
685 {
686 #ifndef NDEBUG
687         ir_initializer_t *initializer = entity->initializer;
688         ir_type          *entity_tp   = get_entity_type(entity);
689         switch (initializer->kind) {
690         case IR_INITIALIZER_COMPOUND:
691                 assert(is_compound_type(entity_tp) || is_Array_type(entity_tp));
692                 break;
693         case IR_INITIALIZER_CONST:
694                 /* methods are initialized by a SymConst */
695                 assert(is_atomic_type(entity_tp) || is_Method_type(entity_tp));
696                 break;
697         case IR_INITIALIZER_TARVAL:
698                 assert(is_atomic_type(entity_tp));
699                 break;
700         case IR_INITIALIZER_NULL:
701                 break;
702         }
703 #endif
704 }
705
706 void set_entity_initializer(ir_entity *entity, ir_initializer_t *initializer)
707 {
708         entity->initializer = initializer;
709         check_entity_initializer(entity);
710 }
711
712 int has_entity_initializer(const ir_entity *entity)
713 {
714         return entity->initializer != NULL;
715 }
716
717 ir_initializer_t *get_entity_initializer(const ir_entity *entity)
718 {
719         return entity->initializer;
720 }
721
722 int (get_entity_offset)(const ir_entity *ent)
723 {
724         return _get_entity_offset(ent);
725 }
726
727 void (set_entity_offset)(ir_entity *ent, int offset)
728 {
729         _set_entity_offset(ent, offset);
730 }
731
732 unsigned char (get_entity_offset_bits_remainder)(const ir_entity *ent)
733 {
734         return _get_entity_offset_bits_remainder(ent);
735 }
736
737 void (set_entity_offset_bits_remainder)(ir_entity *ent, unsigned char offset)
738 {
739         _set_entity_offset_bits_remainder(ent, offset);
740 }
741
742 void add_entity_overwrites(ir_entity *ent, ir_entity *overwritten)
743 {
744         if (ent->overwrites == NULL) {
745                 ent->overwrites = NEW_ARR_F(ir_entity*, 0);
746         }
747         ARR_APP1(ir_entity *, ent->overwrites, overwritten);
748         if (overwritten->overwrittenby == NULL) {
749                 overwritten->overwrittenby = NEW_ARR_F(ir_entity*, 0);
750         }
751         ARR_APP1(ir_entity *, overwritten->overwrittenby, ent);
752 }
753
754 size_t get_entity_n_overwrites(const ir_entity *ent)
755 {
756         if (ent->overwrites == NULL)
757                 return 0;
758         return ARR_LEN(ent->overwrites);
759 }
760
761 size_t get_entity_overwrites_index(const ir_entity *ent, ir_entity *overwritten)
762 {
763         size_t i;
764         size_t n = get_entity_n_overwrites(ent);
765         for (i = 0; i < n; ++i) {
766                 if (get_entity_overwrites(ent, i) == overwritten)
767                         return i;
768         }
769         return (size_t)-1;
770 }
771
772 ir_entity *get_entity_overwrites(const ir_entity *ent, size_t pos)
773 {
774         assert(pos < get_entity_n_overwrites(ent));
775         return ent->overwrites[pos];
776 }
777
778 void set_entity_overwrites(ir_entity *ent, size_t pos, ir_entity *overwritten)
779 {
780         assert(pos < get_entity_n_overwrites(ent));
781         ent->overwrites[pos] = overwritten;
782 }
783
784 void remove_entity_overwrites(ir_entity *ent, ir_entity *overwritten)
785 {
786         size_t i;
787         size_t n = get_entity_n_overwrites(ent);
788         for (i = 0; i < n; ++i) {
789                 if (ent->overwrites[i] == overwritten) {
790                         for (; i < n - 1; i++)
791                                 ent->overwrites[i] = ent->overwrites[i+1];
792                         ARR_SETLEN(ir_entity*, ent->overwrites, n - 1);
793                         break;
794                 }
795         }
796 }
797
798
799 size_t get_entity_n_overwrittenby(const ir_entity *ent)
800 {
801         if (ent->overwrittenby == NULL)
802                 return 0;
803         return ARR_LEN(ent->overwrittenby);
804 }
805
806 size_t get_entity_overwrittenby_index(const ir_entity *ent,
807                                       ir_entity *overwrites)
808 {
809         size_t i;
810         size_t n = get_entity_n_overwrittenby(ent);
811         for (i = 0; i < n; ++i) {
812                 if (get_entity_overwrittenby(ent, i) == overwrites)
813                         return i;
814         }
815         return (size_t)-1;
816 }
817
818 ir_entity *get_entity_overwrittenby(const ir_entity *ent, size_t pos)
819 {
820         assert(pos < get_entity_n_overwrittenby(ent));
821         return ent->overwrittenby[pos];
822 }
823
824 void set_entity_overwrittenby(ir_entity *ent, size_t pos, ir_entity *overwrites)
825 {
826         assert(pos < get_entity_n_overwrittenby(ent));
827         ent->overwrittenby[pos] = overwrites;
828 }
829
830 void remove_entity_overwrittenby(ir_entity *ent, ir_entity *overwrites)
831 {
832         size_t i;
833         size_t n = get_entity_n_overwrittenby(ent);
834         for (i = 0; i < n; ++i) {
835                 if (ent->overwrittenby[i] == overwrites) {
836                         for (; i < n - 1; ++i)
837                                 ent->overwrittenby[i] = ent->overwrittenby[i+1];
838                         ARR_SETLEN(ir_entity*, ent->overwrittenby, n - 1);
839                         break;
840                 }
841         }
842 }
843
844 void *(get_entity_link)(const ir_entity *ent)
845 {
846         return _get_entity_link(ent);
847 }
848
849 void (set_entity_link)(ir_entity *ent, void *l)
850 {
851         _set_entity_link(ent, l);
852 }
853
854 ir_graph *(get_entity_irg)(const ir_entity *ent)
855 {
856         return _get_entity_irg(ent);
857 }
858
859 void set_entity_irg(ir_entity *ent, ir_graph *irg)
860 {
861         assert(is_method_entity(ent));
862         assert(get_entity_peculiarity(ent) == peculiarity_existent);
863         ent->attr.mtd_attr.irg = irg;
864 }
865
866 unsigned get_entity_vtable_number(const ir_entity *ent)
867 {
868         assert(is_method_entity((ir_entity *)ent));
869         return ent->attr.mtd_attr.vtable_number;
870 }
871
872 void set_entity_vtable_number(ir_entity *ent, unsigned vtable_number)
873 {
874         assert(is_method_entity(ent));
875         ent->attr.mtd_attr.vtable_number = vtable_number;
876 }
877
878 int (is_entity)(const void *thing)
879 {
880         return _is_entity(thing);
881 }
882
883 int is_atomic_entity(const ir_entity *ent)
884 {
885         ir_type *t      = get_entity_type(ent);
886         const tp_op *op = get_type_tpop(t);
887         return (op == type_primitive || op == type_pointer ||
888                 op == type_enumeration || op == type_method);
889 }
890
891 int is_compound_entity(const ir_entity *ent)
892 {
893         ir_type     *t  = get_entity_type(ent);
894         const tp_op *op = get_type_tpop(t);
895         return (op == type_class || op == type_struct ||
896                 op == type_array || op == type_union);
897 }
898
899 int is_method_entity(const ir_entity *ent)
900 {
901         ir_type *t = get_entity_type(ent);
902         return is_Method_type(t);
903 }
904
905 ir_visited_t (get_entity_visited)(const ir_entity *ent)
906 {
907         return _get_entity_visited(ent);
908 }
909
910 void (set_entity_visited)(ir_entity *ent, ir_visited_t num)
911 {
912         _set_entity_visited(ent, num);
913 }
914
915 void (mark_entity_visited)(ir_entity *ent)
916 {
917         _mark_entity_visited(ent);
918 }
919
920 int (entity_visited)(const ir_entity *ent)
921 {
922         return _entity_visited(ent);
923 }
924
925 int (entity_not_visited)(const ir_entity *ent)
926 {
927         return _entity_not_visited(ent);
928 }
929
930 mtp_additional_properties get_entity_additional_properties(const ir_entity *ent)
931 {
932         ir_graph *irg;
933
934         assert(is_method_entity(ent));
935
936         /* first check, if the graph has additional properties */
937         irg = get_entity_irg(ent);
938
939         if (irg)
940                 return get_irg_additional_properties(irg);
941
942         if (ent->attr.mtd_attr.irg_add_properties & mtp_property_inherited)
943                 return get_method_additional_properties(get_entity_type(ent));
944
945         return ent->attr.mtd_attr.irg_add_properties;
946 }
947
948 void set_entity_additional_properties(ir_entity *ent, mtp_additional_properties property_mask)
949 {
950         ir_graph *irg;
951
952         assert(is_method_entity(ent));
953
954         /* first check, if the graph exists */
955         irg = get_entity_irg(ent);
956         if (irg)
957                 set_irg_additional_properties(irg, property_mask);
958         else {
959                 /* do not allow to set the mtp_property_inherited flag or
960                  * the automatic inheritance of flags will not work */
961                 ent->attr.mtd_attr.irg_add_properties = property_mask & ~mtp_property_inherited;
962         }
963 }
964
965 void add_entity_additional_properties(ir_entity *ent, mtp_additional_properties properties)
966 {
967         ir_graph *irg;
968
969         assert(is_method_entity(ent));
970
971         /* first check, if the graph exists */
972         irg = get_entity_irg(ent);
973         if (irg)
974                 add_irg_additional_properties(irg, properties);
975         else {
976                 mtp_additional_properties mask = ent->attr.mtd_attr.irg_add_properties;
977
978                 if (mask & mtp_property_inherited)
979                         mask = get_method_additional_properties(get_entity_type(ent));
980
981                 /* do not allow to set the mtp_property_inherited flag or
982                  * the automatic inheritance of flags will not work */
983                 ent->attr.mtd_attr.irg_add_properties = mask | (properties & ~mtp_property_inherited);
984         }
985 }
986
987 /* Returns the class type that this type info entity represents or NULL
988    if ent is no type info entity. */
989 ir_type *(get_entity_repr_class)(const ir_entity *ent)
990 {
991         return _get_entity_repr_class(ent);
992 }
993
994 dbg_info *(get_entity_dbg_info)(const ir_entity *ent)
995 {
996         return _get_entity_dbg_info(ent);
997 }
998
999 void (set_entity_dbg_info)(ir_entity *ent, dbg_info *db)
1000 {
1001         _set_entity_dbg_info(ent, db);
1002 }
1003
1004 int entity_is_externally_visible(const ir_entity *entity)
1005 {
1006         return get_entity_visibility(entity) != ir_visibility_local
1007                 || (get_entity_linkage(entity) & IR_LINKAGE_HIDDEN_USER);
1008 }
1009
1010 int entity_has_definition(const ir_entity *entity)
1011 {
1012         return entity->initializer != NULL
1013                 || get_entity_irg(entity) != NULL
1014                 || entity_has_compound_ent_values(entity);
1015 }
1016
1017 void ir_init_entity(void)
1018 {
1019         assert(firm_unknown_type && "Call init_type() before firm_init_entity()!");
1020         assert(!unknown_entity && "Call firm_init_entity() only once!");
1021
1022         unknown_entity = new_d_entity(NULL, new_id_from_str(UNKNOWN_ENTITY_NAME),
1023                                       firm_unknown_type, NULL);
1024         set_entity_visibility(unknown_entity, ir_visibility_external);
1025         set_entity_ld_ident(unknown_entity, get_entity_ident(unknown_entity));
1026 }
1027
1028 void ir_finish_entity(void)
1029 {
1030         if (unknown_entity != NULL) {
1031                 free_entity(unknown_entity);
1032                 unknown_entity = NULL;
1033         }
1034 }
1035
1036 ir_allocation get_entity_allocation(const ir_entity *entity)
1037 {
1038         return (ir_allocation)entity->allocation;
1039 }
1040
1041 void set_entity_allocation(ir_entity *entity, ir_allocation allocation)
1042 {
1043         entity->allocation = allocation;
1044 }
1045
1046 ir_peculiarity get_entity_peculiarity(const ir_entity *entity)
1047 {
1048         return (ir_peculiarity)entity->peculiarity;
1049 }
1050
1051 void set_entity_peculiarity(ir_entity *entity, ir_peculiarity peculiarity)
1052 {
1053         entity->peculiarity = peculiarity;
1054 }
1055
1056 void set_entity_final(ir_entity *entity, int final)
1057 {
1058         entity->final = final;
1059 }
1060
1061 int is_entity_final(const ir_entity *entity)
1062 {
1063         return entity->final;
1064 }