X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_main.c;h=0e5df3e6331acaf8dd538839e61ab7b3a14fe820;hb=6e3e499d6c68aee0c6a9ada6a99f16c4f6f8445b;hp=6a576ea443df8c076dfce8f678385dfe1f5a952a;hpb=07a7c578268c74d61e1f44fb77e9b587e29d5198;p=libfirm diff --git a/ir/be/bechordal_main.c b/ir/be/bechordal_main.c index 6a576ea44..0e5df3e63 100644 --- a/ir/be/bechordal_main.c +++ b/ir/be/bechordal_main.c @@ -43,12 +43,15 @@ #include "beifg_impl.h" #include "bespillbelady.h" -#include "bespillilp.h" #include "belower.h" +#ifdef WITH_ILP +#include "bespillilp.h" +#endif /* WITH_ILP */ + +#include "becopystat.h" #include "becopyopt.h" #include "bessadestr.h" -#include "becopystat.h" void be_ra_chordal_check(be_chordal_env_t *chordal_env) { @@ -164,7 +167,7 @@ static be_ra_chordal_opts_t options = { #ifdef WITH_LIBCORE static const lc_opt_enum_int_items_t spill_items[] = { { "belady", BE_CH_SPILL_BELADY }, -#ifndef NO_ILP +#ifdef WITH_ILP { "ilp", BE_CH_SPILL_ILP }, #endif { NULL, 0 } @@ -172,7 +175,9 @@ static const lc_opt_enum_int_items_t spill_items[] = { static const lc_opt_enum_int_items_t copymin_items[] = { { "heur", BE_CH_COPYMIN_HEUR }, +#ifdef WITH_ILP { "ilp", BE_CH_COPYMIN_ILP }, +#endif { NULL, 0 } }; @@ -231,15 +236,15 @@ static void dump(unsigned mask, ir_graph *irg, const char *suffix, void (*dump_func)(ir_graph *, const char *)) { - if(1 || (options.dump_flags & mask) == mask) { + if(1 || ((options.dump_flags & mask) == mask)) { if(cls) { char buf[256]; snprintf(buf, sizeof(buf), "-%s%s", cls->name, suffix); - dump_func(irg, buf); + be_dump(irg, buf, dump_func); } else - dump_func(irg, suffix); + be_dump(irg, suffix, dump_func); } } @@ -255,9 +260,9 @@ static void be_ra_chordal_main(const be_irg_t *bi) chordal_env.opts = &options; chordal_env.irg = irg; - chordal_env.dbg = firm_dbg_register("firm.be.chordal"); - chordal_env.birg = bi; + chordal_env.birg = bi; chordal_env.dom_front = be_compute_dominance_frontiers(irg); + FIRM_DBG_REGISTER(chordal_env.dbg, "firm.be.chordal"); obstack_init(&chordal_env.obst); @@ -274,11 +279,11 @@ static void be_ra_chordal_main(const be_irg_t *bi) case BE_CH_SPILL_BELADY: be_spill_belady(&chordal_env); break; -#ifndef NO_ILP +#ifdef WITH_ILP case BE_CH_SPILL_ILP: be_spill_ilp(&chordal_env); break; -#endif +#endif /* WITH_ILP */ default: fprintf(stderr, "no valid spiller selected. falling back to belady\n"); be_spill_belady(&chordal_env); @@ -287,9 +292,6 @@ static void be_ra_chordal_main(const be_irg_t *bi) be_liveness(irg); be_check_pressure(&chordal_env); - be_liveness(irg); - be_check_pressure(&chordal_env); - /* Color the graph. */ be_ra_chordal_color(&chordal_env); dump(BE_CH_DUMP_CONSTR, irg, chordal_env.cls, "-color", dump_ir_block_graph_sched); @@ -299,8 +301,17 @@ static void be_ra_chordal_main(const be_irg_t *bi) be_ifg_check(chordal_env.ifg); /* copy minimization */ - copystat_collect_cls(&chordal_env); +#ifdef COPYOPT_STAT co_compare_solvers(&chordal_env); +#else + { + copy_opt_t *co = new_copy_opt(&chordal_env, co_get_costs_loop_depth); + co_build_ou_structure(co); + co_solve_heuristic(co); + co_free_ou_structure(co); + free_copy_opt(co); + } +#endif dump(BE_CH_DUMP_COPYMIN, irg, chordal_env.cls, "-copymin", dump_ir_block_graph_sched); be_ra_chordal_check(&chordal_env);