From: Sebastian Buchwald Date: Thu, 17 Mar 2011 17:56:08 +0000 (+0100) Subject: Prepared for diff. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=41f96b4dc5a6b5e4a2cc1b5b480b7cece31d1d66;hp=bed05ed2d3b2ae84849fd2e75603e8834153cd5b;p=libfirm Prepared for diff. --- diff --git a/ir/be/bessaconstr.c b/ir/be/bessaconstr.c index 031493b6b..f97cb746c 100644 --- a/ir/be/bessaconstr.c +++ b/ir/be/bessaconstr.c @@ -139,6 +139,7 @@ static ir_node *create_phi(be_ssa_construction_env_t *env, ir_node *block, ir_node *pred_block = get_Block_cfgpred_block(block, i); ir_node *pred_def = search_def_end_of_block(env, pred_block); + DBG((dbg, LEVEL_1, "\t%+F(%d) -> %+F\n", phi, i, pred_def)); set_irn_n(phi, i, pred_def); } @@ -354,6 +355,8 @@ void be_ssa_construction_fix_users_array(be_ssa_construction_env_t *env, env->iterated_domfront_calculated = 1; } + DBG((dbg, LEVEL_1, "\tfixing users array\n")); + stat_ev_tim_push(); for (i = 0; i < nodes_len; ++i) { ir_node *value = nodes[i]; @@ -385,7 +388,7 @@ void be_ssa_construction_fix_users_array(be_ssa_construction_env_t *env, panic("no definition found for %+F at position %d", use, pos); } - DBG((dbg, LEVEL_2, "\t%+F(%d) -> %+F\n", use, pos, def)); + DBG((dbg, LEVEL_1, "\t%+F(%d) -> %+F\n", use, pos, def)); set_irn_n(use, pos, def); stat_ev_cnt_inc(uses); }