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