Fixed several bugs
[libfirm] / ir / be / bemain.c
1 /**
2  * Backend driver.
3  * @author Sebastian Hack
4  * @date 25.11.2004
5  */
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif
9
10 #include <stdarg.h>
11
12 #ifdef WITH_LIBCORE
13 #include <libcore/lc_opts.h>
14 #include <libcore/lc_opts_enum.h>
15 #endif /* WITH_LIBCORE */
16
17 #include "obst.h"
18 #include "bitset.h"
19
20 #include "irprog.h"
21 #include "irgopt.h"
22 #include "irgraph.h"
23 #include "irdump.h"
24 #include "phiclass.h"
25 #include "irdom_t.h"
26 #include "iredges_t.h"
27 #include "irloop_t.h"
28 #include "irtools.h"
29
30 #include "bearch.h"
31 #include "firm/bearch_firm.h"
32 #include "ia32/bearch_ia32.h"
33 #include "TEMPLATE/bearch_TEMPLATE.h"
34
35 #include "be_t.h"
36 #include "benumb_t.h"
37 #include "beutil.h"
38 #include "benode_t.h"
39 #include "beirgmod.h"
40 #include "besched_t.h"
41 #include "belistsched.h"
42 #include "belive_t.h"
43 #include "bespillilp.h"
44 #include "bespillbelady.h"
45 #include "bera.h"
46 #include "beraextern.h"
47 #include "bechordal_t.h"
48 #include "beifg.h"
49 #include "beifg_impl.h"
50 #include "becopyopt.h"
51 #include "becopystat.h"
52 #include "bessadestr.h"
53 #include "beabi.h"
54
55
56 #define DUMP_INITIAL            (1 << 0)
57 #define DUMP_ABI                (1 << 1)
58 #define DUMP_SCHED                      (1 << 2)
59 #define DUMP_PREPARED           (1 << 3)
60 #define DUMP_RA                         (1 << 4)
61 #define DUMP_FINAL                      (1 << 5)
62
63 /* options visible for anyone */
64 be_options_t be_options = {
65         /* ilp server */
66         "i44pc52.info.uni-karlsruhe.de",
67
68         /* ilp solver */
69         "cplex"
70 };
71
72 /* dump flags */
73 static unsigned dump_flags = 2 * DUMP_FINAL - 1;
74
75 /* register allocator to use. */
76 static const be_ra_t *ra = &be_ra_chordal_allocator;
77
78 /* back end instruction set architecture to use */
79 static const arch_isa_if_t *isa_if = &ia32_isa_if;
80 #ifdef WITH_LIBCORE
81
82 static lc_opt_entry_t *be_grp_root = NULL;
83
84 /* possible dumping options */
85 static const lc_opt_enum_mask_items_t dump_items[] = {
86         { "none",       0 },
87         { "initial",    DUMP_INITIAL },
88         { "abi",        DUMP_ABI    },
89         { "sched",      DUMP_SCHED  },
90         { "prepared",   DUMP_PREPARED },
91         { "regalloc",   DUMP_RA },
92         { "final",      DUMP_FINAL },
93         { "all",        2 * DUMP_FINAL - 1 },
94         { NULL,         0 }
95 };
96
97 /* register allocators */
98 static const lc_opt_enum_const_ptr_items_t ra_items[] = {
99         { "chordal", &be_ra_chordal_allocator },
100         { "external", &be_ra_external_allocator },
101         { NULL,      NULL }
102 };
103
104 /* instruction set architectures. */
105 static const lc_opt_enum_const_ptr_items_t isa_items[] = {
106         { "firm",    &firm_isa },
107         { "ia32",    &ia32_isa_if },
108         { "TEMPLATE",&TEMPLATE_isa_if },
109         { NULL,      NULL }
110 };
111
112 static lc_opt_enum_mask_var_t dump_var = {
113         &dump_flags, dump_items
114 };
115
116 static lc_opt_enum_const_ptr_var_t ra_var = {
117         (const void **) &ra, ra_items
118 };
119
120 static lc_opt_enum_const_ptr_var_t isa_var = {
121         (const void **) &isa_if, isa_items
122 };
123
124 static const lc_opt_table_entry_t be_main_options[] = {
125         LC_OPT_ENT_ENUM_MASK("dump", "dump irg on several occasions", &dump_var),
126         LC_OPT_ENT_ENUM_PTR("ra", "register allocator", &ra_var),
127         LC_OPT_ENT_ENUM_PTR("isa", "the instruction set architecture", &isa_var),
128
129         LC_OPT_ENT_STR ("ilp.server", "the ilp server name", be_options.ilp_server, sizeof(be_options.ilp_server)),
130         LC_OPT_ENT_STR ("ilp.solver", "the ilp solver name", be_options.ilp_solver, sizeof(be_options.ilp_solver)),
131         { NULL }
132 };
133
134 #endif /* WITH_LIBCORE */
135
136 void be_opt_register(void)
137 {
138 #ifdef WITH_LIBCORE
139         int i;
140         lc_opt_entry_t *be_grp_ra;
141
142         be_grp_root = lc_opt_get_grp(firm_opt_get_root(), "be");
143         be_grp_ra   = lc_opt_get_grp(be_grp_root, "ra");
144
145         lc_opt_add_table(be_grp_root, be_main_options);
146
147         /* register allocator options */
148         for(i = 0; ra_items[i].name != NULL; ++i) {
149                 const be_ra_t *ra = ra_items[i].value;
150                 ra->register_options(be_grp_ra);
151         }
152
153         /* register isa options */
154         for(i = 0; isa_items[i].name != NULL; ++i) {
155                 const arch_isa_if_t *isa = isa_items[i].value;
156                 isa->register_options(be_grp_root);
157         }
158 #endif /* WITH_LIBCORE */
159 }
160
161
162 void be_init(void)
163 {
164         be_opt_register();
165
166         be_sched_init();
167         be_liveness_init();
168         be_numbering_init();
169         be_copy_opt_init();
170         copystat_init();
171         phi_class_init();
172 }
173
174 static be_main_env_t *be_init_env(be_main_env_t *env)
175 {
176         memset(env, 0, sizeof(*env));
177         obstack_init(&env->obst);
178         env->dbg = firm_dbg_register("be.main");
179
180         env->arch_env = obstack_alloc(&env->obst, sizeof(env->arch_env[0]));
181         arch_env_init(env->arch_env, isa_if);
182
183         /* Register the irn handler of the architecture */
184         if (arch_isa_get_irn_handler(env->arch_env->isa))
185                 arch_env_add_irn_handler(env->arch_env, arch_isa_get_irn_handler(env->arch_env->isa));
186
187                 /*
188                 * Register the node handler of the back end infrastructure.
189                 * This irn handler takes care of the platform independent
190                 * spill, reload and perm nodes.
191         */
192         arch_env_add_irn_handler(env->arch_env, &be_node_irn_handler);
193
194         return env;
195 }
196
197 static void be_done_env(be_main_env_t *env)
198 {
199         env->arch_env->isa->impl->done(env->arch_env->isa);
200         obstack_free(&env->obst, NULL);
201 }
202
203 static void dump(int mask, ir_graph *irg, const char *suffix,
204                                  void (*dumper)(ir_graph *, const char *))
205 {
206         if(dump_flags & mask)
207                 dumper(irg, suffix);
208 }
209
210 static void prepare_graph(be_irg_t *birg)
211 {
212         ir_graph *irg = birg->irg;
213
214         /* Normalize proj nodes. */
215         normalize_proj_nodes(irg);
216
217         /* Make just one return node. */
218         // normalize_one_return(irg);
219
220         /* Remove critical edges */
221         remove_critical_cf_edges(irg);
222
223         /* Compute the dominance information. */
224         free_dom(irg);
225         compute_doms(irg);
226
227         /* Ensure, that the ir_edges are computed. */
228         edges_activate(irg);
229
230         /* check, if the dominance property is fulfilled. */
231         be_check_dominance(irg);
232
233 }
234
235 static void be_main_loop(FILE *file_handle)
236 {
237         int i, n;
238         arch_isa_t *isa;
239         be_main_env_t env;
240
241         be_init_env(&env);
242
243         isa = arch_env_get_isa(env.arch_env);
244
245         /* For all graphs */
246         for(i = 0, n = get_irp_n_irgs(); i < n; ++i) {
247                 ir_graph *irg = get_irp_irg(i);
248                 const arch_code_generator_if_t *cg_if;
249                 be_irg_t birg;
250
251                 birg.irg      = irg;
252                 birg.main_env = &env;
253
254                 DBG((env.dbg, LEVEL_2, "====> IRG: %F\n", irg));
255                 dump(DUMP_INITIAL, irg, "-begin", dump_ir_block_graph);
256
257                 /* set the current graph (this is important for several firm functions) */
258                 current_ir_graph = birg.irg;
259
260                 /* Get the code generator interface. */
261                 cg_if = isa->impl->get_code_generator_if(isa);
262
263                 /* get a code generator for this graph. */
264                 birg.cg = cg_if->init(file_handle, &birg);
265
266                 /* create the code generator and generate code. */
267                 prepare_graph(&birg);
268
269                 /* implement the ABI conventions. */
270                 birg.abi = be_abi_introduce(&birg);
271                 dump(DUMP_ABI, irg, "-abi", dump_ir_block_graph);
272
273                 /* generate code */
274                 arch_code_generator_prepare_graph(birg.cg);
275
276                 /*
277                  * Since the code generator made a lot of new nodes and skipped
278                  * a lot of old ones, we should do dead node elim here.
279                  * Note that this requires disabling the edges here.
280                  */
281                 edges_deactivate(irg);
282                 dead_node_elimination(irg);
283                 edges_activate(irg);
284
285                 /* Compute loop nesting information (for weighting copies) */
286                 construct_cf_backedges(irg);
287
288                 dump(DUMP_PREPARED, irg, "-prepared", dump_ir_block_graph);
289
290                 /* Schedule the graphs. */
291                 arch_code_generator_before_sched(birg.cg);
292                 list_sched(isa, irg);
293
294                 dump(DUMP_SCHED, irg, "-sched", dump_ir_block_graph_sched);
295
296                 /* connect all stack modifying nodes together (see beabi.c) */
297                 be_abi_fix_stack_nodes(birg.abi);
298
299                 /* Verify the schedule */
300                 sched_verify_irg(irg);
301
302                 /* Do register allocation */
303                 arch_code_generator_before_ra(birg.cg);
304                 ra->allocate(&birg);
305                 dump(DUMP_RA, irg, "-ra", dump_ir_block_graph_sched);
306
307                 /* This is not ready yet: */
308                 /* be_abi_fix_stack_bias(birg.abi); */
309
310                 arch_code_generator_done(birg.cg);
311                 dump(DUMP_FINAL, irg, "-end", dump_ir_block_graph_sched);
312                 be_abi_free(birg.abi);
313         }
314
315         be_done_env(&env);
316 }
317
318 void be_main(FILE *file_handle)
319 {
320         /* never build code for pseudo irgs */
321         set_visit_pseudo_irgs(0);
322
323         be_node_init();
324         be_main_loop(file_handle);
325 }