7063e98cca4495a74ae6b86e33ed72995cfec066
[libfirm] / ir / be / becopystat.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       Copy node statistics.
23  * @author      Daniel Grund
24  * @date        19.04.2005
25  */
26 #include "config.h"
27
28 #include <string.h>
29
30 #include "timing.h"
31 #include "irgraph.h"
32 #include "irgwalk.h"
33 #include "irprog.h"
34 #include "iredges_t.h"
35 #include "irnodeset.h"
36
37 #include "bechordal_t.h"
38 #include "benode.h"
39 #include "beutil.h"
40 #include "becopyopt_t.h"
41 #include "becopystat.h"
42 #include "bemodule.h"
43 #include "beintlive_t.h"
44
45 #define DEBUG_LVL SET_LEVEL_1
46 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
47
48 #define MAX_ARITY 20
49 #define MAX_CLS_SIZE 20
50 #define MAX_CLS_PHIS 20
51
52 /**
53  * For an explanation of these values see the code of copystat_dump_pretty
54  */
55 enum vals_t {
56         /* FROM HERE: PROBLEM CHARACTERIZATION */
57
58         I_ALL_NODES = 0,
59         I_BLOCKS,
60
61         /* phi nodes */
62         I_PHI_CNT,          /* number of phi nodes */
63         I_PHI_ARG_CNT,      /* number of arguments of phis */
64         I_PHI_ARG_SELF,     /* number of arguments of phis being the phi itself */
65         I_PHI_ARG_CONST,    /* number of arguments of phis being consts */
66         I_PHI_ARG_PRED,     /* ... being defined in a cf-pred */
67         I_PHI_ARG_GLOB,     /* ... being defined elsewhere */
68         I_PHI_ARITY_S,
69         I_PHI_ARITY_E    = I_PHI_ARITY_S+MAX_ARITY,
70
71         /* copy nodes */
72         I_CPY_CNT,          /* number of copynodes */
73
74         /* phi classes */
75         I_CLS_CNT,          /* number of phi classes */
76         I_CLS_IF_FREE,      /* number of pc having no interference */
77         I_CLS_IF_MAX,       /* number of possible interferences in all classes */
78         I_CLS_IF_CNT,       /* number of actual interferences in all classes */
79         I_CLS_SIZE_S,
80         I_CLS_SIZE_E = I_CLS_SIZE_S+MAX_CLS_SIZE,
81         I_CLS_PHIS_S,
82         I_CLS_PHIS_E = I_CLS_PHIS_S+MAX_CLS_PHIS,
83
84         /* FROM HERE: RESULT VLAUES */
85         /* all of them are external set */
86
87         /* ilp values */
88         I_HEUR_TIME,        /* solving time in milli seconds */
89         I_ILP_TIME,         /* solving time in milli seconds */
90         I_ILP_VARS,
91         I_ILP_CSTR,
92         I_ILP_ITER,         /* number of simplex iterations */
93
94         /* copy instructions */
95         I_COPIES_MAX,       /* max possible costs of copies*/
96         I_COPIES_INIT,      /* number of copies in initial allocation */
97         I_COPIES_HEUR,      /* number of copies after heuristic */
98         I_COPIES_5SEC,      /* number of copies after ilp with max n sec */
99         I_COPIES_30SEC,     /* number of copies after ilp with max n sec */
100         I_COPIES_OPT,       /* number of copies after ilp */
101         I_COPIES_IF,        /* number of copies inevitable due to root-arg-interf */
102
103         ASIZE
104 };
105
106 /**
107  * Holds current values. Values are added till next copystat_reset
108  */
109 static int curr_vals[ASIZE];
110
111 static ir_nodeset_t *all_phi_nodes;
112 static ir_nodeset_t *all_copy_nodes;
113
114 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_copystat)
115 void be_init_copystat(void)
116 {
117         FIRM_DBG_REGISTER(dbg, "firm.be.copystat");
118
119         all_phi_nodes  = ir_nodeset_new(64);
120         all_copy_nodes = ir_nodeset_new(64);
121         memset(curr_vals, 0, sizeof(curr_vals));
122 }
123
124 BE_REGISTER_MODULE_DESTRUCTOR(be_quit_copystat)
125 void be_quit_copystat(void)
126 {
127         if (all_phi_nodes != NULL) {
128                 ir_nodeset_del(all_phi_nodes);
129                 all_phi_nodes = NULL;
130         }
131         if (all_copy_nodes != NULL) {
132                 ir_nodeset_del(all_copy_nodes);
133                 all_copy_nodes = NULL;
134         }
135 }
136
137 /**
138  * @return 1 if the block at pos @p pos removed a critical edge
139  *         0 else
140  */
141 static inline int was_edge_critical(const ir_node *bl, int pos)
142 {
143         const ir_edge_t *edge;
144         const ir_node *bl_at_pos, *bl_before;
145         assert(is_Block(bl));
146
147         /* Does bl have several predecessors ?*/
148         if (get_irn_arity(bl) <= 1)
149                 return 0;
150
151         /* Does the pred have exactly one predecessor */
152         bl_at_pos = get_irn_n(bl, pos);
153         if (get_irn_arity(bl_at_pos) != 1)
154                 return 0;
155
156         /* Does the pred of the pred have several successors */
157         bl_before = get_irn_n(bl_at_pos, 0);
158         edge = get_block_succ_first(bl_before);
159         return get_block_succ_next(bl_before, edge) ? 1 : 0;
160 }
161
162 void copystat_add_max_costs(int costs)
163 {
164         curr_vals[I_COPIES_MAX] += costs;
165 }
166 void copystat_add_inevit_costs(int costs)
167 {
168         curr_vals[I_COPIES_IF] += costs;
169 }
170 void copystat_add_init_costs(int costs)
171 {
172         curr_vals[I_COPIES_INIT] += costs;
173 }
174 void copystat_add_heur_costs(int costs)
175 {
176         curr_vals[I_COPIES_HEUR] += costs;
177 }
178 void copystat_add_opt_costs(int costs)
179 {
180         curr_vals[I_COPIES_OPT] += costs;
181 }
182 void copystat_add_heur_time(int time)
183 {
184         curr_vals[I_HEUR_TIME] += time;
185 }
186
187 void copystat_add_ilp_5_sec_costs(int costs)
188 {
189         curr_vals[I_COPIES_5SEC] += costs;
190 }
191 void copystat_add_ilp_30_sec_costs(int costs)
192 {
193         curr_vals[I_COPIES_30SEC] += costs;
194 }
195 void copystat_add_ilp_time(int time)
196 {
197         curr_vals[I_ILP_TIME] += time;
198 }
199 void copystat_add_ilp_vars(int vars)
200 {
201         curr_vals[I_ILP_VARS] += vars;
202 }
203 void copystat_add_ilp_csts(int csts)
204 {
205         curr_vals[I_ILP_CSTR] += csts;
206 }
207 void copystat_add_ilp_iter(int iters)
208 {
209         curr_vals[I_ILP_ITER] += iters;
210 }
211
212 /**
213  * Opens a file named base.ext with the mode mode.
214  */
215 static FILE *be_ffopen(const char *base, const char *ext, const char *mode)
216 {
217         FILE *out;
218         char buf[1024];
219
220         snprintf(buf, sizeof(buf), "%s.%s", base, ext);
221         buf[sizeof(buf) - 1] = '\0';
222         if (! (out = fopen(buf, mode))) {
223                 fprintf(stderr, "Cannot open file %s in mode %s\n", buf, mode);
224                 return NULL;
225         }
226         return out;
227 }
228
229 void copystat_dump(ir_graph *irg)
230 {
231         int i;
232         char buf[1024];
233         FILE *out;
234
235         snprintf(buf, sizeof(buf), "%s__%s", get_irp_name(), get_entity_name(get_irg_entity(irg)));
236         buf[sizeof(buf) - 1] = '\0';
237         out = be_ffopen(buf, "stat", "wt");
238
239         fprintf(out, "%d\n", (int)ASIZE);
240         for (i = 0; i < ASIZE; i++) {
241 #if 0
242                 if (i >= I_PHI_ARITY_S && i <= I_PHI_ARITY_E)
243                         fprintf(out, "%i %i\n", curr_vals[i], curr_vals[I_PHI_CNT]);
244                 else if (i >= I_CLS_SIZE_S && i <= I_CLS_SIZE_E)
245                         fprintf(out, "%i %i\n", curr_vals[i], curr_vals[I_CLS_CNT]);
246                 else
247 #endif
248                         fprintf(out, "%i\n", curr_vals[i]);
249         }
250
251         fclose(out);
252 }
253
254 void copystat_dump_pretty(ir_graph *irg)
255 {
256         int i;
257         char buf[1024];
258         FILE *out;
259
260         snprintf(buf, sizeof(buf), "%s__%s", get_irp_name(), get_entity_name(get_irg_entity(irg)));
261         buf[sizeof(buf) - 1] = '\0';
262         out = be_ffopen(buf, "pstat", "wt");
263
264         fprintf(out, "Nodes     %4d\n", curr_vals[I_ALL_NODES]);
265         fprintf(out, "Blocks    %4d\n", curr_vals[I_BLOCKS]);
266         fprintf(out, "CopyIrn   %4d\n", curr_vals[I_CPY_CNT]);
267
268         fprintf(out, "\nPhis      %4d\n", curr_vals[I_PHI_CNT]);
269         fprintf(out, "... argument types\n");
270         fprintf(out, " Total      %4d\n", curr_vals[I_PHI_ARG_CNT]);
271         fprintf(out, " Self       %4d\n", curr_vals[I_PHI_ARG_SELF]);
272         fprintf(out, " Constants  %4d\n", curr_vals[I_PHI_ARG_CONST]);
273         fprintf(out, " CF-Pred    %4d\n", curr_vals[I_PHI_ARG_PRED]);
274         fprintf(out, " Others     %4d\n", curr_vals[I_PHI_ARG_GLOB]);
275         fprintf(out, "... arities\n");
276         for (i = I_PHI_ARITY_S; i<=I_PHI_ARITY_E; i++)
277                 fprintf(out, " %2i %4d\n", i-I_PHI_ARITY_S, curr_vals[i]);
278
279         fprintf(out, "\nPhi classes   %4d\n", curr_vals[I_CLS_CNT]);
280         fprintf(out, " compl. free  %4d\n", curr_vals[I_CLS_IF_FREE]);
281         fprintf(out, " inner intf.  %4d / %4d\n", curr_vals[I_CLS_IF_CNT], curr_vals[I_CLS_IF_MAX]);
282         fprintf(out, "... sizes\n");
283         for (i = I_CLS_SIZE_S; i<=I_CLS_SIZE_E; i++)
284                 fprintf(out, " %2i %4d\n", i-I_CLS_SIZE_S, curr_vals[i]);
285         fprintf(out, "... contained phis\n");
286         for (i = I_CLS_PHIS_S; i<=I_CLS_PHIS_E; i++)
287                 fprintf(out, " %2i %4d\n", i-I_CLS_PHIS_S, curr_vals[i]);
288
289         fprintf(out, "\nILP stat\n");
290         fprintf(out, " Time %8d\n", curr_vals[I_ILP_TIME]);
291         fprintf(out, " Iter %8d\n", curr_vals[I_ILP_ITER]);
292
293         fprintf(out, "\nCopy stat\n");
294         fprintf(out, " Max  %4d\n", curr_vals[I_COPIES_MAX]);
295         fprintf(out, " Init %4d\n", curr_vals[I_COPIES_INIT]);
296         fprintf(out, " Heur %4d\n", curr_vals[I_COPIES_HEUR]);
297         fprintf(out, " Opt  %4d\n", curr_vals[I_COPIES_OPT]);
298         fprintf(out, " Intf %4d\n", curr_vals[I_COPIES_IF]);
299
300         fclose(out);
301 }