- avoid unnecessary edges recomputation
[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         phi_class_init();
222
223         if (isa_if->get_params)
224                 return isa_if->get_params();
225         return &be_params;
226 }
227
228 /**
229  * Initializes the main environment for the backend.
230  *
231  * @param env          an empty environment
232  * @param file_handle  the file handle where the output will be written to
233  */
234 static be_main_env_t *be_init_env(be_main_env_t *env, FILE *file_handle)
235 {
236         memset(env, 0, sizeof(*env));
237         obstack_init(&env->obst);
238         env->arch_env = obstack_alloc(&env->obst, sizeof(env->arch_env[0]));
239         env->options  = &be_options;
240         FIRM_DBG_REGISTER(env->dbg, "be.main");
241
242         arch_env_init(env->arch_env, isa_if, file_handle, env);
243
244         /* Register the irn handler of the architecture */
245         if (arch_isa_get_irn_handler(env->arch_env->isa))
246                 arch_env_push_irn_handler(env->arch_env, arch_isa_get_irn_handler(env->arch_env->isa));
247
248         /*
249          * Register the node handler of the back end infrastructure.
250          * This irn handler takes care of the platform independent
251          * spill, reload and perm nodes.
252          */
253         arch_env_push_irn_handler(env->arch_env, &be_node_irn_handler);
254         env->phi_handler = be_phi_handler_new(env->arch_env);
255         arch_env_push_irn_handler(env->arch_env, env->phi_handler);
256
257         env->db_handle = be_options.stabs_debug_support ? be_stabs_open(file_handle) : be_nulldbg_open();
258         return env;
259 }
260
261 static void be_done_env(be_main_env_t *env)
262 {
263         env->arch_env->isa->impl->done(env->arch_env->isa);
264         be_dbg_close(env->db_handle);
265         be_phi_handler_free(env->phi_handler);
266         obstack_free(&env->obst, NULL);
267 }
268
269 /**
270  * A wrapper around a firm dumper. Dumps only, if
271  * flags are enabled.
272  *
273  * @param mask    a bitmask containing the reason what will be dumped
274  * @param irg     the IR graph to dump
275  * @param suffix  the suffix for the dumper
276  * @param dumper  the dumper to be called
277  */
278 static void dump(int mask, ir_graph *irg, const char *suffix,
279                  void (*dumper)(ir_graph *, const char *))
280 {
281         if(be_options.dump_flags & mask)
282                 be_dump(irg, suffix, dumper);
283 }
284
285 /**
286  * Prepare a backend graph for code generation and initialize its birg
287  */
288 static void initialize_birg(be_irg_t *birg, ir_graph *irg, be_main_env_t *env)
289 {
290         memset(birg, 0, sizeof(*birg));
291         birg->irg = irg;
292         birg->main_env = env;
293
294         edges_deactivate_kind(irg, EDGE_KIND_DEP);
295         edges_activate_kind(irg, EDGE_KIND_DEP);
296
297         DBG((env->dbg, LEVEL_2, "====> IRG: %F\n", irg));
298         dump(DUMP_INITIAL, irg, "-begin", dump_ir_block_graph);
299
300         be_stat_init_irg(env->arch_env, irg);
301         be_do_stat_nodes(irg, "01 Begin");
302
303         /* set the current graph (this is important for several firm functions) */
304         current_ir_graph = irg;
305
306         /* Normalize proj nodes. */
307         normalize_proj_nodes(irg);
308
309         /* Make just one return node. */
310         normalize_one_return(irg);
311
312         /* Remove critical edges */
313         remove_critical_cf_edges(irg);
314
315         /* Ensure, that the ir_edges are computed. */
316         edges_assure(irg);
317
318         /* reset the phi handler. */
319         be_phi_handler_reset(env->phi_handler);
320
321         set_irg_phase_state(irg, phase_backend);
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                 BE_TIMER_ONLY(num_nodes_b = get_num_reachable_nodes(irg));
490
491                 /* Get the code generator interface. */
492                 cg_if = isa->impl->get_code_generator_if(isa);
493
494                 /* get a code generator for this graph. */
495                 birg->cg = cg_if->init(birg);
496
497                 /* some transformations need to be done before abi introduce */
498                 arch_code_generator_before_abi(birg->cg);
499
500                 /* reset the phi handler. */
501                 be_phi_handler_reset(env.phi_handler);
502
503                 /* implement the ABI conventions. */
504                 BE_TIMER_PUSH(t_abi);
505                 birg->abi = be_abi_introduce(birg);
506                 BE_TIMER_POP(t_abi);
507
508                 dump(DUMP_ABI, irg, "-abi", dump_ir_block_graph);
509                 be_do_stat_nodes(irg, "02 Abi");
510
511                 if (be_options.vrfy_option == BE_VRFY_WARN) {
512                         be_check_dominance(irg);
513                         be_verify_out_edges(irg);
514                 }
515                 else if (be_options.vrfy_option == BE_VRFY_ASSERT) {
516                         assert(be_verify_out_edges(irg));
517                         assert(be_check_dominance(irg) && "Dominance verification failed");
518                 }
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                 /* Compute loop nesting information (for weighting copies) */
528                 dump(DUMP_PREPARED, irg, "-prepared", dump_ir_block_graph);
529                 BE_TIMER_ONLY(num_nodes_r = get_num_reachable_nodes(irg));
530
531                 if (be_options.vrfy_option == BE_VRFY_WARN) {
532                         be_check_dominance(irg);
533                         be_verify_out_edges(irg);
534                 }
535                 else if (be_options.vrfy_option == BE_VRFY_ASSERT) {
536                         assert(be_verify_out_edges(irg));
537                         assert(be_check_dominance(irg) && "Dominance verification failed");
538                 }
539
540                 /**
541                  * Create execution frequencies from profile data or estimate some
542                  */
543                 if (be_profile_has_data()) {
544                         birg->exec_freq = be_create_execfreqs_from_profile(irg);
545                 } else {
546                         birg->exec_freq = compute_execfreq(irg, 10);
547                 }
548
549                 /* let backend prepare scheduling */
550                 BE_TIMER_PUSH(t_codegen);
551                 arch_code_generator_before_sched(birg->cg);
552                 BE_TIMER_POP(t_codegen);
553
554                 /* schedule the irg */
555                 BE_TIMER_PUSH(t_sched);
556                 switch (be_options.scheduler) {
557                         default:
558                                 fprintf(stderr, "Warning: invalid scheduler (%d) selected, falling back to list scheduler.\n", be_options.scheduler);
559                         case BE_SCHED_LIST:
560                                 list_sched(birg, &be_options);
561                                 break;
562 #ifdef WITH_ILP
563                         case BE_SCHED_ILP:
564                                 be_ilp_sched(birg);
565                                 //fprintf(stderr, "Warning: ILP scheduler not yet fully implemented, falling back to list scheduler.\n");
566                                 //list_sched(birg, &be_options);
567                                 break;
568 #endif /* WITH_ILP */
569                 };
570                 BE_TIMER_POP(t_sched);
571
572                 dump(DUMP_SCHED, irg, "-sched", dump_ir_block_graph_sched);
573
574                 /* check schedule */
575                 BE_TIMER_PUSH(t_verify);
576                 be_sched_vrfy(irg, be_options.vrfy_option);
577                 BE_TIMER_POP(t_verify);
578
579                 be_do_stat_nodes(irg, "04 Schedule");
580
581                 /* introduce patterns to assure constraints */
582                 BE_TIMER_PUSH(t_constr);
583                 /* we switch off optimizations here, because they might cause trouble */
584                 save_optimization_state(&state);
585                 set_optimize(0);
586                 set_opt_normalize(0);
587
588                 /* add Keeps for should_be_different constrained nodes  */
589                 /* beware: needs schedule due to usage of be_ssa_constr */
590                 assure_constraints(birg);
591                 BE_TIMER_POP(t_constr);
592
593                 dump(DUMP_SCHED, irg, "-assured", dump_ir_block_graph_sched);
594                 be_do_stat_nodes(irg, "05 Constraints");
595
596                 /* connect all stack modifying nodes together (see beabi.c) */
597                 BE_TIMER_PUSH(t_abi);
598                 be_abi_fix_stack_nodes(birg->abi, NULL);
599                 BE_TIMER_POP(t_abi);
600
601                 dump(DUMP_SCHED, irg, "-fix_stack", dump_ir_block_graph_sched);
602
603                 /* check schedule */
604                 BE_TIMER_PUSH(t_verify);
605                 be_sched_vrfy(irg, be_options.vrfy_option);
606                 BE_TIMER_POP(t_verify);
607
608                 /* do some statistics */
609                 be_do_stat_reg_pressure(birg);
610
611                 /* stuff needs to be done after scheduling but before register allocation */
612                 BE_TIMER_PUSH(t_codegen);
613                 arch_code_generator_before_ra(birg->cg);
614                 BE_TIMER_POP(t_codegen);
615
616 #ifdef FIRM_STATISTICS
617                 if(be_stat_ev_is_active()) {
618                         be_stat_ev_l("costs_before_ra",
619                                         (long) be_estimate_irg_costs(irg, env.arch_env, birg->exec_freq));
620                 }
621 #endif
622
623                 /* Do register allocation */
624                 BE_TIMER_PUSH(t_regalloc);
625                 be_allocate_registers(birg);
626                 BE_TIMER_POP(t_regalloc);
627
628 #ifdef FIRM_STATISTICS
629                 if(be_stat_ev_is_active()) {
630                         be_stat_ev_l("costs_after_ra",
631                                         (long) be_estimate_irg_costs(irg, env.arch_env, birg->exec_freq));
632                 }
633 #endif
634
635                 dump(DUMP_RA, irg, "-ra", dump_ir_block_graph_sched);
636                 be_do_stat_nodes(irg, "06 Register Allocation");
637
638                 /* let the code generator prepare the graph for emitter */
639                 BE_TIMER_PUSH(t_finish);
640                 arch_code_generator_after_ra(birg->cg);
641                 BE_TIMER_POP(t_finish);
642
643                 /* fix stack offsets */
644                 BE_TIMER_PUSH(t_abi);
645                 be_abi_fix_stack_nodes(birg->abi, NULL);
646                 be_remove_dead_nodes_from_schedule(irg);
647                 be_abi_fix_stack_bias(birg->abi);
648                 BE_TIMER_POP(t_abi);
649
650                 dump(DUMP_SCHED, irg, "-fix_stack_after_ra", dump_ir_block_graph_sched);
651
652                 BE_TIMER_PUSH(t_finish);
653                 arch_code_generator_finish(birg->cg);
654                 BE_TIMER_POP(t_finish);
655
656                 dump(DUMP_FINAL, irg, "-finish", dump_ir_block_graph_sched);
657
658                 /* check schedule and register allocation */
659                 BE_TIMER_PUSH(t_verify);
660                 if (be_options.vrfy_option == BE_VRFY_WARN) {
661                         //irg_verify(irg, VRFY_ENFORCE_SSA);
662                         be_check_dominance(irg);
663                         be_verify_out_edges(irg);
664                         be_verify_schedule(irg);
665                         be_verify_register_allocation(env.arch_env, irg);
666                 }
667                 else if (be_options.vrfy_option == BE_VRFY_ASSERT) {
668                         //assert(irg_verify(irg, VRFY_ENFORCE_SSA) && "irg verification failed");
669                         assert(be_verify_out_edges(irg));
670                         assert(be_check_dominance(irg) && "Dominance verification failed");
671                         assert(be_verify_schedule(irg) && "Schedule verification failed");
672                         assert(be_verify_register_allocation(env.arch_env, irg)
673                                && "register allocation verification failed");
674                 }
675                 BE_TIMER_POP(t_verify);
676
677                 /* emit assembler code */
678                 BE_TIMER_PUSH(t_emit);
679                 arch_code_generator_done(birg->cg);
680                 BE_TIMER_POP(t_emit);
681
682                 dump(DUMP_FINAL, irg, "-end", dump_ir_block_graph_sched);
683
684                 BE_TIMER_PUSH(t_abi);
685                 be_abi_free(birg->abi);
686                 BE_TIMER_POP(t_abi);
687
688                 be_do_stat_nodes(irg, "07 Final");
689                 restore_optimization_state(&state);
690
691                 BE_TIMER_ONLY(num_nodes_a = get_num_reachable_nodes(irg));
692                 BE_TIMER_POP(t_other);
693
694 #define LC_EMIT(timer)  \
695         if(!be_stat_ev_is_active()) { \
696                 printf("%-20s: %.3lf msec\n", lc_timer_get_description(timer), (double)lc_timer_elapsed_usec(timer) / 1000.0); \
697         } else { \
698                 be_stat_ev_l(lc_timer_get_name(timer), lc_timer_elapsed_msec(timer)); \
699         }
700 #define LC_EMIT_RA(timer) \
701         if(!be_stat_ev_is_active()) { \
702                 printf("\t%-20s: %.3lf msec\n", lc_timer_get_description(timer), (double)lc_timer_elapsed_usec(timer) / 1000.0); \
703         } else { \
704                 be_stat_ev_l(lc_timer_get_name(timer), lc_timer_elapsed_msec(timer)); \
705         }
706                 BE_TIMER_ONLY(
707                         if(!be_stat_ev_is_active()) {
708                                 printf("==>> IRG %s <<==\n", get_entity_name(get_irg_entity(irg)));
709                                 printf("# nodes at begin:  %u\n", num_nodes_b);
710                                 printf("# nodes before ra: %u\n", num_nodes_r);
711                                 printf("# nodes at end:    %u\n\n", num_nodes_a);
712                         }
713                         LC_EMIT(t_abi);
714                         LC_EMIT(t_codegen);
715                         LC_EMIT(t_sched);
716                         LC_EMIT(t_constr);
717                         LC_EMIT(t_regalloc);
718                         LC_EMIT_RA(ra_timer->t_prolog);
719                         LC_EMIT_RA(ra_timer->t_live);
720                         LC_EMIT_RA(ra_timer->t_spill);
721                         LC_EMIT_RA(ra_timer->t_spillslots);
722                         LC_EMIT_RA(ra_timer->t_color);
723                         LC_EMIT_RA(ra_timer->t_ifg);
724                         LC_EMIT_RA(ra_timer->t_copymin);
725                         LC_EMIT_RA(ra_timer->t_ssa);
726                         LC_EMIT_RA(ra_timer->t_epilog);
727                         LC_EMIT_RA(ra_timer->t_verify);
728                         LC_EMIT_RA(ra_timer->t_other);
729                         LC_EMIT(t_finish);
730                         LC_EMIT(t_emit);
731                         LC_EMIT(t_verify);
732                         LC_EMIT(t_other);
733                 );
734 #undef LC_EMIT_RA
735 #undef LC_EMIT
736
737                 be_free_birg(birg);
738
739         /* switched off due to statistics (statistic module needs all irgs) */
740 #ifdef FIRM_STATISTICS
741                 if (! stat_is_active())
742 #endif
743                         free_ir_graph(irg);
744
745                 if(be_stat_ev_is_active()) {
746                         be_stat_ev_pop();
747                 }
748         }
749         be_profile_free();
750         be_done_env(&env);
751
752 #undef BE_TIMER_POP
753 #undef BE_TIMER_PUSH
754 #undef BE_TIMER_ONLY
755 }
756
757 /* Main interface to the frontend. */
758 void be_main(FILE *file_handle, const char *cup_name)
759 {
760 #ifdef WITH_LIBCORE
761         lc_timer_t *t = NULL;
762
763         /* The user specified another config file to read. do that now. */
764         if(strlen(config_file) > 0) {
765                 FILE *f;
766
767                 if((f = fopen(config_file, "rt")) != NULL) {
768                         lc_opt_from_file(config_file, f, NULL);
769                         fclose(f);
770                 }
771         }
772
773         if (be_options.timing == BE_TIME_ON) {
774                 t = lc_timer_register("bemain", "measure complete bemain loop");
775
776                 if (lc_timer_enter_high_priority()) {
777                         fprintf(stderr, "Warning: Could not enter high priority mode.\n");
778                 }
779
780                 lc_timer_reset_and_start(t);
781         }
782
783 #ifdef FIRM_STATISTICS
784         be_init_stat_file(be_options.stat_file_name, cup_name);
785 #endif
786 #endif /* WITH_LIBCORE */
787
788         /* never build code for pseudo irgs */
789         set_visit_pseudo_irgs(0);
790
791         be_node_init();
792
793         be_main_loop(file_handle, cup_name);
794
795 #ifdef WITH_LIBCORE
796         if (be_options.timing == BE_TIME_ON) {
797                 lc_timer_stop(t);
798                 lc_timer_leave_high_priority();
799                 if(be_stat_ev_is_active()) {
800                         be_stat_ev_l("backend_time", lc_timer_elapsed_msec(t));
801                 } else {
802                         printf("%-20s: %lu msec\n", "BEMAINLOOP", lc_timer_elapsed_msec(t));
803                 }
804         }
805
806 #ifdef FIRM_STATISTICS
807         be_close_stat_file();
808 #endif
809 #endif /* WITH_LIBCORE */
810 }
811
812 /** The debug info retriever function. */
813 static retrieve_dbg_func retrieve_dbg = NULL;
814
815 /* Sets a debug info retriever. */
816 void be_set_debug_retrieve(retrieve_dbg_func func) {
817         retrieve_dbg = func;
818 }
819
820 /* Retrieve the debug info. */
821 const char *be_retrieve_dbg_info(const dbg_info *dbg, unsigned *line) {
822         if (retrieve_dbg)
823                 return retrieve_dbg(dbg, line);
824
825         *line = 0;
826         return NULL;
827 }
828
829 int be_put_ignore_regs(const be_irg_t *birg, const arch_register_class_t *cls, bitset_t *bs)
830 {
831         if(bs == NULL)
832                 bs = bitset_alloca(cls->n_regs);
833         else
834                 bitset_clear_all(bs);
835
836         assert(bitset_size(bs) == (unsigned) cls->n_regs);
837         arch_put_non_ignore_regs(birg->main_env->arch_env, cls, bs);
838         bitset_flip_all(bs);
839         be_abi_put_ignore_regs(birg->abi, cls, bs);
840
841         return bitset_popcnt(bs);
842 }