src/share/vm/opto/loopopts.cpp

Thu, 12 Oct 2017 21:27:07 +0800

author
aoqi
date
Thu, 12 Oct 2017 21:27:07 +0800
changeset 7535
7ae4e26cb1e0
parent 7415
b6585ac86988
parent 6876
710a3c8b516e
child 8604
04d83ba48607
permissions
-rw-r--r--

merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #include "precompiled.hpp"
aoqi@0 26 #include "memory/allocation.inline.hpp"
aoqi@0 27 #include "opto/addnode.hpp"
aoqi@0 28 #include "opto/connode.hpp"
aoqi@0 29 #include "opto/divnode.hpp"
aoqi@0 30 #include "opto/loopnode.hpp"
aoqi@0 31 #include "opto/matcher.hpp"
aoqi@0 32 #include "opto/mulnode.hpp"
aoqi@0 33 #include "opto/rootnode.hpp"
aoqi@0 34 #include "opto/subnode.hpp"
aoqi@0 35
aoqi@0 36 //=============================================================================
aoqi@0 37 //------------------------------split_thru_phi---------------------------------
aoqi@0 38 // Split Node 'n' through merge point if there is enough win.
aoqi@0 39 Node *PhaseIdealLoop::split_thru_phi( Node *n, Node *region, int policy ) {
aoqi@0 40 if (n->Opcode() == Op_ConvI2L && n->bottom_type() != TypeLong::LONG) {
aoqi@0 41 // ConvI2L may have type information on it which is unsafe to push up
aoqi@0 42 // so disable this for now
aoqi@0 43 return NULL;
aoqi@0 44 }
aoqi@0 45
aoqi@0 46 int wins = 0;
aoqi@0 47 assert(!n->is_CFG(), "");
aoqi@0 48 assert(region->is_Region(), "");
aoqi@0 49
aoqi@0 50 const Type* type = n->bottom_type();
aoqi@0 51 const TypeOopPtr *t_oop = _igvn.type(n)->isa_oopptr();
aoqi@0 52 Node *phi;
aoqi@0 53 if (t_oop != NULL && t_oop->is_known_instance_field()) {
aoqi@0 54 int iid = t_oop->instance_id();
aoqi@0 55 int index = C->get_alias_index(t_oop);
aoqi@0 56 int offset = t_oop->offset();
aoqi@0 57 phi = new (C) PhiNode(region, type, NULL, iid, index, offset);
aoqi@0 58 } else {
aoqi@0 59 phi = PhiNode::make_blank(region, n);
aoqi@0 60 }
aoqi@0 61 uint old_unique = C->unique();
aoqi@0 62 for (uint i = 1; i < region->req(); i++) {
aoqi@0 63 Node *x;
aoqi@0 64 Node* the_clone = NULL;
aoqi@0 65 if (region->in(i) == C->top()) {
aoqi@0 66 x = C->top(); // Dead path? Use a dead data op
aoqi@0 67 } else {
aoqi@0 68 x = n->clone(); // Else clone up the data op
aoqi@0 69 the_clone = x; // Remember for possible deletion.
aoqi@0 70 // Alter data node to use pre-phi inputs
aoqi@0 71 if (n->in(0) == region)
aoqi@0 72 x->set_req( 0, region->in(i) );
aoqi@0 73 for (uint j = 1; j < n->req(); j++) {
aoqi@0 74 Node *in = n->in(j);
aoqi@0 75 if (in->is_Phi() && in->in(0) == region)
aoqi@0 76 x->set_req( j, in->in(i) ); // Use pre-Phi input for the clone
aoqi@0 77 }
aoqi@0 78 }
aoqi@0 79 // Check for a 'win' on some paths
aoqi@0 80 const Type *t = x->Value(&_igvn);
aoqi@0 81
aoqi@0 82 bool singleton = t->singleton();
aoqi@0 83
aoqi@0 84 // A TOP singleton indicates that there are no possible values incoming
aoqi@0 85 // along a particular edge. In most cases, this is OK, and the Phi will
aoqi@0 86 // be eliminated later in an Ideal call. However, we can't allow this to
aoqi@0 87 // happen if the singleton occurs on loop entry, as the elimination of
aoqi@0 88 // the PhiNode may cause the resulting node to migrate back to a previous
aoqi@0 89 // loop iteration.
aoqi@0 90 if (singleton && t == Type::TOP) {
aoqi@0 91 // Is_Loop() == false does not confirm the absence of a loop (e.g., an
aoqi@0 92 // irreducible loop may not be indicated by an affirmative is_Loop());
aoqi@0 93 // therefore, the only top we can split thru a phi is on a backedge of
aoqi@0 94 // a loop.
aoqi@0 95 singleton &= region->is_Loop() && (i != LoopNode::EntryControl);
aoqi@0 96 }
aoqi@0 97
aoqi@0 98 if (singleton) {
aoqi@0 99 wins++;
aoqi@0 100 x = ((PhaseGVN&)_igvn).makecon(t);
aoqi@0 101 } else {
aoqi@0 102 // We now call Identity to try to simplify the cloned node.
aoqi@0 103 // Note that some Identity methods call phase->type(this).
aoqi@0 104 // Make sure that the type array is big enough for
aoqi@0 105 // our new node, even though we may throw the node away.
aoqi@0 106 // (Note: This tweaking with igvn only works because x is a new node.)
aoqi@0 107 _igvn.set_type(x, t);
aoqi@0 108 // If x is a TypeNode, capture any more-precise type permanently into Node
aoqi@0 109 // otherwise it will be not updated during igvn->transform since
aoqi@0 110 // igvn->type(x) is set to x->Value() already.
aoqi@0 111 x->raise_bottom_type(t);
aoqi@0 112 Node *y = x->Identity(&_igvn);
aoqi@0 113 if (y != x) {
aoqi@0 114 wins++;
aoqi@0 115 x = y;
aoqi@0 116 } else {
aoqi@0 117 y = _igvn.hash_find(x);
aoqi@0 118 if (y) {
aoqi@0 119 wins++;
aoqi@0 120 x = y;
aoqi@0 121 } else {
aoqi@0 122 // Else x is a new node we are keeping
aoqi@0 123 // We do not need register_new_node_with_optimizer
aoqi@0 124 // because set_type has already been called.
aoqi@0 125 _igvn._worklist.push(x);
aoqi@0 126 }
aoqi@0 127 }
aoqi@0 128 }
aoqi@0 129 if (x != the_clone && the_clone != NULL)
aoqi@0 130 _igvn.remove_dead_node(the_clone);
aoqi@0 131 phi->set_req( i, x );
aoqi@0 132 }
aoqi@0 133 // Too few wins?
aoqi@0 134 if (wins <= policy) {
aoqi@0 135 _igvn.remove_dead_node(phi);
aoqi@0 136 return NULL;
aoqi@0 137 }
aoqi@0 138
aoqi@0 139 // Record Phi
aoqi@0 140 register_new_node( phi, region );
aoqi@0 141
aoqi@0 142 for (uint i2 = 1; i2 < phi->req(); i2++) {
aoqi@0 143 Node *x = phi->in(i2);
aoqi@0 144 // If we commoned up the cloned 'x' with another existing Node,
aoqi@0 145 // the existing Node picks up a new use. We need to make the
aoqi@0 146 // existing Node occur higher up so it dominates its uses.
aoqi@0 147 Node *old_ctrl;
aoqi@0 148 IdealLoopTree *old_loop;
aoqi@0 149
aoqi@0 150 if (x->is_Con()) {
aoqi@0 151 // Constant's control is always root.
aoqi@0 152 set_ctrl(x, C->root());
aoqi@0 153 continue;
aoqi@0 154 }
aoqi@0 155 // The occasional new node
aoqi@0 156 if (x->_idx >= old_unique) { // Found a new, unplaced node?
aoqi@0 157 old_ctrl = NULL;
aoqi@0 158 old_loop = NULL; // Not in any prior loop
aoqi@0 159 } else {
aoqi@0 160 old_ctrl = get_ctrl(x);
aoqi@0 161 old_loop = get_loop(old_ctrl); // Get prior loop
aoqi@0 162 }
aoqi@0 163 // New late point must dominate new use
aoqi@0 164 Node *new_ctrl = dom_lca(old_ctrl, region->in(i2));
aoqi@0 165 if (new_ctrl == old_ctrl) // Nothing is changed
aoqi@0 166 continue;
aoqi@0 167
aoqi@0 168 IdealLoopTree *new_loop = get_loop(new_ctrl);
aoqi@0 169
aoqi@0 170 // Don't move x into a loop if its uses are
aoqi@0 171 // outside of loop. Otherwise x will be cloned
aoqi@0 172 // for each use outside of this loop.
aoqi@0 173 IdealLoopTree *use_loop = get_loop(region);
aoqi@0 174 if (!new_loop->is_member(use_loop) &&
aoqi@0 175 (old_loop == NULL || !new_loop->is_member(old_loop))) {
aoqi@0 176 // Take early control, later control will be recalculated
aoqi@0 177 // during next iteration of loop optimizations.
aoqi@0 178 new_ctrl = get_early_ctrl(x);
aoqi@0 179 new_loop = get_loop(new_ctrl);
aoqi@0 180 }
aoqi@0 181 // Set new location
aoqi@0 182 set_ctrl(x, new_ctrl);
aoqi@0 183 // If changing loop bodies, see if we need to collect into new body
aoqi@0 184 if (old_loop != new_loop) {
aoqi@0 185 if (old_loop && !old_loop->_child)
aoqi@0 186 old_loop->_body.yank(x);
aoqi@0 187 if (!new_loop->_child)
aoqi@0 188 new_loop->_body.push(x); // Collect body info
aoqi@0 189 }
aoqi@0 190 }
aoqi@0 191
aoqi@0 192 return phi;
aoqi@0 193 }
aoqi@0 194
aoqi@0 195 //------------------------------dominated_by------------------------------------
aoqi@0 196 // Replace the dominated test with an obvious true or false. Place it on the
aoqi@0 197 // IGVN worklist for later cleanup. Move control-dependent data Nodes on the
aoqi@0 198 // live path up to the dominating control.
aoqi@0 199 void PhaseIdealLoop::dominated_by( Node *prevdom, Node *iff, bool flip, bool exclude_loop_predicate ) {
aoqi@0 200 #ifndef PRODUCT
aoqi@0 201 if (VerifyLoopOptimizations && PrintOpto) tty->print_cr("dominating test");
aoqi@0 202 #endif
aoqi@0 203
aoqi@0 204
aoqi@0 205 // prevdom is the dominating projection of the dominating test.
aoqi@0 206 assert( iff->is_If(), "" );
aoqi@0 207 assert( iff->Opcode() == Op_If || iff->Opcode() == Op_CountedLoopEnd, "Check this code when new subtype is added");
aoqi@0 208 int pop = prevdom->Opcode();
aoqi@0 209 assert( pop == Op_IfFalse || pop == Op_IfTrue, "" );
aoqi@0 210 if (flip) {
aoqi@0 211 if (pop == Op_IfTrue)
aoqi@0 212 pop = Op_IfFalse;
aoqi@0 213 else
aoqi@0 214 pop = Op_IfTrue;
aoqi@0 215 }
aoqi@0 216 // 'con' is set to true or false to kill the dominated test.
aoqi@0 217 Node *con = _igvn.makecon(pop == Op_IfTrue ? TypeInt::ONE : TypeInt::ZERO);
aoqi@0 218 set_ctrl(con, C->root()); // Constant gets a new use
aoqi@0 219 // Hack the dominated test
aoqi@0 220 _igvn.replace_input_of(iff, 1, con);
aoqi@0 221
aoqi@0 222 // If I dont have a reachable TRUE and FALSE path following the IfNode then
aoqi@0 223 // I can assume this path reaches an infinite loop. In this case it's not
aoqi@0 224 // important to optimize the data Nodes - either the whole compilation will
aoqi@0 225 // be tossed or this path (and all data Nodes) will go dead.
aoqi@0 226 if (iff->outcnt() != 2) return;
aoqi@0 227
aoqi@0 228 // Make control-dependent data Nodes on the live path (path that will remain
aoqi@0 229 // once the dominated IF is removed) become control-dependent on the
aoqi@0 230 // dominating projection.
aoqi@0 231 Node* dp = iff->as_If()->proj_out(pop == Op_IfTrue);
aoqi@0 232
aoqi@0 233 // Loop predicates may have depending checks which should not
aoqi@0 234 // be skipped. For example, range check predicate has two checks
aoqi@0 235 // for lower and upper bounds.
aoqi@0 236 if (dp == NULL)
aoqi@0 237 return;
aoqi@0 238
aoqi@0 239 ProjNode* dp_proj = dp->as_Proj();
aoqi@0 240 ProjNode* unc_proj = iff->as_If()->proj_out(1 - dp_proj->_con)->as_Proj();
aoqi@0 241 if (exclude_loop_predicate &&
roland@7415 242 (unc_proj->is_uncommon_trap_proj(Deoptimization::Reason_predicate) ||
roland@7415 243 unc_proj->is_uncommon_trap_proj(Deoptimization::Reason_range_check))) {
roland@7415 244 // If this is a range check (IfNode::is_range_check), do not
roland@7415 245 // reorder because Compile::allow_range_check_smearing might have
roland@7415 246 // changed the check.
aoqi@0 247 return; // Let IGVN transformation change control dependence.
roland@7415 248 }
aoqi@0 249
aoqi@0 250 IdealLoopTree *old_loop = get_loop(dp);
aoqi@0 251
aoqi@0 252 for (DUIterator_Fast imax, i = dp->fast_outs(imax); i < imax; i++) {
aoqi@0 253 Node* cd = dp->fast_out(i); // Control-dependent node
aoqi@0 254 if (cd->depends_only_on_test()) {
aoqi@0 255 assert(cd->in(0) == dp, "");
aoqi@0 256 _igvn.replace_input_of(cd, 0, prevdom);
aoqi@0 257 set_early_ctrl(cd);
aoqi@0 258 IdealLoopTree *new_loop = get_loop(get_ctrl(cd));
aoqi@0 259 if (old_loop != new_loop) {
aoqi@0 260 if (!old_loop->_child) old_loop->_body.yank(cd);
aoqi@0 261 if (!new_loop->_child) new_loop->_body.push(cd);
aoqi@0 262 }
aoqi@0 263 --i;
aoqi@0 264 --imax;
aoqi@0 265 }
aoqi@0 266 }
aoqi@0 267 }
aoqi@0 268
aoqi@0 269 //------------------------------has_local_phi_input----------------------------
aoqi@0 270 // Return TRUE if 'n' has Phi inputs from its local block and no other
aoqi@0 271 // block-local inputs (all non-local-phi inputs come from earlier blocks)
aoqi@0 272 Node *PhaseIdealLoop::has_local_phi_input( Node *n ) {
aoqi@0 273 Node *n_ctrl = get_ctrl(n);
aoqi@0 274 // See if some inputs come from a Phi in this block, or from before
aoqi@0 275 // this block.
aoqi@0 276 uint i;
aoqi@0 277 for( i = 1; i < n->req(); i++ ) {
aoqi@0 278 Node *phi = n->in(i);
aoqi@0 279 if( phi->is_Phi() && phi->in(0) == n_ctrl )
aoqi@0 280 break;
aoqi@0 281 }
aoqi@0 282 if( i >= n->req() )
aoqi@0 283 return NULL; // No Phi inputs; nowhere to clone thru
aoqi@0 284
aoqi@0 285 // Check for inputs created between 'n' and the Phi input. These
aoqi@0 286 // must split as well; they have already been given the chance
aoqi@0 287 // (courtesy of a post-order visit) and since they did not we must
aoqi@0 288 // recover the 'cost' of splitting them by being very profitable
aoqi@0 289 // when splitting 'n'. Since this is unlikely we simply give up.
aoqi@0 290 for( i = 1; i < n->req(); i++ ) {
aoqi@0 291 Node *m = n->in(i);
aoqi@0 292 if( get_ctrl(m) == n_ctrl && !m->is_Phi() ) {
aoqi@0 293 // We allow the special case of AddP's with no local inputs.
aoqi@0 294 // This allows us to split-up address expressions.
aoqi@0 295 if (m->is_AddP() &&
aoqi@0 296 get_ctrl(m->in(2)) != n_ctrl &&
aoqi@0 297 get_ctrl(m->in(3)) != n_ctrl) {
aoqi@0 298 // Move the AddP up to dominating point
aoqi@0 299 set_ctrl_and_loop(m, find_non_split_ctrl(idom(n_ctrl)));
aoqi@0 300 continue;
aoqi@0 301 }
aoqi@0 302 return NULL;
aoqi@0 303 }
aoqi@0 304 }
aoqi@0 305
aoqi@0 306 return n_ctrl;
aoqi@0 307 }
aoqi@0 308
aoqi@0 309 //------------------------------remix_address_expressions----------------------
aoqi@0 310 // Rework addressing expressions to get the most loop-invariant stuff
aoqi@0 311 // moved out. We'd like to do all associative operators, but it's especially
aoqi@0 312 // important (common) to do address expressions.
aoqi@0 313 Node *PhaseIdealLoop::remix_address_expressions( Node *n ) {
aoqi@0 314 if (!has_ctrl(n)) return NULL;
aoqi@0 315 Node *n_ctrl = get_ctrl(n);
aoqi@0 316 IdealLoopTree *n_loop = get_loop(n_ctrl);
aoqi@0 317
aoqi@0 318 // See if 'n' mixes loop-varying and loop-invariant inputs and
aoqi@0 319 // itself is loop-varying.
aoqi@0 320
aoqi@0 321 // Only interested in binary ops (and AddP)
aoqi@0 322 if( n->req() < 3 || n->req() > 4 ) return NULL;
aoqi@0 323
aoqi@0 324 Node *n1_ctrl = get_ctrl(n->in( 1));
aoqi@0 325 Node *n2_ctrl = get_ctrl(n->in( 2));
aoqi@0 326 Node *n3_ctrl = get_ctrl(n->in(n->req() == 3 ? 2 : 3));
aoqi@0 327 IdealLoopTree *n1_loop = get_loop( n1_ctrl );
aoqi@0 328 IdealLoopTree *n2_loop = get_loop( n2_ctrl );
aoqi@0 329 IdealLoopTree *n3_loop = get_loop( n3_ctrl );
aoqi@0 330
aoqi@0 331 // Does one of my inputs spin in a tighter loop than self?
aoqi@0 332 if( (n_loop->is_member( n1_loop ) && n_loop != n1_loop) ||
aoqi@0 333 (n_loop->is_member( n2_loop ) && n_loop != n2_loop) ||
aoqi@0 334 (n_loop->is_member( n3_loop ) && n_loop != n3_loop) )
aoqi@0 335 return NULL; // Leave well enough alone
aoqi@0 336
aoqi@0 337 // Is at least one of my inputs loop-invariant?
aoqi@0 338 if( n1_loop == n_loop &&
aoqi@0 339 n2_loop == n_loop &&
aoqi@0 340 n3_loop == n_loop )
aoqi@0 341 return NULL; // No loop-invariant inputs
aoqi@0 342
aoqi@0 343
aoqi@0 344 int n_op = n->Opcode();
aoqi@0 345
aoqi@0 346 // Replace expressions like ((V+I) << 2) with (V<<2 + I<<2).
aoqi@0 347 if( n_op == Op_LShiftI ) {
aoqi@0 348 // Scale is loop invariant
aoqi@0 349 Node *scale = n->in(2);
aoqi@0 350 Node *scale_ctrl = get_ctrl(scale);
aoqi@0 351 IdealLoopTree *scale_loop = get_loop(scale_ctrl );
aoqi@0 352 if( n_loop == scale_loop || !scale_loop->is_member( n_loop ) )
aoqi@0 353 return NULL;
aoqi@0 354 const TypeInt *scale_t = scale->bottom_type()->isa_int();
aoqi@0 355 if( scale_t && scale_t->is_con() && scale_t->get_con() >= 16 )
aoqi@0 356 return NULL; // Dont bother with byte/short masking
aoqi@0 357 // Add must vary with loop (else shift would be loop-invariant)
aoqi@0 358 Node *add = n->in(1);
aoqi@0 359 Node *add_ctrl = get_ctrl(add);
aoqi@0 360 IdealLoopTree *add_loop = get_loop(add_ctrl);
aoqi@0 361 //assert( n_loop == add_loop, "" );
aoqi@0 362 if( n_loop != add_loop ) return NULL; // happens w/ evil ZKM loops
aoqi@0 363
aoqi@0 364 // Convert I-V into I+ (0-V); same for V-I
aoqi@0 365 if( add->Opcode() == Op_SubI &&
aoqi@0 366 _igvn.type( add->in(1) ) != TypeInt::ZERO ) {
aoqi@0 367 Node *zero = _igvn.intcon(0);
aoqi@0 368 set_ctrl(zero, C->root());
aoqi@0 369 Node *neg = new (C) SubINode( _igvn.intcon(0), add->in(2) );
aoqi@0 370 register_new_node( neg, get_ctrl(add->in(2) ) );
aoqi@0 371 add = new (C) AddINode( add->in(1), neg );
aoqi@0 372 register_new_node( add, add_ctrl );
aoqi@0 373 }
aoqi@0 374 if( add->Opcode() != Op_AddI ) return NULL;
aoqi@0 375 // See if one add input is loop invariant
aoqi@0 376 Node *add_var = add->in(1);
aoqi@0 377 Node *add_var_ctrl = get_ctrl(add_var);
aoqi@0 378 IdealLoopTree *add_var_loop = get_loop(add_var_ctrl );
aoqi@0 379 Node *add_invar = add->in(2);
aoqi@0 380 Node *add_invar_ctrl = get_ctrl(add_invar);
aoqi@0 381 IdealLoopTree *add_invar_loop = get_loop(add_invar_ctrl );
aoqi@0 382 if( add_var_loop == n_loop ) {
aoqi@0 383 } else if( add_invar_loop == n_loop ) {
aoqi@0 384 // Swap to find the invariant part
aoqi@0 385 add_invar = add_var;
aoqi@0 386 add_invar_ctrl = add_var_ctrl;
aoqi@0 387 add_invar_loop = add_var_loop;
aoqi@0 388 add_var = add->in(2);
aoqi@0 389 Node *add_var_ctrl = get_ctrl(add_var);
aoqi@0 390 IdealLoopTree *add_var_loop = get_loop(add_var_ctrl );
aoqi@0 391 } else // Else neither input is loop invariant
aoqi@0 392 return NULL;
aoqi@0 393 if( n_loop == add_invar_loop || !add_invar_loop->is_member( n_loop ) )
aoqi@0 394 return NULL; // No invariant part of the add?
aoqi@0 395
aoqi@0 396 // Yes! Reshape address expression!
aoqi@0 397 Node *inv_scale = new (C) LShiftINode( add_invar, scale );
aoqi@0 398 Node *inv_scale_ctrl =
aoqi@0 399 dom_depth(add_invar_ctrl) > dom_depth(scale_ctrl) ?
aoqi@0 400 add_invar_ctrl : scale_ctrl;
aoqi@0 401 register_new_node( inv_scale, inv_scale_ctrl );
aoqi@0 402 Node *var_scale = new (C) LShiftINode( add_var, scale );
aoqi@0 403 register_new_node( var_scale, n_ctrl );
aoqi@0 404 Node *var_add = new (C) AddINode( var_scale, inv_scale );
aoqi@0 405 register_new_node( var_add, n_ctrl );
aoqi@0 406 _igvn.replace_node( n, var_add );
aoqi@0 407 return var_add;
aoqi@0 408 }
aoqi@0 409
aoqi@0 410 // Replace (I+V) with (V+I)
aoqi@0 411 if( n_op == Op_AddI ||
aoqi@0 412 n_op == Op_AddL ||
aoqi@0 413 n_op == Op_AddF ||
aoqi@0 414 n_op == Op_AddD ||
aoqi@0 415 n_op == Op_MulI ||
aoqi@0 416 n_op == Op_MulL ||
aoqi@0 417 n_op == Op_MulF ||
aoqi@0 418 n_op == Op_MulD ) {
aoqi@0 419 if( n2_loop == n_loop ) {
aoqi@0 420 assert( n1_loop != n_loop, "" );
aoqi@0 421 n->swap_edges(1, 2);
aoqi@0 422 }
aoqi@0 423 }
aoqi@0 424
aoqi@0 425 // Replace ((I1 +p V) +p I2) with ((I1 +p I2) +p V),
aoqi@0 426 // but not if I2 is a constant.
aoqi@0 427 if( n_op == Op_AddP ) {
aoqi@0 428 if( n2_loop == n_loop && n3_loop != n_loop ) {
aoqi@0 429 if( n->in(2)->Opcode() == Op_AddP && !n->in(3)->is_Con() ) {
aoqi@0 430 Node *n22_ctrl = get_ctrl(n->in(2)->in(2));
aoqi@0 431 Node *n23_ctrl = get_ctrl(n->in(2)->in(3));
aoqi@0 432 IdealLoopTree *n22loop = get_loop( n22_ctrl );
aoqi@0 433 IdealLoopTree *n23_loop = get_loop( n23_ctrl );
aoqi@0 434 if( n22loop != n_loop && n22loop->is_member(n_loop) &&
aoqi@0 435 n23_loop == n_loop ) {
aoqi@0 436 Node *add1 = new (C) AddPNode( n->in(1), n->in(2)->in(2), n->in(3) );
aoqi@0 437 // Stuff new AddP in the loop preheader
aoqi@0 438 register_new_node( add1, n_loop->_head->in(LoopNode::EntryControl) );
aoqi@0 439 Node *add2 = new (C) AddPNode( n->in(1), add1, n->in(2)->in(3) );
aoqi@0 440 register_new_node( add2, n_ctrl );
aoqi@0 441 _igvn.replace_node( n, add2 );
aoqi@0 442 return add2;
aoqi@0 443 }
aoqi@0 444 }
aoqi@0 445 }
aoqi@0 446
aoqi@0 447 // Replace (I1 +p (I2 + V)) with ((I1 +p I2) +p V)
aoqi@0 448 if( n2_loop != n_loop && n3_loop == n_loop ) {
aoqi@0 449 if( n->in(3)->Opcode() == Op_AddI ) {
aoqi@0 450 Node *V = n->in(3)->in(1);
aoqi@0 451 Node *I = n->in(3)->in(2);
aoqi@0 452 if( is_member(n_loop,get_ctrl(V)) ) {
aoqi@0 453 } else {
aoqi@0 454 Node *tmp = V; V = I; I = tmp;
aoqi@0 455 }
aoqi@0 456 if( !is_member(n_loop,get_ctrl(I)) ) {
aoqi@0 457 Node *add1 = new (C) AddPNode( n->in(1), n->in(2), I );
aoqi@0 458 // Stuff new AddP in the loop preheader
aoqi@0 459 register_new_node( add1, n_loop->_head->in(LoopNode::EntryControl) );
aoqi@0 460 Node *add2 = new (C) AddPNode( n->in(1), add1, V );
aoqi@0 461 register_new_node( add2, n_ctrl );
aoqi@0 462 _igvn.replace_node( n, add2 );
aoqi@0 463 return add2;
aoqi@0 464 }
aoqi@0 465 }
aoqi@0 466 }
aoqi@0 467 }
aoqi@0 468
aoqi@0 469 return NULL;
aoqi@0 470 }
aoqi@0 471
aoqi@0 472 //------------------------------conditional_move-------------------------------
aoqi@0 473 // Attempt to replace a Phi with a conditional move. We have some pretty
aoqi@0 474 // strict profitability requirements. All Phis at the merge point must
aoqi@0 475 // be converted, so we can remove the control flow. We need to limit the
aoqi@0 476 // number of c-moves to a small handful. All code that was in the side-arms
aoqi@0 477 // of the CFG diamond is now speculatively executed. This code has to be
aoqi@0 478 // "cheap enough". We are pretty much limited to CFG diamonds that merge
aoqi@0 479 // 1 or 2 items with a total of 1 or 2 ops executed speculatively.
aoqi@0 480 Node *PhaseIdealLoop::conditional_move( Node *region ) {
aoqi@0 481
aoqi@0 482 assert(region->is_Region(), "sanity check");
aoqi@0 483 if (region->req() != 3) return NULL;
aoqi@0 484
aoqi@0 485 // Check for CFG diamond
aoqi@0 486 Node *lp = region->in(1);
aoqi@0 487 Node *rp = region->in(2);
aoqi@0 488 if (!lp || !rp) return NULL;
aoqi@0 489 Node *lp_c = lp->in(0);
aoqi@0 490 if (lp_c == NULL || lp_c != rp->in(0) || !lp_c->is_If()) return NULL;
aoqi@0 491 IfNode *iff = lp_c->as_If();
aoqi@0 492
aoqi@0 493 // Check for ops pinned in an arm of the diamond.
aoqi@0 494 // Can't remove the control flow in this case
aoqi@0 495 if (lp->outcnt() > 1) return NULL;
aoqi@0 496 if (rp->outcnt() > 1) return NULL;
aoqi@0 497
aoqi@0 498 IdealLoopTree* r_loop = get_loop(region);
aoqi@0 499 assert(r_loop == get_loop(iff), "sanity");
aoqi@0 500 // Always convert to CMOVE if all results are used only outside this loop.
aoqi@0 501 bool used_inside_loop = (r_loop == _ltree_root);
aoqi@0 502
aoqi@0 503 // Check profitability
aoqi@0 504 int cost = 0;
aoqi@0 505 int phis = 0;
aoqi@0 506 for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) {
aoqi@0 507 Node *out = region->fast_out(i);
aoqi@0 508 if (!out->is_Phi()) continue; // Ignore other control edges, etc
aoqi@0 509 phis++;
aoqi@0 510 PhiNode* phi = out->as_Phi();
aoqi@0 511 BasicType bt = phi->type()->basic_type();
aoqi@0 512 switch (bt) {
aoqi@0 513 case T_FLOAT:
aoqi@0 514 case T_DOUBLE: {
aoqi@0 515 cost += Matcher::float_cmove_cost(); // Could be very expensive
aoqi@0 516 break;
aoqi@0 517 }
aoqi@0 518 case T_LONG: {
aoqi@0 519 cost += Matcher::long_cmove_cost(); // May encodes as 2 CMOV's
aoqi@0 520 }
aoqi@0 521 case T_INT: // These all CMOV fine
aoqi@0 522 case T_ADDRESS: { // (RawPtr)
aoqi@0 523 cost++;
aoqi@0 524 break;
aoqi@0 525 }
aoqi@0 526 case T_NARROWOOP: // Fall through
aoqi@0 527 case T_OBJECT: { // Base oops are OK, but not derived oops
aoqi@0 528 const TypeOopPtr *tp = phi->type()->make_ptr()->isa_oopptr();
aoqi@0 529 // Derived pointers are Bad (tm): what's the Base (for GC purposes) of a
aoqi@0 530 // CMOVE'd derived pointer? It's a CMOVE'd derived base. Thus
aoqi@0 531 // CMOVE'ing a derived pointer requires we also CMOVE the base. If we
aoqi@0 532 // have a Phi for the base here that we convert to a CMOVE all is well
aoqi@0 533 // and good. But if the base is dead, we'll not make a CMOVE. Later
aoqi@0 534 // the allocator will have to produce a base by creating a CMOVE of the
aoqi@0 535 // relevant bases. This puts the allocator in the business of
aoqi@0 536 // manufacturing expensive instructions, generally a bad plan.
aoqi@0 537 // Just Say No to Conditionally-Moved Derived Pointers.
aoqi@0 538 if (tp && tp->offset() != 0)
aoqi@0 539 return NULL;
aoqi@0 540 cost++;
aoqi@0 541 break;
aoqi@0 542 }
aoqi@0 543 default:
aoqi@0 544 return NULL; // In particular, can't do memory or I/O
aoqi@0 545 }
aoqi@0 546 // Add in cost any speculative ops
aoqi@0 547 for (uint j = 1; j < region->req(); j++) {
aoqi@0 548 Node *proj = region->in(j);
aoqi@0 549 Node *inp = phi->in(j);
aoqi@0 550 if (get_ctrl(inp) == proj) { // Found local op
aoqi@0 551 cost++;
aoqi@0 552 // Check for a chain of dependent ops; these will all become
aoqi@0 553 // speculative in a CMOV.
aoqi@0 554 for (uint k = 1; k < inp->req(); k++)
aoqi@0 555 if (get_ctrl(inp->in(k)) == proj)
aoqi@0 556 cost += ConditionalMoveLimit; // Too much speculative goo
aoqi@0 557 }
aoqi@0 558 }
aoqi@0 559 // See if the Phi is used by a Cmp or Narrow oop Decode/Encode.
aoqi@0 560 // This will likely Split-If, a higher-payoff operation.
aoqi@0 561 for (DUIterator_Fast kmax, k = phi->fast_outs(kmax); k < kmax; k++) {
aoqi@0 562 Node* use = phi->fast_out(k);
aoqi@0 563 if (use->is_Cmp() || use->is_DecodeNarrowPtr() || use->is_EncodeNarrowPtr())
aoqi@0 564 cost += ConditionalMoveLimit;
aoqi@0 565 // Is there a use inside the loop?
aoqi@0 566 // Note: check only basic types since CMoveP is pinned.
aoqi@0 567 if (!used_inside_loop && is_java_primitive(bt)) {
aoqi@0 568 IdealLoopTree* u_loop = get_loop(has_ctrl(use) ? get_ctrl(use) : use);
aoqi@0 569 if (r_loop == u_loop || r_loop->is_member(u_loop)) {
aoqi@0 570 used_inside_loop = true;
aoqi@0 571 }
aoqi@0 572 }
aoqi@0 573 }
aoqi@0 574 }
aoqi@0 575 Node* bol = iff->in(1);
aoqi@0 576 assert(bol->Opcode() == Op_Bool, "");
aoqi@0 577 int cmp_op = bol->in(1)->Opcode();
aoqi@0 578 // It is expensive to generate flags from a float compare.
aoqi@0 579 // Avoid duplicated float compare.
aoqi@0 580 if (phis > 1 && (cmp_op == Op_CmpF || cmp_op == Op_CmpD)) return NULL;
aoqi@0 581
aoqi@0 582 float infrequent_prob = PROB_UNLIKELY_MAG(3);
aoqi@0 583 // Ignore cost and blocks frequency if CMOVE can be moved outside the loop.
aoqi@0 584 if (used_inside_loop) {
aoqi@0 585 if (cost >= ConditionalMoveLimit) return NULL; // Too much goo
aoqi@0 586
aoqi@0 587 // BlockLayoutByFrequency optimization moves infrequent branch
aoqi@0 588 // from hot path. No point in CMOV'ing in such case (110 is used
aoqi@0 589 // instead of 100 to take into account not exactness of float value).
aoqi@0 590 if (BlockLayoutByFrequency) {
aoqi@0 591 infrequent_prob = MAX2(infrequent_prob, (float)BlockLayoutMinDiamondPercentage/110.0f);
aoqi@0 592 }
aoqi@0 593 }
aoqi@0 594 // Check for highly predictable branch. No point in CMOV'ing if
aoqi@0 595 // we are going to predict accurately all the time.
aoqi@0 596 if (iff->_prob < infrequent_prob ||
aoqi@0 597 iff->_prob > (1.0f - infrequent_prob))
aoqi@0 598 return NULL;
aoqi@0 599
aoqi@0 600 // --------------
aoqi@0 601 // Now replace all Phis with CMOV's
aoqi@0 602 Node *cmov_ctrl = iff->in(0);
aoqi@0 603 uint flip = (lp->Opcode() == Op_IfTrue);
aoqi@0 604 while (1) {
aoqi@0 605 PhiNode* phi = NULL;
aoqi@0 606 for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) {
aoqi@0 607 Node *out = region->fast_out(i);
aoqi@0 608 if (out->is_Phi()) {
aoqi@0 609 phi = out->as_Phi();
aoqi@0 610 break;
aoqi@0 611 }
aoqi@0 612 }
aoqi@0 613 if (phi == NULL) break;
aoqi@0 614 #ifndef PRODUCT
aoqi@0 615 if (PrintOpto && VerifyLoopOptimizations) tty->print_cr("CMOV");
aoqi@0 616 #endif
aoqi@0 617 // Move speculative ops
aoqi@0 618 for (uint j = 1; j < region->req(); j++) {
aoqi@0 619 Node *proj = region->in(j);
aoqi@0 620 Node *inp = phi->in(j);
aoqi@0 621 if (get_ctrl(inp) == proj) { // Found local op
aoqi@0 622 #ifndef PRODUCT
aoqi@0 623 if (PrintOpto && VerifyLoopOptimizations) {
aoqi@0 624 tty->print(" speculate: ");
aoqi@0 625 inp->dump();
aoqi@0 626 }
aoqi@0 627 #endif
aoqi@0 628 set_ctrl(inp, cmov_ctrl);
aoqi@0 629 }
aoqi@0 630 }
aoqi@0 631 Node *cmov = CMoveNode::make( C, cmov_ctrl, iff->in(1), phi->in(1+flip), phi->in(2-flip), _igvn.type(phi) );
aoqi@0 632 register_new_node( cmov, cmov_ctrl );
aoqi@0 633 _igvn.replace_node( phi, cmov );
aoqi@0 634 #ifndef PRODUCT
aoqi@0 635 if (TraceLoopOpts) {
aoqi@0 636 tty->print("CMOV ");
aoqi@0 637 r_loop->dump_head();
aoqi@0 638 if (Verbose) {
aoqi@0 639 bol->in(1)->dump(1);
aoqi@0 640 cmov->dump(1);
aoqi@0 641 }
aoqi@0 642 }
aoqi@0 643 if (VerifyLoopOptimizations) verify();
aoqi@0 644 #endif
aoqi@0 645 }
aoqi@0 646
aoqi@0 647 // The useless CFG diamond will fold up later; see the optimization in
aoqi@0 648 // RegionNode::Ideal.
aoqi@0 649 _igvn._worklist.push(region);
aoqi@0 650
aoqi@0 651 return iff->in(1);
aoqi@0 652 }
aoqi@0 653
aoqi@0 654 //------------------------------split_if_with_blocks_pre-----------------------
aoqi@0 655 // Do the real work in a non-recursive function. Data nodes want to be
aoqi@0 656 // cloned in the pre-order so they can feed each other nicely.
aoqi@0 657 Node *PhaseIdealLoop::split_if_with_blocks_pre( Node *n ) {
aoqi@0 658 // Cloning these guys is unlikely to win
aoqi@0 659 int n_op = n->Opcode();
aoqi@0 660 if( n_op == Op_MergeMem ) return n;
aoqi@0 661 if( n->is_Proj() ) return n;
aoqi@0 662 // Do not clone-up CmpFXXX variations, as these are always
aoqi@0 663 // followed by a CmpI
aoqi@0 664 if( n->is_Cmp() ) return n;
aoqi@0 665 // Attempt to use a conditional move instead of a phi/branch
aoqi@0 666 if( ConditionalMoveLimit > 0 && n_op == Op_Region ) {
aoqi@0 667 Node *cmov = conditional_move( n );
aoqi@0 668 if( cmov ) return cmov;
aoqi@0 669 }
aoqi@0 670 if( n->is_CFG() || n->is_LoadStore() )
aoqi@0 671 return n;
aoqi@0 672 if( n_op == Op_Opaque1 || // Opaque nodes cannot be mod'd
aoqi@0 673 n_op == Op_Opaque2 ) {
aoqi@0 674 if( !C->major_progress() ) // If chance of no more loop opts...
aoqi@0 675 _igvn._worklist.push(n); // maybe we'll remove them
aoqi@0 676 return n;
aoqi@0 677 }
aoqi@0 678
aoqi@0 679 if( n->is_Con() ) return n; // No cloning for Con nodes
aoqi@0 680
aoqi@0 681 Node *n_ctrl = get_ctrl(n);
aoqi@0 682 if( !n_ctrl ) return n; // Dead node
aoqi@0 683
aoqi@0 684 // Attempt to remix address expressions for loop invariants
aoqi@0 685 Node *m = remix_address_expressions( n );
aoqi@0 686 if( m ) return m;
aoqi@0 687
aoqi@0 688 // Determine if the Node has inputs from some local Phi.
aoqi@0 689 // Returns the block to clone thru.
aoqi@0 690 Node *n_blk = has_local_phi_input( n );
aoqi@0 691 if( !n_blk ) return n;
aoqi@0 692 // Do not clone the trip counter through on a CountedLoop
aoqi@0 693 // (messes up the canonical shape).
aoqi@0 694 if( n_blk->is_CountedLoop() && n->Opcode() == Op_AddI ) return n;
aoqi@0 695
aoqi@0 696 // Check for having no control input; not pinned. Allow
aoqi@0 697 // dominating control.
aoqi@0 698 if( n->in(0) ) {
aoqi@0 699 Node *dom = idom(n_blk);
aoqi@0 700 if( dom_lca( n->in(0), dom ) != n->in(0) )
aoqi@0 701 return n;
aoqi@0 702 }
aoqi@0 703 // Policy: when is it profitable. You must get more wins than
aoqi@0 704 // policy before it is considered profitable. Policy is usually 0,
aoqi@0 705 // so 1 win is considered profitable. Big merges will require big
aoqi@0 706 // cloning, so get a larger policy.
aoqi@0 707 int policy = n_blk->req() >> 2;
aoqi@0 708
aoqi@0 709 // If the loop is a candidate for range check elimination,
aoqi@0 710 // delay splitting through it's phi until a later loop optimization
aoqi@0 711 if (n_blk->is_CountedLoop()) {
aoqi@0 712 IdealLoopTree *lp = get_loop(n_blk);
aoqi@0 713 if (lp && lp->_rce_candidate) {
aoqi@0 714 return n;
aoqi@0 715 }
aoqi@0 716 }
aoqi@0 717
aoqi@0 718 // Use same limit as split_if_with_blocks_post
aoqi@0 719 if( C->unique() > 35000 ) return n; // Method too big
aoqi@0 720
aoqi@0 721 // Split 'n' through the merge point if it is profitable
aoqi@0 722 Node *phi = split_thru_phi( n, n_blk, policy );
aoqi@0 723 if (!phi) return n;
aoqi@0 724
aoqi@0 725 // Found a Phi to split thru!
aoqi@0 726 // Replace 'n' with the new phi
aoqi@0 727 _igvn.replace_node( n, phi );
aoqi@0 728 // Moved a load around the loop, 'en-registering' something.
aoqi@0 729 if (n_blk->is_Loop() && n->is_Load() &&
aoqi@0 730 !phi->in(LoopNode::LoopBackControl)->is_Load())
aoqi@0 731 C->set_major_progress();
aoqi@0 732
aoqi@0 733 return phi;
aoqi@0 734 }
aoqi@0 735
aoqi@0 736 static bool merge_point_too_heavy(Compile* C, Node* region) {
aoqi@0 737 // Bail out if the region and its phis have too many users.
aoqi@0 738 int weight = 0;
aoqi@0 739 for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) {
aoqi@0 740 weight += region->fast_out(i)->outcnt();
aoqi@0 741 }
vlivanov@7385 742 int nodes_left = C->max_node_limit() - C->live_nodes();
aoqi@0 743 if (weight * 8 > nodes_left) {
aoqi@0 744 #ifndef PRODUCT
aoqi@0 745 if (PrintOpto)
aoqi@0 746 tty->print_cr("*** Split-if bails out: %d nodes, region weight %d", C->unique(), weight);
aoqi@0 747 #endif
aoqi@0 748 return true;
aoqi@0 749 } else {
aoqi@0 750 return false;
aoqi@0 751 }
aoqi@0 752 }
aoqi@0 753
aoqi@0 754 static bool merge_point_safe(Node* region) {
aoqi@0 755 // 4799512: Stop split_if_with_blocks from splitting a block with a ConvI2LNode
aoqi@0 756 // having a PhiNode input. This sidesteps the dangerous case where the split
aoqi@0 757 // ConvI2LNode may become TOP if the input Value() does not
aoqi@0 758 // overlap the ConvI2L range, leaving a node which may not dominate its
aoqi@0 759 // uses.
aoqi@0 760 // A better fix for this problem can be found in the BugTraq entry, but
aoqi@0 761 // expediency for Mantis demands this hack.
aoqi@0 762 // 6855164: If the merge point has a FastLockNode with a PhiNode input, we stop
aoqi@0 763 // split_if_with_blocks from splitting a block because we could not move around
aoqi@0 764 // the FastLockNode.
aoqi@0 765 for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) {
aoqi@0 766 Node* n = region->fast_out(i);
aoqi@0 767 if (n->is_Phi()) {
aoqi@0 768 for (DUIterator_Fast jmax, j = n->fast_outs(jmax); j < jmax; j++) {
aoqi@0 769 Node* m = n->fast_out(j);
aoqi@0 770 if (m->is_FastLock())
aoqi@0 771 return false;
aoqi@0 772 #ifdef _LP64
aoqi@0 773 if (m->Opcode() == Op_ConvI2L)
aoqi@0 774 return false;
aoqi@0 775 #endif
aoqi@0 776 }
aoqi@0 777 }
aoqi@0 778 }
aoqi@0 779 return true;
aoqi@0 780 }
aoqi@0 781
aoqi@0 782
aoqi@0 783 //------------------------------place_near_use---------------------------------
aoqi@0 784 // Place some computation next to use but not inside inner loops.
aoqi@0 785 // For inner loop uses move it to the preheader area.
aoqi@0 786 Node *PhaseIdealLoop::place_near_use( Node *useblock ) const {
aoqi@0 787 IdealLoopTree *u_loop = get_loop( useblock );
aoqi@0 788 return (u_loop->_irreducible || u_loop->_child)
aoqi@0 789 ? useblock
aoqi@0 790 : u_loop->_head->in(LoopNode::EntryControl);
aoqi@0 791 }
aoqi@0 792
aoqi@0 793
aoqi@0 794 //------------------------------split_if_with_blocks_post----------------------
aoqi@0 795 // Do the real work in a non-recursive function. CFG hackery wants to be
aoqi@0 796 // in the post-order, so it can dirty the I-DOM info and not use the dirtied
aoqi@0 797 // info.
aoqi@0 798 void PhaseIdealLoop::split_if_with_blocks_post( Node *n ) {
aoqi@0 799
aoqi@0 800 // Cloning Cmp through Phi's involves the split-if transform.
aoqi@0 801 // FastLock is not used by an If
aoqi@0 802 if( n->is_Cmp() && !n->is_FastLock() ) {
aoqi@0 803 if( C->unique() > 35000 ) return; // Method too big
aoqi@0 804
aoqi@0 805 // Do not do 'split-if' if irreducible loops are present.
aoqi@0 806 if( _has_irreducible_loops )
aoqi@0 807 return;
aoqi@0 808
aoqi@0 809 Node *n_ctrl = get_ctrl(n);
aoqi@0 810 // Determine if the Node has inputs from some local Phi.
aoqi@0 811 // Returns the block to clone thru.
aoqi@0 812 Node *n_blk = has_local_phi_input( n );
aoqi@0 813 if( n_blk != n_ctrl ) return;
aoqi@0 814
aoqi@0 815 if( merge_point_too_heavy(C, n_ctrl) )
aoqi@0 816 return;
aoqi@0 817
aoqi@0 818 if( n->outcnt() != 1 ) return; // Multiple bool's from 1 compare?
aoqi@0 819 Node *bol = n->unique_out();
aoqi@0 820 assert( bol->is_Bool(), "expect a bool here" );
aoqi@0 821 if( bol->outcnt() != 1 ) return;// Multiple branches from 1 compare?
aoqi@0 822 Node *iff = bol->unique_out();
aoqi@0 823
aoqi@0 824 // Check some safety conditions
aoqi@0 825 if( iff->is_If() ) { // Classic split-if?
aoqi@0 826 if( iff->in(0) != n_ctrl ) return; // Compare must be in same blk as if
aoqi@0 827 } else if (iff->is_CMove()) { // Trying to split-up a CMOVE
aoqi@0 828 // Can't split CMove with different control edge.
aoqi@0 829 if (iff->in(0) != NULL && iff->in(0) != n_ctrl ) return;
aoqi@0 830 if( get_ctrl(iff->in(2)) == n_ctrl ||
aoqi@0 831 get_ctrl(iff->in(3)) == n_ctrl )
aoqi@0 832 return; // Inputs not yet split-up
aoqi@0 833 if ( get_loop(n_ctrl) != get_loop(get_ctrl(iff)) ) {
aoqi@0 834 return; // Loop-invar test gates loop-varying CMOVE
aoqi@0 835 }
aoqi@0 836 } else {
aoqi@0 837 return; // some other kind of node, such as an Allocate
aoqi@0 838 }
aoqi@0 839
aoqi@0 840 // Do not do 'split-if' if some paths are dead. First do dead code
aoqi@0 841 // elimination and then see if its still profitable.
aoqi@0 842 for( uint i = 1; i < n_ctrl->req(); i++ )
aoqi@0 843 if( n_ctrl->in(i) == C->top() )
aoqi@0 844 return;
aoqi@0 845
aoqi@0 846 // When is split-if profitable? Every 'win' on means some control flow
aoqi@0 847 // goes dead, so it's almost always a win.
aoqi@0 848 int policy = 0;
aoqi@0 849 // If trying to do a 'Split-If' at the loop head, it is only
aoqi@0 850 // profitable if the cmp folds up on BOTH paths. Otherwise we
aoqi@0 851 // risk peeling a loop forever.
aoqi@0 852
aoqi@0 853 // CNC - Disabled for now. Requires careful handling of loop
aoqi@0 854 // body selection for the cloned code. Also, make sure we check
aoqi@0 855 // for any input path not being in the same loop as n_ctrl. For
aoqi@0 856 // irreducible loops we cannot check for 'n_ctrl->is_Loop()'
aoqi@0 857 // because the alternative loop entry points won't be converted
aoqi@0 858 // into LoopNodes.
aoqi@0 859 IdealLoopTree *n_loop = get_loop(n_ctrl);
aoqi@0 860 for( uint j = 1; j < n_ctrl->req(); j++ )
aoqi@0 861 if( get_loop(n_ctrl->in(j)) != n_loop )
aoqi@0 862 return;
aoqi@0 863
aoqi@0 864 // Check for safety of the merge point.
aoqi@0 865 if( !merge_point_safe(n_ctrl) ) {
aoqi@0 866 return;
aoqi@0 867 }
aoqi@0 868
aoqi@0 869 // Split compare 'n' through the merge point if it is profitable
aoqi@0 870 Node *phi = split_thru_phi( n, n_ctrl, policy );
aoqi@0 871 if( !phi ) return;
aoqi@0 872
aoqi@0 873 // Found a Phi to split thru!
aoqi@0 874 // Replace 'n' with the new phi
aoqi@0 875 _igvn.replace_node( n, phi );
aoqi@0 876
aoqi@0 877 // Now split the bool up thru the phi
aoqi@0 878 Node *bolphi = split_thru_phi( bol, n_ctrl, -1 );
aoqi@0 879 guarantee(bolphi != NULL, "null boolean phi node");
aoqi@0 880
aoqi@0 881 _igvn.replace_node( bol, bolphi );
aoqi@0 882 assert( iff->in(1) == bolphi, "" );
aoqi@0 883
aoqi@0 884 if( bolphi->Value(&_igvn)->singleton() )
aoqi@0 885 return;
aoqi@0 886
aoqi@0 887 // Conditional-move? Must split up now
aoqi@0 888 if( !iff->is_If() ) {
aoqi@0 889 Node *cmovphi = split_thru_phi( iff, n_ctrl, -1 );
aoqi@0 890 _igvn.replace_node( iff, cmovphi );
aoqi@0 891 return;
aoqi@0 892 }
aoqi@0 893
aoqi@0 894 // Now split the IF
aoqi@0 895 do_split_if( iff );
aoqi@0 896 return;
aoqi@0 897 }
aoqi@0 898
aoqi@0 899 // Check for an IF ready to split; one that has its
aoqi@0 900 // condition codes input coming from a Phi at the block start.
aoqi@0 901 int n_op = n->Opcode();
aoqi@0 902
aoqi@0 903 // Check for an IF being dominated by another IF same test
roland@7415 904 if (n_op == Op_If) {
aoqi@0 905 Node *bol = n->in(1);
aoqi@0 906 uint max = bol->outcnt();
aoqi@0 907 // Check for same test used more than once?
roland@7415 908 if (max > 1 && bol->is_Bool()) {
aoqi@0 909 // Search up IDOMs to see if this IF is dominated.
aoqi@0 910 Node *cutoff = get_ctrl(bol);
aoqi@0 911
aoqi@0 912 // Now search up IDOMs till cutoff, looking for a dominating test
aoqi@0 913 Node *prevdom = n;
aoqi@0 914 Node *dom = idom(prevdom);
roland@7415 915 while (dom != cutoff) {
roland@7415 916 if (dom->req() > 1 && dom->in(1) == bol && prevdom->in(0) == dom) {
aoqi@0 917 // Replace the dominated test with an obvious true or false.
aoqi@0 918 // Place it on the IGVN worklist for later cleanup.
aoqi@0 919 C->set_major_progress();
roland@7415 920 dominated_by(prevdom, n, false, true);
aoqi@0 921 #ifndef PRODUCT
aoqi@0 922 if( VerifyLoopOptimizations ) verify();
aoqi@0 923 #endif
aoqi@0 924 return;
aoqi@0 925 }
aoqi@0 926 prevdom = dom;
aoqi@0 927 dom = idom(prevdom);
aoqi@0 928 }
aoqi@0 929 }
aoqi@0 930 }
aoqi@0 931
aoqi@0 932 // See if a shared loop-varying computation has no loop-varying uses.
aoqi@0 933 // Happens if something is only used for JVM state in uncommon trap exits,
aoqi@0 934 // like various versions of induction variable+offset. Clone the
aoqi@0 935 // computation per usage to allow it to sink out of the loop.
aoqi@0 936 if (has_ctrl(n) && !n->in(0)) {// n not dead and has no control edge (can float about)
aoqi@0 937 Node *n_ctrl = get_ctrl(n);
aoqi@0 938 IdealLoopTree *n_loop = get_loop(n_ctrl);
aoqi@0 939 if( n_loop != _ltree_root ) {
aoqi@0 940 DUIterator_Fast imax, i = n->fast_outs(imax);
aoqi@0 941 for (; i < imax; i++) {
aoqi@0 942 Node* u = n->fast_out(i);
aoqi@0 943 if( !has_ctrl(u) ) break; // Found control user
aoqi@0 944 IdealLoopTree *u_loop = get_loop(get_ctrl(u));
aoqi@0 945 if( u_loop == n_loop ) break; // Found loop-varying use
aoqi@0 946 if( n_loop->is_member( u_loop ) ) break; // Found use in inner loop
aoqi@0 947 if( u->Opcode() == Op_Opaque1 ) break; // Found loop limit, bugfix for 4677003
aoqi@0 948 }
aoqi@0 949 bool did_break = (i < imax); // Did we break out of the previous loop?
aoqi@0 950 if (!did_break && n->outcnt() > 1) { // All uses in outer loops!
aoqi@0 951 Node *late_load_ctrl = NULL;
aoqi@0 952 if (n->is_Load()) {
aoqi@0 953 // If n is a load, get and save the result from get_late_ctrl(),
aoqi@0 954 // to be later used in calculating the control for n's clones.
aoqi@0 955 clear_dom_lca_tags();
aoqi@0 956 late_load_ctrl = get_late_ctrl(n, n_ctrl);
aoqi@0 957 }
aoqi@0 958 // If n is a load, and the late control is the same as the current
aoqi@0 959 // control, then the cloning of n is a pointless exercise, because
aoqi@0 960 // GVN will ensure that we end up where we started.
aoqi@0 961 if (!n->is_Load() || late_load_ctrl != n_ctrl) {
aoqi@0 962 for (DUIterator_Last jmin, j = n->last_outs(jmin); j >= jmin; ) {
aoqi@0 963 Node *u = n->last_out(j); // Clone private computation per use
aoqi@0 964 _igvn.rehash_node_delayed(u);
aoqi@0 965 Node *x = n->clone(); // Clone computation
aoqi@0 966 Node *x_ctrl = NULL;
aoqi@0 967 if( u->is_Phi() ) {
aoqi@0 968 // Replace all uses of normal nodes. Replace Phi uses
aoqi@0 969 // individually, so the separate Nodes can sink down
aoqi@0 970 // different paths.
aoqi@0 971 uint k = 1;
aoqi@0 972 while( u->in(k) != n ) k++;
aoqi@0 973 u->set_req( k, x );
aoqi@0 974 // x goes next to Phi input path
aoqi@0 975 x_ctrl = u->in(0)->in(k);
aoqi@0 976 --j;
aoqi@0 977 } else { // Normal use
aoqi@0 978 // Replace all uses
aoqi@0 979 for( uint k = 0; k < u->req(); k++ ) {
aoqi@0 980 if( u->in(k) == n ) {
aoqi@0 981 u->set_req( k, x );
aoqi@0 982 --j;
aoqi@0 983 }
aoqi@0 984 }
aoqi@0 985 x_ctrl = get_ctrl(u);
aoqi@0 986 }
aoqi@0 987
aoqi@0 988 // Find control for 'x' next to use but not inside inner loops.
aoqi@0 989 // For inner loop uses get the preheader area.
aoqi@0 990 x_ctrl = place_near_use(x_ctrl);
aoqi@0 991
aoqi@0 992 if (n->is_Load()) {
aoqi@0 993 // For loads, add a control edge to a CFG node outside of the loop
aoqi@0 994 // to force them to not combine and return back inside the loop
aoqi@0 995 // during GVN optimization (4641526).
aoqi@0 996 //
aoqi@0 997 // Because we are setting the actual control input, factor in
aoqi@0 998 // the result from get_late_ctrl() so we respect any
aoqi@0 999 // anti-dependences. (6233005).
aoqi@0 1000 x_ctrl = dom_lca(late_load_ctrl, x_ctrl);
aoqi@0 1001
aoqi@0 1002 // Don't allow the control input to be a CFG splitting node.
aoqi@0 1003 // Such nodes should only have ProjNodes as outs, e.g. IfNode
aoqi@0 1004 // should only have IfTrueNode and IfFalseNode (4985384).
aoqi@0 1005 x_ctrl = find_non_split_ctrl(x_ctrl);
aoqi@0 1006 assert(dom_depth(n_ctrl) <= dom_depth(x_ctrl), "n is later than its clone");
aoqi@0 1007
aoqi@0 1008 x->set_req(0, x_ctrl);
aoqi@0 1009 }
aoqi@0 1010 register_new_node(x, x_ctrl);
aoqi@0 1011
aoqi@0 1012 // Some institutional knowledge is needed here: 'x' is
aoqi@0 1013 // yanked because if the optimizer runs GVN on it all the
aoqi@0 1014 // cloned x's will common up and undo this optimization and
aoqi@0 1015 // be forced back in the loop. This is annoying because it
aoqi@0 1016 // makes +VerifyOpto report false-positives on progress. I
aoqi@0 1017 // tried setting control edges on the x's to force them to
aoqi@0 1018 // not combine, but the matching gets worried when it tries
aoqi@0 1019 // to fold a StoreP and an AddP together (as part of an
aoqi@0 1020 // address expression) and the AddP and StoreP have
aoqi@0 1021 // different controls.
aoqi@0 1022 if (!x->is_Load() && !x->is_DecodeNarrowPtr()) _igvn._worklist.yank(x);
aoqi@0 1023 }
aoqi@0 1024 _igvn.remove_dead_node(n);
aoqi@0 1025 }
aoqi@0 1026 }
aoqi@0 1027 }
aoqi@0 1028 }
aoqi@0 1029
aoqi@0 1030 // Check for Opaque2's who's loop has disappeared - who's input is in the
aoqi@0 1031 // same loop nest as their output. Remove 'em, they are no longer useful.
aoqi@0 1032 if( n_op == Op_Opaque2 &&
aoqi@0 1033 n->in(1) != NULL &&
aoqi@0 1034 get_loop(get_ctrl(n)) == get_loop(get_ctrl(n->in(1))) ) {
aoqi@0 1035 _igvn.replace_node( n, n->in(1) );
aoqi@0 1036 }
aoqi@0 1037 }
aoqi@0 1038
aoqi@0 1039 //------------------------------split_if_with_blocks---------------------------
aoqi@0 1040 // Check for aggressive application of 'split-if' optimization,
aoqi@0 1041 // using basic block level info.
aoqi@0 1042 void PhaseIdealLoop::split_if_with_blocks( VectorSet &visited, Node_Stack &nstack ) {
aoqi@0 1043 Node *n = C->root();
aoqi@0 1044 visited.set(n->_idx); // first, mark node as visited
aoqi@0 1045 // Do pre-visit work for root
aoqi@0 1046 n = split_if_with_blocks_pre( n );
aoqi@0 1047 uint cnt = n->outcnt();
aoqi@0 1048 uint i = 0;
aoqi@0 1049 while (true) {
aoqi@0 1050 // Visit all children
aoqi@0 1051 if (i < cnt) {
aoqi@0 1052 Node* use = n->raw_out(i);
aoqi@0 1053 ++i;
aoqi@0 1054 if (use->outcnt() != 0 && !visited.test_set(use->_idx)) {
aoqi@0 1055 // Now do pre-visit work for this use
aoqi@0 1056 use = split_if_with_blocks_pre( use );
aoqi@0 1057 nstack.push(n, i); // Save parent and next use's index.
aoqi@0 1058 n = use; // Process all children of current use.
aoqi@0 1059 cnt = use->outcnt();
aoqi@0 1060 i = 0;
aoqi@0 1061 }
aoqi@0 1062 }
aoqi@0 1063 else {
aoqi@0 1064 // All of n's children have been processed, complete post-processing.
aoqi@0 1065 if (cnt != 0 && !n->is_Con()) {
aoqi@0 1066 assert(has_node(n), "no dead nodes");
aoqi@0 1067 split_if_with_blocks_post( n );
aoqi@0 1068 }
aoqi@0 1069 if (nstack.is_empty()) {
aoqi@0 1070 // Finished all nodes on stack.
aoqi@0 1071 break;
aoqi@0 1072 }
aoqi@0 1073 // Get saved parent node and next use's index. Visit the rest of uses.
aoqi@0 1074 n = nstack.node();
aoqi@0 1075 cnt = n->outcnt();
aoqi@0 1076 i = nstack.index();
aoqi@0 1077 nstack.pop();
aoqi@0 1078 }
aoqi@0 1079 }
aoqi@0 1080 }
aoqi@0 1081
aoqi@0 1082
aoqi@0 1083 //=============================================================================
aoqi@0 1084 //
aoqi@0 1085 // C L O N E A L O O P B O D Y
aoqi@0 1086 //
aoqi@0 1087
aoqi@0 1088 //------------------------------clone_iff--------------------------------------
aoqi@0 1089 // Passed in a Phi merging (recursively) some nearly equivalent Bool/Cmps.
aoqi@0 1090 // "Nearly" because all Nodes have been cloned from the original in the loop,
aoqi@0 1091 // but the fall-in edges to the Cmp are different. Clone bool/Cmp pairs
aoqi@0 1092 // through the Phi recursively, and return a Bool.
aoqi@0 1093 BoolNode *PhaseIdealLoop::clone_iff( PhiNode *phi, IdealLoopTree *loop ) {
aoqi@0 1094
aoqi@0 1095 // Convert this Phi into a Phi merging Bools
aoqi@0 1096 uint i;
aoqi@0 1097 for( i = 1; i < phi->req(); i++ ) {
aoqi@0 1098 Node *b = phi->in(i);
aoqi@0 1099 if( b->is_Phi() ) {
aoqi@0 1100 _igvn.replace_input_of(phi, i, clone_iff( b->as_Phi(), loop ));
aoqi@0 1101 } else {
aoqi@0 1102 assert( b->is_Bool(), "" );
aoqi@0 1103 }
aoqi@0 1104 }
aoqi@0 1105
aoqi@0 1106 Node *sample_bool = phi->in(1);
aoqi@0 1107 Node *sample_cmp = sample_bool->in(1);
aoqi@0 1108
aoqi@0 1109 // Make Phis to merge the Cmp's inputs.
aoqi@0 1110 PhiNode *phi1 = new (C) PhiNode( phi->in(0), Type::TOP );
aoqi@0 1111 PhiNode *phi2 = new (C) PhiNode( phi->in(0), Type::TOP );
aoqi@0 1112 for( i = 1; i < phi->req(); i++ ) {
aoqi@0 1113 Node *n1 = phi->in(i)->in(1)->in(1);
aoqi@0 1114 Node *n2 = phi->in(i)->in(1)->in(2);
aoqi@0 1115 phi1->set_req( i, n1 );
aoqi@0 1116 phi2->set_req( i, n2 );
aoqi@0 1117 phi1->set_type( phi1->type()->meet_speculative(n1->bottom_type()));
aoqi@0 1118 phi2->set_type( phi2->type()->meet_speculative(n2->bottom_type()));
aoqi@0 1119 }
aoqi@0 1120 // See if these Phis have been made before.
aoqi@0 1121 // Register with optimizer
aoqi@0 1122 Node *hit1 = _igvn.hash_find_insert(phi1);
aoqi@0 1123 if( hit1 ) { // Hit, toss just made Phi
aoqi@0 1124 _igvn.remove_dead_node(phi1); // Remove new phi
aoqi@0 1125 assert( hit1->is_Phi(), "" );
aoqi@0 1126 phi1 = (PhiNode*)hit1; // Use existing phi
aoqi@0 1127 } else { // Miss
aoqi@0 1128 _igvn.register_new_node_with_optimizer(phi1);
aoqi@0 1129 }
aoqi@0 1130 Node *hit2 = _igvn.hash_find_insert(phi2);
aoqi@0 1131 if( hit2 ) { // Hit, toss just made Phi
aoqi@0 1132 _igvn.remove_dead_node(phi2); // Remove new phi
aoqi@0 1133 assert( hit2->is_Phi(), "" );
aoqi@0 1134 phi2 = (PhiNode*)hit2; // Use existing phi
aoqi@0 1135 } else { // Miss
aoqi@0 1136 _igvn.register_new_node_with_optimizer(phi2);
aoqi@0 1137 }
aoqi@0 1138 // Register Phis with loop/block info
aoqi@0 1139 set_ctrl(phi1, phi->in(0));
aoqi@0 1140 set_ctrl(phi2, phi->in(0));
aoqi@0 1141 // Make a new Cmp
aoqi@0 1142 Node *cmp = sample_cmp->clone();
aoqi@0 1143 cmp->set_req( 1, phi1 );
aoqi@0 1144 cmp->set_req( 2, phi2 );
aoqi@0 1145 _igvn.register_new_node_with_optimizer(cmp);
aoqi@0 1146 set_ctrl(cmp, phi->in(0));
aoqi@0 1147
aoqi@0 1148 // Make a new Bool
aoqi@0 1149 Node *b = sample_bool->clone();
aoqi@0 1150 b->set_req(1,cmp);
aoqi@0 1151 _igvn.register_new_node_with_optimizer(b);
aoqi@0 1152 set_ctrl(b, phi->in(0));
aoqi@0 1153
aoqi@0 1154 assert( b->is_Bool(), "" );
aoqi@0 1155 return (BoolNode*)b;
aoqi@0 1156 }
aoqi@0 1157
aoqi@0 1158 //------------------------------clone_bool-------------------------------------
aoqi@0 1159 // Passed in a Phi merging (recursively) some nearly equivalent Bool/Cmps.
aoqi@0 1160 // "Nearly" because all Nodes have been cloned from the original in the loop,
aoqi@0 1161 // but the fall-in edges to the Cmp are different. Clone bool/Cmp pairs
aoqi@0 1162 // through the Phi recursively, and return a Bool.
aoqi@0 1163 CmpNode *PhaseIdealLoop::clone_bool( PhiNode *phi, IdealLoopTree *loop ) {
aoqi@0 1164 uint i;
aoqi@0 1165 // Convert this Phi into a Phi merging Bools
aoqi@0 1166 for( i = 1; i < phi->req(); i++ ) {
aoqi@0 1167 Node *b = phi->in(i);
aoqi@0 1168 if( b->is_Phi() ) {
aoqi@0 1169 _igvn.replace_input_of(phi, i, clone_bool( b->as_Phi(), loop ));
aoqi@0 1170 } else {
aoqi@0 1171 assert( b->is_Cmp() || b->is_top(), "inputs are all Cmp or TOP" );
aoqi@0 1172 }
aoqi@0 1173 }
aoqi@0 1174
aoqi@0 1175 Node *sample_cmp = phi->in(1);
aoqi@0 1176
aoqi@0 1177 // Make Phis to merge the Cmp's inputs.
aoqi@0 1178 PhiNode *phi1 = new (C) PhiNode( phi->in(0), Type::TOP );
aoqi@0 1179 PhiNode *phi2 = new (C) PhiNode( phi->in(0), Type::TOP );
aoqi@0 1180 for( uint j = 1; j < phi->req(); j++ ) {
aoqi@0 1181 Node *cmp_top = phi->in(j); // Inputs are all Cmp or TOP
aoqi@0 1182 Node *n1, *n2;
aoqi@0 1183 if( cmp_top->is_Cmp() ) {
aoqi@0 1184 n1 = cmp_top->in(1);
aoqi@0 1185 n2 = cmp_top->in(2);
aoqi@0 1186 } else {
aoqi@0 1187 n1 = n2 = cmp_top;
aoqi@0 1188 }
aoqi@0 1189 phi1->set_req( j, n1 );
aoqi@0 1190 phi2->set_req( j, n2 );
aoqi@0 1191 phi1->set_type(phi1->type()->meet_speculative(n1->bottom_type()));
aoqi@0 1192 phi2->set_type(phi2->type()->meet_speculative(n2->bottom_type()));
aoqi@0 1193 }
aoqi@0 1194
aoqi@0 1195 // See if these Phis have been made before.
aoqi@0 1196 // Register with optimizer
aoqi@0 1197 Node *hit1 = _igvn.hash_find_insert(phi1);
aoqi@0 1198 if( hit1 ) { // Hit, toss just made Phi
aoqi@0 1199 _igvn.remove_dead_node(phi1); // Remove new phi
aoqi@0 1200 assert( hit1->is_Phi(), "" );
aoqi@0 1201 phi1 = (PhiNode*)hit1; // Use existing phi
aoqi@0 1202 } else { // Miss
aoqi@0 1203 _igvn.register_new_node_with_optimizer(phi1);
aoqi@0 1204 }
aoqi@0 1205 Node *hit2 = _igvn.hash_find_insert(phi2);
aoqi@0 1206 if( hit2 ) { // Hit, toss just made Phi
aoqi@0 1207 _igvn.remove_dead_node(phi2); // Remove new phi
aoqi@0 1208 assert( hit2->is_Phi(), "" );
aoqi@0 1209 phi2 = (PhiNode*)hit2; // Use existing phi
aoqi@0 1210 } else { // Miss
aoqi@0 1211 _igvn.register_new_node_with_optimizer(phi2);
aoqi@0 1212 }
aoqi@0 1213 // Register Phis with loop/block info
aoqi@0 1214 set_ctrl(phi1, phi->in(0));
aoqi@0 1215 set_ctrl(phi2, phi->in(0));
aoqi@0 1216 // Make a new Cmp
aoqi@0 1217 Node *cmp = sample_cmp->clone();
aoqi@0 1218 cmp->set_req( 1, phi1 );
aoqi@0 1219 cmp->set_req( 2, phi2 );
aoqi@0 1220 _igvn.register_new_node_with_optimizer(cmp);
aoqi@0 1221 set_ctrl(cmp, phi->in(0));
aoqi@0 1222
aoqi@0 1223 assert( cmp->is_Cmp(), "" );
aoqi@0 1224 return (CmpNode*)cmp;
aoqi@0 1225 }
aoqi@0 1226
aoqi@0 1227 //------------------------------sink_use---------------------------------------
aoqi@0 1228 // If 'use' was in the loop-exit block, it now needs to be sunk
aoqi@0 1229 // below the post-loop merge point.
aoqi@0 1230 void PhaseIdealLoop::sink_use( Node *use, Node *post_loop ) {
aoqi@0 1231 if (!use->is_CFG() && get_ctrl(use) == post_loop->in(2)) {
aoqi@0 1232 set_ctrl(use, post_loop);
aoqi@0 1233 for (DUIterator j = use->outs(); use->has_out(j); j++)
aoqi@0 1234 sink_use(use->out(j), post_loop);
aoqi@0 1235 }
aoqi@0 1236 }
aoqi@0 1237
aoqi@0 1238 //------------------------------clone_loop-------------------------------------
aoqi@0 1239 //
aoqi@0 1240 // C L O N E A L O O P B O D Y
aoqi@0 1241 //
aoqi@0 1242 // This is the basic building block of the loop optimizations. It clones an
aoqi@0 1243 // entire loop body. It makes an old_new loop body mapping; with this mapping
aoqi@0 1244 // you can find the new-loop equivalent to an old-loop node. All new-loop
aoqi@0 1245 // nodes are exactly equal to their old-loop counterparts, all edges are the
aoqi@0 1246 // same. All exits from the old-loop now have a RegionNode that merges the
aoqi@0 1247 // equivalent new-loop path. This is true even for the normal "loop-exit"
aoqi@0 1248 // condition. All uses of loop-invariant old-loop values now come from (one
aoqi@0 1249 // or more) Phis that merge their new-loop equivalents.
aoqi@0 1250 //
aoqi@0 1251 // This operation leaves the graph in an illegal state: there are two valid
aoqi@0 1252 // control edges coming from the loop pre-header to both loop bodies. I'll
aoqi@0 1253 // definitely have to hack the graph after running this transform.
aoqi@0 1254 //
aoqi@0 1255 // From this building block I will further edit edges to perform loop peeling
aoqi@0 1256 // or loop unrolling or iteration splitting (Range-Check-Elimination), etc.
aoqi@0 1257 //
aoqi@0 1258 // Parameter side_by_size_idom:
aoqi@0 1259 // When side_by_size_idom is NULL, the dominator tree is constructed for
aoqi@0 1260 // the clone loop to dominate the original. Used in construction of
aoqi@0 1261 // pre-main-post loop sequence.
aoqi@0 1262 // When nonnull, the clone and original are side-by-side, both are
aoqi@0 1263 // dominated by the side_by_side_idom node. Used in construction of
aoqi@0 1264 // unswitched loops.
aoqi@0 1265 void PhaseIdealLoop::clone_loop( IdealLoopTree *loop, Node_List &old_new, int dd,
aoqi@0 1266 Node* side_by_side_idom) {
aoqi@0 1267
aoqi@0 1268 // Step 1: Clone the loop body. Make the old->new mapping.
aoqi@0 1269 uint i;
aoqi@0 1270 for( i = 0; i < loop->_body.size(); i++ ) {
aoqi@0 1271 Node *old = loop->_body.at(i);
aoqi@0 1272 Node *nnn = old->clone();
aoqi@0 1273 old_new.map( old->_idx, nnn );
aoqi@0 1274 _igvn.register_new_node_with_optimizer(nnn);
aoqi@0 1275 }
aoqi@0 1276
aoqi@0 1277
aoqi@0 1278 // Step 2: Fix the edges in the new body. If the old input is outside the
aoqi@0 1279 // loop use it. If the old input is INside the loop, use the corresponding
aoqi@0 1280 // new node instead.
aoqi@0 1281 for( i = 0; i < loop->_body.size(); i++ ) {
aoqi@0 1282 Node *old = loop->_body.at(i);
aoqi@0 1283 Node *nnn = old_new[old->_idx];
aoqi@0 1284 // Fix CFG/Loop controlling the new node
aoqi@0 1285 if (has_ctrl(old)) {
aoqi@0 1286 set_ctrl(nnn, old_new[get_ctrl(old)->_idx]);
aoqi@0 1287 } else {
aoqi@0 1288 set_loop(nnn, loop->_parent);
aoqi@0 1289 if (old->outcnt() > 0) {
aoqi@0 1290 set_idom( nnn, old_new[idom(old)->_idx], dd );
aoqi@0 1291 }
aoqi@0 1292 }
aoqi@0 1293 // Correct edges to the new node
aoqi@0 1294 for( uint j = 0; j < nnn->req(); j++ ) {
aoqi@0 1295 Node *n = nnn->in(j);
aoqi@0 1296 if( n ) {
aoqi@0 1297 IdealLoopTree *old_in_loop = get_loop( has_ctrl(n) ? get_ctrl(n) : n );
aoqi@0 1298 if( loop->is_member( old_in_loop ) )
aoqi@0 1299 nnn->set_req(j, old_new[n->_idx]);
aoqi@0 1300 }
aoqi@0 1301 }
aoqi@0 1302 _igvn.hash_find_insert(nnn);
aoqi@0 1303 }
aoqi@0 1304 Node *newhead = old_new[loop->_head->_idx];
aoqi@0 1305 set_idom(newhead, newhead->in(LoopNode::EntryControl), dd);
aoqi@0 1306
aoqi@0 1307
aoqi@0 1308 // Step 3: Now fix control uses. Loop varying control uses have already
aoqi@0 1309 // been fixed up (as part of all input edges in Step 2). Loop invariant
aoqi@0 1310 // control uses must be either an IfFalse or an IfTrue. Make a merge
aoqi@0 1311 // point to merge the old and new IfFalse/IfTrue nodes; make the use
aoqi@0 1312 // refer to this.
aoqi@0 1313 ResourceArea *area = Thread::current()->resource_area();
aoqi@0 1314 Node_List worklist(area);
aoqi@0 1315 uint new_counter = C->unique();
aoqi@0 1316 for( i = 0; i < loop->_body.size(); i++ ) {
aoqi@0 1317 Node* old = loop->_body.at(i);
aoqi@0 1318 if( !old->is_CFG() ) continue;
aoqi@0 1319 Node* nnn = old_new[old->_idx];
aoqi@0 1320
aoqi@0 1321 // Copy uses to a worklist, so I can munge the def-use info
aoqi@0 1322 // with impunity.
aoqi@0 1323 for (DUIterator_Fast jmax, j = old->fast_outs(jmax); j < jmax; j++)
aoqi@0 1324 worklist.push(old->fast_out(j));
aoqi@0 1325
aoqi@0 1326 while( worklist.size() ) { // Visit all uses
aoqi@0 1327 Node *use = worklist.pop();
aoqi@0 1328 if (!has_node(use)) continue; // Ignore dead nodes
aoqi@0 1329 IdealLoopTree *use_loop = get_loop( has_ctrl(use) ? get_ctrl(use) : use );
aoqi@0 1330 if( !loop->is_member( use_loop ) && use->is_CFG() ) {
aoqi@0 1331 // Both OLD and USE are CFG nodes here.
aoqi@0 1332 assert( use->is_Proj(), "" );
aoqi@0 1333
aoqi@0 1334 // Clone the loop exit control projection
aoqi@0 1335 Node *newuse = use->clone();
aoqi@0 1336 newuse->set_req(0,nnn);
aoqi@0 1337 _igvn.register_new_node_with_optimizer(newuse);
aoqi@0 1338 set_loop(newuse, use_loop);
aoqi@0 1339 set_idom(newuse, nnn, dom_depth(nnn) + 1 );
aoqi@0 1340
aoqi@0 1341 // We need a Region to merge the exit from the peeled body and the
aoqi@0 1342 // exit from the old loop body.
aoqi@0 1343 RegionNode *r = new (C) RegionNode(3);
aoqi@0 1344 // Map the old use to the new merge point
aoqi@0 1345 old_new.map( use->_idx, r );
aoqi@0 1346 uint dd_r = MIN2(dom_depth(newuse),dom_depth(use));
aoqi@0 1347 assert( dd_r >= dom_depth(dom_lca(newuse,use)), "" );
aoqi@0 1348
aoqi@0 1349 // The original user of 'use' uses 'r' instead.
aoqi@0 1350 for (DUIterator_Last lmin, l = use->last_outs(lmin); l >= lmin;) {
aoqi@0 1351 Node* useuse = use->last_out(l);
aoqi@0 1352 _igvn.rehash_node_delayed(useuse);
aoqi@0 1353 uint uses_found = 0;
aoqi@0 1354 if( useuse->in(0) == use ) {
aoqi@0 1355 useuse->set_req(0, r);
aoqi@0 1356 uses_found++;
aoqi@0 1357 if( useuse->is_CFG() ) {
aoqi@0 1358 assert( dom_depth(useuse) > dd_r, "" );
aoqi@0 1359 set_idom(useuse, r, dom_depth(useuse));
aoqi@0 1360 }
aoqi@0 1361 }
aoqi@0 1362 for( uint k = 1; k < useuse->req(); k++ ) {
aoqi@0 1363 if( useuse->in(k) == use ) {
aoqi@0 1364 useuse->set_req(k, r);
aoqi@0 1365 uses_found++;
aoqi@0 1366 }
aoqi@0 1367 }
aoqi@0 1368 l -= uses_found; // we deleted 1 or more copies of this edge
aoqi@0 1369 }
aoqi@0 1370
aoqi@0 1371 // Now finish up 'r'
aoqi@0 1372 r->set_req( 1, newuse );
aoqi@0 1373 r->set_req( 2, use );
aoqi@0 1374 _igvn.register_new_node_with_optimizer(r);
aoqi@0 1375 set_loop(r, use_loop);
aoqi@0 1376 set_idom(r, !side_by_side_idom ? newuse->in(0) : side_by_side_idom, dd_r);
aoqi@0 1377 } // End of if a loop-exit test
aoqi@0 1378 }
aoqi@0 1379 }
aoqi@0 1380
aoqi@0 1381 // Step 4: If loop-invariant use is not control, it must be dominated by a
aoqi@0 1382 // loop exit IfFalse/IfTrue. Find "proper" loop exit. Make a Region
aoqi@0 1383 // there if needed. Make a Phi there merging old and new used values.
aoqi@0 1384 Node_List *split_if_set = NULL;
aoqi@0 1385 Node_List *split_bool_set = NULL;
aoqi@0 1386 Node_List *split_cex_set = NULL;
aoqi@0 1387 for( i = 0; i < loop->_body.size(); i++ ) {
aoqi@0 1388 Node* old = loop->_body.at(i);
aoqi@0 1389 Node* nnn = old_new[old->_idx];
aoqi@0 1390 // Copy uses to a worklist, so I can munge the def-use info
aoqi@0 1391 // with impunity.
aoqi@0 1392 for (DUIterator_Fast jmax, j = old->fast_outs(jmax); j < jmax; j++)
aoqi@0 1393 worklist.push(old->fast_out(j));
aoqi@0 1394
aoqi@0 1395 while( worklist.size() ) {
aoqi@0 1396 Node *use = worklist.pop();
aoqi@0 1397 if (!has_node(use)) continue; // Ignore dead nodes
aoqi@0 1398 if (use->in(0) == C->top()) continue;
aoqi@0 1399 IdealLoopTree *use_loop = get_loop( has_ctrl(use) ? get_ctrl(use) : use );
aoqi@0 1400 // Check for data-use outside of loop - at least one of OLD or USE
aoqi@0 1401 // must not be a CFG node.
aoqi@0 1402 if( !loop->is_member( use_loop ) && (!old->is_CFG() || !use->is_CFG())) {
aoqi@0 1403
aoqi@0 1404 // If the Data use is an IF, that means we have an IF outside of the
aoqi@0 1405 // loop that is switching on a condition that is set inside of the
aoqi@0 1406 // loop. Happens if people set a loop-exit flag; then test the flag
aoqi@0 1407 // in the loop to break the loop, then test is again outside of the
aoqi@0 1408 // loop to determine which way the loop exited.
aoqi@0 1409 // Loop predicate If node connects to Bool node through Opaque1 node.
aoqi@0 1410 if (use->is_If() || use->is_CMove() || C->is_predicate_opaq(use)) {
aoqi@0 1411 // Since this code is highly unlikely, we lazily build the worklist
aoqi@0 1412 // of such Nodes to go split.
aoqi@0 1413 if( !split_if_set )
aoqi@0 1414 split_if_set = new Node_List(area);
aoqi@0 1415 split_if_set->push(use);
aoqi@0 1416 }
aoqi@0 1417 if( use->is_Bool() ) {
aoqi@0 1418 if( !split_bool_set )
aoqi@0 1419 split_bool_set = new Node_List(area);
aoqi@0 1420 split_bool_set->push(use);
aoqi@0 1421 }
aoqi@0 1422 if( use->Opcode() == Op_CreateEx ) {
aoqi@0 1423 if( !split_cex_set )
aoqi@0 1424 split_cex_set = new Node_List(area);
aoqi@0 1425 split_cex_set->push(use);
aoqi@0 1426 }
aoqi@0 1427
aoqi@0 1428
aoqi@0 1429 // Get "block" use is in
aoqi@0 1430 uint idx = 0;
aoqi@0 1431 while( use->in(idx) != old ) idx++;
aoqi@0 1432 Node *prev = use->is_CFG() ? use : get_ctrl(use);
aoqi@0 1433 assert( !loop->is_member( get_loop( prev ) ), "" );
aoqi@0 1434 Node *cfg = prev->_idx >= new_counter
aoqi@0 1435 ? prev->in(2)
aoqi@0 1436 : idom(prev);
aoqi@0 1437 if( use->is_Phi() ) // Phi use is in prior block
aoqi@0 1438 cfg = prev->in(idx); // NOT in block of Phi itself
aoqi@0 1439 if (cfg->is_top()) { // Use is dead?
aoqi@0 1440 _igvn.replace_input_of(use, idx, C->top());
aoqi@0 1441 continue;
aoqi@0 1442 }
aoqi@0 1443
aoqi@0 1444 while( !loop->is_member( get_loop( cfg ) ) ) {
aoqi@0 1445 prev = cfg;
aoqi@0 1446 cfg = cfg->_idx >= new_counter ? cfg->in(2) : idom(cfg);
aoqi@0 1447 }
aoqi@0 1448 // If the use occurs after merging several exits from the loop, then
aoqi@0 1449 // old value must have dominated all those exits. Since the same old
aoqi@0 1450 // value was used on all those exits we did not need a Phi at this
aoqi@0 1451 // merge point. NOW we do need a Phi here. Each loop exit value
aoqi@0 1452 // is now merged with the peeled body exit; each exit gets its own
aoqi@0 1453 // private Phi and those Phis need to be merged here.
aoqi@0 1454 Node *phi;
aoqi@0 1455 if( prev->is_Region() ) {
aoqi@0 1456 if( idx == 0 ) { // Updating control edge?
aoqi@0 1457 phi = prev; // Just use existing control
aoqi@0 1458 } else { // Else need a new Phi
aoqi@0 1459 phi = PhiNode::make( prev, old );
aoqi@0 1460 // Now recursively fix up the new uses of old!
aoqi@0 1461 for( uint i = 1; i < prev->req(); i++ ) {
aoqi@0 1462 worklist.push(phi); // Onto worklist once for each 'old' input
aoqi@0 1463 }
aoqi@0 1464 }
aoqi@0 1465 } else {
aoqi@0 1466 // Get new RegionNode merging old and new loop exits
aoqi@0 1467 prev = old_new[prev->_idx];
aoqi@0 1468 assert( prev, "just made this in step 7" );
aoqi@0 1469 if( idx == 0 ) { // Updating control edge?
aoqi@0 1470 phi = prev; // Just use existing control
aoqi@0 1471 } else { // Else need a new Phi
aoqi@0 1472 // Make a new Phi merging data values properly
aoqi@0 1473 phi = PhiNode::make( prev, old );
aoqi@0 1474 phi->set_req( 1, nnn );
aoqi@0 1475 }
aoqi@0 1476 }
aoqi@0 1477 // If inserting a new Phi, check for prior hits
aoqi@0 1478 if( idx != 0 ) {
aoqi@0 1479 Node *hit = _igvn.hash_find_insert(phi);
aoqi@0 1480 if( hit == NULL ) {
aoqi@0 1481 _igvn.register_new_node_with_optimizer(phi); // Register new phi
aoqi@0 1482 } else { // or
aoqi@0 1483 // Remove the new phi from the graph and use the hit
aoqi@0 1484 _igvn.remove_dead_node(phi);
aoqi@0 1485 phi = hit; // Use existing phi
aoqi@0 1486 }
aoqi@0 1487 set_ctrl(phi, prev);
aoqi@0 1488 }
aoqi@0 1489 // Make 'use' use the Phi instead of the old loop body exit value
aoqi@0 1490 _igvn.replace_input_of(use, idx, phi);
aoqi@0 1491 if( use->_idx >= new_counter ) { // If updating new phis
aoqi@0 1492 // Not needed for correctness, but prevents a weak assert
aoqi@0 1493 // in AddPNode from tripping (when we end up with different
aoqi@0 1494 // base & derived Phis that will become the same after
aoqi@0 1495 // IGVN does CSE).
aoqi@0 1496 Node *hit = _igvn.hash_find_insert(use);
aoqi@0 1497 if( hit ) // Go ahead and re-hash for hits.
aoqi@0 1498 _igvn.replace_node( use, hit );
aoqi@0 1499 }
aoqi@0 1500
aoqi@0 1501 // If 'use' was in the loop-exit block, it now needs to be sunk
aoqi@0 1502 // below the post-loop merge point.
aoqi@0 1503 sink_use( use, prev );
aoqi@0 1504 }
aoqi@0 1505 }
aoqi@0 1506 }
aoqi@0 1507
aoqi@0 1508 // Check for IFs that need splitting/cloning. Happens if an IF outside of
aoqi@0 1509 // the loop uses a condition set in the loop. The original IF probably
aoqi@0 1510 // takes control from one or more OLD Regions (which in turn get from NEW
aoqi@0 1511 // Regions). In any case, there will be a set of Phis for each merge point
aoqi@0 1512 // from the IF up to where the original BOOL def exists the loop.
aoqi@0 1513 if( split_if_set ) {
aoqi@0 1514 while( split_if_set->size() ) {
aoqi@0 1515 Node *iff = split_if_set->pop();
aoqi@0 1516 if( iff->in(1)->is_Phi() ) {
aoqi@0 1517 BoolNode *b = clone_iff( iff->in(1)->as_Phi(), loop );
aoqi@0 1518 _igvn.replace_input_of(iff, 1, b);
aoqi@0 1519 }
aoqi@0 1520 }
aoqi@0 1521 }
aoqi@0 1522 if( split_bool_set ) {
aoqi@0 1523 while( split_bool_set->size() ) {
aoqi@0 1524 Node *b = split_bool_set->pop();
aoqi@0 1525 Node *phi = b->in(1);
aoqi@0 1526 assert( phi->is_Phi(), "" );
aoqi@0 1527 CmpNode *cmp = clone_bool( (PhiNode*)phi, loop );
aoqi@0 1528 _igvn.replace_input_of(b, 1, cmp);
aoqi@0 1529 }
aoqi@0 1530 }
aoqi@0 1531 if( split_cex_set ) {
aoqi@0 1532 while( split_cex_set->size() ) {
aoqi@0 1533 Node *b = split_cex_set->pop();
aoqi@0 1534 assert( b->in(0)->is_Region(), "" );
aoqi@0 1535 assert( b->in(1)->is_Phi(), "" );
aoqi@0 1536 assert( b->in(0)->in(0) == b->in(1)->in(0), "" );
aoqi@0 1537 split_up( b, b->in(0), NULL );
aoqi@0 1538 }
aoqi@0 1539 }
aoqi@0 1540
aoqi@0 1541 }
aoqi@0 1542
aoqi@0 1543
aoqi@0 1544 //---------------------- stride_of_possible_iv -------------------------------------
aoqi@0 1545 // Looks for an iff/bool/comp with one operand of the compare
aoqi@0 1546 // being a cycle involving an add and a phi,
aoqi@0 1547 // with an optional truncation (left-shift followed by a right-shift)
aoqi@0 1548 // of the add. Returns zero if not an iv.
aoqi@0 1549 int PhaseIdealLoop::stride_of_possible_iv(Node* iff) {
aoqi@0 1550 Node* trunc1 = NULL;
aoqi@0 1551 Node* trunc2 = NULL;
aoqi@0 1552 const TypeInt* ttype = NULL;
aoqi@0 1553 if (!iff->is_If() || iff->in(1) == NULL || !iff->in(1)->is_Bool()) {
aoqi@0 1554 return 0;
aoqi@0 1555 }
aoqi@0 1556 BoolNode* bl = iff->in(1)->as_Bool();
aoqi@0 1557 Node* cmp = bl->in(1);
aoqi@0 1558 if (!cmp || cmp->Opcode() != Op_CmpI && cmp->Opcode() != Op_CmpU) {
aoqi@0 1559 return 0;
aoqi@0 1560 }
aoqi@0 1561 // Must have an invariant operand
aoqi@0 1562 if (is_member(get_loop(iff), get_ctrl(cmp->in(2)))) {
aoqi@0 1563 return 0;
aoqi@0 1564 }
aoqi@0 1565 Node* add2 = NULL;
aoqi@0 1566 Node* cmp1 = cmp->in(1);
aoqi@0 1567 if (cmp1->is_Phi()) {
aoqi@0 1568 // (If (Bool (CmpX phi:(Phi ...(Optional-trunc(AddI phi add2))) )))
aoqi@0 1569 Node* phi = cmp1;
aoqi@0 1570 for (uint i = 1; i < phi->req(); i++) {
aoqi@0 1571 Node* in = phi->in(i);
aoqi@0 1572 Node* add = CountedLoopNode::match_incr_with_optional_truncation(in,
aoqi@0 1573 &trunc1, &trunc2, &ttype);
aoqi@0 1574 if (add && add->in(1) == phi) {
aoqi@0 1575 add2 = add->in(2);
aoqi@0 1576 break;
aoqi@0 1577 }
aoqi@0 1578 }
aoqi@0 1579 } else {
aoqi@0 1580 // (If (Bool (CmpX addtrunc:(Optional-trunc((AddI (Phi ...addtrunc...) add2)) )))
aoqi@0 1581 Node* addtrunc = cmp1;
aoqi@0 1582 Node* add = CountedLoopNode::match_incr_with_optional_truncation(addtrunc,
aoqi@0 1583 &trunc1, &trunc2, &ttype);
aoqi@0 1584 if (add && add->in(1)->is_Phi()) {
aoqi@0 1585 Node* phi = add->in(1);
aoqi@0 1586 for (uint i = 1; i < phi->req(); i++) {
aoqi@0 1587 if (phi->in(i) == addtrunc) {
aoqi@0 1588 add2 = add->in(2);
aoqi@0 1589 break;
aoqi@0 1590 }
aoqi@0 1591 }
aoqi@0 1592 }
aoqi@0 1593 }
aoqi@0 1594 if (add2 != NULL) {
aoqi@0 1595 const TypeInt* add2t = _igvn.type(add2)->is_int();
aoqi@0 1596 if (add2t->is_con()) {
aoqi@0 1597 return add2t->get_con();
aoqi@0 1598 }
aoqi@0 1599 }
aoqi@0 1600 return 0;
aoqi@0 1601 }
aoqi@0 1602
aoqi@0 1603
aoqi@0 1604 //---------------------- stay_in_loop -------------------------------------
aoqi@0 1605 // Return the (unique) control output node that's in the loop (if it exists.)
aoqi@0 1606 Node* PhaseIdealLoop::stay_in_loop( Node* n, IdealLoopTree *loop) {
aoqi@0 1607 Node* unique = NULL;
aoqi@0 1608 if (!n) return NULL;
aoqi@0 1609 for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
aoqi@0 1610 Node* use = n->fast_out(i);
aoqi@0 1611 if (!has_ctrl(use) && loop->is_member(get_loop(use))) {
aoqi@0 1612 if (unique != NULL) {
aoqi@0 1613 return NULL;
aoqi@0 1614 }
aoqi@0 1615 unique = use;
aoqi@0 1616 }
aoqi@0 1617 }
aoqi@0 1618 return unique;
aoqi@0 1619 }
aoqi@0 1620
aoqi@0 1621 //------------------------------ register_node -------------------------------------
aoqi@0 1622 // Utility to register node "n" with PhaseIdealLoop
aoqi@0 1623 void PhaseIdealLoop::register_node(Node* n, IdealLoopTree *loop, Node* pred, int ddepth) {
aoqi@0 1624 _igvn.register_new_node_with_optimizer(n);
aoqi@0 1625 loop->_body.push(n);
aoqi@0 1626 if (n->is_CFG()) {
aoqi@0 1627 set_loop(n, loop);
aoqi@0 1628 set_idom(n, pred, ddepth);
aoqi@0 1629 } else {
aoqi@0 1630 set_ctrl(n, pred);
aoqi@0 1631 }
aoqi@0 1632 }
aoqi@0 1633
aoqi@0 1634 //------------------------------ proj_clone -------------------------------------
aoqi@0 1635 // Utility to create an if-projection
aoqi@0 1636 ProjNode* PhaseIdealLoop::proj_clone(ProjNode* p, IfNode* iff) {
aoqi@0 1637 ProjNode* c = p->clone()->as_Proj();
aoqi@0 1638 c->set_req(0, iff);
aoqi@0 1639 return c;
aoqi@0 1640 }
aoqi@0 1641
aoqi@0 1642 //------------------------------ short_circuit_if -------------------------------------
aoqi@0 1643 // Force the iff control output to be the live_proj
aoqi@0 1644 Node* PhaseIdealLoop::short_circuit_if(IfNode* iff, ProjNode* live_proj) {
aoqi@0 1645 guarantee(live_proj != NULL, "null projection");
aoqi@0 1646 int proj_con = live_proj->_con;
aoqi@0 1647 assert(proj_con == 0 || proj_con == 1, "false or true projection");
aoqi@0 1648 Node *con = _igvn.intcon(proj_con);
aoqi@0 1649 set_ctrl(con, C->root());
aoqi@0 1650 if (iff) {
aoqi@0 1651 iff->set_req(1, con);
aoqi@0 1652 }
aoqi@0 1653 return con;
aoqi@0 1654 }
aoqi@0 1655
aoqi@0 1656 //------------------------------ insert_if_before_proj -------------------------------------
aoqi@0 1657 // Insert a new if before an if projection (* - new node)
aoqi@0 1658 //
aoqi@0 1659 // before
aoqi@0 1660 // if(test)
aoqi@0 1661 // / \
aoqi@0 1662 // v v
aoqi@0 1663 // other-proj proj (arg)
aoqi@0 1664 //
aoqi@0 1665 // after
aoqi@0 1666 // if(test)
aoqi@0 1667 // / \
aoqi@0 1668 // / v
aoqi@0 1669 // | * proj-clone
aoqi@0 1670 // v |
aoqi@0 1671 // other-proj v
aoqi@0 1672 // * new_if(relop(cmp[IU](left,right)))
aoqi@0 1673 // / \
aoqi@0 1674 // v v
aoqi@0 1675 // * new-proj proj
aoqi@0 1676 // (returned)
aoqi@0 1677 //
aoqi@0 1678 ProjNode* PhaseIdealLoop::insert_if_before_proj(Node* left, bool Signed, BoolTest::mask relop, Node* right, ProjNode* proj) {
aoqi@0 1679 IfNode* iff = proj->in(0)->as_If();
aoqi@0 1680 IdealLoopTree *loop = get_loop(proj);
aoqi@0 1681 ProjNode *other_proj = iff->proj_out(!proj->is_IfTrue())->as_Proj();
aoqi@0 1682 int ddepth = dom_depth(proj);
aoqi@0 1683
aoqi@0 1684 _igvn.rehash_node_delayed(iff);
aoqi@0 1685 _igvn.rehash_node_delayed(proj);
aoqi@0 1686
aoqi@0 1687 proj->set_req(0, NULL); // temporary disconnect
aoqi@0 1688 ProjNode* proj2 = proj_clone(proj, iff);
aoqi@0 1689 register_node(proj2, loop, iff, ddepth);
aoqi@0 1690
aoqi@0 1691 Node* cmp = Signed ? (Node*) new (C)CmpINode(left, right) : (Node*) new (C)CmpUNode(left, right);
aoqi@0 1692 register_node(cmp, loop, proj2, ddepth);
aoqi@0 1693
aoqi@0 1694 BoolNode* bol = new (C)BoolNode(cmp, relop);
aoqi@0 1695 register_node(bol, loop, proj2, ddepth);
aoqi@0 1696
aoqi@0 1697 IfNode* new_if = new (C)IfNode(proj2, bol, iff->_prob, iff->_fcnt);
aoqi@0 1698 register_node(new_if, loop, proj2, ddepth);
aoqi@0 1699
aoqi@0 1700 proj->set_req(0, new_if); // reattach
aoqi@0 1701 set_idom(proj, new_if, ddepth);
aoqi@0 1702
aoqi@0 1703 ProjNode* new_exit = proj_clone(other_proj, new_if)->as_Proj();
aoqi@0 1704 guarantee(new_exit != NULL, "null exit node");
aoqi@0 1705 register_node(new_exit, get_loop(other_proj), new_if, ddepth);
aoqi@0 1706
aoqi@0 1707 return new_exit;
aoqi@0 1708 }
aoqi@0 1709
aoqi@0 1710 //------------------------------ insert_region_before_proj -------------------------------------
aoqi@0 1711 // Insert a region before an if projection (* - new node)
aoqi@0 1712 //
aoqi@0 1713 // before
aoqi@0 1714 // if(test)
aoqi@0 1715 // / |
aoqi@0 1716 // v |
aoqi@0 1717 // proj v
aoqi@0 1718 // other-proj
aoqi@0 1719 //
aoqi@0 1720 // after
aoqi@0 1721 // if(test)
aoqi@0 1722 // / |
aoqi@0 1723 // v |
aoqi@0 1724 // * proj-clone v
aoqi@0 1725 // | other-proj
aoqi@0 1726 // v
aoqi@0 1727 // * new-region
aoqi@0 1728 // |
aoqi@0 1729 // v
aoqi@0 1730 // * dum_if
aoqi@0 1731 // / \
aoqi@0 1732 // v \
aoqi@0 1733 // * dum-proj v
aoqi@0 1734 // proj
aoqi@0 1735 //
aoqi@0 1736 RegionNode* PhaseIdealLoop::insert_region_before_proj(ProjNode* proj) {
aoqi@0 1737 IfNode* iff = proj->in(0)->as_If();
aoqi@0 1738 IdealLoopTree *loop = get_loop(proj);
aoqi@0 1739 ProjNode *other_proj = iff->proj_out(!proj->is_IfTrue())->as_Proj();
aoqi@0 1740 int ddepth = dom_depth(proj);
aoqi@0 1741
aoqi@0 1742 _igvn.rehash_node_delayed(iff);
aoqi@0 1743 _igvn.rehash_node_delayed(proj);
aoqi@0 1744
aoqi@0 1745 proj->set_req(0, NULL); // temporary disconnect
aoqi@0 1746 ProjNode* proj2 = proj_clone(proj, iff);
aoqi@0 1747 register_node(proj2, loop, iff, ddepth);
aoqi@0 1748
aoqi@0 1749 RegionNode* reg = new (C)RegionNode(2);
aoqi@0 1750 reg->set_req(1, proj2);
aoqi@0 1751 register_node(reg, loop, iff, ddepth);
aoqi@0 1752
aoqi@0 1753 IfNode* dum_if = new (C)IfNode(reg, short_circuit_if(NULL, proj), iff->_prob, iff->_fcnt);
aoqi@0 1754 register_node(dum_if, loop, reg, ddepth);
aoqi@0 1755
aoqi@0 1756 proj->set_req(0, dum_if); // reattach
aoqi@0 1757 set_idom(proj, dum_if, ddepth);
aoqi@0 1758
aoqi@0 1759 ProjNode* dum_proj = proj_clone(other_proj, dum_if);
aoqi@0 1760 register_node(dum_proj, loop, dum_if, ddepth);
aoqi@0 1761
aoqi@0 1762 return reg;
aoqi@0 1763 }
aoqi@0 1764
aoqi@0 1765 //------------------------------ insert_cmpi_loop_exit -------------------------------------
aoqi@0 1766 // Clone a signed compare loop exit from an unsigned compare and
aoqi@0 1767 // insert it before the unsigned cmp on the stay-in-loop path.
aoqi@0 1768 // All new nodes inserted in the dominator tree between the original
aoqi@0 1769 // if and it's projections. The original if test is replaced with
aoqi@0 1770 // a constant to force the stay-in-loop path.
aoqi@0 1771 //
aoqi@0 1772 // This is done to make sure that the original if and it's projections
aoqi@0 1773 // still dominate the same set of control nodes, that the ctrl() relation
aoqi@0 1774 // from data nodes to them is preserved, and that their loop nesting is
aoqi@0 1775 // preserved.
aoqi@0 1776 //
aoqi@0 1777 // before
aoqi@0 1778 // if(i <u limit) unsigned compare loop exit
aoqi@0 1779 // / |
aoqi@0 1780 // v v
aoqi@0 1781 // exit-proj stay-in-loop-proj
aoqi@0 1782 //
aoqi@0 1783 // after
aoqi@0 1784 // if(stay-in-loop-const) original if
aoqi@0 1785 // / |
aoqi@0 1786 // / v
aoqi@0 1787 // / if(i < limit) new signed test
aoqi@0 1788 // / / |
aoqi@0 1789 // / / v
aoqi@0 1790 // / / if(i <u limit) new cloned unsigned test
aoqi@0 1791 // / / / |
aoqi@0 1792 // v v v |
aoqi@0 1793 // region |
aoqi@0 1794 // | |
aoqi@0 1795 // dum-if |
aoqi@0 1796 // / | |
aoqi@0 1797 // ether | |
aoqi@0 1798 // v v
aoqi@0 1799 // exit-proj stay-in-loop-proj
aoqi@0 1800 //
aoqi@0 1801 IfNode* PhaseIdealLoop::insert_cmpi_loop_exit(IfNode* if_cmpu, IdealLoopTree *loop) {
aoqi@0 1802 const bool Signed = true;
aoqi@0 1803 const bool Unsigned = false;
aoqi@0 1804
aoqi@0 1805 BoolNode* bol = if_cmpu->in(1)->as_Bool();
aoqi@0 1806 if (bol->_test._test != BoolTest::lt) return NULL;
aoqi@0 1807 CmpNode* cmpu = bol->in(1)->as_Cmp();
aoqi@0 1808 if (cmpu->Opcode() != Op_CmpU) return NULL;
aoqi@0 1809 int stride = stride_of_possible_iv(if_cmpu);
aoqi@0 1810 if (stride == 0) return NULL;
aoqi@0 1811
aoqi@0 1812 Node* lp_proj = stay_in_loop(if_cmpu, loop);
aoqi@0 1813 guarantee(lp_proj != NULL, "null loop node");
aoqi@0 1814
aoqi@0 1815 ProjNode* lp_continue = lp_proj->as_Proj();
aoqi@0 1816 ProjNode* lp_exit = if_cmpu->proj_out(!lp_continue->is_IfTrue())->as_Proj();
aoqi@0 1817
aoqi@0 1818 Node* limit = NULL;
aoqi@0 1819 if (stride > 0) {
aoqi@0 1820 limit = cmpu->in(2);
aoqi@0 1821 } else {
aoqi@0 1822 limit = _igvn.makecon(TypeInt::ZERO);
aoqi@0 1823 set_ctrl(limit, C->root());
aoqi@0 1824 }
aoqi@0 1825 // Create a new region on the exit path
aoqi@0 1826 RegionNode* reg = insert_region_before_proj(lp_exit);
aoqi@0 1827 guarantee(reg != NULL, "null region node");
aoqi@0 1828
aoqi@0 1829 // Clone the if-cmpu-true-false using a signed compare
aoqi@0 1830 BoolTest::mask rel_i = stride > 0 ? bol->_test._test : BoolTest::ge;
aoqi@0 1831 ProjNode* cmpi_exit = insert_if_before_proj(cmpu->in(1), Signed, rel_i, limit, lp_continue);
aoqi@0 1832 reg->add_req(cmpi_exit);
aoqi@0 1833
aoqi@0 1834 // Clone the if-cmpu-true-false
aoqi@0 1835 BoolTest::mask rel_u = bol->_test._test;
aoqi@0 1836 ProjNode* cmpu_exit = insert_if_before_proj(cmpu->in(1), Unsigned, rel_u, cmpu->in(2), lp_continue);
aoqi@0 1837 reg->add_req(cmpu_exit);
aoqi@0 1838
aoqi@0 1839 // Force original if to stay in loop.
aoqi@0 1840 short_circuit_if(if_cmpu, lp_continue);
aoqi@0 1841
aoqi@0 1842 return cmpi_exit->in(0)->as_If();
aoqi@0 1843 }
aoqi@0 1844
aoqi@0 1845 //------------------------------ remove_cmpi_loop_exit -------------------------------------
aoqi@0 1846 // Remove a previously inserted signed compare loop exit.
aoqi@0 1847 void PhaseIdealLoop::remove_cmpi_loop_exit(IfNode* if_cmp, IdealLoopTree *loop) {
aoqi@0 1848 Node* lp_proj = stay_in_loop(if_cmp, loop);
aoqi@0 1849 assert(if_cmp->in(1)->in(1)->Opcode() == Op_CmpI &&
aoqi@0 1850 stay_in_loop(lp_proj, loop)->is_If() &&
aoqi@0 1851 stay_in_loop(lp_proj, loop)->in(1)->in(1)->Opcode() == Op_CmpU, "inserted cmpi before cmpu");
aoqi@0 1852 Node *con = _igvn.makecon(lp_proj->is_IfTrue() ? TypeInt::ONE : TypeInt::ZERO);
aoqi@0 1853 set_ctrl(con, C->root());
aoqi@0 1854 if_cmp->set_req(1, con);
aoqi@0 1855 }
aoqi@0 1856
aoqi@0 1857 //------------------------------ scheduled_nodelist -------------------------------------
aoqi@0 1858 // Create a post order schedule of nodes that are in the
aoqi@0 1859 // "member" set. The list is returned in "sched".
aoqi@0 1860 // The first node in "sched" is the loop head, followed by
aoqi@0 1861 // nodes which have no inputs in the "member" set, and then
aoqi@0 1862 // followed by the nodes that have an immediate input dependence
aoqi@0 1863 // on a node in "sched".
aoqi@0 1864 void PhaseIdealLoop::scheduled_nodelist( IdealLoopTree *loop, VectorSet& member, Node_List &sched ) {
aoqi@0 1865
aoqi@0 1866 assert(member.test(loop->_head->_idx), "loop head must be in member set");
aoqi@0 1867 Arena *a = Thread::current()->resource_area();
aoqi@0 1868 VectorSet visited(a);
aoqi@0 1869 Node_Stack nstack(a, loop->_body.size());
aoqi@0 1870
aoqi@0 1871 Node* n = loop->_head; // top of stack is cached in "n"
aoqi@0 1872 uint idx = 0;
aoqi@0 1873 visited.set(n->_idx);
aoqi@0 1874
aoqi@0 1875 // Initially push all with no inputs from within member set
aoqi@0 1876 for(uint i = 0; i < loop->_body.size(); i++ ) {
aoqi@0 1877 Node *elt = loop->_body.at(i);
aoqi@0 1878 if (member.test(elt->_idx)) {
aoqi@0 1879 bool found = false;
aoqi@0 1880 for (uint j = 0; j < elt->req(); j++) {
aoqi@0 1881 Node* def = elt->in(j);
aoqi@0 1882 if (def && member.test(def->_idx) && def != elt) {
aoqi@0 1883 found = true;
aoqi@0 1884 break;
aoqi@0 1885 }
aoqi@0 1886 }
aoqi@0 1887 if (!found && elt != loop->_head) {
aoqi@0 1888 nstack.push(n, idx);
aoqi@0 1889 n = elt;
aoqi@0 1890 assert(!visited.test(n->_idx), "not seen yet");
aoqi@0 1891 visited.set(n->_idx);
aoqi@0 1892 }
aoqi@0 1893 }
aoqi@0 1894 }
aoqi@0 1895
aoqi@0 1896 // traverse out's that are in the member set
aoqi@0 1897 while (true) {
aoqi@0 1898 if (idx < n->outcnt()) {
aoqi@0 1899 Node* use = n->raw_out(idx);
aoqi@0 1900 idx++;
aoqi@0 1901 if (!visited.test_set(use->_idx)) {
aoqi@0 1902 if (member.test(use->_idx)) {
aoqi@0 1903 nstack.push(n, idx);
aoqi@0 1904 n = use;
aoqi@0 1905 idx = 0;
aoqi@0 1906 }
aoqi@0 1907 }
aoqi@0 1908 } else {
aoqi@0 1909 // All outputs processed
aoqi@0 1910 sched.push(n);
aoqi@0 1911 if (nstack.is_empty()) break;
aoqi@0 1912 n = nstack.node();
aoqi@0 1913 idx = nstack.index();
aoqi@0 1914 nstack.pop();
aoqi@0 1915 }
aoqi@0 1916 }
aoqi@0 1917 }
aoqi@0 1918
aoqi@0 1919
aoqi@0 1920 //------------------------------ has_use_in_set -------------------------------------
aoqi@0 1921 // Has a use in the vector set
aoqi@0 1922 bool PhaseIdealLoop::has_use_in_set( Node* n, VectorSet& vset ) {
aoqi@0 1923 for (DUIterator_Fast jmax, j = n->fast_outs(jmax); j < jmax; j++) {
aoqi@0 1924 Node* use = n->fast_out(j);
aoqi@0 1925 if (vset.test(use->_idx)) {
aoqi@0 1926 return true;
aoqi@0 1927 }
aoqi@0 1928 }
aoqi@0 1929 return false;
aoqi@0 1930 }
aoqi@0 1931
aoqi@0 1932
aoqi@0 1933 //------------------------------ has_use_internal_to_set -------------------------------------
aoqi@0 1934 // Has use internal to the vector set (ie. not in a phi at the loop head)
aoqi@0 1935 bool PhaseIdealLoop::has_use_internal_to_set( Node* n, VectorSet& vset, IdealLoopTree *loop ) {
aoqi@0 1936 Node* head = loop->_head;
aoqi@0 1937 for (DUIterator_Fast jmax, j = n->fast_outs(jmax); j < jmax; j++) {
aoqi@0 1938 Node* use = n->fast_out(j);
aoqi@0 1939 if (vset.test(use->_idx) && !(use->is_Phi() && use->in(0) == head)) {
aoqi@0 1940 return true;
aoqi@0 1941 }
aoqi@0 1942 }
aoqi@0 1943 return false;
aoqi@0 1944 }
aoqi@0 1945
aoqi@0 1946
aoqi@0 1947 //------------------------------ clone_for_use_outside_loop -------------------------------------
aoqi@0 1948 // clone "n" for uses that are outside of loop
aoqi@0 1949 int PhaseIdealLoop::clone_for_use_outside_loop( IdealLoopTree *loop, Node* n, Node_List& worklist ) {
aoqi@0 1950 int cloned = 0;
aoqi@0 1951 assert(worklist.size() == 0, "should be empty");
aoqi@0 1952 for (DUIterator_Fast jmax, j = n->fast_outs(jmax); j < jmax; j++) {
aoqi@0 1953 Node* use = n->fast_out(j);
aoqi@0 1954 if( !loop->is_member(get_loop(has_ctrl(use) ? get_ctrl(use) : use)) ) {
aoqi@0 1955 worklist.push(use);
aoqi@0 1956 }
aoqi@0 1957 }
aoqi@0 1958 while( worklist.size() ) {
aoqi@0 1959 Node *use = worklist.pop();
aoqi@0 1960 if (!has_node(use) || use->in(0) == C->top()) continue;
aoqi@0 1961 uint j;
aoqi@0 1962 for (j = 0; j < use->req(); j++) {
aoqi@0 1963 if (use->in(j) == n) break;
aoqi@0 1964 }
aoqi@0 1965 assert(j < use->req(), "must be there");
aoqi@0 1966
aoqi@0 1967 // clone "n" and insert it between the inputs of "n" and the use outside the loop
aoqi@0 1968 Node* n_clone = n->clone();
aoqi@0 1969 _igvn.replace_input_of(use, j, n_clone);
aoqi@0 1970 cloned++;
aoqi@0 1971 Node* use_c;
aoqi@0 1972 if (!use->is_Phi()) {
aoqi@0 1973 use_c = has_ctrl(use) ? get_ctrl(use) : use->in(0);
aoqi@0 1974 } else {
aoqi@0 1975 // Use in a phi is considered a use in the associated predecessor block
aoqi@0 1976 use_c = use->in(0)->in(j);
aoqi@0 1977 }
aoqi@0 1978 set_ctrl(n_clone, use_c);
aoqi@0 1979 assert(!loop->is_member(get_loop(use_c)), "should be outside loop");
aoqi@0 1980 get_loop(use_c)->_body.push(n_clone);
aoqi@0 1981 _igvn.register_new_node_with_optimizer(n_clone);
aoqi@0 1982 #if !defined(PRODUCT)
aoqi@0 1983 if (TracePartialPeeling) {
aoqi@0 1984 tty->print_cr("loop exit cloning old: %d new: %d newbb: %d", n->_idx, n_clone->_idx, get_ctrl(n_clone)->_idx);
aoqi@0 1985 }
aoqi@0 1986 #endif
aoqi@0 1987 }
aoqi@0 1988 return cloned;
aoqi@0 1989 }
aoqi@0 1990
aoqi@0 1991
aoqi@0 1992 //------------------------------ clone_for_special_use_inside_loop -------------------------------------
aoqi@0 1993 // clone "n" for special uses that are in the not_peeled region.
aoqi@0 1994 // If these def-uses occur in separate blocks, the code generator
aoqi@0 1995 // marks the method as not compilable. For example, if a "BoolNode"
aoqi@0 1996 // is in a different basic block than the "IfNode" that uses it, then
aoqi@0 1997 // the compilation is aborted in the code generator.
aoqi@0 1998 void PhaseIdealLoop::clone_for_special_use_inside_loop( IdealLoopTree *loop, Node* n,
aoqi@0 1999 VectorSet& not_peel, Node_List& sink_list, Node_List& worklist ) {
aoqi@0 2000 if (n->is_Phi() || n->is_Load()) {
aoqi@0 2001 return;
aoqi@0 2002 }
aoqi@0 2003 assert(worklist.size() == 0, "should be empty");
aoqi@0 2004 for (DUIterator_Fast jmax, j = n->fast_outs(jmax); j < jmax; j++) {
aoqi@0 2005 Node* use = n->fast_out(j);
aoqi@0 2006 if ( not_peel.test(use->_idx) &&
aoqi@0 2007 (use->is_If() || use->is_CMove() || use->is_Bool()) &&
aoqi@0 2008 use->in(1) == n) {
aoqi@0 2009 worklist.push(use);
aoqi@0 2010 }
aoqi@0 2011 }
aoqi@0 2012 if (worklist.size() > 0) {
aoqi@0 2013 // clone "n" and insert it between inputs of "n" and the use
aoqi@0 2014 Node* n_clone = n->clone();
aoqi@0 2015 loop->_body.push(n_clone);
aoqi@0 2016 _igvn.register_new_node_with_optimizer(n_clone);
aoqi@0 2017 set_ctrl(n_clone, get_ctrl(n));
aoqi@0 2018 sink_list.push(n_clone);
aoqi@0 2019 not_peel <<= n_clone->_idx; // add n_clone to not_peel set.
aoqi@0 2020 #if !defined(PRODUCT)
aoqi@0 2021 if (TracePartialPeeling) {
aoqi@0 2022 tty->print_cr("special not_peeled cloning old: %d new: %d", n->_idx, n_clone->_idx);
aoqi@0 2023 }
aoqi@0 2024 #endif
aoqi@0 2025 while( worklist.size() ) {
aoqi@0 2026 Node *use = worklist.pop();
aoqi@0 2027 _igvn.rehash_node_delayed(use);
aoqi@0 2028 for (uint j = 1; j < use->req(); j++) {
aoqi@0 2029 if (use->in(j) == n) {
aoqi@0 2030 use->set_req(j, n_clone);
aoqi@0 2031 }
aoqi@0 2032 }
aoqi@0 2033 }
aoqi@0 2034 }
aoqi@0 2035 }
aoqi@0 2036
aoqi@0 2037
aoqi@0 2038 //------------------------------ insert_phi_for_loop -------------------------------------
aoqi@0 2039 // Insert phi(lp_entry_val, back_edge_val) at use->in(idx) for loop lp if phi does not already exist
aoqi@0 2040 void PhaseIdealLoop::insert_phi_for_loop( Node* use, uint idx, Node* lp_entry_val, Node* back_edge_val, LoopNode* lp ) {
aoqi@0 2041 Node *phi = PhiNode::make(lp, back_edge_val);
aoqi@0 2042 phi->set_req(LoopNode::EntryControl, lp_entry_val);
aoqi@0 2043 // Use existing phi if it already exists
aoqi@0 2044 Node *hit = _igvn.hash_find_insert(phi);
aoqi@0 2045 if( hit == NULL ) {
aoqi@0 2046 _igvn.register_new_node_with_optimizer(phi);
aoqi@0 2047 set_ctrl(phi, lp);
aoqi@0 2048 } else {
aoqi@0 2049 // Remove the new phi from the graph and use the hit
aoqi@0 2050 _igvn.remove_dead_node(phi);
aoqi@0 2051 phi = hit;
aoqi@0 2052 }
aoqi@0 2053 _igvn.replace_input_of(use, idx, phi);
aoqi@0 2054 }
aoqi@0 2055
aoqi@0 2056 #ifdef ASSERT
aoqi@0 2057 //------------------------------ is_valid_loop_partition -------------------------------------
aoqi@0 2058 // Validate the loop partition sets: peel and not_peel
aoqi@0 2059 bool PhaseIdealLoop::is_valid_loop_partition( IdealLoopTree *loop, VectorSet& peel, Node_List& peel_list,
aoqi@0 2060 VectorSet& not_peel ) {
aoqi@0 2061 uint i;
aoqi@0 2062 // Check that peel_list entries are in the peel set
aoqi@0 2063 for (i = 0; i < peel_list.size(); i++) {
aoqi@0 2064 if (!peel.test(peel_list.at(i)->_idx)) {
aoqi@0 2065 return false;
aoqi@0 2066 }
aoqi@0 2067 }
aoqi@0 2068 // Check at loop members are in one of peel set or not_peel set
aoqi@0 2069 for (i = 0; i < loop->_body.size(); i++ ) {
aoqi@0 2070 Node *def = loop->_body.at(i);
aoqi@0 2071 uint di = def->_idx;
aoqi@0 2072 // Check that peel set elements are in peel_list
aoqi@0 2073 if (peel.test(di)) {
aoqi@0 2074 if (not_peel.test(di)) {
aoqi@0 2075 return false;
aoqi@0 2076 }
aoqi@0 2077 // Must be in peel_list also
aoqi@0 2078 bool found = false;
aoqi@0 2079 for (uint j = 0; j < peel_list.size(); j++) {
aoqi@0 2080 if (peel_list.at(j)->_idx == di) {
aoqi@0 2081 found = true;
aoqi@0 2082 break;
aoqi@0 2083 }
aoqi@0 2084 }
aoqi@0 2085 if (!found) {
aoqi@0 2086 return false;
aoqi@0 2087 }
aoqi@0 2088 } else if (not_peel.test(di)) {
aoqi@0 2089 if (peel.test(di)) {
aoqi@0 2090 return false;
aoqi@0 2091 }
aoqi@0 2092 } else {
aoqi@0 2093 return false;
aoqi@0 2094 }
aoqi@0 2095 }
aoqi@0 2096 return true;
aoqi@0 2097 }
aoqi@0 2098
aoqi@0 2099 //------------------------------ is_valid_clone_loop_exit_use -------------------------------------
aoqi@0 2100 // Ensure a use outside of loop is of the right form
aoqi@0 2101 bool PhaseIdealLoop::is_valid_clone_loop_exit_use( IdealLoopTree *loop, Node* use, uint exit_idx) {
aoqi@0 2102 Node *use_c = has_ctrl(use) ? get_ctrl(use) : use;
aoqi@0 2103 return (use->is_Phi() &&
aoqi@0 2104 use_c->is_Region() && use_c->req() == 3 &&
aoqi@0 2105 (use_c->in(exit_idx)->Opcode() == Op_IfTrue ||
aoqi@0 2106 use_c->in(exit_idx)->Opcode() == Op_IfFalse ||
aoqi@0 2107 use_c->in(exit_idx)->Opcode() == Op_JumpProj) &&
aoqi@0 2108 loop->is_member( get_loop( use_c->in(exit_idx)->in(0) ) ) );
aoqi@0 2109 }
aoqi@0 2110
aoqi@0 2111 //------------------------------ is_valid_clone_loop_form -------------------------------------
aoqi@0 2112 // Ensure that all uses outside of loop are of the right form
aoqi@0 2113 bool PhaseIdealLoop::is_valid_clone_loop_form( IdealLoopTree *loop, Node_List& peel_list,
aoqi@0 2114 uint orig_exit_idx, uint clone_exit_idx) {
aoqi@0 2115 uint len = peel_list.size();
aoqi@0 2116 for (uint i = 0; i < len; i++) {
aoqi@0 2117 Node *def = peel_list.at(i);
aoqi@0 2118
aoqi@0 2119 for (DUIterator_Fast jmax, j = def->fast_outs(jmax); j < jmax; j++) {
aoqi@0 2120 Node *use = def->fast_out(j);
aoqi@0 2121 Node *use_c = has_ctrl(use) ? get_ctrl(use) : use;
aoqi@0 2122 if (!loop->is_member(get_loop(use_c))) {
aoqi@0 2123 // use is not in the loop, check for correct structure
aoqi@0 2124 if (use->in(0) == def) {
aoqi@0 2125 // Okay
aoqi@0 2126 } else if (!is_valid_clone_loop_exit_use(loop, use, orig_exit_idx)) {
aoqi@0 2127 return false;
aoqi@0 2128 }
aoqi@0 2129 }
aoqi@0 2130 }
aoqi@0 2131 }
aoqi@0 2132 return true;
aoqi@0 2133 }
aoqi@0 2134 #endif
aoqi@0 2135
aoqi@0 2136 //------------------------------ partial_peel -------------------------------------
aoqi@0 2137 // Partially peel (aka loop rotation) the top portion of a loop (called
aoqi@0 2138 // the peel section below) by cloning it and placing one copy just before
aoqi@0 2139 // the new loop head and the other copy at the bottom of the new loop.
aoqi@0 2140 //
aoqi@0 2141 // before after where it came from
aoqi@0 2142 //
aoqi@0 2143 // stmt1 stmt1
aoqi@0 2144 // loop: stmt2 clone
aoqi@0 2145 // stmt2 if condA goto exitA clone
aoqi@0 2146 // if condA goto exitA new_loop: new
aoqi@0 2147 // stmt3 stmt3 clone
aoqi@0 2148 // if !condB goto loop if condB goto exitB clone
aoqi@0 2149 // exitB: stmt2 orig
aoqi@0 2150 // stmt4 if !condA goto new_loop orig
aoqi@0 2151 // exitA: goto exitA
aoqi@0 2152 // exitB:
aoqi@0 2153 // stmt4
aoqi@0 2154 // exitA:
aoqi@0 2155 //
aoqi@0 2156 // Step 1: find the cut point: an exit test on probable
aoqi@0 2157 // induction variable.
aoqi@0 2158 // Step 2: schedule (with cloning) operations in the peel
aoqi@0 2159 // section that can be executed after the cut into
aoqi@0 2160 // the section that is not peeled. This may need
aoqi@0 2161 // to clone operations into exit blocks. For
aoqi@0 2162 // instance, a reference to A[i] in the not-peel
aoqi@0 2163 // section and a reference to B[i] in an exit block
aoqi@0 2164 // may cause a left-shift of i by 2 to be placed
aoqi@0 2165 // in the peel block. This step will clone the left
aoqi@0 2166 // shift into the exit block and sink the left shift
aoqi@0 2167 // from the peel to the not-peel section.
aoqi@0 2168 // Step 3: clone the loop, retarget the control, and insert
aoqi@0 2169 // phis for values that are live across the new loop
aoqi@0 2170 // head. This is very dependent on the graph structure
aoqi@0 2171 // from clone_loop. It creates region nodes for
aoqi@0 2172 // exit control and associated phi nodes for values
aoqi@0 2173 // flow out of the loop through that exit. The region
aoqi@0 2174 // node is dominated by the clone's control projection.
aoqi@0 2175 // So the clone's peel section is placed before the
aoqi@0 2176 // new loop head, and the clone's not-peel section is
aoqi@0 2177 // forms the top part of the new loop. The original
aoqi@0 2178 // peel section forms the tail of the new loop.
aoqi@0 2179 // Step 4: update the dominator tree and recompute the
aoqi@0 2180 // dominator depth.
aoqi@0 2181 //
aoqi@0 2182 // orig
aoqi@0 2183 //
aoqi@0 2184 // stmt1
aoqi@0 2185 // |
aoqi@0 2186 // v
aoqi@0 2187 // loop predicate
aoqi@0 2188 // |
aoqi@0 2189 // v
aoqi@0 2190 // loop<----+
aoqi@0 2191 // | |
aoqi@0 2192 // stmt2 |
aoqi@0 2193 // | |
aoqi@0 2194 // v |
aoqi@0 2195 // ifA |
aoqi@0 2196 // / | |
aoqi@0 2197 // v v |
aoqi@0 2198 // false true ^ <-- last_peel
aoqi@0 2199 // / | |
aoqi@0 2200 // / ===|==cut |
aoqi@0 2201 // / stmt3 | <-- first_not_peel
aoqi@0 2202 // / | |
aoqi@0 2203 // | v |
aoqi@0 2204 // v ifB |
aoqi@0 2205 // exitA: / \ |
aoqi@0 2206 // / \ |
aoqi@0 2207 // v v |
aoqi@0 2208 // false true |
aoqi@0 2209 // / \ |
aoqi@0 2210 // / ----+
aoqi@0 2211 // |
aoqi@0 2212 // v
aoqi@0 2213 // exitB:
aoqi@0 2214 // stmt4
aoqi@0 2215 //
aoqi@0 2216 //
aoqi@0 2217 // after clone loop
aoqi@0 2218 //
aoqi@0 2219 // stmt1
aoqi@0 2220 // |
aoqi@0 2221 // v
aoqi@0 2222 // loop predicate
aoqi@0 2223 // / \
aoqi@0 2224 // clone / \ orig
aoqi@0 2225 // / \
aoqi@0 2226 // / \
aoqi@0 2227 // v v
aoqi@0 2228 // +---->loop loop<----+
aoqi@0 2229 // | | | |
aoqi@0 2230 // | stmt2 stmt2 |
aoqi@0 2231 // | | | |
aoqi@0 2232 // | v v |
aoqi@0 2233 // | ifA ifA |
aoqi@0 2234 // | | \ / | |
aoqi@0 2235 // | v v v v |
aoqi@0 2236 // ^ true false false true ^ <-- last_peel
aoqi@0 2237 // | | ^ \ / | |
aoqi@0 2238 // | cut==|== \ \ / ===|==cut |
aoqi@0 2239 // | stmt3 \ \ / stmt3 | <-- first_not_peel
aoqi@0 2240 // | | dom | | | |
aoqi@0 2241 // | v \ 1v v2 v |
aoqi@0 2242 // | ifB regionA ifB |
aoqi@0 2243 // | / \ | / \ |
aoqi@0 2244 // | / \ v / \ |
aoqi@0 2245 // | v v exitA: v v |
aoqi@0 2246 // | true false false true |
aoqi@0 2247 // | / ^ \ / \ |
aoqi@0 2248 // +---- \ \ / ----+
aoqi@0 2249 // dom \ /
aoqi@0 2250 // \ 1v v2
aoqi@0 2251 // regionB
aoqi@0 2252 // |
aoqi@0 2253 // v
aoqi@0 2254 // exitB:
aoqi@0 2255 // stmt4
aoqi@0 2256 //
aoqi@0 2257 //
aoqi@0 2258 // after partial peel
aoqi@0 2259 //
aoqi@0 2260 // stmt1
aoqi@0 2261 // |
aoqi@0 2262 // v
aoqi@0 2263 // loop predicate
aoqi@0 2264 // /
aoqi@0 2265 // clone / orig
aoqi@0 2266 // / TOP
aoqi@0 2267 // / \
aoqi@0 2268 // v v
aoqi@0 2269 // TOP->loop loop----+
aoqi@0 2270 // | | |
aoqi@0 2271 // stmt2 stmt2 |
aoqi@0 2272 // | | |
aoqi@0 2273 // v v |
aoqi@0 2274 // ifA ifA |
aoqi@0 2275 // | \ / | |
aoqi@0 2276 // v v v v |
aoqi@0 2277 // true false false true | <-- last_peel
aoqi@0 2278 // | ^ \ / +------|---+
aoqi@0 2279 // +->newloop \ \ / === ==cut | |
aoqi@0 2280 // | stmt3 \ \ / TOP | |
aoqi@0 2281 // | | dom | | stmt3 | | <-- first_not_peel
aoqi@0 2282 // | v \ 1v v2 v | |
aoqi@0 2283 // | ifB regionA ifB ^ v
aoqi@0 2284 // | / \ | / \ | |
aoqi@0 2285 // | / \ v / \ | |
aoqi@0 2286 // | v v exitA: v v | |
aoqi@0 2287 // | true false false true | |
aoqi@0 2288 // | / ^ \ / \ | |
aoqi@0 2289 // | | \ \ / v | |
aoqi@0 2290 // | | dom \ / TOP | |
aoqi@0 2291 // | | \ 1v v2 | |
aoqi@0 2292 // ^ v regionB | |
aoqi@0 2293 // | | | | |
aoqi@0 2294 // | | v ^ v
aoqi@0 2295 // | | exitB: | |
aoqi@0 2296 // | | stmt4 | |
aoqi@0 2297 // | +------------>-----------------+ |
aoqi@0 2298 // | |
aoqi@0 2299 // +-----------------<---------------------+
aoqi@0 2300 //
aoqi@0 2301 //
aoqi@0 2302 // final graph
aoqi@0 2303 //
aoqi@0 2304 // stmt1
aoqi@0 2305 // |
aoqi@0 2306 // v
aoqi@0 2307 // loop predicate
aoqi@0 2308 // |
aoqi@0 2309 // v
aoqi@0 2310 // stmt2 clone
aoqi@0 2311 // |
aoqi@0 2312 // v
aoqi@0 2313 // ........> ifA clone
aoqi@0 2314 // : / |
aoqi@0 2315 // dom / |
aoqi@0 2316 // : v v
aoqi@0 2317 // : false true
aoqi@0 2318 // : | |
aoqi@0 2319 // : | v
aoqi@0 2320 // : | newloop<-----+
aoqi@0 2321 // : | | |
aoqi@0 2322 // : | stmt3 clone |
aoqi@0 2323 // : | | |
aoqi@0 2324 // : | v |
aoqi@0 2325 // : | ifB |
aoqi@0 2326 // : | / \ |
aoqi@0 2327 // : | v v |
aoqi@0 2328 // : | false true |
aoqi@0 2329 // : | | | |
aoqi@0 2330 // : | v stmt2 |
aoqi@0 2331 // : | exitB: | |
aoqi@0 2332 // : | stmt4 v |
aoqi@0 2333 // : | ifA orig |
aoqi@0 2334 // : | / \ |
aoqi@0 2335 // : | / \ |
aoqi@0 2336 // : | v v |
aoqi@0 2337 // : | false true |
aoqi@0 2338 // : | / \ |
aoqi@0 2339 // : v v -----+
aoqi@0 2340 // RegionA
aoqi@0 2341 // |
aoqi@0 2342 // v
aoqi@0 2343 // exitA
aoqi@0 2344 //
aoqi@0 2345 bool PhaseIdealLoop::partial_peel( IdealLoopTree *loop, Node_List &old_new ) {
aoqi@0 2346
aoqi@0 2347 assert(!loop->_head->is_CountedLoop(), "Non-counted loop only");
aoqi@0 2348 if (!loop->_head->is_Loop()) {
aoqi@0 2349 return false; }
aoqi@0 2350
aoqi@0 2351 LoopNode *head = loop->_head->as_Loop();
aoqi@0 2352
aoqi@0 2353 if (head->is_partial_peel_loop() || head->partial_peel_has_failed()) {
aoqi@0 2354 return false;
aoqi@0 2355 }
aoqi@0 2356
aoqi@0 2357 // Check for complex exit control
aoqi@0 2358 for(uint ii = 0; ii < loop->_body.size(); ii++ ) {
aoqi@0 2359 Node *n = loop->_body.at(ii);
aoqi@0 2360 int opc = n->Opcode();
aoqi@0 2361 if (n->is_Call() ||
aoqi@0 2362 opc == Op_Catch ||
aoqi@0 2363 opc == Op_CatchProj ||
aoqi@0 2364 opc == Op_Jump ||
aoqi@0 2365 opc == Op_JumpProj) {
aoqi@0 2366 #if !defined(PRODUCT)
aoqi@0 2367 if (TracePartialPeeling) {
aoqi@0 2368 tty->print_cr("\nExit control too complex: lp: %d", head->_idx);
aoqi@0 2369 }
aoqi@0 2370 #endif
aoqi@0 2371 return false;
aoqi@0 2372 }
aoqi@0 2373 }
aoqi@0 2374
aoqi@0 2375 int dd = dom_depth(head);
aoqi@0 2376
aoqi@0 2377 // Step 1: find cut point
aoqi@0 2378
aoqi@0 2379 // Walk up dominators to loop head looking for first loop exit
aoqi@0 2380 // which is executed on every path thru loop.
aoqi@0 2381 IfNode *peel_if = NULL;
aoqi@0 2382 IfNode *peel_if_cmpu = NULL;
aoqi@0 2383
aoqi@0 2384 Node *iff = loop->tail();
aoqi@0 2385 while( iff != head ) {
aoqi@0 2386 if( iff->is_If() ) {
aoqi@0 2387 Node *ctrl = get_ctrl(iff->in(1));
aoqi@0 2388 if (ctrl->is_top()) return false; // Dead test on live IF.
aoqi@0 2389 // If loop-varying exit-test, check for induction variable
aoqi@0 2390 if( loop->is_member(get_loop(ctrl)) &&
aoqi@0 2391 loop->is_loop_exit(iff) &&
aoqi@0 2392 is_possible_iv_test(iff)) {
aoqi@0 2393 Node* cmp = iff->in(1)->in(1);
aoqi@0 2394 if (cmp->Opcode() == Op_CmpI) {
aoqi@0 2395 peel_if = iff->as_If();
aoqi@0 2396 } else {
aoqi@0 2397 assert(cmp->Opcode() == Op_CmpU, "must be CmpI or CmpU");
aoqi@0 2398 peel_if_cmpu = iff->as_If();
aoqi@0 2399 }
aoqi@0 2400 }
aoqi@0 2401 }
aoqi@0 2402 iff = idom(iff);
aoqi@0 2403 }
aoqi@0 2404 // Prefer signed compare over unsigned compare.
aoqi@0 2405 IfNode* new_peel_if = NULL;
aoqi@0 2406 if (peel_if == NULL) {
aoqi@0 2407 if (!PartialPeelAtUnsignedTests || peel_if_cmpu == NULL) {
aoqi@0 2408 return false; // No peel point found
aoqi@0 2409 }
aoqi@0 2410 new_peel_if = insert_cmpi_loop_exit(peel_if_cmpu, loop);
aoqi@0 2411 if (new_peel_if == NULL) {
aoqi@0 2412 return false; // No peel point found
aoqi@0 2413 }
aoqi@0 2414 peel_if = new_peel_if;
aoqi@0 2415 }
aoqi@0 2416 Node* last_peel = stay_in_loop(peel_if, loop);
aoqi@0 2417 Node* first_not_peeled = stay_in_loop(last_peel, loop);
aoqi@0 2418 if (first_not_peeled == NULL || first_not_peeled == head) {
aoqi@0 2419 return false;
aoqi@0 2420 }
aoqi@0 2421
aoqi@0 2422 #if !defined(PRODUCT)
aoqi@0 2423 if (TraceLoopOpts) {
aoqi@0 2424 tty->print("PartialPeel ");
aoqi@0 2425 loop->dump_head();
aoqi@0 2426 }
aoqi@0 2427
aoqi@0 2428 if (TracePartialPeeling) {
aoqi@0 2429 tty->print_cr("before partial peel one iteration");
aoqi@0 2430 Node_List wl;
aoqi@0 2431 Node* t = head->in(2);
aoqi@0 2432 while (true) {
aoqi@0 2433 wl.push(t);
aoqi@0 2434 if (t == head) break;
aoqi@0 2435 t = idom(t);
aoqi@0 2436 }
aoqi@0 2437 while (wl.size() > 0) {
aoqi@0 2438 Node* tt = wl.pop();
aoqi@0 2439 tt->dump();
aoqi@0 2440 if (tt == last_peel) tty->print_cr("-- cut --");
aoqi@0 2441 }
aoqi@0 2442 }
aoqi@0 2443 #endif
aoqi@0 2444 ResourceArea *area = Thread::current()->resource_area();
aoqi@0 2445 VectorSet peel(area);
aoqi@0 2446 VectorSet not_peel(area);
aoqi@0 2447 Node_List peel_list(area);
aoqi@0 2448 Node_List worklist(area);
aoqi@0 2449 Node_List sink_list(area);
aoqi@0 2450
aoqi@0 2451 // Set of cfg nodes to peel are those that are executable from
aoqi@0 2452 // the head through last_peel.
aoqi@0 2453 assert(worklist.size() == 0, "should be empty");
aoqi@0 2454 worklist.push(head);
aoqi@0 2455 peel.set(head->_idx);
aoqi@0 2456 while (worklist.size() > 0) {
aoqi@0 2457 Node *n = worklist.pop();
aoqi@0 2458 if (n != last_peel) {
aoqi@0 2459 for (DUIterator_Fast jmax, j = n->fast_outs(jmax); j < jmax; j++) {
aoqi@0 2460 Node* use = n->fast_out(j);
aoqi@0 2461 if (use->is_CFG() &&
aoqi@0 2462 loop->is_member(get_loop(use)) &&
aoqi@0 2463 !peel.test_set(use->_idx)) {
aoqi@0 2464 worklist.push(use);
aoqi@0 2465 }
aoqi@0 2466 }
aoqi@0 2467 }
aoqi@0 2468 }
aoqi@0 2469
aoqi@0 2470 // Set of non-cfg nodes to peel are those that are control
aoqi@0 2471 // dependent on the cfg nodes.
aoqi@0 2472 uint i;
aoqi@0 2473 for(i = 0; i < loop->_body.size(); i++ ) {
aoqi@0 2474 Node *n = loop->_body.at(i);
aoqi@0 2475 Node *n_c = has_ctrl(n) ? get_ctrl(n) : n;
aoqi@0 2476 if (peel.test(n_c->_idx)) {
aoqi@0 2477 peel.set(n->_idx);
aoqi@0 2478 } else {
aoqi@0 2479 not_peel.set(n->_idx);
aoqi@0 2480 }
aoqi@0 2481 }
aoqi@0 2482
aoqi@0 2483 // Step 2: move operations from the peeled section down into the
aoqi@0 2484 // not-peeled section
aoqi@0 2485
aoqi@0 2486 // Get a post order schedule of nodes in the peel region
aoqi@0 2487 // Result in right-most operand.
aoqi@0 2488 scheduled_nodelist(loop, peel, peel_list );
aoqi@0 2489
aoqi@0 2490 assert(is_valid_loop_partition(loop, peel, peel_list, not_peel), "bad partition");
aoqi@0 2491
aoqi@0 2492 // For future check for too many new phis
aoqi@0 2493 uint old_phi_cnt = 0;
aoqi@0 2494 for (DUIterator_Fast jmax, j = head->fast_outs(jmax); j < jmax; j++) {
aoqi@0 2495 Node* use = head->fast_out(j);
aoqi@0 2496 if (use->is_Phi()) old_phi_cnt++;
aoqi@0 2497 }
aoqi@0 2498
aoqi@0 2499 #if !defined(PRODUCT)
aoqi@0 2500 if (TracePartialPeeling) {
aoqi@0 2501 tty->print_cr("\npeeled list");
aoqi@0 2502 }
aoqi@0 2503 #endif
aoqi@0 2504
aoqi@0 2505 // Evacuate nodes in peel region into the not_peeled region if possible
aoqi@0 2506 uint new_phi_cnt = 0;
aoqi@0 2507 uint cloned_for_outside_use = 0;
aoqi@0 2508 for (i = 0; i < peel_list.size();) {
aoqi@0 2509 Node* n = peel_list.at(i);
aoqi@0 2510 #if !defined(PRODUCT)
aoqi@0 2511 if (TracePartialPeeling) n->dump();
aoqi@0 2512 #endif
aoqi@0 2513 bool incr = true;
aoqi@0 2514 if ( !n->is_CFG() ) {
aoqi@0 2515
aoqi@0 2516 if ( has_use_in_set(n, not_peel) ) {
aoqi@0 2517
aoqi@0 2518 // If not used internal to the peeled region,
aoqi@0 2519 // move "n" from peeled to not_peeled region.
aoqi@0 2520
aoqi@0 2521 if ( !has_use_internal_to_set(n, peel, loop) ) {
aoqi@0 2522
aoqi@0 2523 // if not pinned and not a load (which maybe anti-dependent on a store)
aoqi@0 2524 // and not a CMove (Matcher expects only bool->cmove).
aoqi@0 2525 if ( n->in(0) == NULL && !n->is_Load() && !n->is_CMove() ) {
aoqi@0 2526 cloned_for_outside_use += clone_for_use_outside_loop( loop, n, worklist );
aoqi@0 2527 sink_list.push(n);
aoqi@0 2528 peel >>= n->_idx; // delete n from peel set.
aoqi@0 2529 not_peel <<= n->_idx; // add n to not_peel set.
aoqi@0 2530 peel_list.remove(i);
aoqi@0 2531 incr = false;
aoqi@0 2532 #if !defined(PRODUCT)
aoqi@0 2533 if (TracePartialPeeling) {
aoqi@0 2534 tty->print_cr("sink to not_peeled region: %d newbb: %d",
aoqi@0 2535 n->_idx, get_ctrl(n)->_idx);
aoqi@0 2536 }
aoqi@0 2537 #endif
aoqi@0 2538 }
aoqi@0 2539 } else {
aoqi@0 2540 // Otherwise check for special def-use cases that span
aoqi@0 2541 // the peel/not_peel boundary such as bool->if
aoqi@0 2542 clone_for_special_use_inside_loop( loop, n, not_peel, sink_list, worklist );
aoqi@0 2543 new_phi_cnt++;
aoqi@0 2544 }
aoqi@0 2545 }
aoqi@0 2546 }
aoqi@0 2547 if (incr) i++;
aoqi@0 2548 }
aoqi@0 2549
aoqi@0 2550 if (new_phi_cnt > old_phi_cnt + PartialPeelNewPhiDelta) {
aoqi@0 2551 #if !defined(PRODUCT)
aoqi@0 2552 if (TracePartialPeeling) {
aoqi@0 2553 tty->print_cr("\nToo many new phis: %d old %d new cmpi: %c",
aoqi@0 2554 new_phi_cnt, old_phi_cnt, new_peel_if != NULL?'T':'F');
aoqi@0 2555 }
aoqi@0 2556 #endif
aoqi@0 2557 if (new_peel_if != NULL) {
aoqi@0 2558 remove_cmpi_loop_exit(new_peel_if, loop);
aoqi@0 2559 }
aoqi@0 2560 // Inhibit more partial peeling on this loop
aoqi@0 2561 assert(!head->is_partial_peel_loop(), "not partial peeled");
aoqi@0 2562 head->mark_partial_peel_failed();
aoqi@0 2563 if (cloned_for_outside_use > 0) {
aoqi@0 2564 // Terminate this round of loop opts because
aoqi@0 2565 // the graph outside this loop was changed.
aoqi@0 2566 C->set_major_progress();
aoqi@0 2567 return true;
aoqi@0 2568 }
aoqi@0 2569 return false;
aoqi@0 2570 }
aoqi@0 2571
aoqi@0 2572 // Step 3: clone loop, retarget control, and insert new phis
aoqi@0 2573
aoqi@0 2574 // Create new loop head for new phis and to hang
aoqi@0 2575 // the nodes being moved (sinked) from the peel region.
aoqi@0 2576 LoopNode* new_head = new (C) LoopNode(last_peel, last_peel);
aoqi@0 2577 new_head->set_unswitch_count(head->unswitch_count()); // Preserve
aoqi@0 2578 _igvn.register_new_node_with_optimizer(new_head);
aoqi@0 2579 assert(first_not_peeled->in(0) == last_peel, "last_peel <- first_not_peeled");
aoqi@0 2580 first_not_peeled->set_req(0, new_head);
aoqi@0 2581 set_loop(new_head, loop);
aoqi@0 2582 loop->_body.push(new_head);
aoqi@0 2583 not_peel.set(new_head->_idx);
aoqi@0 2584 set_idom(new_head, last_peel, dom_depth(first_not_peeled));
aoqi@0 2585 set_idom(first_not_peeled, new_head, dom_depth(first_not_peeled));
aoqi@0 2586
aoqi@0 2587 while (sink_list.size() > 0) {
aoqi@0 2588 Node* n = sink_list.pop();
aoqi@0 2589 set_ctrl(n, new_head);
aoqi@0 2590 }
aoqi@0 2591
aoqi@0 2592 assert(is_valid_loop_partition(loop, peel, peel_list, not_peel), "bad partition");
aoqi@0 2593
aoqi@0 2594 clone_loop( loop, old_new, dd );
aoqi@0 2595
aoqi@0 2596 const uint clone_exit_idx = 1;
aoqi@0 2597 const uint orig_exit_idx = 2;
aoqi@0 2598 assert(is_valid_clone_loop_form( loop, peel_list, orig_exit_idx, clone_exit_idx ), "bad clone loop");
aoqi@0 2599
aoqi@0 2600 Node* head_clone = old_new[head->_idx];
aoqi@0 2601 LoopNode* new_head_clone = old_new[new_head->_idx]->as_Loop();
aoqi@0 2602 Node* orig_tail_clone = head_clone->in(2);
aoqi@0 2603
aoqi@0 2604 // Add phi if "def" node is in peel set and "use" is not
aoqi@0 2605
aoqi@0 2606 for(i = 0; i < peel_list.size(); i++ ) {
aoqi@0 2607 Node *def = peel_list.at(i);
aoqi@0 2608 if (!def->is_CFG()) {
aoqi@0 2609 for (DUIterator_Fast jmax, j = def->fast_outs(jmax); j < jmax; j++) {
aoqi@0 2610 Node *use = def->fast_out(j);
aoqi@0 2611 if (has_node(use) && use->in(0) != C->top() &&
aoqi@0 2612 (!peel.test(use->_idx) ||
aoqi@0 2613 (use->is_Phi() && use->in(0) == head)) ) {
aoqi@0 2614 worklist.push(use);
aoqi@0 2615 }
aoqi@0 2616 }
aoqi@0 2617 while( worklist.size() ) {
aoqi@0 2618 Node *use = worklist.pop();
aoqi@0 2619 for (uint j = 1; j < use->req(); j++) {
aoqi@0 2620 Node* n = use->in(j);
aoqi@0 2621 if (n == def) {
aoqi@0 2622
aoqi@0 2623 // "def" is in peel set, "use" is not in peel set
aoqi@0 2624 // or "use" is in the entry boundary (a phi) of the peel set
aoqi@0 2625
aoqi@0 2626 Node* use_c = has_ctrl(use) ? get_ctrl(use) : use;
aoqi@0 2627
aoqi@0 2628 if ( loop->is_member(get_loop( use_c )) ) {
aoqi@0 2629 // use is in loop
aoqi@0 2630 if (old_new[use->_idx] != NULL) { // null for dead code
aoqi@0 2631 Node* use_clone = old_new[use->_idx];
aoqi@0 2632 _igvn.replace_input_of(use, j, C->top());
aoqi@0 2633 insert_phi_for_loop( use_clone, j, old_new[def->_idx], def, new_head_clone );
aoqi@0 2634 }
aoqi@0 2635 } else {
aoqi@0 2636 assert(is_valid_clone_loop_exit_use(loop, use, orig_exit_idx), "clone loop format");
aoqi@0 2637 // use is not in the loop, check if the live range includes the cut
aoqi@0 2638 Node* lp_if = use_c->in(orig_exit_idx)->in(0);
aoqi@0 2639 if (not_peel.test(lp_if->_idx)) {
aoqi@0 2640 assert(j == orig_exit_idx, "use from original loop");
aoqi@0 2641 insert_phi_for_loop( use, clone_exit_idx, old_new[def->_idx], def, new_head_clone );
aoqi@0 2642 }
aoqi@0 2643 }
aoqi@0 2644 }
aoqi@0 2645 }
aoqi@0 2646 }
aoqi@0 2647 }
aoqi@0 2648 }
aoqi@0 2649
aoqi@0 2650 // Step 3b: retarget control
aoqi@0 2651
aoqi@0 2652 // Redirect control to the new loop head if a cloned node in
aoqi@0 2653 // the not_peeled region has control that points into the peeled region.
aoqi@0 2654 // This necessary because the cloned peeled region will be outside
aoqi@0 2655 // the loop.
aoqi@0 2656 // from to
aoqi@0 2657 // cloned-peeled <---+
aoqi@0 2658 // new_head_clone: | <--+
aoqi@0 2659 // cloned-not_peeled in(0) in(0)
aoqi@0 2660 // orig-peeled
aoqi@0 2661
aoqi@0 2662 for(i = 0; i < loop->_body.size(); i++ ) {
aoqi@0 2663 Node *n = loop->_body.at(i);
aoqi@0 2664 if (!n->is_CFG() && n->in(0) != NULL &&
aoqi@0 2665 not_peel.test(n->_idx) && peel.test(n->in(0)->_idx)) {
aoqi@0 2666 Node* n_clone = old_new[n->_idx];
aoqi@0 2667 _igvn.replace_input_of(n_clone, 0, new_head_clone);
aoqi@0 2668 }
aoqi@0 2669 }
aoqi@0 2670
aoqi@0 2671 // Backedge of the surviving new_head (the clone) is original last_peel
aoqi@0 2672 _igvn.replace_input_of(new_head_clone, LoopNode::LoopBackControl, last_peel);
aoqi@0 2673
aoqi@0 2674 // Cut first node in original not_peel set
aoqi@0 2675 _igvn.rehash_node_delayed(new_head); // Multiple edge updates:
aoqi@0 2676 new_head->set_req(LoopNode::EntryControl, C->top()); // use rehash_node_delayed / set_req instead of
aoqi@0 2677 new_head->set_req(LoopNode::LoopBackControl, C->top()); // multiple replace_input_of calls
aoqi@0 2678
aoqi@0 2679 // Copy head_clone back-branch info to original head
aoqi@0 2680 // and remove original head's loop entry and
aoqi@0 2681 // clone head's back-branch
aoqi@0 2682 _igvn.rehash_node_delayed(head); // Multiple edge updates
aoqi@0 2683 head->set_req(LoopNode::EntryControl, head_clone->in(LoopNode::LoopBackControl));
aoqi@0 2684 head->set_req(LoopNode::LoopBackControl, C->top());
aoqi@0 2685 _igvn.replace_input_of(head_clone, LoopNode::LoopBackControl, C->top());
aoqi@0 2686
aoqi@0 2687 // Similarly modify the phis
aoqi@0 2688 for (DUIterator_Fast kmax, k = head->fast_outs(kmax); k < kmax; k++) {
aoqi@0 2689 Node* use = head->fast_out(k);
aoqi@0 2690 if (use->is_Phi() && use->outcnt() > 0) {
aoqi@0 2691 Node* use_clone = old_new[use->_idx];
aoqi@0 2692 _igvn.rehash_node_delayed(use); // Multiple edge updates
aoqi@0 2693 use->set_req(LoopNode::EntryControl, use_clone->in(LoopNode::LoopBackControl));
aoqi@0 2694 use->set_req(LoopNode::LoopBackControl, C->top());
aoqi@0 2695 _igvn.replace_input_of(use_clone, LoopNode::LoopBackControl, C->top());
aoqi@0 2696 }
aoqi@0 2697 }
aoqi@0 2698
aoqi@0 2699 // Step 4: update dominator tree and dominator depth
aoqi@0 2700
aoqi@0 2701 set_idom(head, orig_tail_clone, dd);
aoqi@0 2702 recompute_dom_depth();
aoqi@0 2703
aoqi@0 2704 // Inhibit more partial peeling on this loop
aoqi@0 2705 new_head_clone->set_partial_peel_loop();
aoqi@0 2706 C->set_major_progress();
aoqi@0 2707 loop->record_for_igvn();
aoqi@0 2708
aoqi@0 2709 #if !defined(PRODUCT)
aoqi@0 2710 if (TracePartialPeeling) {
aoqi@0 2711 tty->print_cr("\nafter partial peel one iteration");
aoqi@0 2712 Node_List wl(area);
aoqi@0 2713 Node* t = last_peel;
aoqi@0 2714 while (true) {
aoqi@0 2715 wl.push(t);
aoqi@0 2716 if (t == head_clone) break;
aoqi@0 2717 t = idom(t);
aoqi@0 2718 }
aoqi@0 2719 while (wl.size() > 0) {
aoqi@0 2720 Node* tt = wl.pop();
aoqi@0 2721 if (tt == head) tty->print_cr("orig head");
aoqi@0 2722 else if (tt == new_head_clone) tty->print_cr("new head");
aoqi@0 2723 else if (tt == head_clone) tty->print_cr("clone head");
aoqi@0 2724 tt->dump();
aoqi@0 2725 }
aoqi@0 2726 }
aoqi@0 2727 #endif
aoqi@0 2728 return true;
aoqi@0 2729 }
aoqi@0 2730
aoqi@0 2731 //------------------------------reorg_offsets----------------------------------
aoqi@0 2732 // Reorganize offset computations to lower register pressure. Mostly
aoqi@0 2733 // prevent loop-fallout uses of the pre-incremented trip counter (which are
aoqi@0 2734 // then alive with the post-incremented trip counter forcing an extra
aoqi@0 2735 // register move)
aoqi@0 2736 void PhaseIdealLoop::reorg_offsets(IdealLoopTree *loop) {
aoqi@0 2737 // Perform it only for canonical counted loops.
aoqi@0 2738 // Loop's shape could be messed up by iteration_split_impl.
aoqi@0 2739 if (!loop->_head->is_CountedLoop())
aoqi@0 2740 return;
aoqi@0 2741 if (!loop->_head->as_Loop()->is_valid_counted_loop())
aoqi@0 2742 return;
aoqi@0 2743
aoqi@0 2744 CountedLoopNode *cl = loop->_head->as_CountedLoop();
aoqi@0 2745 CountedLoopEndNode *cle = cl->loopexit();
aoqi@0 2746 Node *exit = cle->proj_out(false);
aoqi@0 2747 Node *phi = cl->phi();
aoqi@0 2748
aoqi@0 2749 // Check for the special case of folks using the pre-incremented
aoqi@0 2750 // trip-counter on the fall-out path (forces the pre-incremented
aoqi@0 2751 // and post-incremented trip counter to be live at the same time).
aoqi@0 2752 // Fix this by adjusting to use the post-increment trip counter.
aoqi@0 2753
aoqi@0 2754 bool progress = true;
aoqi@0 2755 while (progress) {
aoqi@0 2756 progress = false;
aoqi@0 2757 for (DUIterator_Fast imax, i = phi->fast_outs(imax); i < imax; i++) {
aoqi@0 2758 Node* use = phi->fast_out(i); // User of trip-counter
aoqi@0 2759 if (!has_ctrl(use)) continue;
aoqi@0 2760 Node *u_ctrl = get_ctrl(use);
aoqi@0 2761 if (use->is_Phi()) {
aoqi@0 2762 u_ctrl = NULL;
aoqi@0 2763 for (uint j = 1; j < use->req(); j++)
aoqi@0 2764 if (use->in(j) == phi)
aoqi@0 2765 u_ctrl = dom_lca(u_ctrl, use->in(0)->in(j));
aoqi@0 2766 }
aoqi@0 2767 IdealLoopTree *u_loop = get_loop(u_ctrl);
aoqi@0 2768 // Look for loop-invariant use
aoqi@0 2769 if (u_loop == loop) continue;
aoqi@0 2770 if (loop->is_member(u_loop)) continue;
aoqi@0 2771 // Check that use is live out the bottom. Assuming the trip-counter
aoqi@0 2772 // update is right at the bottom, uses of of the loop middle are ok.
aoqi@0 2773 if (dom_lca(exit, u_ctrl) != exit) continue;
aoqi@0 2774 // Hit! Refactor use to use the post-incremented tripcounter.
aoqi@0 2775 // Compute a post-increment tripcounter.
aoqi@0 2776 Node *opaq = new (C) Opaque2Node( C, cle->incr() );
aoqi@0 2777 register_new_node(opaq, exit);
aoqi@0 2778 Node *neg_stride = _igvn.intcon(-cle->stride_con());
aoqi@0 2779 set_ctrl(neg_stride, C->root());
aoqi@0 2780 Node *post = new (C) AddINode( opaq, neg_stride);
aoqi@0 2781 register_new_node(post, exit);
aoqi@0 2782 _igvn.rehash_node_delayed(use);
aoqi@0 2783 for (uint j = 1; j < use->req(); j++) {
aoqi@0 2784 if (use->in(j) == phi)
aoqi@0 2785 use->set_req(j, post);
aoqi@0 2786 }
aoqi@0 2787 // Since DU info changed, rerun loop
aoqi@0 2788 progress = true;
aoqi@0 2789 break;
aoqi@0 2790 }
aoqi@0 2791 }
aoqi@0 2792
aoqi@0 2793 }

mercurial