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