7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)

Separate limit by Opaque2 node when calculating new limit for unrolled loop.

Reviewed-by: never
This commit is contained in:
Vladimir Kozlov 2011-05-05 21:06:14 -07:00
parent 9f0bca3b75
commit 8698030a91
2 changed files with 25 additions and 16 deletions

View file

@ -546,6 +546,7 @@ static void adjust_check(Node* proj, Node* range, Node* index,
Node *new_bol = gvn->transform( new (gvn->C, 2) BoolNode( new_cmp, bol->as_Bool()->_test._test ) ); Node *new_bol = gvn->transform( new (gvn->C, 2) BoolNode( new_cmp, bol->as_Bool()->_test._test ) );
igvn->hash_delete( iff ); igvn->hash_delete( iff );
iff->set_req_X( 1, new_bol, igvn ); iff->set_req_X( 1, new_bol, igvn );
igvn->_worklist.push( iff );
} }
//------------------------------up_one_dom------------------------------------- //------------------------------up_one_dom-------------------------------------

View file

@ -1229,6 +1229,19 @@ void PhaseIdealLoop::do_unroll( IdealLoopTree *loop, Node_List &old_new, bool ad
new_limit = _igvn.intcon(limit->get_int() - stride_con); new_limit = _igvn.intcon(limit->get_int() - stride_con);
set_ctrl(new_limit, C->root()); set_ctrl(new_limit, C->root());
} else { } else {
// Limit is not constant.
{
// Separate limit by Opaque node in case it is an incremented
// variable from previous loop to avoid using pre-incremented
// value which could increase register pressure.
// Otherwise reorg_offsets() optimization will create a separate
// Opaque node for each use of trip-counter and as result
// zero trip guard limit will be different from loop limit.
assert(has_ctrl(opaq), "should have it");
Node* opaq_ctrl = get_ctrl(opaq);
limit = new (C, 2) Opaque2Node( C, limit );
register_new_node( limit, opaq_ctrl );
}
if (stride_con > 0 && ((limit_type->_lo - stride_con) < limit_type->_lo) || if (stride_con > 0 && ((limit_type->_lo - stride_con) < limit_type->_lo) ||
stride_con < 0 && ((limit_type->_hi - stride_con) > limit_type->_hi)) { stride_con < 0 && ((limit_type->_hi - stride_con) > limit_type->_hi)) {
// No underflow. // No underflow.
@ -1278,10 +1291,6 @@ void PhaseIdealLoop::do_unroll( IdealLoopTree *loop, Node_List &old_new, bool ad
register_new_node(new_limit, ctrl); register_new_node(new_limit, ctrl);
} }
assert(new_limit != NULL, ""); assert(new_limit != NULL, "");
if (limit->outcnt() == 2) {
// Replace old limit if it is used only in loop tests.
_igvn.replace_node(limit, new_limit);
} else {
// Replace in loop test. // Replace in loop test.
_igvn.hash_delete(cmp); _igvn.hash_delete(cmp);
cmp->set_req(2, new_limit); cmp->set_req(2, new_limit);
@ -1296,7 +1305,6 @@ void PhaseIdealLoop::do_unroll( IdealLoopTree *loop, Node_List &old_new, bool ad
_igvn.hash_delete(opaq); _igvn.hash_delete(opaq);
opaq->set_req(1, new_limit); opaq->set_req(1, new_limit);
} }
}
// Adjust max trip count. The trip count is intentionally rounded // Adjust max trip count. The trip count is intentionally rounded
// down here (e.g. 15-> 7-> 3-> 1) because if we unwittingly over-unroll, // down here (e.g. 15-> 7-> 3-> 1) because if we unwittingly over-unroll,