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