added new licence header
[libfirm] / ir / ir / ircgopt.c
1 /*
2  * Copyright (C) 1995-2007 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  * Project:     libFIRM
22  * File name:   ir/ir/ircgopt.c
23  * Purpose:     Removal of unreachable methods.
24  * Author:      Hubert Schmid
25  * Modified by:
26  * Created:     09.06.2002
27  * CVS-ID:      $Id$
28  * Copyright:   (c) 2002-2003 Universität Karlsruhe
29  */
30
31 /**
32  * Entfernen von nicht erreichbaren (aufrufbaren) Methoden. Die Menge
33  * der nicht erreichbaren Methoden wird aus der Abschätzung der
34  * Aufrufrelation bestimmt.
35  */
36 #ifdef HAVE_CONFIG_H
37 # include "config.h"
38 #endif
39
40 #include "ircgopt.h"
41
42 #include "array.h"
43 #include "irprog.h"
44 #include "irgwalk.h"
45 #include "irloop_t.h"
46 #include "irflag_t.h"
47 #include "ircons.h"
48 #include "typewalk.h"
49 #include "irtools.h"
50
51 /**
52  * Walker: adds Call operations to a head's link list.
53  */
54 static void collect_call(ir_node * node, void *env) {
55   ir_node *head = env;
56
57   if (get_irn_op(node) == op_Call) {
58     set_irn_link(node, get_irn_link(head));
59     set_irn_link(head, node);
60   }
61 }
62
63 static void make_entity_to_description(type_or_ent *tore, void *env) {
64   if (get_kind(tore) == k_entity) {
65     ir_entity *ent = (ir_entity *)tore;
66
67     if ((is_Method_type(get_entity_type(ent)))                        &&
68         (get_entity_peculiarity(ent) != peculiarity_description)      &&
69         (get_entity_visibility(ent)  != visibility_external_allocated)   ) {
70       ir_entity *impl = get_SymConst_entity(get_atomic_ent_value(ent));
71       if (get_entity_link(impl) != env) {
72         set_entity_peculiarity(ent, peculiarity_description);
73       }
74     }
75   }
76 }
77
78 /* garbage collect methods: mark and remove */
79 void gc_irgs(int n_keep, ir_entity ** keep_arr) {
80   void * MARK = &MARK; /* @@@ gefaehrlich!!! Aber wir markieren hoechstens zu viele ... */
81   int i;
82
83   if (!get_opt_dead_method_elimination()) return;
84
85   if (n_keep >= get_irp_n_irgs()) {
86     /* Shortcut. Obviously we have to keep all methods. */
87     return;
88   }
89
90   /* Mark entities that are alive.  */
91   if (n_keep > 0) {
92     ir_entity ** marked = NEW_ARR_F(ir_entity *, n_keep);
93     for (i = 0; i < n_keep; ++i) {
94       marked[i] = keep_arr[i];
95       set_entity_link(marked[i], MARK);
96       if (get_opt_dead_method_elimination_verbose() && get_firm_verbosity() > 2) {
97         printf("dead method elimination: method %s kept alive.\n", get_entity_ld_name(marked[i]));
98       }
99     }
100
101     for (i = 0; i < ARR_LEN(marked); ++i) {
102       /* check for extern methods, these don't have an IRG */
103       if (get_entity_visibility(marked[i]) != visibility_external_allocated) {
104         ir_graph * irg = get_entity_irg(marked[i]);
105         ir_node * node = get_irg_end(irg);
106
107         /* collect calls */
108         irg_walk_graph(irg, firm_clear_link, collect_call, node);
109
110         /* iterate calls */
111         for (node = get_irn_link(node); node; node = get_irn_link(node)) {
112           int i;
113           assert(get_irn_op(node) == op_Call);
114
115           for (i = get_Call_n_callees(node) - 1; i >= 0; --i) {
116             ir_entity * ent = get_Call_callee(node, i);
117
118             if (get_entity_irg(ent) && get_entity_link(ent) != MARK) {
119               set_entity_link(ent, MARK);
120               ARR_APP1(ir_entity *, marked, ent);
121               if (get_opt_dead_method_elimination_verbose() && get_firm_verbosity() > 2) {
122                 printf("dead method elimination: method %s can be called from Call %ld: kept alive.\n",
123                        get_entity_ld_name(ent), get_irn_node_nr(node));
124               }
125             }
126           }
127         }
128       }
129     }
130     DEL_ARR_F(marked);
131   }
132
133   /* clean */
134   type_walk(make_entity_to_description, NULL, MARK);
135   for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
136     ir_graph * irg = get_irp_irg(i);
137     ir_entity * ent = get_irg_entity(irg);
138     /* Removing any graph invalidates all interprocedural loop trees. */
139     if (get_irg_loopinfo_state(irg) == loopinfo_ip_consistent ||
140         get_irg_loopinfo_state(irg) == loopinfo_ip_inconsistent) {
141       free_loop_information(irg);
142     }
143     if ((get_entity_visibility(ent) == visibility_local) && (get_entity_link(ent) != MARK)) {
144       remove_irp_irg(irg);
145       set_entity_peculiarity(ent, peculiarity_description);
146       if (get_opt_dead_method_elimination_verbose() && get_firm_verbosity() > 1) {
147         printf("dead method elimination: freeing method %s\n", get_entity_ld_name(ent));
148       }
149     }
150     set_entity_link(ent, NULL);
151   }
152 }