- at blockstart emit list of predblocks in 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
13 #ifdef WITH_LIBCORE
14 #include <libcore/lc_opts.h>
15 #include <libcore/lc_opts_enum.h>
16 #include <libcore/lc_timing.h>
17 #endif /* WITH_LIBCORE */
18
19 #include "obst.h"
20 #include "bitset.h"
21
22 #include "irprog.h"
23 #include "irgopt.h"
24 #include "irgraph.h"
25 #include "irdump.h"
26 #include "phiclass.h"
27 #include "irdom_t.h"
28 #include "iredges_t.h"
29 #include "irloop_t.h"
30 #include "irtools.h"
31 #include "return.h"
32 #include "firmstat.h"
33
34 #include "bearch.h"
35 #include "firm/bearch_firm.h"
36 #include "ia32/bearch_ia32.h"
37 #include "arm/bearch_arm.h"
38 #include "ppc32/bearch_ppc32.h"
39 #include "mips/bearch_mips.h"
40
41 #include "be_t.h"
42 #include "benumb_t.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
64 /* options visible for anyone */
65 static be_options_t be_options = {
66         DUMP_NONE,                         /* dump options */
67         BE_TIME_OFF,                       /* no timing */
68         BE_SCHED_SELECT_HEUR,              /* mueller heuristic selector */
69         0,                                 /* disable mris */
70         "i44pc52.info.uni-karlsruhe.de",   /* ilp server */
71         "cplex"                            /* ilp solver */
72 };
73
74 /* dump flags */
75 static unsigned dump_flags = 0;
76
77 /* verify options */
78 static int vrfy_option = BE_VRFY_WARN;
79
80 /* register allocator to use. */
81 static const be_ra_t *ra = &be_ra_chordal_allocator;
82
83 /* back end instruction set architecture to use */
84 static const arch_isa_if_t *isa_if = &ia32_isa_if;
85
86 #ifdef WITH_LIBCORE
87
88 static lc_opt_entry_t *be_grp_root = NULL;
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 /* register allocators */
105 static const lc_opt_enum_const_ptr_items_t ra_items[] = {
106         { "chordal",  &be_ra_chordal_allocator },
107         { "external", &be_ra_external_allocator },
108         { NULL,      NULL }
109 };
110
111 /* instruction set architectures. */
112 static const lc_opt_enum_const_ptr_items_t isa_items[] = {
113         { "ia32",    &ia32_isa_if },
114 #if 0
115         { "arm",     &arm_isa_if },
116         { "ppc32",   &ppc32_isa_if },
117         { "mips",    &mips_isa_if },
118 #endif
119         { NULL,      NULL }
120 };
121
122 /* verify options. */
123 static const lc_opt_enum_int_items_t vrfy_items[] = {
124         { "off",    BE_VRFY_OFF    },
125         { "warn",   BE_VRFY_WARN   },
126         { "assert", BE_VRFY_ASSERT },
127         { NULL,     0 }
128 };
129
130 /* schedule selector options. */
131 static const lc_opt_enum_int_items_t sched_select_items[] = {
132         { "isa",      BE_SCHED_SELECT_ISA      },
133         { "muchnik",  BE_SCHED_SELECT_MUCHNIK  },
134         { "heur",     BE_SCHED_SELECT_HEUR     },
135         { "hmuchnik", BE_SCHED_SELECT_HMUCHNIK },
136         { NULL,     0 }
137 };
138
139 static lc_opt_enum_mask_var_t dump_var = {
140         &dump_flags, dump_items
141 };
142
143 static lc_opt_enum_const_ptr_var_t ra_var = {
144         (const void **) &ra, ra_items
145 };
146
147 static lc_opt_enum_const_ptr_var_t isa_var = {
148         (const void **) &isa_if, isa_items
149 };
150
151 static lc_opt_enum_int_var_t vrfy_var = {
152         &vrfy_option, vrfy_items
153 };
154
155 static lc_opt_enum_int_var_t sched_select_var = {
156         &be_options.sched_select, sched_select_items
157 };
158
159 static const lc_opt_table_entry_t be_main_options[] = {
160         LC_OPT_ENT_ENUM_MASK("dump",         "dump irg on several occasions",     &dump_var),
161         LC_OPT_ENT_ENUM_PTR ("ra",           "register allocator",                &ra_var),
162         LC_OPT_ENT_ENUM_PTR ("isa",          "the instruction set architecture",  &isa_var),
163         LC_OPT_ENT_NEGBOOL  ("noomitfp",     "do not omit frame pointer",         &be_omit_fp),
164         LC_OPT_ENT_ENUM_PTR ("vrfy",         "verify the backend irg (off, warn, assert)",  &vrfy_var),
165         LC_OPT_ENT_BOOL     ("time",         "get backend timing statistics",     &be_options.timing),
166         LC_OPT_ENT_BOOL     ("sched.mris",   "enable mris schedule preparation",  &be_options.mris),
167         LC_OPT_ENT_ENUM_PTR ("sched.select", "schedule node selector (isa, muchnik, heur, hmuchnik)",&sched_select_var),
168
169 #ifdef WITH_ILP
170         LC_OPT_ENT_STR ("ilp.server", "the ilp server name", be_options.ilp_server, sizeof(be_options.ilp_server)),
171         LC_OPT_ENT_STR ("ilp.solver", "the ilp solver name", be_options.ilp_solver, sizeof(be_options.ilp_solver)),
172 #endif /* WITH_ILP */
173         { NULL }
174 };
175
176 #endif /* WITH_LIBCORE */
177
178 void be_opt_register(void)
179 {
180 #ifdef WITH_LIBCORE
181         int i;
182         lc_opt_entry_t *be_grp_ra;
183         static int run_once = 0;
184
185         if (! run_once) {
186                 run_once    = 1;
187                 be_grp_root = lc_opt_get_grp(firm_opt_get_root(), "be");
188                 be_grp_ra   = lc_opt_get_grp(be_grp_root, "ra");
189
190                 lc_opt_add_table(be_grp_root, be_main_options);
191
192                 /* register allocator options */
193                 for(i = 0; ra_items[i].name != NULL; ++i) {
194                         const be_ra_t *ra = ra_items[i].value;
195                         ra->register_options(be_grp_ra);
196                 }
197
198                 /* register isa options */
199                 for(i = 0; isa_items[i].name != NULL; ++i) {
200                         const arch_isa_if_t *isa = isa_items[i].value;
201                         isa->register_options(be_grp_root);
202                 }
203         }
204 #endif /* WITH_LIBCORE */
205 }
206
207 /* Parse one argument. */
208 int be_parse_arg(const char *arg) {
209 #ifdef WITH_LIBCORE
210         if (strcmp(arg, "help") == 0 || (arg[0] == '?' && arg[1] == '\0')) {
211                 lc_opt_print_help(be_grp_root, stdout);
212                 return -1;
213         }
214         return lc_opt_from_single_arg(be_grp_root, NULL, arg, NULL);
215 #else
216         return 0;
217 #endif /* WITH_LIBCORE */
218 }
219
220 /** The be parameters returned by default, all off. */
221 const static backend_params be_params = {
222         NULL,
223         NULL,
224         0,
225         NULL,
226 };
227
228 /* Perform schedule verification if requested. */
229 static void be_sched_vrfy(ir_graph *irg, int vrfy_opt) {
230         if (vrfy_opt == BE_VRFY_WARN) {
231                 be_verify_schedule(irg);
232         }
233         else if (vrfy_opt == BE_VRFY_ASSERT) {
234                 assert(be_verify_schedule(irg) && "Schedule verification failed.");
235         }
236 }
237
238 /* Initialize the Firm backend. Must be run BEFORE init_firm()! */
239 const backend_params *be_init(void)
240 {
241         be_opt_register();
242
243         be_sched_init();
244         be_numbering_init();
245         be_copy_opt_init();
246         copystat_init();
247         phi_class_init();
248
249         if (isa_if->get_params)
250                 return isa_if->get_params();
251         return &be_params;
252 }
253
254 /**
255  * Initializes the main environment for the backend.
256  *
257  * @param env          an empty environment
258  * @param file_handle  the file handle where the output will be written to
259  */
260 static be_main_env_t *be_init_env(be_main_env_t *env, FILE *file_handle)
261 {
262         memset(env, 0, sizeof(*env));
263         obstack_init(&env->obst);
264         env->arch_env = obstack_alloc(&env->obst, sizeof(env->arch_env[0]));
265         env->options  = &be_options;
266         env->options->dump_flags = dump_flags;
267         FIRM_DBG_REGISTER(env->dbg, "be.main");
268
269         arch_env_init(env->arch_env, isa_if, file_handle);
270
271         /* Register the irn handler of the architecture */
272         if (arch_isa_get_irn_handler(env->arch_env->isa))
273                 arch_env_push_irn_handler(env->arch_env, arch_isa_get_irn_handler(env->arch_env->isa));
274
275         /*
276          * Register the node handler of the back end infrastructure.
277          * This irn handler takes care of the platform independent
278          * spill, reload and perm nodes.
279          */
280         arch_env_push_irn_handler(env->arch_env, &be_node_irn_handler);
281         env->phi_handler = be_phi_handler_new(env->arch_env);
282         arch_env_push_irn_handler(env->arch_env, env->phi_handler);
283
284         return env;
285 }
286
287 static void be_done_env(be_main_env_t *env)
288 {
289         env->arch_env->isa->impl->done(env->arch_env->isa);
290         be_phi_handler_free(env->phi_handler);
291         obstack_free(&env->obst, NULL);
292 }
293
294 /**
295  * A wrapper around a firm dumper. Dumps only, if
296  * flags are enabled.
297  *
298  * @param mask    a bitmask containing the reason what will be dumped
299  * @param irg     the IR graph to dump
300  * @param suffix  the suffix for the dumper
301  * @param dumper  the dumper to be called
302  */
303 static void dump(int mask, ir_graph *irg, const char *suffix,
304                  void (*dumper)(ir_graph *, const char *))
305 {
306         if(dump_flags & mask)
307                 be_dump(irg, suffix, dumper);
308 }
309
310 /**
311  * Prepare a backend graph for code generation.
312  */
313 static void prepare_graph(be_irg_t *birg)
314 {
315         ir_graph *irg = birg->irg;
316
317         /* Normalize proj nodes. */
318         normalize_proj_nodes(irg);
319
320         /* Make just one return node. */
321         normalize_one_return(irg);
322
323         /* Remove critical edges */
324         remove_critical_cf_edges(irg);
325
326         /* Compute the dominance information. */
327         free_dom(irg);
328         compute_doms(irg);
329
330         /* Ensure, that the ir_edges are computed. */
331         edges_activate(irg);
332
333         /* check, if the dominance property is fulfilled. */
334         be_check_dominance(irg);
335
336         /* reset the phi handler. */
337         be_phi_handler_reset(birg->main_env->phi_handler);
338 }
339
340 /**
341  * The Firm backend main loop.
342  * Do architecture specific lowering for all graphs
343  * and call the architecture specific code generator.
344  *
345  * @param file_handle   the file handle the output will be written to
346  */
347 static void be_main_loop(FILE *file_handle)
348 {
349         int i, n;
350         arch_isa_t *isa;
351         be_main_env_t env;
352         unsigned num_nodes_b = 0;
353         unsigned num_nodes_a = 0;
354         unsigned num_nodes_r = 0;
355         lc_timer_t *t_prolog, *t_abi, *t_codegen, *t_sched, *t_constr, *t_regalloc, *t_finish, *t_emit, *t_other, *t_verify;
356         be_ra_timer_t *ra_timer;
357
358         if (be_options.timing == BE_TIME_ON) {
359                 t_prolog   = lc_timer_register("prolog",   "prolog");
360                 t_abi      = lc_timer_register("beabi",    "be abi introduction");
361                 t_codegen  = lc_timer_register("codegen",  "codegeneration");
362                 t_sched    = lc_timer_register("sched",    "scheduling");
363                 t_constr   = lc_timer_register("constr",   "assure constraints");
364                 t_regalloc = lc_timer_register("regalloc", "register allocation");
365                 t_finish   = lc_timer_register("finish",   "graph finish");
366                 t_emit     = lc_timer_register("emiter",   "code emiter");
367                 t_verify   = lc_timer_register("verify",   "graph verification");
368                 t_other    = lc_timer_register("other",    "other");
369         }
370
371         be_init_env(&env, file_handle);
372
373         isa = arch_env_get_isa(env.arch_env);
374
375         /* for debugging, anchors helps */
376         // dump_all_anchors(1);
377
378 #define BE_TIMER_PUSH(timer)                                                        \
379         if (be_options.timing == BE_TIME_ON) {                                          \
380                 int res = lc_timer_push(timer);                                             \
381                 if (vrfy_option == BE_VRFY_ASSERT)                                          \
382                         assert(res && "Timer already on stack, cannot be pushed twice.");       \
383                 else if (vrfy_option == BE_VRFY_WARN && ! res)                              \
384                         fprintf(stderr, "Timer %s already on stack, cannot be pushed twice.\n", \
385                                 lc_timer_get_name(timer));                                          \
386         }
387 #define BE_TIMER_POP(timer)                                                                    \
388         if (be_options.timing == BE_TIME_ON) {                                                     \
389                 lc_timer_t *tmp = lc_timer_pop();                                                      \
390                 if (vrfy_option == BE_VRFY_ASSERT)                                                     \
391                         assert(tmp == timer && "Attempt to pop wrong timer.");                             \
392                 else if (vrfy_option == BE_VRFY_WARN && tmp != timer)                                  \
393                         fprintf(stderr, "Attempt to pop wrong timer. %s is on stack, trying to pop %s.\n", \
394                                 lc_timer_get_name(tmp), lc_timer_get_name(timer));                             \
395                 timer = tmp;                                                                           \
396         }
397
398 #define BE_TIMER_ONLY(code)   if (be_options.timing == BE_TIME_ON) do { code; } while(0)
399
400         /* For all graphs */
401         for (i = 0, n = get_irp_n_irgs(); i < n; ++i) {
402                 ir_graph *irg = get_irp_irg(i);
403                 const arch_code_generator_if_t *cg_if;
404                 be_irg_t birg;
405                 optimization_state_t state;
406
407                 /* stop and reset timers */
408                 if (be_options.timing == BE_TIME_ON) {
409                         LC_STOP_AND_RESET_TIMER(t_prolog);
410                         LC_STOP_AND_RESET_TIMER(t_abi);
411                         LC_STOP_AND_RESET_TIMER(t_codegen);
412                         LC_STOP_AND_RESET_TIMER(t_sched);
413                         LC_STOP_AND_RESET_TIMER(t_constr);
414                         LC_STOP_AND_RESET_TIMER(t_regalloc);
415                         LC_STOP_AND_RESET_TIMER(t_finish);
416                         LC_STOP_AND_RESET_TIMER(t_emit);
417                         LC_STOP_AND_RESET_TIMER(t_verify);
418                         LC_STOP_AND_RESET_TIMER(t_other);
419                 }
420                 BE_TIMER_PUSH(t_other);   /* t_other */
421
422                 BE_TIMER_ONLY(num_nodes_b = get_num_reachable_nodes(irg));
423
424                 birg.irg      = irg;
425                 birg.main_env = &env;
426
427                 DBG((env.dbg, LEVEL_2, "====> IRG: %F\n", irg));
428                 dump(DUMP_INITIAL, irg, "-begin", dump_ir_block_graph);
429
430                 BE_TIMER_PUSH(t_prolog);
431
432                 be_stat_init_irg(env.arch_env, irg);
433                 be_do_stat_nodes(irg, "01 Begin");
434
435                 /* set the current graph (this is important for several firm functions) */
436                 current_ir_graph = birg.irg;
437
438                 /* Get the code generator interface. */
439                 cg_if = isa->impl->get_code_generator_if(isa);
440
441                 /* get a code generator for this graph. */
442                 birg.cg = cg_if->init(&birg);
443
444                 /* create the code generator and generate code. */
445                 prepare_graph(&birg);
446
447                 BE_TIMER_POP(t_prolog);
448
449                 /* some transformations need to be done before abi introduce */
450                 BE_TIMER_PUSH(t_codegen);
451                 arch_code_generator_before_abi(birg.cg);
452                 BE_TIMER_POP(t_codegen);
453
454                 /* implement the ABI conventions. */
455                 BE_TIMER_PUSH(t_abi);
456                 birg.abi = be_abi_introduce(&birg);
457                 BE_TIMER_POP(t_abi);
458
459                 dump(DUMP_ABI, irg, "-abi", dump_ir_block_graph);
460                 be_do_stat_nodes(irg, "02 Abi");
461
462                 /* generate code */
463                 BE_TIMER_PUSH(t_codegen);
464                 arch_code_generator_prepare_graph(birg.cg);
465                 BE_TIMER_POP(t_codegen);
466
467                 be_do_stat_nodes(irg, "03 Prepare");
468
469                 /*
470                  * Since the code generator made a lot of new nodes and skipped
471                  * a lot of old ones, we should do dead node elimination here.
472                  * Note that this requires disabling the edges here.
473                  */
474                 edges_deactivate(irg);
475                 //dead_node_elimination(irg);
476                 edges_activate(irg);
477
478                 /* Compute loop nesting information (for weighting copies) */
479                 construct_cf_backedges(irg);
480                 dump(DUMP_PREPARED, irg, "-prepared", dump_ir_block_graph);
481                 BE_TIMER_ONLY(num_nodes_r = get_num_reachable_nodes(irg));
482
483                 /* let backend prepare scheduling */
484                 BE_TIMER_PUSH(t_codegen);
485                 arch_code_generator_before_sched(birg.cg);
486                 BE_TIMER_POP(t_codegen);
487
488                 /* schedule the irg */
489                 BE_TIMER_PUSH(t_sched);
490                 list_sched(&birg, &be_options);
491                 BE_TIMER_POP(t_sched);
492
493                 dump(DUMP_SCHED, irg, "-sched", dump_ir_block_graph_sched);
494
495                 /* check schedule */
496                 BE_TIMER_PUSH(t_verify);
497                 be_sched_vrfy(birg.irg, vrfy_option);
498                 BE_TIMER_POP(t_verify);
499
500                 be_do_stat_nodes(irg, "04 Schedule");
501
502                 /* introduce patterns to assure constraints */
503                 BE_TIMER_PUSH(t_constr);
504                 /* we switch off optimizations here, because they might cause trouble */
505                 save_optimization_state(&state);
506                 set_optimize(0);
507                 set_opt_normalize(0);
508
509                 /* add Keeps for should_be_different constrained nodes  */
510                 /* beware: needs schedule due to usage of be_ssa_constr */
511                 assure_constraints(&birg);
512                 BE_TIMER_POP(t_constr);
513
514                 dump(DUMP_SCHED, irg, "-assured", dump_ir_block_graph_sched);
515                 be_do_stat_nodes(irg, "05 Constraints");
516
517                 /* connect all stack modifying nodes together (see beabi.c) */
518                 BE_TIMER_PUSH(t_abi);
519                 be_abi_fix_stack_nodes(birg.abi, NULL);
520                 BE_TIMER_POP(t_abi);
521
522                 dump(DUMP_SCHED, irg, "-fix_stack", dump_ir_block_graph_sched);
523
524                 /* check schedule */
525                 BE_TIMER_PUSH(t_verify);
526                 be_sched_vrfy(birg.irg, vrfy_option);
527                 BE_TIMER_POP(t_verify);
528
529                 /* do some statistics */
530                 be_do_stat_reg_pressure(&birg);
531
532                 /* stuff needs to be done after scheduling but before register allocation */
533                 BE_TIMER_PUSH(t_codegen);
534                 arch_code_generator_before_ra(birg.cg);
535                 BE_TIMER_POP(t_codegen);
536
537                 /* Do register allocation */
538                 BE_TIMER_ONLY(lc_timer_start(t_regalloc));
539                 ra_timer = ra->allocate(&birg);
540                 BE_TIMER_ONLY(lc_timer_stop(t_regalloc));
541
542                 dump(DUMP_RA, irg, "-ra", dump_ir_block_graph_sched);
543                 be_do_stat_nodes(irg, "06 Register Allocation");
544
545                 /* let the codegenerator prepare the graph for emitter */
546                 BE_TIMER_PUSH(t_finish);
547                 arch_code_generator_after_ra(birg.cg);
548                 BE_TIMER_POP(t_finish);
549
550                 /* fix stack offsets */
551                 BE_TIMER_PUSH(t_abi);
552                 be_abi_fix_stack_bias(birg.abi);
553                 BE_TIMER_POP(t_abi);
554
555                 BE_TIMER_PUSH(t_finish);
556                 arch_code_generator_finish(birg.cg);
557                 BE_TIMER_POP(t_finish);
558
559                 dump(DUMP_FINAL, irg, "-finish", dump_ir_block_graph_sched);
560
561                 /* check schedule and register allocation */
562                 BE_TIMER_PUSH(t_verify);
563                 be_sched_vrfy(birg.irg, vrfy_option);
564                 be_verify_register_allocation(env.arch_env, birg.irg);
565                 BE_TIMER_POP(t_verify);
566
567                 /* emit assembler code */
568                 BE_TIMER_PUSH(t_emit);
569                 arch_code_generator_done(birg.cg);
570                 BE_TIMER_POP(t_emit);
571
572                 dump(DUMP_FINAL, irg, "-end", dump_ir_extblock_graph_sched);
573
574                 BE_TIMER_PUSH(t_abi);
575                 be_abi_free(birg.abi);
576                 BE_TIMER_POP(t_abi);
577
578                 be_do_stat_nodes(irg, "07 Final");
579                 restore_optimization_state(&state);
580
581                 BE_TIMER_ONLY(num_nodes_a = get_num_reachable_nodes(irg));
582                 BE_TIMER_POP(t_other);
583
584 #define LC_EMIT(timer)    printf("%-20s: %.3lf msec\n", lc_timer_get_description(timer), (double)lc_timer_elapsed_usec(timer) / 1000.0)
585 #define LC_EMIT_RA(timer) printf("\t%-20s: %.3lf msec\n", lc_timer_get_description(timer), (double)lc_timer_elapsed_usec(timer) / 1000.0)
586                 if (be_options.timing == BE_TIME_ON) {
587                         printf("==>> IRG %s <<==\n", get_entity_name(get_irg_entity(irg)));
588                         printf("# nodes at begin:  %u\n", num_nodes_b);
589                         printf("# nodes before ra: %u\n", num_nodes_r);
590                         printf("# nodes at end:    %u\n\n", num_nodes_a);
591                         LC_EMIT(t_prolog);
592                         LC_EMIT(t_abi);
593                         LC_EMIT(t_codegen);
594                         LC_EMIT(t_sched);
595                         LC_EMIT(t_constr);
596                         LC_EMIT(t_regalloc);
597                         LC_EMIT_RA(ra_timer->t_prolog);
598                         LC_EMIT_RA(ra_timer->t_live);
599                         LC_EMIT_RA(ra_timer->t_spill);
600                         LC_EMIT_RA(ra_timer->t_spillslots);
601                         LC_EMIT_RA(ra_timer->t_color);
602                         LC_EMIT_RA(ra_timer->t_ifg);
603                         LC_EMIT_RA(ra_timer->t_copymin);
604                         LC_EMIT_RA(ra_timer->t_ssa);
605                         LC_EMIT_RA(ra_timer->t_epilog);
606                         LC_EMIT_RA(ra_timer->t_verify);
607                         LC_EMIT_RA(ra_timer->t_other);
608                         LC_EMIT(t_finish);
609                         LC_EMIT(t_emit);
610                         LC_EMIT(t_verify);
611                         LC_EMIT(t_other);
612                 }
613 #undef LC_EMIT
614
615         /* switched off due to statistics (statistic module needs all irgs) */
616                 if (! stat_is_active())
617                         free_ir_graph(irg);
618
619         }
620         be_done_env(&env);
621
622 #undef BE_TIMER_POP
623 #undef BE_TIMER_PUSH
624 #undef BE_TIMER_ONLY
625 }
626
627 /* Main interface to the frontend. */
628 void be_main(FILE *file_handle)
629 {
630 #ifdef WITH_LIBCORE
631         lc_timer_t *t;
632
633         if (be_options.timing == BE_TIME_ON) {
634                 t = lc_timer_register("bemain", "measure complete bemain loop");
635
636                 if (lc_timer_enter_high_priority()) {
637                         fprintf(stderr, "Warning: Could not enter high priority mode.\n");
638                 }
639
640                 lc_timer_reset_and_start(t);
641         }
642 #endif /* WITH_LIBCORE */
643
644         /* never build code for pseudo irgs */
645         set_visit_pseudo_irgs(0);
646
647         be_node_init();
648         be_main_loop(file_handle);
649
650 #ifdef WITH_LIBCORE
651         if (be_options.timing == BE_TIME_ON) {
652                 lc_timer_stop(t);
653                 lc_timer_leave_high_priority();
654                 printf("%-20s: %lu msec\n", "BEMAINLOOP", lc_timer_elapsed_msec(t));
655         }
656 #endif /* WITH_LIBCORE */
657 }
658
659 /** The debug info retriever function. */
660 static retrieve_dbg_func retrieve_dbg = NULL;
661
662 /* Sets a debug info retriever. */
663 void be_set_debug_retrieve(retrieve_dbg_func func) {
664         retrieve_dbg = func;
665 }
666
667 /* Retrieve the debug info. */
668 const char *be_retrieve_dbg_info(const dbg_info *dbg, unsigned *line) {
669         if (retrieve_dbg)
670                 return retrieve_dbg(dbg, line);
671         *line = 0;
672         return NULL;
673 }