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