X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal.c;h=7beab1b3d016f563cc4131b662b47c4f29f51cc3;hb=e6ad8ee4680a88db8652483c2c6f3124f3d9a888;hp=a98e8a477e1220d8a633f97372c998fd9a2812a1;hpb=cf5a8a237e8ec6c54251fa29701488dcf47f94d4;p=libfirm diff --git a/ir/be/bechordal.c b/ir/be/bechordal.c index a98e8a477..7beab1b3d 100644 --- a/ir/be/bechordal.c +++ b/ir/be/bechordal.c @@ -62,7 +62,6 @@ typedef struct _be_chordal_alloc_env_t { pset *pre_colored; /**< Set of precolored nodes. */ bitset_t *live; /**< A liveness bitset. */ bitset_t *colors; /**< The color mask. */ - bitset_t *ignore_colors; /**< A mask of colors which shall be not used in allocation (ignored). */ bitset_t *in_colors; /**< Colors used by live in values. */ int colors_n; /**< The number of colors. */ } be_chordal_alloc_env_t; @@ -161,7 +160,8 @@ static INLINE border_t *border_add(be_chordal_env_t *env, struct list_head *head */ static INLINE int has_reg_class(const be_chordal_env_t *env, const ir_node *irn) { - return arch_irn_has_reg_class(env->main_env->arch_env, irn, -1, env->cls); + // return arch_irn_has_reg_class(env->main_env->arch_env, irn, -1, env->cls); + return arch_irn_consider_in_reg_alloc(env->birg->main_env->arch_env, env->cls, irn); } #define has_limited_constr(req, irn) \ @@ -187,7 +187,7 @@ typedef struct { static insn_t *scan_insn(be_chordal_env_t *env, ir_node *irn, struct obstack *obst) { - const arch_env_t *arch_env = env->main_env->arch_env; + const arch_env_t *arch_env = env->birg->main_env->arch_env; operand_t o; insn_t *insn; int i, n; @@ -257,7 +257,7 @@ static operand_t *find_unpaired_use(insn_t *insn, const operand_t *op, int can_b int has_constraint = arch_register_req_is(&op->req, limited); if(!values_interfere(op->carrier, op->irn) && !op->partner && (!has_constraint || can_be_constrained)) { - if(arch_register_req_is(&op->req, should_be_same) && op->req.other == op->carrier) + if(arch_register_req_is(&op->req, should_be_same) && op->req.other_same == op->carrier) return op; else res = op; @@ -293,7 +293,7 @@ static ir_node *handle_constraints(be_chordal_alloc_env_t *alloc_env, ir_node *i if(insn->has_constraints) { firm_dbg_module_t *dbg = firm_dbg_register("firm.be.chordal.constr"); - const arch_env_t *aenv = env->main_env->arch_env; + const arch_env_t *aenv = env->birg->main_env->arch_env; int n_regs = env->cls->n_regs; bitset_t *bs = bitset_alloca(n_regs); ir_node **alloc_nodes = alloca(n_regs * sizeof(alloc_nodes[0])); @@ -338,7 +338,8 @@ static ir_node *handle_constraints(be_chordal_alloc_env_t *alloc_env, ir_node *i bitset_clear_all(bs); op->req.limited(op->req.limited_env, bs); - bitset_andnot(bs, alloc_env->ignore_colors); + + DBG((dbg, LEVEL_2, "\tallowed registers for %+F: %B\n", op->carrier, bs)); bitset_foreach(bs, col) bipartite_add(bp, n_alloc, col); @@ -360,7 +361,6 @@ static ir_node *handle_constraints(be_chordal_alloc_env_t *alloc_env, ir_node *i bitset_clear_all(bs); arch_get_allocatable_regs(aenv, proj, -1, bs); - bitset_andnot(bs, alloc_env->ignore_colors); bitset_foreach(bs, col) bipartite_add(bp, n_alloc, col); @@ -374,7 +374,10 @@ static ir_node *handle_constraints(be_chordal_alloc_env_t *alloc_env, ir_node *i for(i = 0; i < n_alloc; ++i) { int j; ir_node *nodes[2]; - const arch_register_t *reg = arch_register_for_index(env->cls, assignment[i]); + const arch_register_t *reg; + + assert(assignment[i] >= 0 && "there must have been a register assigned"); + reg = arch_register_for_index(env->cls, assignment[i]); nodes[0] = alloc_nodes[i]; nodes[1] = pmap_get(partners, alloc_nodes[i]); @@ -436,7 +439,7 @@ static void constraints(ir_node *bl, void *data) { firm_dbg_module_t *dbg = firm_dbg_register("firm.be.chordal.constr"); be_chordal_alloc_env_t *env = data; - arch_env_t *arch_env = env->chordal_env->main_env->arch_env; + arch_env_t *arch_env = env->chordal_env->birg->main_env->arch_env; ir_node *irn; for(irn = sched_first(bl); !sched_is_end(irn);) { @@ -462,6 +465,7 @@ static void pressure(ir_node *block, void *env_ptr) be_chordal_alloc_env_t *alloc_env = env_ptr; be_chordal_env_t *env = alloc_env->chordal_env; + const arch_env_t *arch_env = env->birg->main_env->arch_env; bitset_t *live = alloc_env->live; firm_dbg_module_t *dbg = env->dbg; ir_node *irn; @@ -563,15 +567,15 @@ static void assign(ir_node *block, void *env_ptr) bitset_t *live = alloc_env->live; bitset_t *colors = alloc_env->colors; bitset_t *in_colors = alloc_env->in_colors; - const arch_env_t *arch_env = env->main_env->arch_env; + const arch_env_t *arch_env = env->birg->main_env->arch_env; const ir_node *irn; border_t *b; struct list_head *head = get_block_border_head(env, block); pset *live_in = put_live_in(block, pset_new_ptr_default()); - bitset_clear_all(live); bitset_clear_all(colors); + bitset_clear_all(live); bitset_clear_all(in_colors); DBG((dbg, LEVEL_4, "Assigning colors for block %+F\n", block)); @@ -604,7 +608,8 @@ static void assign(ir_node *block, void *env_ptr) } /* - * Mind that the sequence of defs from back to front defines a perfect + * Mind that the sequence + * of defs from back to front defines a perfect * elimination order. So, coloring the definitions from first to last * will work. */ @@ -660,15 +665,14 @@ static void assign(ir_node *block, void *env_ptr) del_pset(live_in); } - - void be_ra_chordal_color(be_chordal_env_t *chordal_env) { - int i; + be_chordal_alloc_env_t env; + char buf[256]; + int colors_n = arch_register_class_n_regs(chordal_env->cls); ir_graph *irg = chordal_env->irg; - be_chordal_alloc_env_t env; if(get_irg_dom_state(irg) != dom_consistent) compute_doms(irg); @@ -676,24 +680,13 @@ void be_ra_chordal_color(be_chordal_env_t *chordal_env) env.chordal_env = chordal_env; env.colors_n = colors_n; env.colors = bitset_malloc(colors_n); - env.ignore_colors = bitset_malloc(colors_n); env.in_colors = bitset_malloc(colors_n); env.pre_colored = pset_new_ptr_default(); - bitset_clear_all(env.ignore_colors); -#if 0 - for(i = 0; i < chordal_env->cls->n_regs; ++i) { - const arch_register_t *reg = &chordal_env->cls->regs[i]; - if(arch_register_type_is(reg, ignore)) - bitset_set(env.ignore_colors, reg->index); - } -#endif - /* Handle register targeting constraints */ dom_tree_walk_irg(irg, constraints, NULL, &env); - { - char buf[128]; + if(chordal_env->opts->dump_flags & BE_CH_DUMP_CONSTR) { snprintf(buf, sizeof(buf), "-%s-constr", chordal_env->cls->name); dump_ir_block_graph_sched(chordal_env->irg, buf); } @@ -709,23 +702,16 @@ void be_ra_chordal_color(be_chordal_env_t *chordal_env) be_numbering_done(irg); -#ifdef DUMP_INTERVALS - { - char buf[128]; + if(chordal_env->opts->dump_flags & BE_CH_DUMP_TREE_INTV) { plotter_t *plotter; - ir_snprintf(buf, sizeof(buf), "ifg_%s_%F.eps", chordal_env->cls->name, irg); plotter = new_plotter_ps(buf); - draw_interval_tree(&draw_chordal_def_opts, chordal_env, plotter); plotter_free(plotter); } -#endif free(env.live); free(env.colors); free(env.in_colors); - free(env.ignore_colors); - del_pset(env.pre_colored); }