db3cd7e92765583b25176d5fbc6afc4d278e1ea2
[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
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 "dbginfo_t.h"
38 #include "firmstat_t.h"
39 #include "irtools.h"
40 #include "pset.h"
41 #include "statev.h"
42
43 #include "bearch_t.h"
44 #include "bestat.h"
45 #include "belive_t.h"
46 #include "besched.h"
47 #include "benode_t.h"
48
49 #ifdef FIRM_STATISTICS
50
51 typedef struct _be_stat_irg_t {
52         ir_graph         *irg;       /**< the irg, the statistic is about */
53         pset             *phases;    /**< node statistics for each phase  */
54         struct obstack   obst;       /**< the obstack containing the information */
55         const arch_env_t *arch_env;  /**< the current arch env */
56 } be_stat_irg_t;
57
58 typedef struct _be_stat_phase_t {
59         const arch_env_t *arch_env;  /**< the current arch env */
60         const char       *phase;     /**< the name of the phase the statistic is about */
61         unsigned long    num_nodes;  /**< overall number of reachable nodes in the irg */
62         unsigned long    num_data;   /**< number of data nodes ((mode_datab && ! Proj && ! Phi)  || mode_T) */
63         unsigned long    num_proj;   /**< number of Projs */
64         unsigned long    num_phi;    /**< number of Phis */
65         unsigned long    num_load;   /**< number of Loads */
66         unsigned long    num_store;  /**< number of Stores */
67         unsigned long    num_spill;  /**< number of Spills */
68         unsigned long    num_reload; /**< number of Reloads */
69 } be_stat_phase_t;
70
71 static set *be_stat_data = NULL;
72
73 static int cmp_stat_phase(const void *a, const void *b) {
74         const be_stat_phase_t *p1 = a;
75         const be_stat_phase_t *p2 = b;
76
77         return p1->phase != p2->phase;
78 }
79
80 static int cmp_stat_data(const void *a, const void *b, size_t len) {
81         const be_stat_irg_t *p1 = a;
82         const be_stat_irg_t *p2 = b;
83         (void) len;
84
85         return p1->irg != p2->irg;
86 }
87
88 static be_stat_irg_t *find_stat_irg_entry(ir_graph *irg) {
89         be_stat_irg_t *entry, key;
90
91         if (! be_stat_data)
92                 return NULL;
93
94         key.irg = irg;
95         entry   = set_find(be_stat_data, &key, sizeof(key), HASH_PTR(irg));
96
97         return entry;
98 }
99
100 static be_stat_irg_t *get_stat_irg_entry(ir_graph *irg) {
101         be_stat_irg_t *entry, key;
102
103         if (! be_stat_data)
104                 return NULL;
105
106         entry = find_stat_irg_entry(irg);
107
108         if (! entry) {
109                 key.irg = irg;
110                 entry   = set_insert(be_stat_data, &key, sizeof(key), HASH_PTR(irg));
111         }
112
113         return entry;
114 }
115
116 typedef struct pressure_walker_env_t pressure_walker_env_t;
117 struct pressure_walker_env_t {
118         be_irg_t *birg;
119         be_lv_t  *lv;
120         double    insn_count;
121         double    regpressure;
122         int       max_pressure;
123         const arch_register_class_t *cls;
124 };
125
126 static void check_reg_pressure_class(pressure_walker_env_t *env,
127                                      ir_node *block,
128                                      const arch_register_class_t *cls)
129 {
130         be_irg_t         *birg = env->birg;
131         ir_graph         *irg  = be_get_birg_irg(birg);
132         const arch_env_t *aenv = be_get_birg_arch_env(birg);
133         ir_node          *irn;
134         ir_nodeset_t      live_nodes;
135         int               max_live;
136
137         ir_nodeset_init(&live_nodes);
138         be_liveness_end_of_block(env->lv, aenv, cls, block, &live_nodes);
139         max_live = ir_nodeset_size(&live_nodes);
140         env->regpressure += max_live;
141
142         sched_foreach_reverse(block, irn) {
143                 int cnt;
144
145                 if(is_Phi(irn))
146                         break;
147
148                 be_liveness_transfer(aenv, cls, irn, &live_nodes);
149                 cnt      = ir_nodeset_size(&live_nodes);
150                 max_live = cnt < max_live ? max_live : cnt;
151                 env->regpressure += cnt;
152                 env->insn_count++;
153         }
154
155         if(max_live > env->max_pressure)
156                 env->max_pressure = max_live;
157
158         stat_be_block_regpressure(irg, block, max_live, cls->name);
159         ir_nodeset_destroy(&live_nodes);
160 }
161
162 /**
163  * Collect reg pressure statistics per block and per class.
164  */
165 static void stat_reg_pressure_block(ir_node *block, void *data) {
166         pressure_walker_env_t *env = data;
167
168         check_reg_pressure_class(env, block, env->cls);
169 }
170
171 void be_do_stat_reg_pressure(be_irg_t *birg, const arch_register_class_t *cls) {
172         pressure_walker_env_t  env;
173         ir_graph              *irg = be_get_birg_irg(birg);
174         double                 average_pressure;
175
176         env.birg         = birg;
177         env.insn_count   = 0;
178         env.max_pressure = 0;
179         env.regpressure  = 0;
180         be_liveness_assure_sets(be_assure_liveness(birg));
181         env.lv           = be_get_birg_liveness(birg);
182         env.cls          = cls;
183
184         /* Collect register pressure information for each block */
185         irg_block_walk_graph(irg, stat_reg_pressure_block, NULL, &env);
186
187         average_pressure = env.regpressure / env.insn_count;
188         stat_ev_emit("bechordal_average_register_pressure", average_pressure);
189         stat_ev_emit("bechordal_maximum_register_pressure", env.max_pressure);
190 }
191
192 /**
193  * Notify statistic module about amount of ready nodes.
194  */
195 void be_do_stat_sched_ready(ir_node *block, const ir_nodeset_t *ready_set) {
196         if (stat_is_active()) {
197                 stat_be_block_sched_ready(get_irn_irg(block), block, MIN(ir_nodeset_size(ready_set), 5));
198         }
199 }
200
201 /**
202  * Pass information about a perm to the statistic module.
203  */
204 void be_do_stat_perm(const char *class_name, int n_regs, ir_node *perm, ir_node *block, int n, int real_size) {
205         if (stat_is_active()) {
206                 stat_be_block_stat_perm(class_name, n_regs, perm, block, n, real_size);
207         }
208 }
209
210 /**
211  * Pass information about a cycle or chain in a perm to the statistic module.
212  */
213 void be_do_stat_permcycle(const char *class_name, ir_node *perm, ir_node *block, int is_chain, int n_elems, int n_ops) {
214         if (stat_is_active()) {
215                 stat_be_block_stat_permcycle(class_name, perm, block, is_chain, n_elems, n_ops);
216         }
217 }
218
219 /**
220  * Updates nodes statistics.
221  */
222 static void do_nodes_stat(ir_node *irn, void *env) {
223         be_stat_phase_t  *phase = env;
224         ir_mode          *mode;
225         ir_opcode        opc;
226         arch_irn_class_t irn_class;
227
228         if (is_Block(irn))
229                 return;
230
231         mode = get_irn_mode(irn);
232         opc  = get_irn_opcode(irn);
233
234         phase->num_nodes++;
235
236         /* check for nodes we want to ignore */
237         if (be_is_Keep(irn)     ||
238                 be_is_CopyKeep(irn) ||
239                 opc == iro_Start    ||
240                 opc == iro_End)
241                 return;
242
243         if (is_Proj(irn) && (mode != mode_X)) {
244                 phase->num_proj++;
245                 return;
246         }
247         else if (is_Phi(irn)) {
248                 phase->num_phi++;
249                 return;
250         }
251         else if (mode_is_datab(mode) || ((mode == mode_T) && ! is_be_node(irn)) || (is_Proj(irn) && (mode == mode_X)))
252                 phase->num_data++;
253
254         if (opc == iro_Load)
255                 phase->num_load++;
256         else if (opc == iro_Store)
257                 phase->num_store++;
258
259         irn_class = arch_irn_classify(phase->arch_env, irn);
260         if (irn_class & arch_irn_class_spill)
261                 phase->num_spill++;
262         else if (irn_class & arch_irn_class_reload)
263                 phase->num_reload++;
264         else if (irn_class & arch_irn_class_stackparam)
265                 phase->num_load++;
266         else if (irn_class & arch_irn_class_load)
267                 phase->num_load++;
268         else if (irn_class & arch_irn_class_store)
269                 phase->num_store++;
270 }
271
272 /**
273  * Collects node statistics.
274  *
275  * @param irg      the to do statistics for
276  * @param phase    the phase to collect the statistic for
277  */
278 void be_do_stat_nodes(ir_graph *irg, const char *phase) {
279         be_stat_irg_t   *irg_entry;
280         be_stat_phase_t *phase_entry, phase_key;
281
282         irg_entry = find_stat_irg_entry(irg);
283
284         if (! irg_entry)
285                 return;
286
287         phase_key.phase = phase;
288         phase_entry     = pset_find_ptr(irg_entry->phases, &phase_key);
289
290         if (! phase_entry) {
291                 phase_entry = obstack_alloc(&irg_entry->obst, sizeof(*phase_entry));
292                 phase_entry = pset_insert(irg_entry->phases, phase_entry, HASH_PTR(phase));
293         }
294         memset(phase_entry, 0, sizeof(*phase_entry));
295
296         phase_entry->phase    = phase;
297         phase_entry->arch_env = irg_entry->arch_env;
298
299         irg_walk_blkwise_graph(irg_entry->irg, NULL, do_nodes_stat, phase_entry);
300 }
301
302 /**
303  * Dumps statistics about nodes (called from dump_snapshot)
304  */
305 static void be_dump_node_stat(dumper_t *dmp, graph_entry_t *entry) {
306         be_stat_irg_t   *stat_irg = find_stat_irg_entry(entry->irg);
307         be_stat_phase_t *phase;
308
309         if (! stat_irg || ! stat_irg->phases)
310                 return;
311
312         fprintf(dmp->f, "===> BE NODE STATISTIC BEGIN <===\n");
313
314         foreach_pset(stat_irg->phases, phase) {
315                 fprintf(dmp->f, "--> Phase: %s\n", phase->phase);
316                 fprintf(dmp->f, "# nodes:      %ld\n", phase->num_nodes);
317                 fprintf(dmp->f, "# data nodes: %ld\n", phase->num_data);
318                 fprintf(dmp->f, "# Proj:       %ld\n", phase->num_proj);
319                 fprintf(dmp->f, "# Phi:        %ld\n", phase->num_phi);
320                 fprintf(dmp->f, "# Load:       %ld\n", phase->num_load);
321                 fprintf(dmp->f, "# Store:      %ld\n", phase->num_store);
322                 fprintf(dmp->f, "# Spill:      %ld\n", phase->num_spill);
323                 fprintf(dmp->f, "# Reload:     %ld\n", phase->num_reload);
324         }
325
326         fprintf(dmp->f, "===> BE NODE STATISTIC END <===\n");
327 }
328
329 /**
330  * Returns a be statistic object for the given irg.
331  */
332 void be_stat_init_irg(const arch_env_t *arch_env, ir_graph *irg) {
333         static int reg_func  = 1;
334
335         if (stat_is_active()) {
336                 be_stat_irg_t *stat_irg;
337
338                 if (! be_stat_data)
339                         be_stat_data = new_set(cmp_stat_data, 8);
340
341                 stat_irg           = get_stat_irg_entry(irg);
342                 stat_irg->irg      = irg;
343                 stat_irg->phases   = new_pset(cmp_stat_phase, 8);
344                 stat_irg->arch_env = arch_env;
345                 obstack_init(&stat_irg->obst);
346
347                 if (reg_func) {
348                         /* first init: register dumper */
349                         stat_register_dumper_func(be_dump_node_stat);
350                         reg_func = 0;
351                 }
352         }
353 }
354 #endif /* FIRM_STATISTICS */
355
356 typedef struct _estimate_irg_costs_env_t {
357         const arch_env_t *arch_env;
358         ir_exec_freq     *execfreqs;
359         double           costs;
360 } estimate_irg_costs_env_t;
361
362 static void estimate_block_costs(ir_node *block, void *data)
363 {
364         estimate_irg_costs_env_t *env = data;
365         ir_node *node;
366         double  costs = 0.0;
367
368         sched_foreach(block, node) {
369                 costs += arch_get_op_estimated_cost(env->arch_env, node);
370         }
371
372         env->costs += costs * get_block_execfreq(env->execfreqs, block);
373 }
374
375 double be_estimate_irg_costs(ir_graph *irg, const arch_env_t *arch_env, ir_exec_freq *execfreqs)
376 {
377         estimate_irg_costs_env_t env;
378
379         env.arch_env  = arch_env;
380         env.execfreqs = execfreqs;
381         env.costs     = 0.0;
382
383         irg_block_walk_graph(irg, estimate_block_costs, NULL, &env);
384
385         return env.costs;
386 }
387
388 #ifdef FIRM_STATISTICS
389
390
391 #else /* FIRM_STATISTICS */
392
393 void (be_stat_init_irg)(const arch_env_t *arch_env, ir_graph *irg) {}
394 void (be_do_stat_nodes)(ir_graph *irg, const char *phase) {}
395 void (be_do_stat_reg_pressure)(be_irg_t *birg) {}
396 void (be_do_stat_sched_ready)(ir_node *block, ir_nodeset_t *ready_set) {}
397 void (be_do_stat_perm)(const char *class_name, int n_regs, ir_node *perm, ir_node *block, int n, int real_size) {}
398
399 #endif /* FIRM_STATISTICS */