bestabs: move stabs but not backend specific text0: code into stabs
[libfirm] / ir / opt / ircgopt.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    Removal of unreachable methods.
23  * @author   Hubert Schmid
24  * @date     09.06.2002
25  * @version  $Id$
26  */
27
28 /*
29  * Entfernen von nicht erreichbaren (aufrufbaren) Methoden. Die Menge
30  * der nicht erreichbaren Methoden wird aus der Abschätzung der
31  * Aufrufrelation bestimmt.
32  */
33 #include "config.h"
34
35 #include "ircgopt.h"
36
37 #include "debug.h"
38 #include "array.h"
39 #include "irprog.h"
40 #include "irgwalk.h"
41 #include "irloop_t.h"
42 #include "irflag_t.h"
43 #include "ircons.h"
44 #include "cgana.h"
45 #include "irtools.h"
46 #include "irpass.h"
47
48 DEBUG_ONLY(static firm_dbg_module_t *dbg);
49
50 /**
51  * Walker: adds Call operations to a head's link list.
52  */
53 static void collect_call(ir_node *node, void *env)
54 {
55         ir_node *head = (ir_node*)env;
56
57         if (is_Call(node)) {
58                 set_irn_link(node, get_irn_link(head));
59                 set_irn_link(head, node);
60         }
61 }
62
63 /* garbage collect methods: mark and remove */
64 void gc_irgs(size_t n_keep, ir_entity ** keep_arr)
65 {
66         void * MARK = &MARK; /* @@@ gefaehrlich!!! Aber wir markieren hoechstens zu viele ... */
67         size_t i, n;
68
69         FIRM_DBG_REGISTER(dbg, "firm.opt.cgopt");
70
71         if (n_keep >= get_irp_n_irgs()) {
72                 /* Shortcut. Obviously we have to keep all methods. */
73                 return;
74         }
75
76         DB((dbg, LEVEL_1, "dead method elimination\n"));
77
78         /* Mark entities that are alive.  */
79         if (n_keep > 0) {
80                 ir_entity **marked = NEW_ARR_F(ir_entity *, n_keep);
81                 size_t    idx;
82
83                 for (idx = 0; idx < n_keep; ++idx) {
84                         marked[idx] = keep_arr[idx];
85                         set_entity_link(marked[idx], MARK);
86                         DB((dbg, LEVEL_1, "  method %+F kept alive.\n", marked[idx]));
87                 }
88
89                 for (idx = 0; idx < ARR_LEN(marked); ++idx) {
90                         ir_graph *irg = get_entity_irg(marked[idx]);
91                         ir_node *node;
92
93                         if (irg == NULL)
94                                 continue;
95
96                         node = get_irg_end(irg);
97
98                         /* collect calls */
99                         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK);
100                         irg_walk_graph(irg, firm_clear_link, collect_call, node);
101
102                         /* iterate calls */
103                         for (node = (ir_node*)get_irn_link(node); node != NULL;
104                              node = (ir_node*)get_irn_link(node)) {
105                                 size_t i;
106                                 assert(is_Call(node));
107
108                                 for (i = get_Call_n_callees(node); i > 0;) {
109                                         ir_entity *ent = get_Call_callee(node, --i);
110
111                                         if (get_entity_irg(ent) && get_entity_link(ent) != MARK) {
112                                                 set_entity_link(ent, MARK);
113                                                 ARR_APP1(ir_entity *, marked, ent);
114
115                                                 DB((dbg, LEVEL_1, "  method %+F can be called from Call %+F: kept alive.\n",
116                                                         ent, node));
117                                         }
118                                 }
119                         }
120                         ir_free_resources(irg, IR_RESOURCE_IRN_LINK);
121                 }
122                 DEL_ARR_F(marked);
123         }
124
125         /* clean */
126         for (i = 0, n = get_irp_n_irgs(); i < n; ++i) {
127                 ir_graph  *irg = get_irp_irg(i);
128                 ir_entity *ent = get_irg_entity(irg);
129
130                 if (get_entity_link(ent) == MARK)
131                         continue;
132
133                 DB((dbg, LEVEL_1, "  freeing method %+F\n", ent));
134                 remove_irp_irg(irg);
135
136                 free_entity(ent);
137         }
138 }
139
140 /**
141  * Wrapper for running gc_irgs() as an ir_prog pass.
142  */
143 static void pass_wrapper(void)
144 {
145     ir_entity **keep_methods;
146     size_t    arr_len;
147
148     /* Analysis that finds the free methods,
149        i.e. methods that are dereferenced.
150        Optimizes polymorphic calls :-). */
151     arr_len = cgana(&keep_methods);
152
153     /* Remove methods that are never called. */
154     gc_irgs(arr_len, keep_methods);
155
156     xfree(keep_methods);
157 }
158
159 ir_prog_pass_t *gc_irgs_pass(const char *name)
160 {
161         return def_prog_pass(name ? name : "cgana", pass_wrapper);
162 }