Remove entity_usage_state attribute
[libfirm] / ir / ana / cgana.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      Intraprozedural analyses to estimate the call graph.
23  * @author     Hubert Schmid
24  * @date       09.06.2002
25  * @version    $Id$
26  * @brief
27  *  Interprocedural analysis to estimate the calling relation.
28  *
29  *  This analysis computes all entities representing methods that
30  *  can be called at a Call node.  Further it computes a set of
31  *  methods that are 'free', i.e., their adress is handled by
32  *  the program directly, or they are visible external.
33  */
34 #include "config.h"
35
36 #include <string.h>
37
38 #include "cgana.h"
39 #include "rta.h"
40
41 #include "xmalloc.h"
42 #include "irnode_t.h"
43 #include "irmode_t.h"
44 #include "irprog_t.h"
45 #include "irgwalk.h"
46 #include "ircons.h"
47 #include "irgmod.h"
48 #include "iropt.h"
49 #include "irtools.h"
50
51 #include "irflag_t.h"
52 #include "dbginfo_t.h"
53 #include "iropt_dbg.h"
54
55 #include "eset.h"
56 #include "pmap.h"
57 #include "array.h"
58 #include "error.h"
59
60 #include "irdump.h"
61
62 /* unambiguous address used as a mark. */
63 static void *MARK = &MARK;
64
65 static eset *entities = NULL;
66
67 /*--------------------------------------------------------------------------*/
68 /* The analysis                                                             */
69 /*--------------------------------------------------------------------------*/
70
71
72 /*--------------------------------------------------------------------------*/
73 /* Initialize datastructures, remove unwanted constructs, optimize          */
74 /* call target computations.                                                */
75 /*--------------------------------------------------------------------------*/
76
77 /** Collect the entity representing the implementation of this
78  *  method (not the same if inherited) and all entities for overwriting
79  *  implementations in parameter set.
80  *  A recursive descend in the overwritten relation.
81  *  Cycle-free, therefore must terminate.
82  *
83  * @param method   the overwritten method
84  * @param set      A set of entities.
85  *
86  * @return Number of entities in set.
87  */
88 static size_t collect_impls(ir_entity *method, eset *set)
89 {
90         size_t i;
91         size_t size = 0;
92
93         if (get_entity_irg(method) != NULL) {
94                 /* has an implementation */
95                 eset_insert(set, method);
96                 ++size;
97         }
98
99         /*- recursive descent -*/
100         for (i = get_entity_n_overwrittenby(method); i > 0;)
101                 size += collect_impls(get_entity_overwrittenby(method, --i), set);
102         return size;
103 }
104
105 /**
106  * Determine all methods that overwrite the given method (and implement it).
107  * The returned array must be freed by the caller (see DEL_ARR_F).
108  * If the set of overwriting methods is empty, returns NULL.
109  *
110  * @param method  the method
111  */
112 static ir_entity **get_impl_methods(ir_entity *method)
113 {
114         ir_entity **arr;
115         eset      *set = eset_create();
116         size_t    size;
117
118         /* Collect all method entities that can be called here */
119         size = collect_impls(method, set);
120
121         if (size == 0) {
122                 /* no overwriting methods found */
123                 arr = NULL;
124         } else {
125                 ir_entity * ent;
126                 arr = NEW_ARR_F(ir_entity *, size);
127                 for (ent = (ir_entity*) eset_first(set); size > 0; ent = (ir_entity*) eset_next(set))
128                         arr[--size] = ent;
129         }
130         eset_destroy(set);
131         return arr;
132 }
133
134 /** Analyze address computations.
135  *
136  *  Compute for all Sel nodes the set of methods that can be selected.
137  *  For each entity we store the set of subentities in the link field.
138  *
139  *  Further do some optimizations:
140  *  - Call standard optimizations for Sel nodes: this removes polymorphic
141  *    calls.
142  *  - If the node is a SymConst(name) replace it by SymConst(ent) if possible.
143  *    For this we precomputed a map name->entity.  Nowadays, we no more support
144  *    this and assert.
145  *  - If the node is a Sel:
146  *    If we found only a single method that can be called, replace the Sel
147  *    by a SymConst.  This is more powerful than the analysis in opt_polymorphy,
148  *    as here we walk the type graph.  In opt_polymorphy we only apply a local
149  *    pattern.
150  *
151  *  @param node  The node to analyze
152  *  @param env   A map that maps names of entities to the entities.
153  */
154 static void sel_methods_walker(ir_node *node, void *env)
155 {
156         ir_entity **arr;
157         (void)env;
158
159         /* Call standard optimizations */
160         if (is_Sel(node)) {
161                 ir_node *new_node = optimize_in_place(node);
162                 if (node != new_node) {
163                         exchange(node, new_node);
164                         node = new_node;
165                 }
166         }
167
168         if (is_Sel(node) && is_Method_type(get_entity_type(get_Sel_entity(node)))) {
169                 ir_entity *ent = get_SymConst_entity(get_atomic_ent_value(get_Sel_entity(node)));
170
171                 if (!eset_contains(entities, ent)) {
172                         /* Entity not yet handled. Find all (internal or external)
173                          * implemented methods that overwrites this entity.
174                          * This set is stored in the entity link. */
175                         set_entity_link(ent, get_impl_methods(ent));
176                         eset_insert(entities, ent);
177                 }
178
179                 /* -- As an add on we get an optimization that removes polymorphic calls.
180                 This optimization is more powerful than that in transform_node_Sel().  -- */
181                 arr = (ir_entity**) get_entity_link(ent);
182                 if (arr == NULL) {
183                         /*
184                          * The Sel node never returns a pointer to a usable method.
185                          * We could not call it, but it may be description:
186                          * We call a method in a dead part of the program.
187                          */
188                         assert(get_entity_irg(ent) == NULL);
189                 }
190                 else if (get_opt_closed_world() && get_opt_dyn_meth_dispatch() &&
191                         (ARR_LEN(arr) == 1 && arr[0] != NULL)) {
192                         ir_node *new_node;
193
194                         /*
195                          * The Sel node returns only one possible method.
196                          * So we could replace the Sel node by a SymConst.
197                          * This method must exists.
198                          */
199                         assert(get_entity_irg(arr[0]) != NULL);
200                         new_node = copy_const_value(get_irn_dbg_info(node), get_atomic_ent_value(arr[0]), get_nodes_block(node));
201                         DBG_OPT_POLY(node, new_node);
202                         exchange(node, new_node);
203                 }
204         }
205 }
206
207 /**
208  * Initialize auxiliary data structures.
209  *
210  * Computes a set of entities that overwrite an entity and contain
211  * an implementation. The set is stored in the entity's link field.
212  *
213  * Further replaces Sel nodes where this set contains exactly one
214  * method by SymConst nodes.
215  * Finally asserts if there is a SymConst(name) if there could be a
216  * SymConst(ent).
217  */
218 static void sel_methods_init(void)
219 {
220         size_t i, n;
221         pmap *ldname_map = pmap_create();   /* Map entity names to entities: to replace
222                                                SymConst(name) by SymConst(ent). */
223         assert(entities == NULL);
224         entities = eset_create();
225         for (i = 0, n = get_irp_n_irgs(); i < n; ++i) {
226                 ir_entity * ent = get_irg_entity(get_irp_irg(i));
227                 /* only external visible methods are allowed to call by a SymConst_ptr_name */
228                 if (entity_is_externally_visible(ent)) {
229                         pmap_insert(ldname_map, (void *)get_entity_ld_ident(ent), ent);
230                 }
231         }
232
233         all_irg_walk(sel_methods_walker, NULL, NULL);
234         pmap_destroy(ldname_map);
235 }
236
237 /*--------------------------------------------------------------------------*/
238 /* Find free methods.
239  *
240  * We expect that each entity has an array with all implementations in its
241  * link field.                                                              */
242 /*--------------------------------------------------------------------------*/
243
244 /**
245  * Returns an array of all methods that could be called at a Sel node.
246  * This array contains every entry only once.
247  *
248  * @param sel  the Sel node
249  */
250 static ir_entity ** get_Sel_arr(ir_node * sel)
251 {
252         static ir_entity ** NULL_ARRAY = NULL;
253         ir_entity * ent;
254         ir_entity ** arr;
255
256         assert(is_Sel(sel));
257         ent = get_Sel_entity(sel);
258
259         assert(is_Method_type(get_entity_type(ent))); /* what else? */
260         arr = (ir_entity**) get_entity_link(ent);
261         if (arr) {
262                 return arr;
263         } else {
264                 /* "NULL" zeigt an, dass keine Implementierung existiert. Dies
265                  * kann f�r polymorphe (abstrakte) Methoden passieren. */
266                 if (!NULL_ARRAY) {
267                         NULL_ARRAY = NEW_ARR_F(ir_entity *, 0);
268                 }
269                 return NULL_ARRAY;
270         }
271 }
272
273 /**
274  * Returns the number of possible called methods at a Sel node.
275  *
276  * @param sel  the Sel node
277  */
278 static size_t get_Sel_n_methods(ir_node * sel)
279 {
280         return ARR_LEN(get_Sel_arr(sel));
281 }
282
283 /**
284  * Returns the ith possible called method entity at a Sel node.
285  */
286 static ir_entity * get_Sel_method(ir_node * sel, size_t pos)
287 {
288         ir_entity ** arr = get_Sel_arr(sel);
289         assert(pos < ARR_LEN(arr));
290         return arr[pos];
291 }
292
293 /* forward */
294 static void free_mark(ir_node * node, eset * set);
295
296 static void free_mark_proj(ir_node * node, long n, eset * set)
297 {
298         assert(get_irn_mode(node) == mode_T);
299         if (get_irn_link(node) == MARK) {
300                 /* already visited */
301                 return;
302         }
303         set_irn_link(node, MARK);
304         switch (get_irn_opcode(node)) {
305         case iro_Proj: {
306                 /* proj_proj: in einem "sinnvollen" Graphen kommt jetzt ein
307                  * op_Tuple oder ein Knoten, der in "free_ana_walker" behandelt
308                  * wird. */
309                 ir_node * pred = get_Proj_pred(node);
310                 if (get_irn_link(pred) != MARK && is_Tuple(pred)) {
311                         free_mark_proj(get_Tuple_pred(pred, get_Proj_proj(node)), n, set);
312                 } else {
313                         /* nothing: da in "free_ana_walker" behandelt. */
314                 }
315                 break;
316         }
317
318         case iro_Tuple:
319                 free_mark(get_Tuple_pred(node, n), set);
320                 break;
321
322         case iro_Id:
323                 free_mark_proj(get_Id_pred(node), n, set);
324                 break;
325
326         case iro_Start:
327         case iro_Alloc:
328         case iro_Load:
329                 /* nothing: Die Operationen werden in free_ana_walker() selbst
330                  * behandelt. */
331                 break;
332
333         default:
334                 assert(0 && "unexpected opcode or opcode not implemented");
335                 break;
336         }
337         // set_irn_link(node, NULL);
338 }
339
340 /**
341  * Called for predecessors nodes of "interesting" ones.
342  * Interesting ones include all nodes that can somehow make
343  * a method visible.
344  *
345  * If a method (or a set of methods in case of polymorph calls) gets visible,
346  * add it to the set of 'free' methods
347  *
348  * @param node  the current visited node
349  * @param set   the set of all free methods
350  */
351 static void free_mark(ir_node *node, eset * set)
352 {
353         if (get_irn_link(node) == MARK)
354                 return; /* already visited */
355
356         set_irn_link(node, MARK);
357
358         switch (get_irn_opcode(node)) {
359         case iro_Sel: {
360                 ir_entity *ent = get_Sel_entity(node);
361                 if (is_method_entity(ent)) {
362                         size_t i, n;
363                         for (i = 0, n = get_Sel_n_methods(node); i < n; ++i) {
364                                 eset_insert(set, get_Sel_method(node, i));
365                         }
366                 }
367                 break;
368         }
369         case iro_SymConst:
370                 if (get_SymConst_kind(node) == symconst_addr_ent) {
371                         ir_entity *ent = get_SymConst_entity(node);
372                         if (is_method_entity(ent)) {
373                                 eset_insert(set, ent);
374                         }
375                 }
376                 break;
377
378         case iro_Phi:
379         {
380                 int i, n;
381                 for (i = 0, n = get_Phi_n_preds(node); i < n; ++i) {
382                         free_mark(get_Phi_pred(node, i), set);
383                 }
384                 break;
385         }
386         case iro_Proj:
387                 free_mark_proj(get_Proj_pred(node), get_Proj_proj(node), set);
388                 break;
389         default:
390                 /* nothing: */
391                 break;
392         }
393 }
394
395 /**
396  * post-walker. Find method addresses.
397  */
398 static void free_ana_walker(ir_node *node, void *env)
399 {
400         eset *set = (eset*) env;
401
402         if (get_irn_link(node) == MARK) {
403                 /* already visited */
404                 return;
405         }
406         switch (get_irn_opcode(node)) {
407                 /* special nodes */
408         case iro_Sel:
409         case iro_SymConst:
410         case iro_Const:
411         case iro_Phi:
412         case iro_Id:
413         case iro_Proj:
414         case iro_Tuple:
415                 /* nothing */
416                 break;
417         case iro_Call:
418         {
419                 size_t i, n;
420                 /* we must handle Call nodes specially, because their call address input
421                    do not expose a method address. */
422                 set_irn_link(node, MARK);
423                 for (i = 0, n = get_Call_n_params(node); i < n; ++i) {
424                         ir_node *pred = get_Call_param(node, i);
425                         if (mode_is_reference(get_irn_mode(pred))) {
426                                 free_mark(pred, set);
427                         }
428                 }
429                 break;
430         }
431         default: {
432                 int i;
433                 /* other nodes: Alle anderen Knoten nehmen wir als Verr�ter an, bis
434                  * jemand das Gegenteil implementiert. */
435                 set_irn_link(node, MARK);
436                 for (i = get_irn_arity(node) - 1; i >= 0; --i) {
437                         ir_node *pred = get_irn_n(node, i);
438                         if (mode_is_reference(get_irn_mode(pred))) {
439                                 free_mark(pred, set);
440                         }
441                 }
442                 break;
443         }
444         }
445 }
446
447 /**
448  * Add all method addresses in global new style initializers to the set.
449  *
450  * @note
451  * We do NOT check the type here, just if it's an entity address.
452  * The reason for this is code like:
453  *
454  * void *p = function;
455  *
456  * which is sometimes used to anchor functions.
457  */
458 static void add_method_address_inititializer(ir_initializer_t *initializer,
459                                              eset *set)
460 {
461         ir_node *n;
462         size_t  i;
463
464         switch (initializer->kind) {
465         case IR_INITIALIZER_CONST:
466                 n = initializer->consti.value;
467
468                 /* let's check if it's the address of a function */
469                 if (is_Global(n)) {
470                         ir_entity *ent = get_Global_entity(n);
471
472                         if (is_Method_type(get_entity_type(ent)))
473                                 eset_insert(set, ent);
474                 }
475                 return;
476         case IR_INITIALIZER_TARVAL:
477         case IR_INITIALIZER_NULL:
478                 return;
479         case IR_INITIALIZER_COMPOUND:
480                 for (i = 0; i < initializer->compound.n_initializers; ++i) {
481                         ir_initializer_t *sub_initializer
482                                 = initializer->compound.initializers[i];
483                         add_method_address_inititializer(sub_initializer, set);
484                 }
485                 return;
486         }
487         panic("invalid initializer found");
488 }
489
490 /**
491  * Add all method addresses in global initializers to the set.
492  *
493  * @note
494  * We do NOT check the type here, just if it's an entity address.
495  * The reason for this is code like:
496  *
497  * void *p = function;
498  *
499  * which is sometimes used to anchor functions.
500  */
501 static void add_method_address(ir_entity *ent, eset *set)
502 {
503         ir_type *tp;
504
505         /* ignore methods: these of course reference their addresses
506          * TODO: remove this later once this incorrect self-initialisation is gone
507          */
508         tp = get_entity_type(ent);
509         if (is_Method_type(tp))
510                 return;
511
512         if (ent->initializer != NULL) {
513                 add_method_address_inititializer(get_entity_initializer(ent), set);
514         } else if (entity_has_compound_ent_values(ent)) {
515                 size_t i, n;
516                 for (i = 0, n = get_compound_ent_n_values(ent); i < n; ++i) {
517                         ir_node *irn = get_compound_ent_value(ent, i);
518
519                         /* let's check if it's the address of a function */
520                         if (is_Global(irn)) {
521                                 ir_entity *ent2 = get_Global_entity(irn);
522
523                                 if (is_Method_type(get_entity_type(ent2)))
524                                         eset_insert(set, ent2);
525                         }
526                 }
527         }
528 }
529
530 /**
531  * returns a list of 'free' methods, i.e., the methods that can be called
532  * from external or via function pointers.
533  *
534  * Die Datenstrukturen für sel-Methoden (sel_methods) muß vor dem
535  * Aufruf von "get_free_methods" aufgebaut sein. Die (internen)
536  * SymConst(name)-Operationen müssen in passende SymConst(ent)-Operationen
537  * umgewandelt worden sein, d.h. SymConst-Operationen verweisen immer
538  * auf eine echt externe Methode.
539  */
540 static size_t get_free_methods(ir_entity ***free_methods)
541 {
542         eset *free_set = eset_create();
543         size_t i, n, j, m;
544         ir_entity **arr;
545         ir_entity *ent;
546         ir_graph *irg;
547         ir_type *tp;
548         size_t length;
549
550         for (i = 0, n = get_irp_n_irgs(); i < n; ++i) {
551                 ir_linkage linkage;
552                 irg = get_irp_irg(i);
553                 ent = get_irg_entity(irg);
554                 linkage = get_entity_linkage(ent);
555
556                 if ((linkage & IR_LINKAGE_HIDDEN_USER) || entity_is_externally_visible(ent)) {
557                         eset_insert(free_set, ent);
558                 }
559
560                 ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK);
561                 /* Find all method entities that gets "visible" through this graphs,
562                  * for instance because their address is stored. */
563                 irg_walk_graph(irg, firm_clear_link, free_ana_walker, free_set);
564                 ir_free_resources(irg, IR_RESOURCE_IRN_LINK);
565         }
566
567         /* insert all methods that are used in global variables initializers */
568         tp = get_glob_type();
569         for (j = 0, m = get_class_n_members(tp); j < m; ++j) {
570                 ent = get_class_member(tp, j);
571                 add_method_address(ent, free_set);
572         }
573         tp = get_tls_type();
574         for (j = 0, m = get_compound_n_members(tp); j < m; ++j) {
575                 ent = get_compound_member(tp, j);
576                 add_method_address(ent, free_set);
577         }
578
579         /* the main program is even then "free", if it's not external visible. */
580         irg = get_irp_main_irg();
581         if (irg != NULL)
582                 eset_insert(free_set, get_irg_entity(irg));
583
584         /* Finally, transform the set into an array. */
585         length = eset_count(free_set);
586         arr = XMALLOCN(ir_entity*, length);
587         for (i = 0, ent = (ir_entity*) eset_first(free_set); ent; ent = (ir_entity*) eset_next(free_set)) {
588                 arr[i++] = ent;
589         }
590         eset_destroy(free_set);
591
592         *free_methods = arr;
593         return length;
594 }
595
596 /*--------------------------------------------------------------------------*/
597 /* Callee analysis.                                                         */
598 /*--------------------------------------------------------------------------*/
599
600 static void callee_ana_node(ir_node * node, eset * methods);
601
602 static void callee_ana_proj(ir_node *node, long n, eset *methods)
603 {
604         assert(get_irn_mode(node) == mode_T);
605         if (get_irn_link(node) == MARK) {
606                 /* already visited */
607                 return;
608         }
609         set_irn_link(node, MARK);
610
611         switch (get_irn_opcode(node)) {
612         case iro_Proj: {
613                 /* proj_proj: in einem "sinnvollen" Graphen kommt jetzt ein
614                  * op_Tuple oder ein Knoten, der eine "freie Methode"
615                  * zur�ckgibt. */
616                 ir_node *pred = get_Proj_pred(node);
617                 if (get_irn_link(pred) != MARK) {
618                         if (is_Tuple(pred)) {
619                                 callee_ana_proj(get_Tuple_pred(pred, get_Proj_proj(node)), n, methods);
620                         } else {
621                                 eset_insert(methods, unknown_entity); /* free method -> unknown */
622                         }
623                 }
624                 break;
625         }
626
627         case iro_Tuple:
628                 callee_ana_node(get_Tuple_pred(node, n), methods);
629                 break;
630
631         default:
632                 eset_insert(methods, unknown_entity); /* free method -> unknown */
633                 break;
634         }
635 }
636
637 /**
638  * Analyse a Call address.
639  *
640  * @param node     the node representing the call address
641  * @param methods  after call contains the set of all possibly called entities
642  */
643 static void callee_ana_node(ir_node *node, eset *methods)
644 {
645         assert(mode_is_reference(get_irn_mode(node)) || is_Bad(node));
646         /* Beware of recursion */
647         if (get_irn_link(node) == MARK) {
648                 /* already visited */
649                 return;
650         }
651         set_irn_link(node, MARK);
652
653         switch (get_irn_opcode(node)) {
654         case iro_Const:
655                 /* A direct address call. We tread this as an external
656                    call and ignore it completely. */
657                 eset_insert(methods, unknown_entity); /* free method -> unknown */
658                 break;
659
660         case iro_SymConst: {
661                 ir_entity *ent = get_SymConst_entity(node);
662                 assert(ent && is_method_entity(ent));
663                 eset_insert(methods, ent);
664                 break;
665         }
666
667         case iro_Sel: {
668                 /* polymorphic method */
669                 size_t i, n;
670                 for (i = 0, n = get_Sel_n_methods(node); i < n; ++i) {
671                         ir_entity *ent = get_Sel_method(node, i);
672                         if (ent != NULL) {
673                                 eset_insert(methods, ent);
674                         } else {
675                                 eset_insert(methods, unknown_entity);
676                         }
677                 }
678                 break;
679         }
680
681         case iro_Bad:
682                 /* nothing */
683                 break;
684
685         case iro_Phi: {
686                 int i;
687                 for (i = get_Phi_n_preds(node) - 1; i >= 0; --i) {
688                         callee_ana_node(get_Phi_pred(node, i), methods);
689                 }
690                 break;
691         }
692
693         case iro_Mux:
694                 callee_ana_node(get_Mux_false(node), methods);
695                 callee_ana_node(get_Mux_true(node), methods);
696                 break;
697
698         case iro_Id:
699                 callee_ana_node(get_Id_pred(node), methods);
700                 break;
701
702         case iro_Proj:
703                 callee_ana_proj(get_Proj_pred(node), get_Proj_proj(node), methods);
704                 break;
705
706         case iro_Add:
707         case iro_Sub:
708         case iro_Conv:
709                 /* extern */
710                 eset_insert(methods, unknown_entity); /* free method -> unknown */
711                 break;
712
713         default:
714                 assert(0 && "invalid opcode or opcode not implemented");
715                 break;
716         }
717 }
718
719 /**
720  * Walker: Analyses every Call node and calculates an array of possible
721  * callees for that call.
722  */
723 static void callee_walker(ir_node *call, void *env)
724 {
725         (void) env;
726         if (is_Call(call)) {
727                 eset *methods = eset_create();
728                 ir_entity *ent;
729                 ir_entity **arr;
730                 size_t i;
731
732                 callee_ana_node(get_Call_ptr(call), methods);
733                 arr = NEW_ARR_F(ir_entity *, eset_count(methods));
734                 for (i = 0, ent = (ir_entity*) eset_first(methods); ent; ent = (ir_entity*) eset_next(methods)) {
735                         arr[i] = ent;
736                         /* we want the unknown_entity on the zero position for easy tests later */
737                         if (ent == unknown_entity) {
738                                 arr[i] = arr[0];
739                                 arr[0] = unknown_entity;
740                         }
741                         ++i;
742                 }
743                 set_Call_callee_arr(call, ARR_LEN(arr), arr);
744                 DEL_ARR_F(arr);
745                 eset_destroy(methods);
746         }
747 }
748
749 /**
750  * Walker: Removes all tuple.
751  */
752 static void remove_Tuples(ir_node *proj, void *env)
753 {
754         ir_node *nn;
755         (void) env;
756         if (! is_Proj(proj)) return;
757
758         nn = skip_Tuple(proj);
759         if (nn != proj) exchange(proj, nn);
760 }
761
762
763 /**
764  * Determine for every Call the set of possibly called methods and stores it
765  * inside the Call (@see set_Call_callee()).
766  * Uses the sel_methods set with much be already calculated.
767  */
768 static void callee_ana(void)
769 {
770         size_t i, n;
771         /* analyse all graphs */
772         for (i = 0, n = get_irp_n_irgs(); i < n; ++i) {
773                 ir_graph *irg = get_irp_irg(i);
774                 irg_walk_graph(irg, callee_walker, remove_Tuples, NULL);
775                 set_irg_callee_info_state(irg, irg_callee_info_consistent);
776         }
777         set_irp_callee_info_state(irg_callee_info_consistent);
778 }
779
780 /*--------------------------------------------------------------------------*/
781 /* Cleanup after analyses.                                                  */
782 /*--------------------------------------------------------------------------*/
783
784 /** Frees intermediate data structures. */
785 static void sel_methods_dispose(void)
786 {
787         ir_entity * ent;
788         assert(entities);
789         for (ent = (ir_entity*) eset_first(entities); ent; ent = (ir_entity*) eset_next(entities)) {
790                 ir_entity ** arr = (ir_entity**) get_entity_link(ent);
791                 if (arr) {
792                         DEL_ARR_F(arr);
793                 }
794                 set_entity_link(ent, NULL);
795         }
796         eset_destroy(entities);
797         entities = NULL;
798 }
799
800 /*--------------------------------------------------------------------------*/
801 /* Freeing the callee arrays.                                               */
802 /*--------------------------------------------------------------------------*/
803
804 static void destruct_walker(ir_node * node, void * env)
805 {
806         (void) env;
807         if (is_Call(node)) {
808                 remove_Call_callee_arr(node);
809         }
810 }
811
812 /*--------------------------------------------------------------------------*/
813 /* Main drivers.                                                            */
814 /*--------------------------------------------------------------------------*/
815
816 size_t cgana(ir_entity ***free_methods)
817 {
818         size_t length;
819         /* Optimize Sel/SymConst nodes and compute all methods that implement an entity. */
820         sel_methods_init();
821         length = get_free_methods(free_methods);
822         callee_ana();
823         sel_methods_dispose();
824         return length;
825 }
826
827 void free_callee_info(ir_graph *irg)
828 {
829         irg_walk_graph(irg, destruct_walker, NULL, NULL);
830         set_irg_callee_info_state(irg, irg_callee_info_none);
831 }
832
833 void free_irp_callee_info(void)
834 {
835         size_t i, n;
836         for (i = 0, n = get_irp_n_irgs(); i < n; ++i) {
837                 free_callee_info(get_irp_irg(i));
838         }
839 }
840
841 /* Optimize the address expressions passed to call nodes.
842  *
843  * This optimization performs the following transformations for
844  * all ir graphs:
845  * - All SymConst operations that refer to intern methods are replaced
846  *   by Const operations referring to the corresponding entity.
847  * - Sel nodes, that select entities that are not overwritten are
848  *   replaced by Const nodes referring to the selected entity.
849  * - Sel nodes, for which no method exists at all are replaced by Bad
850  *   nodes.
851  * - Sel nodes with a pointer input that is an Alloc node are replaced
852  *   by Const nodes referring to the entity that implements the method in
853  *   the type given by the Alloc node.
854  */
855 void opt_call_addrs(void)
856 {
857         sel_methods_init();
858         sel_methods_dispose();
859 }