remove old unused function
[libfirm] / ir / be / bestat.c
1 /*
2  * Copyright (C) 1995-2008 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       Provides several statistic functions for the backend.
23  * @author      Christian Wuerdig, Matthias Braun
24  * @version     $Id$
25  */
26 #include "config.h"
27
28 #include <time.h>
29
30 #include "irnode_t.h"
31 #include "irprintf.h"
32 #include "irgwalk.h"
33 #include "irhooks.h"
34 #include "execfreq.h"
35 #include "firmstat_t.h"
36 #include "irtools.h"
37 #include "statev.h"
38 #include "error.h"
39
40 #include "bearch_t.h"
41 #include "beirg_t.h"
42 #include "bestat.h"
43 #include "belive_t.h"
44 #include "besched.h"
45 #include "benode_t.h"
46
47
48
49 typedef struct pressure_walker_env_t pressure_walker_env_t;
50 struct pressure_walker_env_t {
51         be_irg_t *birg;
52         be_lv_t  *lv;
53         double    insn_count;
54         double    regpressure;
55         int       max_pressure;
56         const arch_register_class_t *cls;
57 };
58
59 static void check_reg_pressure_class(pressure_walker_env_t *env,
60                                      ir_node *block,
61                                      const arch_register_class_t *cls)
62 {
63         be_irg_t     *birg = env->birg;
64         ir_graph     *irg  = be_get_birg_irg(birg);
65         ir_node      *irn;
66         ir_nodeset_t  live_nodes;
67         int           max_live;
68
69         ir_nodeset_init(&live_nodes);
70         be_liveness_end_of_block(env->lv, cls, block, &live_nodes);
71         max_live = ir_nodeset_size(&live_nodes);
72         env->regpressure += max_live;
73
74         sched_foreach_reverse(block, irn) {
75                 int cnt;
76
77                 if(is_Phi(irn))
78                         break;
79
80                 be_liveness_transfer(cls, irn, &live_nodes);
81                 cnt      = ir_nodeset_size(&live_nodes);
82                 max_live = cnt < max_live ? max_live : cnt;
83                 env->regpressure += cnt;
84                 env->insn_count++;
85         }
86
87         if(max_live > env->max_pressure)
88                 env->max_pressure = max_live;
89
90         stat_be_block_regpressure(irg, block, max_live, cls->name);
91         ir_nodeset_destroy(&live_nodes);
92 }
93
94 static void stat_reg_pressure_block(ir_node *block, void *data) {
95         pressure_walker_env_t *env = data;
96
97         check_reg_pressure_class(env, block, env->cls);
98 }
99
100 void be_do_stat_reg_pressure(be_irg_t *birg, const arch_register_class_t *cls) {
101         pressure_walker_env_t  env;
102         ir_graph              *irg = be_get_birg_irg(birg);
103         double                 average_pressure;
104
105         env.birg         = birg;
106         env.insn_count   = 0;
107         env.max_pressure = 0;
108         env.regpressure  = 0;
109         be_liveness_assure_sets(be_assure_liveness(birg));
110         env.lv           = be_get_birg_liveness(birg);
111         env.cls          = cls;
112
113         /* Collect register pressure information for each block */
114         irg_block_walk_graph(irg, stat_reg_pressure_block, NULL, &env);
115
116         average_pressure = env.regpressure / env.insn_count;
117         stat_ev_emit("bechordal_average_register_pressure", average_pressure);
118         stat_ev_emit("bechordal_maximum_register_pressure", env.max_pressure);
119 }
120
121
122
123
124 typedef struct _estimate_irg_costs_env_t {
125         const arch_env_t *arch_env;
126         ir_exec_freq     *execfreqs;
127         double           costs;
128 } estimate_irg_costs_env_t;
129
130 static void estimate_block_costs(ir_node *block, void *data)
131 {
132         estimate_irg_costs_env_t *env = data;
133         ir_node *node;
134         double  costs = 0.0;
135
136         sched_foreach(block, node) {
137                 costs += arch_get_op_estimated_cost(node);
138         }
139
140         env->costs += costs * get_block_execfreq(env->execfreqs, block);
141 }
142
143 double be_estimate_irg_costs(ir_graph *irg, const arch_env_t *arch_env, ir_exec_freq *execfreqs)
144 {
145         estimate_irg_costs_env_t env;
146
147         env.arch_env  = arch_env;
148         env.execfreqs = execfreqs;
149         env.costs     = 0.0;
150
151         irg_block_walk_graph(irg, estimate_block_costs, NULL, &env);
152
153         return env.costs;
154 }
155
156
157
158 static be_node_stats_t *stats;
159
160 static void node_stat_walker(ir_node *irn, void *data)
161 {
162         (void) data;
163
164         /* if the node is a normal phi */
165         if(is_Phi(irn)) {
166                 if (get_irn_mode(irn) == mode_M) {
167                         (*stats)[BE_STAT_MEM_PHIS]++;
168                 } else {
169                         (*stats)[BE_STAT_PHIS]++;
170                 }
171         } else {
172                 arch_irn_class_t classify = arch_irn_classify(irn);
173
174                 if(classify & arch_irn_class_spill)
175                         (*stats)[BE_STAT_SPILLS]++;
176                 if(classify & arch_irn_class_reload)
177                         (*stats)[BE_STAT_RELOADS]++;
178                 if(classify & arch_irn_class_remat)
179                         (*stats)[BE_STAT_REMATS]++;
180                 if(classify & arch_irn_class_copy)
181                         (*stats)[BE_STAT_COPIES]++;
182                 if(classify & arch_irn_class_perm)
183                         (*stats)[BE_STAT_PERMS]++;
184         }
185 }
186
187 void be_collect_node_stats(be_node_stats_t *new_stats, be_irg_t *birg)
188 {
189         stats = new_stats;
190
191         memset(stats, 0, sizeof(*stats));
192         irg_walk_graph(birg->irg, NULL, node_stat_walker, NULL);
193 }
194
195 void be_subtract_node_stats(be_node_stats_t *stats, be_node_stats_t *sub)
196 {
197         int i;
198         for (i = 0; i < BE_STAT_COUNT; ++i) {
199                 (*stats)[i] -= (*sub)[i];
200         }
201 }
202
203 void be_copy_node_stats(be_node_stats_t *dest, be_node_stats_t *src)
204 {
205         memcpy(dest, src, sizeof(be_node_stats_t));
206 }
207
208 static const char *get_stat_name(enum be_stat_tag_t tag)
209 {
210         switch(tag) {
211         case BE_STAT_PHIS:     return "phis";
212         case BE_STAT_MEM_PHIS: return "mem_phis";
213         case BE_STAT_COPIES:   return "copies";
214         case BE_STAT_PERMS:    return "perms";
215         case BE_STAT_SPILLS:   return "spills";
216         case BE_STAT_RELOADS:  return "reloads";
217         case BE_STAT_REMATS:   return "remats";
218         default:               panic("unknown stat tag found");
219         }
220 }
221
222 void be_emit_node_stats(be_node_stats_t *stats, const char *prefix)
223 {
224         static char buf[256];
225         int         i;
226
227         for (i = 0; i < BE_STAT_COUNT; ++i) {
228                 snprintf(buf, sizeof(buf), "%s%s", prefix, get_stat_name(i));
229                 stat_ev_dbl(buf, (*stats)[i]);
230         }
231 }
232
233
234
235 static void insn_count_walker(ir_node *irn, void *data)
236 {
237         unsigned long *cnt = data;
238
239         switch(get_irn_opcode(irn)) {
240         case iro_Proj:
241         case iro_Phi:
242         case iro_Start:
243         case iro_End:
244                 break;
245         default:
246                 (*cnt)++;
247         }
248 }
249
250 unsigned long be_count_insns(ir_graph *irg)
251 {
252         unsigned long cnt = 0;
253         irg_walk_graph(irg, insn_count_walker, NULL, &cnt);
254         return cnt;
255 }
256
257 static void block_count_walker(ir_node *node, void *data)
258 {
259         unsigned long *cnt = data;
260         if (node == get_irg_end_block(current_ir_graph))
261                 return;
262         (*cnt)++;
263 }
264
265 unsigned long be_count_blocks(ir_graph *irg)
266 {
267         unsigned long cnt = 0;
268         irg_block_walk_graph(irg, block_count_walker, NULL, &cnt);
269         return cnt;
270 }