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