2c3ab5721e95485e1c0a6619310ff5bdd25f29e7
[libfirm] / ir / be / bemain.c
1 /**
2  * Backend driver.
3  * @author Sebastian Hack
4  * @date   25.11.2004
5  * @cvsid  $Id$
6  */
7 #ifdef HAVE_CONFIG_H
8 #include "config.h"
9 #endif
10
11 #include <stdarg.h>
12 #include <stdio.h>
13
14 #include <libcore/lc_opts.h>
15 #include <libcore/lc_opts_enum.h>
16 #include <libcore/lc_timing.h>
17
18 #include "obst.h"
19 #include "bitset.h"
20
21 #include "irprog.h"
22 #include "irgopt.h"
23 #include "irgraph.h"
24 #include "irdump.h"
25 #include "phiclass.h"
26 #include "irdom_t.h"
27 #include "iredges_t.h"
28 #include "irloop_t.h"
29 #include "irtools.h"
30 #include "irvrfy.h"
31 #include "irprintf.h"
32 #include "return.h"
33 #include "firmstat.h"
34 #include "cfopt.h"
35 #include "execfreq.h"
36
37 #include "bearch_t.h"
38 #include "be_t.h"
39 #include "bemodule.h"
40 #include "beutil.h"
41 #include "benode_t.h"
42 #include "beirgmod.h"
43 #include "besched_t.h"
44 #include "belistsched.h"
45 #include "belive_t.h"
46 #include "bespillbelady.h"
47 #include "bera.h"
48 #include "beraextern.h"
49 #include "bechordal_t.h"
50 #include "beifg.h"
51 #include "beifg_impl.h"
52 #include "becopyopt.h"
53 #include "becopystat.h"
54 #include "bessadestr.h"
55 #include "beabi.h"
56 #include "belower.h"
57 #include "beschedmris.h"
58 #include "bestat.h"
59 #include "beverify.h"
60 #include "beprofile.h"
61 #include "be_dbgout.h"
62
63 #ifdef WITH_ILP
64 #include "beilpsched.h"
65 #endif /* WITH_ILP */
66
67 /* options visible for anyone */
68 static be_options_t be_options = {
69         DUMP_NONE,                         /* dump flags */
70         BE_TIME_OFF,                       /* no timing */
71         0,                                 /* no opt profile */
72         1,                                 /* try to omit frame pointer */
73         0,                                 /* no stabs debugging output */
74         BE_VRFY_WARN,                      /* verification level: warn */
75         BE_SCHED_LIST,                     /* scheduler: list scheduler */
76         "i44pc52.info.uni-karlsruhe.de",   /* ilp server */
77         "cplex",                           /* ilp solver */
78         "",                                /* filename for statistic output */
79 };
80
81 /* config file. */
82 static char config_file[256] = { 0 };
83
84 /* back end instruction set architecture to use */
85 static const arch_isa_if_t *isa_if = NULL;
86
87 /* possible dumping options */
88 static const lc_opt_enum_mask_items_t dump_items[] = {
89         { "none",       DUMP_NONE },
90         { "initial",    DUMP_INITIAL },
91         { "abi",        DUMP_ABI    },
92         { "sched",      DUMP_SCHED  },
93         { "prepared",   DUMP_PREPARED },
94         { "regalloc",   DUMP_RA },
95         { "final",      DUMP_FINAL },
96         { "be",         DUMP_BE },
97         { "all",        2 * DUMP_BE - 1 },
98         { NULL,         0 }
99 };
100
101 /* verify options. */
102 static const lc_opt_enum_int_items_t vrfy_items[] = {
103         { "off",    BE_VRFY_OFF    },
104         { "warn",   BE_VRFY_WARN   },
105         { "assert", BE_VRFY_ASSERT },
106         { NULL,     0 }
107 };
108
109 /* scheduling options. */
110 static const lc_opt_enum_int_items_t sched_items[] = {
111         { "list", BE_SCHED_LIST },
112 #ifdef WITH_ILP
113         { "ilp",  BE_SCHED_ILP  },
114 #endif /* WITH_ILP */
115         { NULL,   0 }
116 };
117
118 static lc_opt_enum_mask_var_t dump_var = {
119         &be_options.dump_flags, dump_items
120 };
121
122 static lc_opt_enum_int_var_t vrfy_var = {
123         &be_options.vrfy_option, vrfy_items
124 };
125
126 static lc_opt_enum_int_var_t sched_var = {
127         &be_options.scheduler, sched_items
128 };
129
130 static const lc_opt_table_entry_t be_main_options[] = {
131         LC_OPT_ENT_STR      ("config",   "read another config file containing backend options", config_file, sizeof(config_file)),
132         LC_OPT_ENT_ENUM_MASK("dump",     "dump irg on several occasions",                       &dump_var),
133         LC_OPT_ENT_NEGBOOL  ("noomitfp", "do not omit frame pointer",                           &be_options.omit_fp),
134         LC_OPT_ENT_BOOL     ("stabs",    "enable stabs debug support",                          &be_options.stabs_debug_support),
135         LC_OPT_ENT_ENUM_PTR ("vrfy",     "verify the backend irg",                              &vrfy_var),
136         LC_OPT_ENT_BOOL     ("time",     "get backend timing statistics",                       &be_options.timing),
137         LC_OPT_ENT_BOOL     ("profile",  "instrument the code for execution count profiling",   &be_options.opt_profile),
138         LC_OPT_ENT_ENUM_PTR ("sched",    "select a scheduler",                                  &sched_var),
139         LC_OPT_ENT_STR      ("statfile", "append statistics to file statfile", &be_options.stat_file_name, sizeof(be_options.stat_file_name)),
140
141 #ifdef WITH_ILP
142         LC_OPT_ENT_STR ("ilp.server", "the ilp server name", be_options.ilp_server, sizeof(be_options.ilp_server)),
143         LC_OPT_ENT_STR ("ilp.solver", "the ilp solver name", be_options.ilp_solver, sizeof(be_options.ilp_solver)),
144 #endif /* WITH_ILP */
145         { NULL }
146 };
147
148 static be_module_list_entry_t *isa_ifs = NULL;
149
150 void be_register_isa_if(const char *name, const arch_isa_if_t *isa)
151 {
152         if(isa_if == NULL)
153                 isa_if = isa;
154
155         be_add_module_to_list(&isa_ifs, name, (void*) isa);
156 }
157
158 void be_opt_register(void)
159 {
160         lc_opt_entry_t *be_grp;
161         static int run_once = 0;
162
163         if (run_once) {
164                 return;
165         }
166         run_once     = 1;
167
168         be_init_modules();
169
170         be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
171         lc_opt_add_table(be_grp, be_main_options);
172
173         be_add_module_list_opt(be_grp, "isa", "the instruction set architecture",
174                                &isa_ifs, (void**) &isa_if);
175 }
176
177 /* Parse one argument. */
178 int be_parse_arg(const char *arg) {
179         lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
180         if (strcmp(arg, "help") == 0 || (arg[0] == '?' && arg[1] == '\0')) {
181                 lc_opt_print_help(be_grp, stdout);
182                 return -1;
183         }
184         return lc_opt_from_single_arg(be_grp, NULL, arg, NULL);
185 }
186
187 /** The be parameters returned by default, all off. */
188 const static backend_params be_params = {
189         NULL,
190         NULL,
191         0,
192         NULL,
193 };
194
195 /* Perform schedule verification if requested. */
196 static void be_sched_vrfy(be_irg_t *birg, int vrfy_opt) {
197         if (vrfy_opt == BE_VRFY_WARN) {
198                 be_verify_schedule(birg);
199         }
200         else if (vrfy_opt == BE_VRFY_ASSERT) {
201                 assert(be_verify_schedule(birg) && "Schedule verification failed.");
202         }
203 }
204
205 /* Initialize the Firm backend. Must be run BEFORE init_firm()! */
206 const backend_params *be_init(void)
207 {
208         be_opt_register();
209         be_init_modules();
210
211         if (isa_if->get_params)
212                 return isa_if->get_params();
213         return &be_params;
214 }
215
216 /**
217  * Initializes the main environment for the backend.
218  *
219  * @param env          an empty environment
220  * @param file_handle  the file handle where the output will be written to
221  */
222 static be_main_env_t *be_init_env(be_main_env_t *env, FILE *file_handle)
223 {
224         memset(env, 0, sizeof(*env));
225         obstack_init(&env->obst);
226         env->arch_env = obstack_alloc(&env->obst, sizeof(env->arch_env[0]));
227         env->options  = &be_options;
228
229         arch_env_init(env->arch_env, isa_if, file_handle, env);
230
231         /* Register the irn handler of the architecture */
232         if (arch_isa_get_irn_handler(env->arch_env->isa))
233                 arch_env_push_irn_handler(env->arch_env, arch_isa_get_irn_handler(env->arch_env->isa));
234
235         /*
236          * Register the node handler of the back end infrastructure.
237          * This irn handler takes care of the platform independent
238          * spill, reload and perm nodes.
239          */
240         arch_env_push_irn_handler(env->arch_env, &be_node_irn_handler);
241         env->phi_handler = be_phi_handler_new(env->arch_env);
242         arch_env_push_irn_handler(env->arch_env, env->phi_handler);
243
244         env->db_handle = be_options.stabs_debug_support ? be_stabs_open(file_handle) : be_nulldbg_open();
245         return env;
246 }
247
248 static void be_done_env(be_main_env_t *env)
249 {
250         env->arch_env->isa->impl->done(env->arch_env->isa);
251         be_dbg_close(env->db_handle);
252         be_phi_handler_free(env->phi_handler);
253         obstack_free(&env->obst, NULL);
254 }
255
256 /**
257  * A wrapper around a firm dumper. Dumps only, if
258  * flags are enabled.
259  *
260  * @param mask    a bitmask containing the reason what will be dumped
261  * @param irg     the IR graph to dump
262  * @param suffix  the suffix for the dumper
263  * @param dumper  the dumper to be called
264  */
265 static void dump(int mask, ir_graph *irg, const char *suffix,
266                  void (*dumper)(ir_graph *, const char *))
267 {
268         if(be_options.dump_flags & mask)
269                 be_dump(irg, suffix, dumper);
270 }
271
272 /**
273  * Prepare a backend graph for code generation and initialize its birg
274  */
275 static void initialize_birg(be_irg_t *birg, ir_graph *irg, be_main_env_t *env)
276 {
277         memset(birg, 0, sizeof(*birg));
278         birg->irg = irg;
279         birg->main_env = env;
280
281         edges_deactivate_kind(irg, EDGE_KIND_DEP);
282         edges_activate_kind(irg, EDGE_KIND_DEP);
283
284         dump(DUMP_INITIAL, irg, "-begin", dump_ir_block_graph);
285
286         be_stat_init_irg(env->arch_env, irg);
287         be_do_stat_nodes(irg, "01 Begin");
288
289         /* set the current graph (this is important for several firm functions) */
290         current_ir_graph = irg;
291
292         /* Normalize proj nodes. */
293         normalize_proj_nodes(irg);
294
295         /* Make just one return node. */
296         normalize_one_return(irg);
297
298         /* Remove critical edges */
299         remove_critical_cf_edges(irg);
300
301         /* Ensure, that the ir_edges are computed. */
302         edges_assure(irg);
303
304         /* reset the phi handler. */
305         be_phi_handler_reset(env->phi_handler);
306
307         set_irg_phase_state(irg, phase_backend);
308 }
309
310 #define BE_TIMER_PUSH(timer)                                                        \
311         if (be_options.timing == BE_TIME_ON) {                                          \
312                 int res = lc_timer_push(timer);                                             \
313                 if (be_options.vrfy_option == BE_VRFY_ASSERT)                               \
314                         assert(res && "Timer already on stack, cannot be pushed twice.");       \
315                 else if (be_options.vrfy_option == BE_VRFY_WARN && ! res)                   \
316                         fprintf(stderr, "Timer %s already on stack, cannot be pushed twice.\n", \
317                                 lc_timer_get_name(timer));                                          \
318         }
319 #define BE_TIMER_POP(timer)                                                                    \
320         if (be_options.timing == BE_TIME_ON) {                                                     \
321                 lc_timer_t *tmp = lc_timer_pop();                                                      \
322                 if (be_options.vrfy_option == BE_VRFY_ASSERT)                                          \
323                         assert(tmp == timer && "Attempt to pop wrong timer.");                             \
324                 else if (be_options.vrfy_option == BE_VRFY_WARN && tmp != timer)                       \
325                         fprintf(stderr, "Attempt to pop wrong timer. %s is on stack, trying to pop %s.\n", \
326                                 lc_timer_get_name(tmp), lc_timer_get_name(timer));                             \
327                 timer = tmp;                                                                           \
328         }
329
330 #define BE_TIMER_ONLY(code)   do { if (be_options.timing == BE_TIME_ON) { code; } } while(0)
331
332 /**
333  * The Firm backend main loop.
334  * Do architecture specific lowering for all graphs
335  * and call the architecture specific code generator.
336  *
337  * @param file_handle   the file handle the output will be written to
338  * @param cup_name      name of the compilation unit
339  */
340 static void be_main_loop(FILE *file_handle, const char *cup_name)
341 {
342         int i;
343         arch_isa_t *isa;
344         be_main_env_t env;
345         unsigned num_nodes_b = 0;
346         unsigned num_nodes_a = 0;
347         unsigned num_nodes_r = 0;
348         char prof_filename[256];
349         static const char suffix[] = ".prof";
350         be_irg_t *birgs;
351         unsigned num_birgs;
352         ir_graph **irg_list, **backend_irg_list;
353
354         lc_timer_t *t_abi      = NULL;
355         lc_timer_t *t_codegen  = NULL;
356         lc_timer_t *t_sched    = NULL;
357         lc_timer_t *t_constr   = NULL;
358         lc_timer_t *t_regalloc = NULL;
359         lc_timer_t *t_finish   = NULL;
360         lc_timer_t *t_emit     = NULL;
361         lc_timer_t *t_other    = NULL;
362         lc_timer_t *t_verify   = NULL;
363
364         if (be_options.timing == BE_TIME_ON) {
365                 t_abi      = lc_timer_register("beabi",    "be abi introduction");
366                 t_codegen  = lc_timer_register("codegen",  "codegeneration");
367                 t_sched    = lc_timer_register("sched",    "scheduling");
368                 t_constr   = lc_timer_register("constr",   "assure constraints");
369                 t_regalloc = lc_timer_register("regalloc", "register allocation");
370                 t_finish   = lc_timer_register("finish",   "graph finish");
371                 t_emit     = lc_timer_register("emiter",   "code emiter");
372                 t_verify   = lc_timer_register("verify",   "graph verification");
373                 t_other    = lc_timer_register("other",    "other");
374         }
375
376         be_init_env(&env, file_handle);
377
378         isa = arch_env_get_isa(env.arch_env);
379
380         be_dbg_so(env.db_handle, cup_name);
381         be_dbg_types(env.db_handle);
382
383         /* backend may provide an ordered list of irgs where code should be generated for */
384         irg_list         = NEW_ARR_F(ir_graph *, 0);
385         backend_irg_list = arch_isa_get_backend_irg_list(isa, &irg_list);
386
387         /* we might need 1 birg more for instrumentation constructor */
388         num_birgs = backend_irg_list ? ARR_LEN(backend_irg_list) : get_irp_n_irgs();
389         birgs     = alloca(sizeof(birgs[0]) * (num_birgs + 1));
390
391         /* First: initialize all birgs */
392         for(i = 0; i < num_birgs; ++i) {
393                 ir_graph *irg = backend_irg_list ? backend_irg_list[i] : get_irp_irg(i);
394                 initialize_birg(&birgs[i], irg, &env);
395         }
396         DEL_ARR_F(irg_list);
397
398         /*
399                 Get the filename for the profiling data.
400                 Beware: '\0' is already included in sizeof(suffix)
401         */
402         memset(prof_filename, 0, sizeof(prof_filename));
403         strncpy(prof_filename, cup_name, sizeof(prof_filename) - sizeof(suffix));
404         strcat(prof_filename, suffix);
405
406         /*
407                 Next: Either instruments all irgs with profiling code
408                 or try to read in profile data for current translation unit.
409         */
410         if (be_options.opt_profile) {
411                 ir_graph *prof_init_irg = be_profile_instrument(prof_filename, profile_default);
412                 initialize_birg(&birgs[num_birgs], prof_init_irg, &env);
413                 num_birgs++;
414                 set_method_img_section(get_irg_entity(prof_init_irg), section_constructors);
415         } else {
416                 be_profile_read(prof_filename);
417         }
418
419         /* For all graphs */
420         for (i = 0; i < num_birgs; ++i) {
421                 be_irg_t *birg = &birgs[i];
422                 ir_graph *irg  = birg->irg;
423                 optimization_state_t state;
424                 const arch_code_generator_if_t *cg_if;
425                 char irg_name[128];
426
427                 /* set the current graph (this is important for several firm functions) */
428                 current_ir_graph = irg;
429
430 #ifdef FIRM_STATISTICS
431                 if(be_stat_ev_is_active()) {
432                         ir_snprintf(irg_name, sizeof(irg_name), "%F", irg);
433                         be_stat_tags[STAT_TAG_CLS] = "<all>";
434                         be_stat_tags[STAT_TAG_IRG] = irg_name;
435                         be_stat_ev_push(be_stat_tags, STAT_TAG_LAST, be_stat_file);
436                 }
437 #endif
438
439                 /* stop and reset timers */
440                 BE_TIMER_ONLY(
441                         LC_STOP_AND_RESET_TIMER(t_abi);
442                         LC_STOP_AND_RESET_TIMER(t_codegen);
443                         LC_STOP_AND_RESET_TIMER(t_sched);
444                         LC_STOP_AND_RESET_TIMER(t_constr);
445                         LC_STOP_AND_RESET_TIMER(t_regalloc);
446                         LC_STOP_AND_RESET_TIMER(t_finish);
447                         LC_STOP_AND_RESET_TIMER(t_emit);
448                         LC_STOP_AND_RESET_TIMER(t_verify);
449                         LC_STOP_AND_RESET_TIMER(t_other);
450                 );
451                 BE_TIMER_PUSH(t_other);   /* t_other */
452
453                 /* Verify the initial graph */
454                 BE_TIMER_PUSH(t_verify);
455                 if (be_options.vrfy_option == BE_VRFY_WARN) {
456                         irg_verify(irg, VRFY_ENFORCE_SSA);
457                         be_check_dominance(irg);
458                 } else if (be_options.vrfy_option == BE_VRFY_ASSERT) {
459                         assert(irg_verify(irg, VRFY_ENFORCE_SSA) && "irg verification failed");
460                         assert(be_check_dominance(irg) && "Dominance verification failed");
461                 }
462                 BE_TIMER_POP(t_verify);
463
464                 BE_TIMER_ONLY(num_nodes_b = get_num_reachable_nodes(irg));
465
466                 /* Get the code generator interface. */
467                 cg_if = isa->impl->get_code_generator_if(isa);
468
469                 /* get a code generator for this graph. */
470                 birg->cg = cg_if->init(birg);
471
472                 /* some transformations need to be done before abi introduce */
473                 arch_code_generator_before_abi(birg->cg);
474
475                 /* reset the phi handler. */
476                 be_phi_handler_reset(env.phi_handler);
477
478                 /* implement the ABI conventions. */
479                 BE_TIMER_PUSH(t_abi);
480                 birg->abi = be_abi_introduce(birg);
481                 BE_TIMER_POP(t_abi);
482
483                 dump(DUMP_ABI, irg, "-abi", dump_ir_block_graph);
484                 be_do_stat_nodes(irg, "02 Abi");
485
486                 if (be_options.vrfy_option == BE_VRFY_WARN) {
487                         be_check_dominance(irg);
488                         be_verify_out_edges(irg);
489                 } else if (be_options.vrfy_option == BE_VRFY_ASSERT) {
490                         assert(be_verify_out_edges(irg));
491                         assert(be_check_dominance(irg) && "Dominance verification failed");
492                 }
493
494                 /* generate code */
495                 BE_TIMER_PUSH(t_codegen);
496                 arch_code_generator_prepare_graph(birg->cg);
497                 BE_TIMER_POP(t_codegen);
498
499                 be_do_stat_nodes(irg, "03 Prepare");
500
501                 dump(DUMP_PREPARED, irg, "-prepared", dump_ir_block_graph);
502                 BE_TIMER_ONLY(num_nodes_r = get_num_reachable_nodes(irg));
503
504                 if (be_options.vrfy_option == BE_VRFY_WARN) {
505                         be_check_dominance(irg);
506                         be_verify_out_edges(irg);
507                 } else if (be_options.vrfy_option == BE_VRFY_ASSERT) {
508                         assert(be_verify_out_edges(irg));
509                         assert(be_check_dominance(irg) && "Dominance verification failed");
510                 }
511
512                 /**
513                  * Create execution frequencies from profile data or estimate some
514                  */
515                 if (be_profile_has_data()) {
516                         birg->exec_freq = be_create_execfreqs_from_profile(irg);
517                 } else {
518                         birg->exec_freq = compute_execfreq(irg, 10);
519                 }
520
521                 /* let backend prepare scheduling */
522                 BE_TIMER_PUSH(t_codegen);
523                 arch_code_generator_before_sched(birg->cg);
524                 BE_TIMER_POP(t_codegen);
525
526                 /* schedule the irg */
527                 BE_TIMER_PUSH(t_sched);
528                 switch (be_options.scheduler) {
529                         default:
530                                 fprintf(stderr, "Warning: invalid scheduler (%d) selected, falling back to list scheduler.\n", be_options.scheduler);
531                         case BE_SCHED_LIST:
532                                 list_sched(birg, &be_options);
533                                 break;
534 #ifdef WITH_ILP
535                         case BE_SCHED_ILP:
536                                 be_ilp_sched(birg, &be_options);
537                                 break;
538 #endif /* WITH_ILP */
539                 };
540                 BE_TIMER_POP(t_sched);
541
542                 dump(DUMP_SCHED, irg, "-sched", dump_ir_block_graph_sched);
543
544                 /* check schedule */
545                 BE_TIMER_PUSH(t_verify);
546                 be_sched_vrfy(birg, be_options.vrfy_option);
547                 BE_TIMER_POP(t_verify);
548
549                 be_do_stat_nodes(irg, "04 Schedule");
550
551                 /* introduce patterns to assure constraints */
552                 BE_TIMER_PUSH(t_constr);
553                 /* we switch off optimizations here, because they might cause trouble */
554                 save_optimization_state(&state);
555                 set_optimize(0);
556                 set_opt_normalize(0);
557
558                 /* add Keeps for should_be_different constrained nodes  */
559                 /* beware: needs schedule due to usage of be_ssa_constr */
560                 assure_constraints(birg);
561                 BE_TIMER_POP(t_constr);
562
563                 dump(DUMP_SCHED, irg, "-assured", dump_ir_block_graph_sched);
564                 be_do_stat_nodes(irg, "05 Constraints");
565
566                 /* stuff needs to be done after scheduling but before register allocation */
567                 BE_TIMER_PUSH(t_codegen);
568                 arch_code_generator_before_ra(birg->cg);
569                 BE_TIMER_POP(t_codegen);
570
571                 /* connect all stack modifying nodes together (see beabi.c) */
572                 BE_TIMER_PUSH(t_abi);
573                 be_abi_fix_stack_nodes(birg->abi);
574                 BE_TIMER_POP(t_abi);
575
576                 dump(DUMP_SCHED, irg, "-fix_stack", dump_ir_block_graph_sched);
577
578                 /* check schedule */
579                 BE_TIMER_PUSH(t_verify);
580                 be_sched_vrfy(birg, be_options.vrfy_option);
581                 BE_TIMER_POP(t_verify);
582
583                 /* do some statistics */
584                 be_do_stat_reg_pressure(birg);
585
586 #ifdef FIRM_STATISTICS
587                 if(be_stat_ev_is_active()) {
588                         be_stat_ev_l("costs_before_ra",
589                                         (long) be_estimate_irg_costs(irg, env.arch_env, birg->exec_freq));
590                 }
591 #endif
592
593                 /* Do register allocation */
594                 BE_TIMER_PUSH(t_regalloc);
595                 be_allocate_registers(birg);
596                 BE_TIMER_POP(t_regalloc);
597
598 #ifdef FIRM_STATISTICS
599                 if(be_stat_ev_is_active()) {
600                         be_stat_ev_l("costs_after_ra",
601                                         (long) be_estimate_irg_costs(irg, env.arch_env, birg->exec_freq));
602                 }
603 #endif
604
605                 dump(DUMP_RA, irg, "-ra", dump_ir_block_graph_sched);
606                 be_do_stat_nodes(irg, "06 Register Allocation");
607
608                 /* let the code generator prepare the graph for emitter */
609                 BE_TIMER_PUSH(t_finish);
610                 arch_code_generator_after_ra(birg->cg);
611                 BE_TIMER_POP(t_finish);
612
613                 /* fix stack offsets */
614                 BE_TIMER_PUSH(t_abi);
615                 be_abi_fix_stack_nodes(birg->abi);
616                 be_remove_dead_nodes_from_schedule(irg);
617                 be_abi_fix_stack_bias(birg->abi);
618                 BE_TIMER_POP(t_abi);
619
620                 dump(DUMP_SCHED, irg, "-fix_stack_after_ra", dump_ir_block_graph_sched);
621
622                 BE_TIMER_PUSH(t_finish);
623                 arch_code_generator_finish(birg->cg);
624                 BE_TIMER_POP(t_finish);
625
626                 dump(DUMP_FINAL, irg, "-finish", dump_ir_block_graph_sched);
627
628                 /* check schedule and register allocation */
629                 BE_TIMER_PUSH(t_verify);
630                 if (be_options.vrfy_option == BE_VRFY_WARN) {
631                         irg_verify(irg, VRFY_ENFORCE_SSA);
632                         be_check_dominance(irg);
633                         be_verify_out_edges(irg);
634                         be_verify_schedule(birg);
635                         be_verify_register_allocation(env.arch_env, irg);
636                 } else if (be_options.vrfy_option == BE_VRFY_ASSERT) {
637                         assert(irg_verify(irg, VRFY_ENFORCE_SSA) && "irg verification failed");
638                         assert(be_verify_out_edges(irg) && "out edge verification failed");
639                         assert(be_check_dominance(irg) && "Dominance verification failed");
640                         assert(be_verify_schedule(birg) && "Schedule verification failed");
641                         assert(be_verify_register_allocation(env.arch_env, irg)
642                                && "register allocation verification failed");
643
644                 }
645                 BE_TIMER_POP(t_verify);
646
647                 /* emit assembler code */
648                 BE_TIMER_PUSH(t_emit);
649                 arch_code_generator_done(birg->cg);
650                 BE_TIMER_POP(t_emit);
651
652                 dump(DUMP_FINAL, irg, "-end", dump_ir_block_graph_sched);
653
654                 BE_TIMER_PUSH(t_abi);
655                 be_abi_free(birg->abi);
656                 BE_TIMER_POP(t_abi);
657
658                 be_do_stat_nodes(irg, "07 Final");
659                 restore_optimization_state(&state);
660
661                 BE_TIMER_ONLY(num_nodes_a = get_num_reachable_nodes(irg));
662                 BE_TIMER_POP(t_other);
663
664 #define LC_EMIT(timer)  \
665         if(!be_stat_ev_is_active()) { \
666                 printf("%-20s: %.3lf msec\n", lc_timer_get_description(timer), (double)lc_timer_elapsed_usec(timer) / 1000.0); \
667         } else { \
668                 be_stat_ev_l(lc_timer_get_name(timer), lc_timer_elapsed_msec(timer)); \
669         }
670 #define LC_EMIT_RA(timer) \
671         if(!be_stat_ev_is_active()) { \
672                 printf("\t%-20s: %.3lf msec\n", lc_timer_get_description(timer), (double)lc_timer_elapsed_usec(timer) / 1000.0); \
673         } else { \
674                 be_stat_ev_l(lc_timer_get_name(timer), lc_timer_elapsed_msec(timer)); \
675         }
676                 BE_TIMER_ONLY(
677                         if(!be_stat_ev_is_active()) {
678                                 printf("==>> IRG %s <<==\n", get_entity_name(get_irg_entity(irg)));
679                                 printf("# nodes at begin:  %u\n", num_nodes_b);
680                                 printf("# nodes before ra: %u\n", num_nodes_r);
681                                 printf("# nodes at end:    %u\n\n", num_nodes_a);
682                         }
683                         LC_EMIT(t_abi);
684                         LC_EMIT(t_codegen);
685                         LC_EMIT(t_sched);
686                         LC_EMIT(t_constr);
687                         LC_EMIT(t_regalloc);
688                         if(global_ra_timer != NULL) {
689                                 LC_EMIT_RA(global_ra_timer->t_prolog);
690                                 LC_EMIT_RA(global_ra_timer->t_live);
691                                 LC_EMIT_RA(global_ra_timer->t_spill);
692                                 LC_EMIT_RA(global_ra_timer->t_spillslots);
693                                 LC_EMIT_RA(global_ra_timer->t_color);
694                                 LC_EMIT_RA(global_ra_timer->t_ifg);
695                                 LC_EMIT_RA(global_ra_timer->t_copymin);
696                                 LC_EMIT_RA(global_ra_timer->t_ssa);
697                                 LC_EMIT_RA(global_ra_timer->t_epilog);
698                                 LC_EMIT_RA(global_ra_timer->t_verify);
699                                 LC_EMIT_RA(global_ra_timer->t_other);
700                         }
701                         LC_EMIT(t_finish);
702                         LC_EMIT(t_emit);
703                         LC_EMIT(t_verify);
704                         LC_EMIT(t_other);
705                 );
706 #undef LC_EMIT_RA
707 #undef LC_EMIT
708
709                 be_free_birg(birg);
710
711         /* switched off due to statistics (statistic module needs all irgs) */
712 #if 0   /* STA needs irgs */
713 #ifdef FIRM_STATISTICS
714                 if (! stat_is_active())
715 #endif /* FIRM_STATISTICS */
716                         free_ir_graph(irg);
717 #endif /* if 0 */
718                 if(be_stat_ev_is_active()) {
719                         be_stat_ev_pop();
720                 }
721         }
722         be_profile_free();
723         be_done_env(&env);
724
725 #undef BE_TIMER_POP
726 #undef BE_TIMER_PUSH
727 #undef BE_TIMER_ONLY
728 }
729
730 /* Main interface to the frontend. */
731 void be_main(FILE *file_handle, const char *cup_name)
732 {
733         lc_timer_t *t = NULL;
734
735         /* The user specified another config file to read. do that now. */
736         if(strlen(config_file) > 0) {
737                 FILE *f;
738
739                 if((f = fopen(config_file, "rt")) != NULL) {
740                         lc_opt_from_file(config_file, f, NULL);
741                         fclose(f);
742                 }
743         }
744
745         if (be_options.timing == BE_TIME_ON) {
746                 t = lc_timer_register("bemain", "measure complete bemain loop");
747
748                 if (lc_timer_enter_high_priority()) {
749                         fprintf(stderr, "Warning: Could not enter high priority mode.\n");
750                 }
751
752                 lc_timer_reset_and_start(t);
753         }
754
755 #ifdef FIRM_STATISTICS
756         be_init_stat_file(be_options.stat_file_name, cup_name);
757 #endif
758
759         /* never build code for pseudo irgs */
760         set_visit_pseudo_irgs(0);
761
762         be_node_init();
763
764         be_main_loop(file_handle, cup_name);
765
766         if (be_options.timing == BE_TIME_ON) {
767                 lc_timer_stop(t);
768                 lc_timer_leave_high_priority();
769                 if(be_stat_ev_is_active()) {
770                         be_stat_ev_l("backend_time", lc_timer_elapsed_msec(t));
771                 } else {
772                         printf("%-20s: %lu msec\n", "BEMAINLOOP", lc_timer_elapsed_msec(t));
773                 }
774         }
775
776 #ifdef FIRM_STATISTICS
777         be_close_stat_file();
778 #endif
779 }
780
781 /** The debug info retriever function. */
782 static retrieve_dbg_func retrieve_dbg = NULL;
783
784 /* Sets a debug info retriever. */
785 void be_set_debug_retrieve(retrieve_dbg_func func) {
786         retrieve_dbg = func;
787 }
788
789 /* Retrieve the debug info. */
790 const char *be_retrieve_dbg_info(const dbg_info *dbg, unsigned *line) {
791         if (retrieve_dbg)
792                 return retrieve_dbg(dbg, line);
793
794         *line = 0;
795         return NULL;
796 }
797
798 int be_put_ignore_regs(const be_irg_t *birg, const arch_register_class_t *cls, bitset_t *bs)
799 {
800         if(bs == NULL)
801                 bs = bitset_alloca(cls->n_regs);
802         else
803                 bitset_clear_all(bs);
804
805         assert(bitset_size(bs) == (unsigned) cls->n_regs);
806         arch_put_non_ignore_regs(birg->main_env->arch_env, cls, bs);
807         bitset_flip_all(bs);
808         be_abi_put_ignore_regs(birg->abi, cls, bs);
809
810         return bitset_popcnt(bs);
811 }