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