Micro optimisation of the day: Remove ia32_Test, which tests the high result of ia32_Mul.
[libfirm] / ir / ana / execfreq.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       Compute an estimate of basic block executions.
23  * @author      Adam M. Szalkowski
24  * @date        28.05.2006
25  * @version     $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <stdio.h>
32 #include <string.h>
33 #include <limits.h>
34 #include <math.h>
35
36 #include "gaussseidel.h"
37
38 #include "firm_common_t.h"
39 #include "set.h"
40 #include "hashptr.h"
41 #include "debug.h"
42 #include "statev.h"
43 #include "dfs_t.h"
44 #include "absgraph.h"
45
46 #include "irprog_t.h"
47 #include "irgraph_t.h"
48 #include "irnode_t.h"
49 #include "irloop.h"
50 #include "irgwalk.h"
51 #include "iredges.h"
52 #include "irprintf.h"
53 #include "irtools.h"
54 #include "irhooks.h"
55
56 #include "execfreq.h"
57
58 /* enable to also solve the equations with Gauss-Jordan */
59 #undef COMPARE_AGAINST_GAUSSJORDAN
60
61 #ifdef COMPARE_AGAINST_GAUSSJORDAN
62 #include "gaussjordan.h"
63 #endif
64
65
66 #define EPSILON              1e-5
67 #define UNDEF(x)         (fabs(x) < EPSILON)
68 #define SEIDEL_TOLERANCE 1e-7
69
70 #define MAX_INT_FREQ 1000000
71
72 #define set_foreach(s,i) for((i)=set_first((s)); (i); (i)=set_next((s)))
73
74 typedef struct _freq_t {
75         const ir_node    *irn;
76         int               idx;
77         double            freq;
78 } freq_t;
79
80 struct ir_exec_freq {
81         set *set;
82         hook_entry_t hook;
83         double max;
84         double min_non_zero;
85         double m, b;
86         unsigned infeasible : 1;
87 };
88
89 static int
90 cmp_freq(const void *a, const void *b, size_t size)
91 {
92         const freq_t *p = a;
93         const freq_t *q = b;
94         (void) size;
95
96         return !(p->irn == q->irn);
97 }
98
99 static freq_t *
100 set_find_freq(set * set, const ir_node * irn)
101 {
102         freq_t     query;
103
104         query.irn = irn;
105         return set_find(set, &query, sizeof(query), HASH_PTR(irn));
106 }
107
108 static freq_t *
109 set_insert_freq(set * set, const ir_node * irn)
110 {
111         freq_t query;
112
113         query.irn = irn;
114         query.freq = 0.0;
115         query.idx  = -1;
116         return set_insert(set, &query, sizeof(query), HASH_PTR(irn));
117 }
118
119 double
120 get_block_execfreq(const ir_exec_freq *ef, const ir_node * irn)
121 {
122         if(!ef->infeasible) {
123                 set *freqs = ef->set;
124                 freq_t *freq;
125                 assert(is_Block(irn));
126                 freq = set_find_freq(freqs, irn);
127                 assert(freq);
128
129                 assert(freq->freq >= 0);
130                 return freq->freq;
131         }
132
133         return 1.0;
134 }
135
136 unsigned long
137 get_block_execfreq_ulong(const ir_exec_freq *ef, const ir_node *bb)
138 {
139         double f       = get_block_execfreq(ef, bb);
140         int res        = (int) (f > ef->min_non_zero ? ef->m * f + ef->b : 1.0);
141         return res;
142 }
143
144 static double *
145 solve_lgs(gs_matrix_t *mat, double *x, int size)
146 {
147         double init = 1.0 / size;
148         double dev;
149         int i, iter = 0;
150
151         /* better convergence. */
152         for (i = 0; i < size; ++i)
153                 x[i] = init;
154
155         stat_ev_dbl("execfreq_matrix_size", size);
156         stat_ev_tim_push();
157         do {
158                 ++iter;
159                 dev = gs_matrix_gauss_seidel(mat, x, size);
160         } while(fabs(dev) > SEIDEL_TOLERANCE);
161         stat_ev_tim_pop("execfreq_seidel_time");
162         stat_ev_dbl("execfreq_seidel_iter", iter);
163
164 #ifdef COMPARE_AGAINST_GAUSSJORDAN
165         {
166                 double *nw = xmalloc(size * size * sizeof(*nw));
167                 double *nx = xmalloc(size * sizeof(*nx));
168
169                 memset(nx, 0, size * sizeof(*nx));
170                 gs_matrix_export(mat, nw, size);
171
172                 stat_ev_tim_push();
173                 firm_gaussjordansolve(nw, nx, size);
174                 stat_ev_tim_pop("execfreq_jordan_time");
175
176                 xfree(nw);
177                 xfree(nx);
178         }
179 #endif
180
181         return x;
182 }
183
184 static double
185 get_cf_probability(ir_node *bb, int pos, double loop_weight)
186 {
187         double  sum = 0.0;
188         double  cur = 0.0;
189         const ir_node *pred = get_Block_cfgpred_block(bb, pos);
190         const ir_loop *pred_loop = get_irn_loop(pred);
191         int pred_depth = get_loop_depth(pred_loop);
192         const ir_edge_t *edge;
193
194         cur = get_loop_depth(get_irn_loop(bb)) < get_loop_depth(get_irn_loop(pred)) ? 1.0 : loop_weight;
195
196         foreach_block_succ(pred, edge) {
197                 const ir_node *block = get_edge_src_irn(edge);
198                 const ir_loop *loop = get_irn_loop(block);
199                 int depth = get_loop_depth(loop);
200                 sum += depth < pred_depth ? 1.0 : loop_weight;
201         }
202
203         return cur/sum;
204 }
205
206 static void exec_freq_node_info(void *ctx, FILE *f, const ir_node *irn)
207 {
208         if(is_Block(irn)) {
209                 ir_exec_freq *ef = ctx;
210                 fprintf(f, "execution frequency: %g/%lu\n", get_block_execfreq(ef, irn), get_block_execfreq_ulong(ef, irn));
211         }
212 }
213
214 ir_exec_freq *create_execfreq(ir_graph *irg)
215 {
216         ir_exec_freq *execfreq = xmalloc(sizeof(execfreq[0]));
217         memset(execfreq, 0, sizeof(execfreq[0]));
218         execfreq->set = new_set(cmp_freq, 32);
219
220         memset(&execfreq->hook, 0, sizeof(execfreq->hook));
221         execfreq->hook.context = execfreq;
222         execfreq->hook.hook._hook_node_info = exec_freq_node_info;
223         register_hook(hook_node_info, &execfreq->hook);
224         (void) irg;
225
226         return execfreq;
227 }
228
229 void set_execfreq(ir_exec_freq *execfreq, const ir_node *block, double freq)
230 {
231         freq_t *f = set_insert_freq(execfreq->set, block);
232         f->freq = freq;
233 }
234
235 static void collect_blocks(ir_node *bl, void *data)
236 {
237         set *freqs = data;
238         set_insert_freq(freqs, bl);
239 }
240
241 ir_exec_freq *
242 compute_execfreq(ir_graph * irg, double loop_weight)
243 {
244         gs_matrix_t  *mat;
245         int           size;
246         int           idx;
247         freq_t       *freq, *s, *e;
248         ir_exec_freq *ef;
249         set          *freqs;
250         dfs_t        *dfs;
251         double       *x;
252         double        norm;
253
254         /*
255          * compute a DFS.
256          * using a toposort on the CFG (without back edges) will propagate
257          * the values better for the gauss/seidel iteration.
258          * => they can "flow" from start to end.
259          */
260         dfs = dfs_new(&absgraph_irg_cfg_succ, irg);
261         ef = xmalloc(sizeof(ef[0]));
262         memset(ef, 0, sizeof(ef[0]));
263         ef->min_non_zero = HUGE_VAL; /* initialize with a reasonable large number. */
264         freqs = ef->set = new_set(cmp_freq, dfs_get_n_nodes(dfs));
265
266         /*
267          * Populate the exec freq set.
268          * The DFS cannot be used alone, since the CFG might not be connected
269          * due to unreachable code.
270          */
271         irg_block_walk_graph(irg, collect_blocks, NULL, freqs);
272
273         construct_cf_backedges(irg);
274         edges_assure(irg);
275
276         size = dfs_get_n_nodes(dfs);
277         mat  = gs_new_matrix(size, size);
278         x    = xmalloc(size*sizeof(*x));
279
280         for (idx = dfs_get_n_nodes(dfs) - 1; idx >= 0; --idx) {
281                 ir_node *bb = (ir_node *) dfs_get_post_num_node(dfs, size - idx - 1);
282                 freq_t *freq;
283                 int i;
284
285                 freq = set_insert_freq(freqs, bb);
286                 freq->idx = idx;
287
288                 for(i = get_Block_n_cfgpreds(bb) - 1; i >= 0; --i) {
289                         ir_node *pred = get_Block_cfgpred_block(bb, i);
290                         int pred_idx  = size - dfs_get_post_num(dfs, pred) - 1;
291
292                         gs_matrix_set(mat, idx, pred_idx, get_cf_probability(bb, i, loop_weight));
293                 }
294                 gs_matrix_set(mat, idx, idx, -1.0);
295         }
296
297         dfs_free(dfs);
298
299         /*
300          * Add a loop from end to start.
301          * The problem is then an eigenvalue problem:
302          * Solve A*x = 1*x => (A-I)x = 0
303          */
304         s = set_find_freq(freqs, get_irg_start_block(irg));
305         e = set_find_freq(freqs, get_irg_end_block(irg));
306         if (e->idx >= 0)
307                 gs_matrix_set(mat, s->idx, e->idx, 1.0);
308
309         /* solve the system and delete the matrix */
310         solve_lgs(mat, x, size);
311         gs_delete_matrix(mat);
312
313         /*
314          * compute the normalization factor.
315          * 1.0 / exec freq of start block.
316          */
317         norm = x[s->idx] != 0.0 ? 1.0 / x[s->idx] : 1.0;
318
319         ef->max = 0.0;
320         set_foreach(freqs, freq) {
321                 int idx = freq->idx;
322
323                 /* take abs because it sometimes can be -0 in case of endless loops */
324                 freq->freq = fabs(x[idx]) * norm;
325
326                 /* get the maximum exec freq */
327                 ef->max = MAX(ef->max, freq->freq);
328
329                 /* Get the minimum non-zero execution frequency. */
330                 if(freq->freq > 0.0)
331                         ef->min_non_zero = MIN(ef->min_non_zero, freq->freq);
332         }
333
334         /* compute m and b of the transformation used to convert the doubles into scaled ints */
335         {
336                 double smallest_diff = 1.0;
337
338                 double l2 = ef->min_non_zero;
339                 double h2 = ef->max;
340                 double l1 = 1.0;
341                 double h1 = MAX_INT_FREQ;
342
343                 double *fs = malloc(set_count(freqs) * sizeof(fs[0]));
344                 int i, j, n = 0;
345
346                 set_foreach(freqs, freq)
347                         fs[n++] = freq->freq;
348
349                 /*
350                  * find the smallest difference of the execution frequencies
351                  * we try to ressolve it with 1 integer.
352                  */
353                 for(i = 0; i < n; ++i) {
354                         if(fs[i] <= 0.0)
355                                 continue;
356
357                         for(j = i + 1; j < n; ++j) {
358                                 double diff = fabs(fs[i] - fs[j]);
359
360                                 if(!UNDEF(diff))
361                                         smallest_diff = MIN(diff, smallest_diff);
362                         }
363                 }
364
365                 /* according to that the slope of the translation function is 1.0 / smallest diff */
366                 ef->m = 1.0 / smallest_diff;
367
368                 /* the abscissa is then given by */
369                 ef->b = l1 - ef->m * l2;
370
371                 /*
372                  * if the slope is so high that the largest integer would be larger than MAX_INT_FREQ
373                  * set the largest int freq to that upper limit and recompute the translation function
374                  */
375                 if(ef->m * h2 + ef->b > MAX_INT_FREQ) {
376                         ef->m = (h1 - l1) / (h2 - l2);
377                         ef->b = l1 - ef->m * l2;
378                 }
379
380                 free(fs);
381         }
382
383         memset(&ef->hook, 0, sizeof(ef->hook));
384         ef->hook.context = ef;
385         ef->hook.hook._hook_node_info = exec_freq_node_info;
386         register_hook(hook_node_info, &ef->hook);
387
388         xfree(x);
389
390         return ef;
391 }
392
393 void
394 free_execfreq(ir_exec_freq *ef)
395 {
396         del_set(ef->set);
397         unregister_hook(hook_node_info, &ef->hook);
398         free(ef);
399 }