Remove address name SymConsts.
[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.h"
41 #include "beirg.h"
42 #include "bestat.h"
43 #include "belive_t.h"
44 #include "besched.h"
45 #include "benode.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 #ifdef FIRM_STATISTICS
91         stat_be_block_regpressure(irg, block, max_live, cls->name);
92 #endif
93         ir_nodeset_destroy(&live_nodes);
94 }
95
96 static void stat_reg_pressure_block(ir_node *block, void *data)
97 {
98         pressure_walker_env_t *env = data;
99
100         check_reg_pressure_class(env, block, env->cls);
101 }
102
103 void be_do_stat_reg_pressure(be_irg_t *birg, const arch_register_class_t *cls)
104 {
105         pressure_walker_env_t  env;
106         ir_graph              *irg = be_get_birg_irg(birg);
107         double                 average_pressure;
108
109         env.birg         = birg;
110         env.insn_count   = 0;
111         env.max_pressure = 0;
112         env.regpressure  = 0;
113         be_liveness_assure_sets(be_assure_liveness(birg));
114         env.lv           = be_get_birg_liveness(birg);
115         env.cls          = cls;
116
117         /* Collect register pressure information for each block */
118         irg_block_walk_graph(irg, stat_reg_pressure_block, NULL, &env);
119
120         average_pressure = env.regpressure / env.insn_count;
121         stat_ev_emit("bechordal_average_register_pressure", average_pressure);
122         stat_ev_emit("bechordal_maximum_register_pressure", env.max_pressure);
123 }
124
125
126
127
128 typedef struct _estimate_irg_costs_env_t {
129         ir_exec_freq     *execfreqs;
130         double           costs;
131 } estimate_irg_costs_env_t;
132
133 static void estimate_block_costs(ir_node *block, void *data)
134 {
135         estimate_irg_costs_env_t *env = data;
136         ir_node *node;
137         double  costs = 0.0;
138
139         sched_foreach(block, node) {
140                 costs += arch_get_op_estimated_cost(node);
141         }
142
143         env->costs += costs * get_block_execfreq(env->execfreqs, block);
144 }
145
146 double be_estimate_irg_costs(ir_graph *irg, ir_exec_freq *execfreqs)
147 {
148         estimate_irg_costs_env_t env;
149
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 void node_stat_walker(ir_node *irn, void *data)
161 {
162         be_node_stats_t *const stats = 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 if (!is_Proj(irn)) {
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         memset(new_stats, 0, sizeof(*new_stats));
190         irg_walk_graph(birg->irg, NULL, node_stat_walker, new_stats);
191 }
192
193 void be_subtract_node_stats(be_node_stats_t *stats, be_node_stats_t *sub)
194 {
195         int i;
196         for (i = 0; i < BE_STAT_COUNT; ++i) {
197                 (*stats)[i] -= (*sub)[i];
198         }
199 }
200
201 void be_copy_node_stats(be_node_stats_t *dest, be_node_stats_t *src)
202 {
203         memcpy(dest, src, sizeof(be_node_stats_t));
204 }
205
206 static const char *get_stat_name(enum be_stat_tag_t tag)
207 {
208         switch (tag) {
209         case BE_STAT_PHIS:     return "phis";
210         case BE_STAT_MEM_PHIS: return "mem_phis";
211         case BE_STAT_COPIES:   return "copies";
212         case BE_STAT_PERMS:    return "perms";
213         case BE_STAT_SPILLS:   return "spills";
214         case BE_STAT_RELOADS:  return "reloads";
215         case BE_STAT_REMATS:   return "remats";
216         default:               panic("unknown stat tag found");
217         }
218 }
219
220 void be_emit_node_stats(be_node_stats_t *stats, const char *prefix)
221 {
222         static char buf[256];
223         int         i;
224
225         for (i = 0; i < BE_STAT_COUNT; ++i) {
226                 snprintf(buf, sizeof(buf), "%s%s", prefix, get_stat_name(i));
227                 stat_ev_dbl(buf, (*stats)[i]);
228         }
229 }
230
231
232
233 static void insn_count_walker(ir_node *irn, void *data)
234 {
235         unsigned long *cnt = data;
236
237         switch (get_irn_opcode(irn)) {
238         case iro_Proj:
239         case iro_Phi:
240         case beo_Start:
241         case iro_End:
242                 break;
243         default:
244                 (*cnt)++;
245         }
246 }
247
248 unsigned long be_count_insns(ir_graph *irg)
249 {
250         unsigned long cnt = 0;
251         irg_walk_graph(irg, insn_count_walker, NULL, &cnt);
252         return cnt;
253 }
254
255 static void block_count_walker(ir_node *node, void *data)
256 {
257         unsigned long *cnt = data;
258         if (node == get_irg_end_block(current_ir_graph))
259                 return;
260         (*cnt)++;
261 }
262
263 unsigned long be_count_blocks(ir_graph *irg)
264 {
265         unsigned long cnt = 0;
266         irg_block_walk_graph(irg, block_count_walker, NULL, &cnt);
267         return cnt;
268 }