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