X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_main.c;h=aaf2fde3b47ae6c3affe26e691d7b0e301117968;hb=f3d1b40c75358f60f4224ca930f163c46659774c;hp=328d760f0f1e120a71b6b36a3518d77369e37346;hpb=50234c949b8432ee8db8e45079cad83a6383fa49;p=libfirm diff --git a/ir/be/bechordal_main.c b/ir/be/bechordal_main.c index 328d760f0..aaf2fde3b 100644 --- a/ir/be/bechordal_main.c +++ b/ir/be/bechordal_main.c @@ -39,7 +39,7 @@ #include "besched_t.h" #include "belive_t.h" #include "bearch.h" -#include "beifg.h" +#include "beifg_t.h" #include "beifg_impl.h" #include "bespillbelady.h" @@ -211,13 +211,12 @@ static void be_ra_chordal_register_options(lc_opt_entry_t *grp) } #endif -static void dump(int mask, ir_graph *irg, +static void dump(unsigned mask, ir_graph *irg, const arch_register_class_t *cls, const char *suffix, void (*dump_func)(ir_graph *, const char *)) { - - if((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); @@ -238,7 +237,7 @@ static void be_ra_chordal_main(const be_main_env_t *main_env, ir_graph *irg) compute_doms(irg); chordal_env.irg = irg; - chordal_env.dbg = firm_dbg_register("firm.be.chordal"); + chordal_env.dbg = firm_dbg_register("be.chordal"); chordal_env.main_env = main_env; chordal_env.dom_front = be_compute_dominance_frontiers(irg); @@ -277,6 +276,7 @@ static void be_ra_chordal_main(const be_main_env_t *main_env, ir_graph *irg) /* Color the graph. */ be_ra_chordal_color(&chordal_env); + dump(BE_CH_DUMP_CONSTR, irg, chordal_env.cls, "-color", dump_ir_block_graph_sched); /* Build the interference graph. */ chordal_env.ifg = be_ifg_std_new(&chordal_env); @@ -302,9 +302,11 @@ static void be_ra_chordal_main(const be_main_env_t *main_env, ir_graph *irg) pmap_destroy(chordal_env.border_heads); } - dump(BE_CH_DUMP_SSADESTR, irg, NULL, "-ssadestr-complete", dump_ir_block_graph_sched); + be_compute_spill_offsets(&chordal_env); + + dump(BE_CH_DUMP_LOWER, irg, NULL, "-spilloff", dump_ir_block_graph_sched); - lower_perms(&chordal_env, options.lower_perm_method == BE_CH_LOWER_PERM_COPY ? 1 : 0); + lower_nodes(&chordal_env, options.lower_perm_method == BE_CH_LOWER_PERM_COPY ? 1 : 0); dump(BE_CH_DUMP_LOWER, irg, NULL, "-belower", dump_ir_block_graph_sched); be_free_dominance_frontiers(chordal_env.dom_front);