src/share/vm/opto/reg_split.cpp

Thu, 14 Feb 2019 14:31:32 +0100

author
neliasso
date
Thu, 14 Feb 2019 14:31:32 +0100
changeset 9741
7e0a4478e80f
parent 9333
2fccf735a116
child 9756
2be326848943
permissions
-rw-r--r--

8087128: C2: Disallow definition split on MachCopySpill nodes
Reviewed-by: kvn

duke@435 1 /*
kevinw@9333 2 * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "libadt/vectset.hpp"
stefank@2314 27 #include "memory/allocation.inline.hpp"
stefank@2314 28 #include "opto/addnode.hpp"
stefank@2314 29 #include "opto/c2compiler.hpp"
stefank@2314 30 #include "opto/callnode.hpp"
stefank@2314 31 #include "opto/cfgnode.hpp"
stefank@2314 32 #include "opto/chaitin.hpp"
stefank@2314 33 #include "opto/loopnode.hpp"
stefank@2314 34 #include "opto/machnode.hpp"
duke@435 35
duke@435 36 //------------------------------Split--------------------------------------
twisti@1040 37 // Walk the graph in RPO and for each lrg which spills, propagate reaching
twisti@1040 38 // definitions. During propagation, split the live range around regions of
duke@435 39 // High Register Pressure (HRP). If a Def is in a region of Low Register
duke@435 40 // Pressure (LRP), it will not get spilled until we encounter a region of
duke@435 41 // HRP between it and one of its uses. We will spill at the transition
duke@435 42 // point between LRP and HRP. Uses in the HRP region will use the spilled
duke@435 43 // Def. The first Use outside the HRP region will generate a SpillCopy to
duke@435 44 // hoist the live range back up into a register, and all subsequent uses
duke@435 45 // will use that new Def until another HRP region is encountered. Defs in
duke@435 46 // HRP regions will get trailing SpillCopies to push the LRG down into the
duke@435 47 // stack immediately.
duke@435 48 //
duke@435 49 // As a side effect, unlink from (hence make dead) coalesced copies.
duke@435 50 //
duke@435 51
duke@435 52 static const char out_of_nodes[] = "out of nodes during split";
duke@435 53
duke@435 54 //------------------------------get_spillcopy_wide-----------------------------
duke@435 55 // Get a SpillCopy node with wide-enough masks. Use the 'wide-mask', the
duke@435 56 // wide ideal-register spill-mask if possible. If the 'wide-mask' does
duke@435 57 // not cover the input (or output), use the input (or output) mask instead.
duke@435 58 Node *PhaseChaitin::get_spillcopy_wide( Node *def, Node *use, uint uidx ) {
duke@435 59 // If ideal reg doesn't exist we've got a bad schedule happening
duke@435 60 // that is forcing us to spill something that isn't spillable.
duke@435 61 // Bail rather than abort
kevinw@9333 62 uint ireg = def->ideal_reg();
duke@435 63 if( ireg == 0 || ireg == Op_RegFlags ) {
never@850 64 assert(false, "attempted to spill a non-spillable item");
duke@435 65 C->record_method_not_compilable("attempted to spill a non-spillable item");
duke@435 66 return NULL;
duke@435 67 }
duke@435 68 if (C->check_node_count(NodeLimitFudgeFactor, out_of_nodes)) {
duke@435 69 return NULL;
duke@435 70 }
duke@435 71 const RegMask *i_mask = &def->out_RegMask();
duke@435 72 const RegMask *w_mask = C->matcher()->idealreg2spillmask[ireg];
duke@435 73 const RegMask *o_mask = use ? &use->in_RegMask(uidx) : w_mask;
duke@435 74 const RegMask *w_i_mask = w_mask->overlap( *i_mask ) ? w_mask : i_mask;
duke@435 75 const RegMask *w_o_mask;
duke@435 76
kvn@3882 77 int num_regs = RegMask::num_registers(ireg);
kvn@3882 78 bool is_vect = RegMask::is_vector(ireg);
duke@435 79 if( w_mask->overlap( *o_mask ) && // Overlap AND
kvn@3882 80 ((num_regs == 1) // Single use or aligned
kvn@3882 81 || is_vect // or vector
kvn@3882 82 || !is_vect && o_mask->is_aligned_pairs()) ) {
kvn@3882 83 assert(!is_vect || o_mask->is_aligned_sets(num_regs), "vectors are aligned");
duke@435 84 // Don't come here for mis-aligned doubles
duke@435 85 w_o_mask = w_mask;
duke@435 86 } else { // wide ideal mask does not overlap with o_mask
duke@435 87 // Mis-aligned doubles come here and XMM->FPR moves on x86.
duke@435 88 w_o_mask = o_mask; // Must target desired registers
duke@435 89 // Does the ideal-reg-mask overlap with o_mask? I.e., can I use
duke@435 90 // a reg-reg move or do I need a trip across register classes
duke@435 91 // (and thus through memory)?
duke@435 92 if( !C->matcher()->idealreg2regmask[ireg]->overlap( *o_mask) && o_mask->is_UP() )
duke@435 93 // Here we assume a trip through memory is required.
duke@435 94 w_i_mask = &C->FIRST_STACK_mask();
duke@435 95 }
duke@435 96 return new (C) MachSpillCopyNode( def, *w_i_mask, *w_o_mask );
duke@435 97 }
duke@435 98
duke@435 99 //------------------------------insert_proj------------------------------------
twisti@1040 100 // Insert the spill at chosen location. Skip over any intervening Proj's or
duke@435 101 // Phis. Skip over a CatchNode and projs, inserting in the fall-through block
duke@435 102 // instead. Update high-pressure indices. Create a new live range.
duke@435 103 void PhaseChaitin::insert_proj( Block *b, uint i, Node *spill, uint maxlrg ) {
duke@435 104 // Skip intervening ProjNodes. Do not insert between a ProjNode and
duke@435 105 // its definer.
adlertz@5635 106 while( i < b->number_of_nodes() &&
adlertz@5635 107 (b->get_node(i)->is_Proj() ||
adlertz@5635 108 b->get_node(i)->is_Phi() ) )
duke@435 109 i++;
duke@435 110
duke@435 111 // Do not insert between a call and his Catch
adlertz@5635 112 if( b->get_node(i)->is_Catch() ) {
duke@435 113 // Put the instruction at the top of the fall-thru block.
duke@435 114 // Find the fall-thru projection
duke@435 115 while( 1 ) {
adlertz@5635 116 const CatchProjNode *cp = b->get_node(++i)->as_CatchProj();
duke@435 117 if( cp->_con == CatchProjNode::fall_through_index )
duke@435 118 break;
duke@435 119 }
duke@435 120 int sidx = i - b->end_idx()-1;
duke@435 121 b = b->_succs[sidx]; // Switch to successor block
duke@435 122 i = 1; // Right at start of block
duke@435 123 }
duke@435 124
adlertz@5635 125 b->insert_node(spill, i); // Insert node in block
adlertz@5509 126 _cfg.map_node_to_block(spill, b); // Update node->block mapping to reflect
duke@435 127 // Adjust the point where we go hi-pressure
duke@435 128 if( i <= b->_ihrp_index ) b->_ihrp_index++;
duke@435 129 if( i <= b->_fhrp_index ) b->_fhrp_index++;
duke@435 130
duke@435 131 // Assign a new Live Range Number to the SpillCopy and grow
duke@435 132 // the node->live range mapping.
duke@435 133 new_lrg(spill,maxlrg);
duke@435 134 }
duke@435 135
duke@435 136 //------------------------------split_DEF--------------------------------------
twisti@1040 137 // There are four categories of Split; UP/DOWN x DEF/USE
duke@435 138 // Only three of these really occur as DOWN/USE will always color
duke@435 139 // Any Split with a DEF cannot CISC-Spill now. Thus we need
duke@435 140 // two helper routines, one for Split DEFS (insert after instruction),
duke@435 141 // one for Split USES (insert before instruction). DEF insertion
duke@435 142 // happens inside Split, where the Leaveblock array is updated.
duke@435 143 uint PhaseChaitin::split_DEF( Node *def, Block *b, int loc, uint maxlrg, Node **Reachblock, Node **debug_defs, GrowableArray<uint> splits, int slidx ) {
duke@435 144 #ifdef ASSERT
duke@435 145 // Increment the counter for this lrg
duke@435 146 splits.at_put(slidx, splits.at(slidx)+1);
duke@435 147 #endif
duke@435 148 // If we are spilling the memory op for an implicit null check, at the
duke@435 149 // null check location (ie - null check is in HRP block) we need to do
duke@435 150 // the null-check first, then spill-down in the following block.
duke@435 151 // (The implicit_null_check function ensures the use is also dominated
duke@435 152 // by the branch-not-taken block.)
duke@435 153 Node *be = b->end();
adlertz@5635 154 if( be->is_MachNullCheck() && be->in(1) == def && def == b->get_node(loc)) {
duke@435 155 // Spill goes in the branch-not-taken block
adlertz@5635 156 b = b->_succs[b->get_node(b->end_idx()+1)->Opcode() == Op_IfTrue];
duke@435 157 loc = 0; // Just past the Region
duke@435 158 }
duke@435 159 assert( loc >= 0, "must insert past block head" );
duke@435 160
duke@435 161 // Get a def-side SpillCopy
duke@435 162 Node *spill = get_spillcopy_wide(def,NULL,0);
duke@435 163 // Did we fail to split?, then bail
duke@435 164 if (!spill) {
duke@435 165 return 0;
duke@435 166 }
duke@435 167
duke@435 168 // Insert the spill at chosen location
duke@435 169 insert_proj( b, loc+1, spill, maxlrg++);
duke@435 170
duke@435 171 // Insert new node into Reaches array
duke@435 172 Reachblock[slidx] = spill;
duke@435 173 // Update debug list of reaching down definitions by adding this one
duke@435 174 debug_defs[slidx] = spill;
duke@435 175
duke@435 176 // return updated count of live ranges
duke@435 177 return maxlrg;
duke@435 178 }
duke@435 179
duke@435 180 //------------------------------split_USE--------------------------------------
duke@435 181 // Splits at uses can involve redeffing the LRG, so no CISC Spilling there.
duke@435 182 // Debug uses want to know if def is already stack enabled.
duke@435 183 uint PhaseChaitin::split_USE( Node *def, Block *b, Node *use, uint useidx, uint maxlrg, bool def_down, bool cisc_sp, GrowableArray<uint> splits, int slidx ) {
duke@435 184 #ifdef ASSERT
duke@435 185 // Increment the counter for this lrg
duke@435 186 splits.at_put(slidx, splits.at(slidx)+1);
duke@435 187 #endif
duke@435 188
duke@435 189 // Some setup stuff for handling debug node uses
duke@435 190 JVMState* jvms = use->jvms();
duke@435 191 uint debug_start = jvms ? jvms->debug_start() : 999999;
duke@435 192 uint debug_end = jvms ? jvms->debug_end() : 999999;
duke@435 193
duke@435 194 //-------------------------------------------
duke@435 195 // Check for use of debug info
duke@435 196 if (useidx >= debug_start && useidx < debug_end) {
duke@435 197 // Actually it's perfectly legal for constant debug info to appear
duke@435 198 // just unlikely. In this case the optimizer left a ConI of a 4
duke@435 199 // as both inputs to a Phi with only a debug use. It's a single-def
duke@435 200 // live range of a rematerializable value. The live range spills,
duke@435 201 // rematerializes and now the ConI directly feeds into the debug info.
duke@435 202 // assert(!def->is_Con(), "constant debug info already constructed directly");
duke@435 203
duke@435 204 // Special split handling for Debug Info
duke@435 205 // If DEF is DOWN, just hook the edge and return
duke@435 206 // If DEF is UP, Split it DOWN for this USE.
duke@435 207 if( def->is_Mach() ) {
duke@435 208 if( def_down ) {
duke@435 209 // DEF is DOWN, so connect USE directly to the DEF
duke@435 210 use->set_req(useidx, def);
duke@435 211 } else {
duke@435 212 // Block and index where the use occurs.
adlertz@5509 213 Block *b = _cfg.get_block_for_node(use);
duke@435 214 // Put the clone just prior to use
duke@435 215 int bindex = b->find_node(use);
duke@435 216 // DEF is UP, so must copy it DOWN and hook in USE
duke@435 217 // Insert SpillCopy before the USE, which uses DEF as its input,
duke@435 218 // and defs a new live range, which is used by this node.
duke@435 219 Node *spill = get_spillcopy_wide(def,use,useidx);
duke@435 220 // did we fail to split?
duke@435 221 if (!spill) {
duke@435 222 // Bail
duke@435 223 return 0;
duke@435 224 }
duke@435 225 // insert into basic block
duke@435 226 insert_proj( b, bindex, spill, maxlrg++ );
duke@435 227 // Use the new split
duke@435 228 use->set_req(useidx,spill);
duke@435 229 }
duke@435 230 // No further split handling needed for this use
duke@435 231 return maxlrg;
duke@435 232 } // End special splitting for debug info live range
duke@435 233 } // If debug info
duke@435 234
duke@435 235 // CISC-SPILLING
duke@435 236 // Finally, check to see if USE is CISC-Spillable, and if so,
duke@435 237 // gather_lrg_masks will add the flags bit to its mask, and
duke@435 238 // no use side copy is needed. This frees up the live range
duke@435 239 // register choices without causing copy coalescing, etc.
duke@435 240 if( UseCISCSpill && cisc_sp ) {
duke@435 241 int inp = use->cisc_operand();
duke@435 242 if( inp != AdlcVMDeps::Not_cisc_spillable )
duke@435 243 // Convert operand number to edge index number
duke@435 244 inp = use->as_Mach()->operand_index(inp);
duke@435 245 if( inp == (int)useidx ) {
duke@435 246 use->set_req(useidx, def);
duke@435 247 #ifndef PRODUCT
duke@435 248 if( TraceCISCSpill ) {
duke@435 249 tty->print(" set_split: ");
duke@435 250 use->dump();
duke@435 251 }
duke@435 252 #endif
duke@435 253 return maxlrg;
duke@435 254 }
duke@435 255 }
duke@435 256
duke@435 257 //-------------------------------------------
duke@435 258 // Insert a Copy before the use
duke@435 259
duke@435 260 // Block and index where the use occurs.
duke@435 261 int bindex;
duke@435 262 // Phi input spill-copys belong at the end of the prior block
duke@435 263 if( use->is_Phi() ) {
adlertz@5509 264 b = _cfg.get_block_for_node(b->pred(useidx));
duke@435 265 bindex = b->end_idx();
duke@435 266 } else {
duke@435 267 // Put the clone just prior to use
duke@435 268 bindex = b->find_node(use);
duke@435 269 }
duke@435 270
duke@435 271 Node *spill = get_spillcopy_wide( def, use, useidx );
duke@435 272 if( !spill ) return 0; // Bailed out
duke@435 273 // Insert SpillCopy before the USE, which uses the reaching DEF as
duke@435 274 // its input, and defs a new live range, which is used by this node.
duke@435 275 insert_proj( b, bindex, spill, maxlrg++ );
duke@435 276 // Use the spill/clone
duke@435 277 use->set_req(useidx,spill);
duke@435 278
duke@435 279 // return updated live range count
duke@435 280 return maxlrg;
duke@435 281 }
duke@435 282
kvn@2048 283 //------------------------------clone_node----------------------------
kvn@2048 284 // Clone node with anti dependence check.
kvn@2048 285 Node* clone_node(Node* def, Block *b, Compile* C) {
kvn@2048 286 if (def->needs_anti_dependence_check()) {
kvn@2048 287 #ifdef ASSERT
kvn@2048 288 if (Verbose) {
kvn@2048 289 tty->print_cr("RA attempts to clone node with anti_dependence:");
kvn@2048 290 def->dump(-1); tty->cr();
kvn@2048 291 tty->print_cr("into block:");
kvn@2048 292 b->dump();
kvn@2048 293 }
kvn@2048 294 #endif
kvn@2048 295 if (C->subsume_loads() == true && !C->failing()) {
kvn@2048 296 // Retry with subsume_loads == false
kvn@2048 297 // If this is the first failure, the sentinel string will "stick"
kvn@2048 298 // to the Compile object, and the C2Compiler will see it and retry.
kvn@2048 299 C->record_failure(C2Compiler::retry_no_subsuming_loads());
kvn@2048 300 } else {
kvn@2048 301 // Bailout without retry
kvn@2048 302 C->record_method_not_compilable("RA Split failed: attempt to clone node with anti_dependence");
kvn@2048 303 }
kvn@2048 304 return 0;
kvn@2048 305 }
kvn@2048 306 return def->clone();
kvn@2048 307 }
kvn@2048 308
duke@435 309 //------------------------------split_Rematerialize----------------------------
duke@435 310 // Clone a local copy of the def.
duke@435 311 Node *PhaseChaitin::split_Rematerialize( Node *def, Block *b, uint insidx, uint &maxlrg, GrowableArray<uint> splits, int slidx, uint *lrg2reach, Node **Reachblock, bool walkThru ) {
duke@435 312 // The input live ranges will be stretched to the site of the new
duke@435 313 // instruction. They might be stretched past a def and will thus
duke@435 314 // have the old and new values of the same live range alive at the
duke@435 315 // same time - a definite no-no. Split out private copies of
duke@435 316 // the inputs.
duke@435 317 if( def->req() > 1 ) {
duke@435 318 for( uint i = 1; i < def->req(); i++ ) {
duke@435 319 Node *in = def->in(i);
neliasso@4949 320 uint lidx = _lrg_map.live_range_id(in);
adlertz@5978 321 // We do not need this for live ranges that are only defined once.
adlertz@5978 322 // However, this is not true for spill copies that are added in this
adlertz@5978 323 // Split() pass, since they might get coalesced later on in this pass.
adlertz@5978 324 if (lidx < _lrg_map.max_lrg_id() && lrgs(lidx).is_singledef()) {
neliasso@4949 325 continue;
neliasso@4949 326 }
duke@435 327
adlertz@5509 328 Block *b_def = _cfg.get_block_for_node(def);
duke@435 329 int idx_def = b_def->find_node(def);
duke@435 330 Node *in_spill = get_spillcopy_wide( in, def, i );
duke@435 331 if( !in_spill ) return 0; // Bailed out
duke@435 332 insert_proj(b_def,idx_def,in_spill,maxlrg++);
duke@435 333 if( b_def == b )
duke@435 334 insidx++;
duke@435 335 def->set_req(i,in_spill);
duke@435 336 }
duke@435 337 }
duke@435 338
kvn@2048 339 Node *spill = clone_node(def, b, C);
kvn@2048 340 if (spill == NULL || C->check_node_count(NodeLimitFudgeFactor, out_of_nodes)) {
duke@435 341 // Check when generating nodes
duke@435 342 return 0;
duke@435 343 }
duke@435 344
duke@435 345 // See if any inputs are currently being spilled, and take the
duke@435 346 // latest copy of spilled inputs.
duke@435 347 if( spill->req() > 1 ) {
duke@435 348 for( uint i = 1; i < spill->req(); i++ ) {
duke@435 349 Node *in = spill->in(i);
neliasso@4949 350 uint lidx = _lrg_map.find_id(in);
duke@435 351
duke@435 352 // Walk backwards thru spill copy node intermediates
never@730 353 if (walkThru) {
neliasso@4949 354 while (in->is_SpillCopy() && lidx >= _lrg_map.max_lrg_id()) {
duke@435 355 in = in->in(1);
neliasso@4949 356 lidx = _lrg_map.find_id(in);
duke@435 357 }
duke@435 358
neliasso@4949 359 if (lidx < _lrg_map.max_lrg_id() && lrgs(lidx).is_multidef()) {
never@730 360 // walkThru found a multidef LRG, which is unsafe to use, so
never@730 361 // just keep the original def used in the clone.
never@730 362 in = spill->in(i);
neliasso@4949 363 lidx = _lrg_map.find_id(in);
never@730 364 }
never@730 365 }
never@730 366
neliasso@4949 367 if (lidx < _lrg_map.max_lrg_id() && lrgs(lidx).reg() >= LRG::SPILL_REG) {
duke@435 368 Node *rdef = Reachblock[lrg2reach[lidx]];
neliasso@4949 369 if (rdef) {
neliasso@4949 370 spill->set_req(i, rdef);
neliasso@4949 371 }
duke@435 372 }
duke@435 373 }
duke@435 374 }
duke@435 375
duke@435 376
duke@435 377 assert( spill->out_RegMask().is_UP(), "rematerialize to a reg" );
duke@435 378 // Rematerialized op is def->spilled+1
duke@435 379 set_was_spilled(spill);
duke@435 380 if( _spilled_once.test(def->_idx) )
duke@435 381 set_was_spilled(spill);
duke@435 382
duke@435 383 insert_proj( b, insidx, spill, maxlrg++ );
duke@435 384 #ifdef ASSERT
duke@435 385 // Increment the counter for this lrg
duke@435 386 splits.at_put(slidx, splits.at(slidx)+1);
duke@435 387 #endif
duke@435 388 // See if the cloned def kills any flags, and copy those kills as well
duke@435 389 uint i = insidx+1;
kvn@5543 390 int found_projs = clone_projs( b, i, def, spill, maxlrg);
kvn@5543 391 if (found_projs > 0) {
duke@435 392 // Adjust the point where we go hi-pressure
kvn@5543 393 if (i <= b->_ihrp_index) {
kvn@5543 394 b->_ihrp_index += found_projs;
kvn@5543 395 }
kvn@5543 396 if (i <= b->_fhrp_index) {
kvn@5543 397 b->_fhrp_index += found_projs;
kvn@5543 398 }
duke@435 399 }
duke@435 400
duke@435 401 return spill;
duke@435 402 }
duke@435 403
duke@435 404 //------------------------------is_high_pressure-------------------------------
duke@435 405 // Function to compute whether or not this live range is "high pressure"
duke@435 406 // in this block - whether it spills eagerly or not.
duke@435 407 bool PhaseChaitin::is_high_pressure( Block *b, LRG *lrg, uint insidx ) {
duke@435 408 if( lrg->_was_spilled1 ) return true;
duke@435 409 // Forced spilling due to conflict? Then split only at binding uses
duke@435 410 // or defs, not for supposed capacity problems.
duke@435 411 // CNC - Turned off 7/8/99, causes too much spilling
duke@435 412 // if( lrg->_is_bound ) return false;
duke@435 413
kvn@3882 414 // Use float pressure numbers for vectors.
kvn@3882 415 bool is_float_or_vector = lrg->_is_float || lrg->_is_vector;
duke@435 416 // Not yet reached the high-pressure cutoff point, so low pressure
kvn@3882 417 uint hrp_idx = is_float_or_vector ? b->_fhrp_index : b->_ihrp_index;
duke@435 418 if( insidx < hrp_idx ) return false;
duke@435 419 // Register pressure for the block as a whole depends on reg class
kvn@3882 420 int block_pres = is_float_or_vector ? b->_freg_pressure : b->_reg_pressure;
duke@435 421 // Bound live ranges will split at the binding points first;
duke@435 422 // Intermediate splits should assume the live range's register set
duke@435 423 // got "freed up" and that num_regs will become INT_PRESSURE.
kvn@3882 424 int bound_pres = is_float_or_vector ? FLOATPRESSURE : INTPRESSURE;
duke@435 425 // Effective register pressure limit.
duke@435 426 int lrg_pres = (lrg->get_invalid_mask_size() > lrg->num_regs())
duke@435 427 ? (lrg->get_invalid_mask_size() >> (lrg->num_regs()-1)) : bound_pres;
duke@435 428 // High pressure if block pressure requires more register freedom
duke@435 429 // than live range has.
duke@435 430 return block_pres >= lrg_pres;
duke@435 431 }
duke@435 432
duke@435 433
duke@435 434 //------------------------------prompt_use---------------------------------
duke@435 435 // True if lidx is used before any real register is def'd in the block
duke@435 436 bool PhaseChaitin::prompt_use( Block *b, uint lidx ) {
neliasso@4949 437 if (lrgs(lidx)._was_spilled2) {
neliasso@4949 438 return false;
neliasso@4949 439 }
duke@435 440
duke@435 441 // Scan block for 1st use.
duke@435 442 for( uint i = 1; i <= b->end_idx(); i++ ) {
adlertz@5635 443 Node *n = b->get_node(i);
duke@435 444 // Ignore PHI use, these can be up or down
neliasso@4949 445 if (n->is_Phi()) {
neliasso@4949 446 continue;
neliasso@4949 447 }
neliasso@4949 448 for (uint j = 1; j < n->req(); j++) {
neliasso@4949 449 if (_lrg_map.find_id(n->in(j)) == lidx) {
duke@435 450 return true; // Found 1st use!
neliasso@4949 451 }
neliasso@4949 452 }
neliasso@4949 453 if (n->out_RegMask().is_NotEmpty()) {
neliasso@4949 454 return false;
neliasso@4949 455 }
duke@435 456 }
duke@435 457 return false;
duke@435 458 }
duke@435 459
duke@435 460 //------------------------------Split--------------------------------------
duke@435 461 //----------Split Routine----------
duke@435 462 // ***** NEW SPLITTING HEURISTIC *****
duke@435 463 // DEFS: If the DEF is in a High Register Pressure(HRP) Block, split there.
duke@435 464 // Else, no split unless there is a HRP block between a DEF and
duke@435 465 // one of its uses, and then split at the HRP block.
duke@435 466 //
duke@435 467 // USES: If USE is in HRP, split at use to leave main LRG on stack.
duke@435 468 // Else, hoist LRG back up to register only (ie - split is also DEF)
duke@435 469 // We will compute a new maxlrg as we go
kvn@4019 470 uint PhaseChaitin::Split(uint maxlrg, ResourceArea* split_arena) {
duke@435 471 NOT_PRODUCT( Compile::TracePhase t3("regAllocSplit", &_t_regAllocSplit, TimeCompiler); )
duke@435 472
kvn@4019 473 // Free thread local resources used by this method on exit.
kvn@4019 474 ResourceMark rm(split_arena);
kvn@4019 475
duke@435 476 uint bidx, pidx, slidx, insidx, inpidx, twoidx;
duke@435 477 uint non_phi = 1, spill_cnt = 0;
duke@435 478 Node *n1, *n2, *n3;
duke@435 479 Node_List *defs,*phis;
duke@435 480 bool *UPblock;
duke@435 481 bool u1, u2, u3;
duke@435 482 Block *b, *pred;
duke@435 483 PhiNode *phi;
neliasso@4949 484 GrowableArray<uint> lidxs(split_arena, maxlrg, 0, 0);
duke@435 485
duke@435 486 // Array of counters to count splits per live range
neliasso@4949 487 GrowableArray<uint> splits(split_arena, maxlrg, 0, 0);
kvn@4019 488
kvn@4019 489 #define NEW_SPLIT_ARRAY(type, size)\
kvn@4019 490 (type*) split_arena->allocate_bytes((size) * sizeof(type))
duke@435 491
duke@435 492 //----------Setup Code----------
duke@435 493 // Create a convenient mapping from lrg numbers to reaches/leaves indices
neliasso@4949 494 uint *lrg2reach = NEW_SPLIT_ARRAY(uint, maxlrg);
duke@435 495 // Keep track of DEFS & Phis for later passes
duke@435 496 defs = new Node_List();
duke@435 497 phis = new Node_List();
duke@435 498 // Gather info on which LRG's are spilling, and build maps
neliasso@4949 499 for (bidx = 1; bidx < maxlrg; bidx++) {
neliasso@4949 500 if (lrgs(bidx).alive() && lrgs(bidx).reg() >= LRG::SPILL_REG) {
duke@435 501 assert(!lrgs(bidx).mask().is_AllStack(),"AllStack should color");
duke@435 502 lrg2reach[bidx] = spill_cnt;
duke@435 503 spill_cnt++;
duke@435 504 lidxs.append(bidx);
duke@435 505 #ifdef ASSERT
duke@435 506 // Initialize the split counts to zero
duke@435 507 splits.append(0);
duke@435 508 #endif
duke@435 509 #ifndef PRODUCT
duke@435 510 if( PrintOpto && WizardMode && lrgs(bidx)._was_spilled1 )
duke@435 511 tty->print_cr("Warning, 2nd spill of L%d",bidx);
duke@435 512 #endif
duke@435 513 }
duke@435 514 }
duke@435 515
duke@435 516 // Create side arrays for propagating reaching defs info.
duke@435 517 // Each block needs a node pointer for each spilling live range for the
duke@435 518 // Def which is live into the block. Phi nodes handle multiple input
duke@435 519 // Defs by querying the output of their predecessor blocks and resolving
duke@435 520 // them to a single Def at the phi. The pointer is updated for each
duke@435 521 // Def in the block, and then becomes the output for the block when
duke@435 522 // processing of the block is complete. We also need to track whether
duke@435 523 // a Def is UP or DOWN. UP means that it should get a register (ie -
duke@435 524 // it is always in LRP regions), and DOWN means that it is probably
duke@435 525 // on the stack (ie - it crosses HRP regions).
adlertz@5539 526 Node ***Reaches = NEW_SPLIT_ARRAY( Node**, _cfg.number_of_blocks() + 1);
adlertz@5539 527 bool **UP = NEW_SPLIT_ARRAY( bool*, _cfg.number_of_blocks() + 1);
kvn@4019 528 Node **debug_defs = NEW_SPLIT_ARRAY( Node*, spill_cnt );
kvn@4019 529 VectorSet **UP_entry= NEW_SPLIT_ARRAY( VectorSet*, spill_cnt );
duke@435 530
duke@435 531 // Initialize Reaches & UP
adlertz@5539 532 for (bidx = 0; bidx < _cfg.number_of_blocks() + 1; bidx++) {
kvn@4019 533 Reaches[bidx] = NEW_SPLIT_ARRAY( Node*, spill_cnt );
kvn@4019 534 UP[bidx] = NEW_SPLIT_ARRAY( bool, spill_cnt );
duke@435 535 Node **Reachblock = Reaches[bidx];
duke@435 536 bool *UPblock = UP[bidx];
duke@435 537 for( slidx = 0; slidx < spill_cnt; slidx++ ) {
duke@435 538 UPblock[slidx] = true; // Assume they start in registers
duke@435 539 Reachblock[slidx] = NULL; // Assume that no def is present
duke@435 540 }
duke@435 541 }
duke@435 542
kvn@4019 543 #undef NEW_SPLIT_ARRAY
kvn@4019 544
duke@435 545 // Initialize to array of empty vectorsets
duke@435 546 for( slidx = 0; slidx < spill_cnt; slidx++ )
kvn@4019 547 UP_entry[slidx] = new VectorSet(split_arena);
duke@435 548
duke@435 549 //----------PASS 1----------
duke@435 550 //----------Propagation & Node Insertion Code----------
duke@435 551 // Walk the Blocks in RPO for DEF & USE info
adlertz@5539 552 for( bidx = 0; bidx < _cfg.number_of_blocks(); bidx++ ) {
duke@435 553
duke@435 554 if (C->check_node_count(spill_cnt, out_of_nodes)) {
duke@435 555 return 0;
duke@435 556 }
duke@435 557
adlertz@5539 558 b = _cfg.get_block(bidx);
duke@435 559 // Reaches & UP arrays for this block
adlertz@5992 560 Node** Reachblock = Reaches[b->_pre_order];
duke@435 561 UPblock = UP[b->_pre_order];
duke@435 562 // Reset counter of start of non-Phi nodes in block
duke@435 563 non_phi = 1;
duke@435 564 //----------Block Entry Handling----------
duke@435 565 // Check for need to insert a new phi
duke@435 566 // Cycle through this block's predecessors, collecting Reaches
duke@435 567 // info for each spilled LRG. If they are identical, no phi is
duke@435 568 // needed. If they differ, check for a phi, and insert if missing,
duke@435 569 // or update edges if present. Set current block's Reaches set to
duke@435 570 // be either the phi's or the reaching def, as appropriate.
duke@435 571 // If no Phi is needed, check if the LRG needs to spill on entry
duke@435 572 // to the block due to HRP.
duke@435 573 for( slidx = 0; slidx < spill_cnt; slidx++ ) {
duke@435 574 // Grab the live range number
duke@435 575 uint lidx = lidxs.at(slidx);
duke@435 576 // Do not bother splitting or putting in Phis for single-def
duke@435 577 // rematerialized live ranges. This happens alot to constants
duke@435 578 // with long live ranges.
never@730 579 if( lrgs(lidx).is_singledef() &&
duke@435 580 lrgs(lidx)._def->rematerialize() ) {
duke@435 581 // reset the Reaches & UP entries
duke@435 582 Reachblock[slidx] = lrgs(lidx)._def;
duke@435 583 UPblock[slidx] = true;
duke@435 584 // Record following instruction in case 'n' rematerializes and
duke@435 585 // kills flags
adlertz@5509 586 Block *pred1 = _cfg.get_block_for_node(b->pred(1));
duke@435 587 continue;
duke@435 588 }
duke@435 589
duke@435 590 // Initialize needs_phi and needs_split
duke@435 591 bool needs_phi = false;
duke@435 592 bool needs_split = false;
kvn@765 593 bool has_phi = false;
duke@435 594 // Walk the predecessor blocks to check inputs for that live range
duke@435 595 // Grab predecessor block header
duke@435 596 n1 = b->pred(1);
duke@435 597 // Grab the appropriate reaching def info for inpidx
adlertz@5509 598 pred = _cfg.get_block_for_node(n1);
duke@435 599 pidx = pred->_pre_order;
duke@435 600 Node **Ltmp = Reaches[pidx];
duke@435 601 bool *Utmp = UP[pidx];
duke@435 602 n1 = Ltmp[slidx];
duke@435 603 u1 = Utmp[slidx];
duke@435 604 // Initialize node for saving type info
duke@435 605 n3 = n1;
duke@435 606 u3 = u1;
duke@435 607
duke@435 608 // Compare inputs to see if a Phi is needed
duke@435 609 for( inpidx = 2; inpidx < b->num_preds(); inpidx++ ) {
duke@435 610 // Grab predecessor block headers
duke@435 611 n2 = b->pred(inpidx);
duke@435 612 // Grab the appropriate reaching def info for inpidx
adlertz@5509 613 pred = _cfg.get_block_for_node(n2);
duke@435 614 pidx = pred->_pre_order;
duke@435 615 Ltmp = Reaches[pidx];
duke@435 616 Utmp = UP[pidx];
duke@435 617 n2 = Ltmp[slidx];
duke@435 618 u2 = Utmp[slidx];
duke@435 619 // For each LRG, decide if a phi is necessary
duke@435 620 if( n1 != n2 ) {
duke@435 621 needs_phi = true;
duke@435 622 }
duke@435 623 // See if the phi has mismatched inputs, UP vs. DOWN
duke@435 624 if( n1 && n2 && (u1 != u2) ) {
duke@435 625 needs_split = true;
duke@435 626 }
duke@435 627 // Move n2/u2 to n1/u1 for next iteration
duke@435 628 n1 = n2;
duke@435 629 u1 = u2;
duke@435 630 // Preserve a non-NULL predecessor for later type referencing
duke@435 631 if( (n3 == NULL) && (n2 != NULL) ){
duke@435 632 n3 = n2;
duke@435 633 u3 = u2;
duke@435 634 }
duke@435 635 } // End for all potential Phi inputs
duke@435 636
kvn@765 637 // check block for appropriate phinode & update edges
kvn@765 638 for( insidx = 1; insidx <= b->end_idx(); insidx++ ) {
adlertz@5635 639 n1 = b->get_node(insidx);
kvn@765 640 // bail if this is not a phi
kvn@765 641 phi = n1->is_Phi() ? n1->as_Phi() : NULL;
kvn@765 642 if( phi == NULL ) {
kvn@765 643 // Keep track of index of first non-PhiNode instruction in block
kvn@765 644 non_phi = insidx;
kvn@765 645 // break out of the for loop as we have handled all phi nodes
kvn@765 646 break;
kvn@765 647 }
kvn@765 648 // must be looking at a phi
neliasso@4949 649 if (_lrg_map.find_id(n1) == lidxs.at(slidx)) {
kvn@765 650 // found the necessary phi
kvn@765 651 needs_phi = false;
kvn@765 652 has_phi = true;
kvn@765 653 // initialize the Reaches entry for this LRG
kvn@765 654 Reachblock[slidx] = phi;
kvn@765 655 break;
kvn@765 656 } // end if found correct phi
kvn@765 657 } // end for all phi's
kvn@765 658
kvn@765 659 // If a phi is needed or exist, check for it
kvn@765 660 if( needs_phi || has_phi ) {
duke@435 661 // add new phinode if one not already found
duke@435 662 if( needs_phi ) {
duke@435 663 // create a new phi node and insert it into the block
duke@435 664 // type is taken from left over pointer to a predecessor
duke@435 665 assert(n3,"No non-NULL reaching DEF for a Phi");
kvn@4115 666 phi = new (C) PhiNode(b->head(), n3->bottom_type());
duke@435 667 // initialize the Reaches entry for this LRG
duke@435 668 Reachblock[slidx] = phi;
duke@435 669
duke@435 670 // add node to block & node_to_block mapping
neliasso@4949 671 insert_proj(b, insidx++, phi, maxlrg++);
duke@435 672 non_phi++;
duke@435 673 // Reset new phi's mapping to be the spilling live range
neliasso@4949 674 _lrg_map.map(phi->_idx, lidx);
neliasso@4949 675 assert(_lrg_map.find_id(phi) == lidx, "Bad update on Union-Find mapping");
duke@435 676 } // end if not found correct phi
duke@435 677 // Here you have either found or created the Phi, so record it
duke@435 678 assert(phi != NULL,"Must have a Phi Node here");
duke@435 679 phis->push(phi);
duke@435 680 // PhiNodes should either force the LRG UP or DOWN depending
duke@435 681 // on its inputs and the register pressure in the Phi's block.
duke@435 682 UPblock[slidx] = true; // Assume new DEF is UP
duke@435 683 // If entering a high-pressure area with no immediate use,
duke@435 684 // assume Phi is DOWN
duke@435 685 if( is_high_pressure( b, &lrgs(lidx), b->end_idx()) && !prompt_use(b,lidx) )
duke@435 686 UPblock[slidx] = false;
duke@435 687 // If we are not split up/down and all inputs are down, then we
duke@435 688 // are down
duke@435 689 if( !needs_split && !u3 )
duke@435 690 UPblock[slidx] = false;
duke@435 691 } // end if phi is needed
duke@435 692
duke@435 693 // Do not need a phi, so grab the reaching DEF
duke@435 694 else {
duke@435 695 // Grab predecessor block header
duke@435 696 n1 = b->pred(1);
duke@435 697 // Grab the appropriate reaching def info for k
adlertz@5509 698 pred = _cfg.get_block_for_node(n1);
duke@435 699 pidx = pred->_pre_order;
duke@435 700 Node **Ltmp = Reaches[pidx];
duke@435 701 bool *Utmp = UP[pidx];
duke@435 702 // reset the Reaches & UP entries
duke@435 703 Reachblock[slidx] = Ltmp[slidx];
duke@435 704 UPblock[slidx] = Utmp[slidx];
duke@435 705 } // end else no Phi is needed
duke@435 706 } // end for all spilling live ranges
duke@435 707 // DEBUG
duke@435 708 #ifndef PRODUCT
duke@435 709 if(trace_spilling()) {
duke@435 710 tty->print("/`\nBlock %d: ", b->_pre_order);
duke@435 711 tty->print("Reaching Definitions after Phi handling\n");
duke@435 712 for( uint x = 0; x < spill_cnt; x++ ) {
duke@435 713 tty->print("Spill Idx %d: UP %d: Node\n",x,UPblock[x]);
duke@435 714 if( Reachblock[x] )
duke@435 715 Reachblock[x]->dump();
duke@435 716 else
duke@435 717 tty->print("Undefined\n");
duke@435 718 }
duke@435 719 }
duke@435 720 #endif
duke@435 721
duke@435 722 //----------Non-Phi Node Splitting----------
duke@435 723 // Since phi-nodes have now been handled, the Reachblock array for this
duke@435 724 // block is initialized with the correct starting value for the defs which
duke@435 725 // reach non-phi instructions in this block. Thus, process non-phi
duke@435 726 // instructions normally, inserting SpillCopy nodes for all spill
duke@435 727 // locations.
duke@435 728
duke@435 729 // Memoize any DOWN reaching definitions for use as DEBUG info
duke@435 730 for( insidx = 0; insidx < spill_cnt; insidx++ ) {
duke@435 731 debug_defs[insidx] = (UPblock[insidx]) ? NULL : Reachblock[insidx];
duke@435 732 if( UPblock[insidx] ) // Memoize UP decision at block start
duke@435 733 UP_entry[insidx]->set( b->_pre_order );
duke@435 734 }
duke@435 735
duke@435 736 //----------Walk Instructions in the Block and Split----------
duke@435 737 // For all non-phi instructions in the block
duke@435 738 for( insidx = 1; insidx <= b->end_idx(); insidx++ ) {
adlertz@5635 739 Node *n = b->get_node(insidx);
duke@435 740 // Find the defining Node's live range index
neliasso@4949 741 uint defidx = _lrg_map.find_id(n);
duke@435 742 uint cnt = n->req();
duke@435 743
neliasso@4949 744 if (n->is_Phi()) {
duke@435 745 // Skip phi nodes after removing dead copies.
neliasso@4949 746 if (defidx < _lrg_map.max_lrg_id()) {
duke@435 747 // Check for useless Phis. These appear if we spill, then
duke@435 748 // coalesce away copies. Dont touch Phis in spilling live
duke@435 749 // ranges; they are busy getting modifed in this pass.
duke@435 750 if( lrgs(defidx).reg() < LRG::SPILL_REG ) {
duke@435 751 uint i;
duke@435 752 Node *u = NULL;
duke@435 753 // Look for the Phi merging 2 unique inputs
duke@435 754 for( i = 1; i < cnt; i++ ) {
duke@435 755 // Ignore repeats and self
duke@435 756 if( n->in(i) != u && n->in(i) != n ) {
duke@435 757 // Found a unique input
duke@435 758 if( u != NULL ) // If it's the 2nd, bail out
duke@435 759 break;
duke@435 760 u = n->in(i); // Else record it
duke@435 761 }
duke@435 762 }
duke@435 763 assert( u, "at least 1 valid input expected" );
neliasso@4949 764 if (i >= cnt) { // Found one unique input
neliasso@4949 765 assert(_lrg_map.find_id(n) == _lrg_map.find_id(u), "should be the same lrg");
duke@435 766 n->replace_by(u); // Then replace with unique input
bharadwaj@4315 767 n->disconnect_inputs(NULL, C);
adlertz@5635 768 b->remove_node(insidx);
duke@435 769 insidx--;
duke@435 770 b->_ihrp_index--;
duke@435 771 b->_fhrp_index--;
duke@435 772 }
duke@435 773 }
duke@435 774 }
duke@435 775 continue;
duke@435 776 }
duke@435 777 assert( insidx > b->_ihrp_index ||
duke@435 778 (b->_reg_pressure < (uint)INTPRESSURE) ||
duke@435 779 b->_ihrp_index > 4000000 ||
duke@435 780 b->_ihrp_index >= b->end_idx() ||
adlertz@5635 781 !b->get_node(b->_ihrp_index)->is_Proj(), "" );
duke@435 782 assert( insidx > b->_fhrp_index ||
duke@435 783 (b->_freg_pressure < (uint)FLOATPRESSURE) ||
duke@435 784 b->_fhrp_index > 4000000 ||
duke@435 785 b->_fhrp_index >= b->end_idx() ||
adlertz@5635 786 !b->get_node(b->_fhrp_index)->is_Proj(), "" );
duke@435 787
duke@435 788 // ********** Handle Crossing HRP Boundry **********
duke@435 789 if( (insidx == b->_ihrp_index) || (insidx == b->_fhrp_index) ) {
duke@435 790 for( slidx = 0; slidx < spill_cnt; slidx++ ) {
twisti@1040 791 // Check for need to split at HRP boundary - split if UP
duke@435 792 n1 = Reachblock[slidx];
duke@435 793 // bail out if no reaching DEF
duke@435 794 if( n1 == NULL ) continue;
duke@435 795 // bail out if live range is 'isolated' around inner loop
duke@435 796 uint lidx = lidxs.at(slidx);
duke@435 797 // If live range is currently UP
duke@435 798 if( UPblock[slidx] ) {
duke@435 799 // set location to insert spills at
duke@435 800 // SPLIT DOWN HERE - NO CISC SPILL
duke@435 801 if( is_high_pressure( b, &lrgs(lidx), insidx ) &&
duke@435 802 !n1->rematerialize() ) {
duke@435 803 // If there is already a valid stack definition available, use it
duke@435 804 if( debug_defs[slidx] != NULL ) {
duke@435 805 Reachblock[slidx] = debug_defs[slidx];
duke@435 806 }
duke@435 807 else {
duke@435 808 // Insert point is just past last use or def in the block
duke@435 809 int insert_point = insidx-1;
duke@435 810 while( insert_point > 0 ) {
adlertz@5635 811 Node *n = b->get_node(insert_point);
duke@435 812 // Hit top of block? Quit going backwards
neliasso@4949 813 if (n->is_Phi()) {
neliasso@4949 814 break;
neliasso@4949 815 }
duke@435 816 // Found a def? Better split after it.
neliasso@4949 817 if (_lrg_map.live_range_id(n) == lidx) {
neliasso@4949 818 break;
neliasso@4949 819 }
duke@435 820 // Look for a use
duke@435 821 uint i;
neliasso@4949 822 for( i = 1; i < n->req(); i++ ) {
neliasso@4949 823 if (_lrg_map.live_range_id(n->in(i)) == lidx) {
duke@435 824 break;
neliasso@4949 825 }
neliasso@4949 826 }
duke@435 827 // Found a use? Better split after it.
neliasso@4949 828 if (i < n->req()) {
neliasso@4949 829 break;
neliasso@4949 830 }
duke@435 831 insert_point--;
duke@435 832 }
kvn@3882 833 uint orig_eidx = b->end_idx();
duke@435 834 maxlrg = split_DEF( n1, b, insert_point, maxlrg, Reachblock, debug_defs, splits, slidx);
duke@435 835 // If it wasn't split bail
duke@435 836 if (!maxlrg) {
duke@435 837 return 0;
duke@435 838 }
kvn@3882 839 // Spill of NULL check mem op goes into the following block.
neliasso@4949 840 if (b->end_idx() > orig_eidx) {
kvn@3882 841 insidx++;
neliasso@4949 842 }
duke@435 843 }
duke@435 844 // This is a new DEF, so update UP
duke@435 845 UPblock[slidx] = false;
duke@435 846 #ifndef PRODUCT
duke@435 847 // DEBUG
duke@435 848 if( trace_spilling() ) {
duke@435 849 tty->print("\nNew Split DOWN DEF of Spill Idx ");
duke@435 850 tty->print("%d, UP %d:\n",slidx,false);
duke@435 851 n1->dump();
duke@435 852 }
duke@435 853 #endif
duke@435 854 }
duke@435 855 } // end if LRG is UP
duke@435 856 } // end for all spilling live ranges
adlertz@5635 857 assert( b->get_node(insidx) == n, "got insidx set incorrectly" );
duke@435 858 } // end if crossing HRP Boundry
duke@435 859
duke@435 860 // If the LRG index is oob, then this is a new spillcopy, skip it.
neliasso@4949 861 if (defidx >= _lrg_map.max_lrg_id()) {
duke@435 862 continue;
duke@435 863 }
duke@435 864 LRG &deflrg = lrgs(defidx);
duke@435 865 uint copyidx = n->is_Copy();
duke@435 866 // Remove coalesced copy from CFG
neliasso@4949 867 if (copyidx && defidx == _lrg_map.live_range_id(n->in(copyidx))) {
duke@435 868 n->replace_by( n->in(copyidx) );
duke@435 869 n->set_req( copyidx, NULL );
adlertz@5635 870 b->remove_node(insidx--);
duke@435 871 b->_ihrp_index--; // Adjust the point where we go hi-pressure
duke@435 872 b->_fhrp_index--;
duke@435 873 continue;
duke@435 874 }
duke@435 875
duke@435 876 #define DERIVED 0
duke@435 877
duke@435 878 // ********** Handle USES **********
duke@435 879 bool nullcheck = false;
duke@435 880 // Implicit null checks never use the spilled value
duke@435 881 if( n->is_MachNullCheck() )
duke@435 882 nullcheck = true;
duke@435 883 if( !nullcheck ) {
duke@435 884 // Search all inputs for a Spill-USE
duke@435 885 JVMState* jvms = n->jvms();
duke@435 886 uint oopoff = jvms ? jvms->oopoff() : cnt;
duke@435 887 uint old_last = cnt - 1;
duke@435 888 for( inpidx = 1; inpidx < cnt; inpidx++ ) {
duke@435 889 // Derived/base pairs may be added to our inputs during this loop.
duke@435 890 // If inpidx > old_last, then one of these new inputs is being
duke@435 891 // handled. Skip the derived part of the pair, but process
duke@435 892 // the base like any other input.
neliasso@4949 893 if (inpidx > old_last && ((inpidx - oopoff) & 1) == DERIVED) {
duke@435 894 continue; // skip derived_debug added below
duke@435 895 }
duke@435 896 // Get lidx of input
neliasso@4949 897 uint useidx = _lrg_map.find_id(n->in(inpidx));
duke@435 898 // Not a brand-new split, and it is a spill use
neliasso@4949 899 if (useidx < _lrg_map.max_lrg_id() && lrgs(useidx).reg() >= LRG::SPILL_REG) {
duke@435 900 // Check for valid reaching DEF
duke@435 901 slidx = lrg2reach[useidx];
duke@435 902 Node *def = Reachblock[slidx];
duke@435 903 assert( def != NULL, "Using Undefined Value in Split()\n");
duke@435 904
duke@435 905 // (+++) %%%% remove this in favor of pre-pass in matcher.cpp
duke@435 906 // monitor references do not care where they live, so just hook
duke@435 907 if ( jvms && jvms->is_monitor_use(inpidx) ) {
duke@435 908 // The effect of this clone is to drop the node out of the block,
duke@435 909 // so that the allocator does not see it anymore, and therefore
duke@435 910 // does not attempt to assign it a register.
kvn@2048 911 def = clone_node(def, b, C);
kvn@2048 912 if (def == NULL || C->check_node_count(NodeLimitFudgeFactor, out_of_nodes)) {
kvn@2048 913 return 0;
kvn@2048 914 }
neliasso@4949 915 _lrg_map.extend(def->_idx, 0);
adlertz@5509 916 _cfg.map_node_to_block(def, b);
duke@435 917 n->set_req(inpidx, def);
duke@435 918 continue;
duke@435 919 }
duke@435 920
duke@435 921 // Rematerializable? Then clone def at use site instead
duke@435 922 // of store/load
duke@435 923 if( def->rematerialize() ) {
adlertz@5635 924 int old_size = b->number_of_nodes();
duke@435 925 def = split_Rematerialize( def, b, insidx, maxlrg, splits, slidx, lrg2reach, Reachblock, true );
duke@435 926 if( !def ) return 0; // Bail out
adlertz@5635 927 insidx += b->number_of_nodes()-old_size;
duke@435 928 }
duke@435 929
duke@435 930 MachNode *mach = n->is_Mach() ? n->as_Mach() : NULL;
duke@435 931 // Base pointers and oopmap references do not care where they live.
duke@435 932 if ((inpidx >= oopoff) ||
duke@435 933 (mach && mach->ideal_Opcode() == Op_AddP && inpidx == AddPNode::Base)) {
duke@435 934 if (def->rematerialize() && lrgs(useidx)._was_spilled2) {
duke@435 935 // This def has been rematerialized a couple of times without
duke@435 936 // progress. It doesn't care if it lives UP or DOWN, so
duke@435 937 // spill it down now.
duke@435 938 maxlrg = split_USE(def,b,n,inpidx,maxlrg,false,false,splits,slidx);
duke@435 939 // If it wasn't split bail
duke@435 940 if (!maxlrg) {
duke@435 941 return 0;
duke@435 942 }
duke@435 943 insidx++; // Reset iterator to skip USE side split
duke@435 944 } else {
duke@435 945 // Just hook the def edge
duke@435 946 n->set_req(inpidx, def);
duke@435 947 }
duke@435 948
duke@435 949 if (inpidx >= oopoff) {
duke@435 950 // After oopoff, we have derived/base pairs. We must mention all
duke@435 951 // derived pointers here as derived/base pairs for GC. If the
duke@435 952 // derived value is spilling and we have a copy both in Reachblock
duke@435 953 // (called here 'def') and debug_defs[slidx] we need to mention
duke@435 954 // both in derived/base pairs or kill one.
duke@435 955 Node *derived_debug = debug_defs[slidx];
duke@435 956 if( ((inpidx - oopoff) & 1) == DERIVED && // derived vs base?
duke@435 957 mach && mach->ideal_Opcode() != Op_Halt &&
duke@435 958 derived_debug != NULL &&
duke@435 959 derived_debug != def ) { // Actual 2nd value appears
duke@435 960 // We have already set 'def' as a derived value.
duke@435 961 // Also set debug_defs[slidx] as a derived value.
duke@435 962 uint k;
duke@435 963 for( k = oopoff; k < cnt; k += 2 )
duke@435 964 if( n->in(k) == derived_debug )
duke@435 965 break; // Found an instance of debug derived
duke@435 966 if( k == cnt ) {// No instance of debug_defs[slidx]
duke@435 967 // Add a derived/base pair to cover the debug info.
duke@435 968 // We have to process the added base later since it is not
duke@435 969 // handled yet at this point but skip derived part.
duke@435 970 assert(((n->req() - oopoff) & 1) == DERIVED,
duke@435 971 "must match skip condition above");
duke@435 972 n->add_req( derived_debug ); // this will be skipped above
duke@435 973 n->add_req( n->in(inpidx+1) ); // this will be processed
duke@435 974 // Increment cnt to handle added input edges on
duke@435 975 // subsequent iterations.
duke@435 976 cnt += 2;
duke@435 977 }
duke@435 978 }
duke@435 979 }
duke@435 980 continue;
duke@435 981 }
duke@435 982 // Special logic for DEBUG info
duke@435 983 if( jvms && b->_freq > BLOCK_FREQUENCY(0.5) ) {
duke@435 984 uint debug_start = jvms->debug_start();
duke@435 985 // If this is debug info use & there is a reaching DOWN def
duke@435 986 if ((debug_start <= inpidx) && (debug_defs[slidx] != NULL)) {
duke@435 987 assert(inpidx < oopoff, "handle only debug info here");
duke@435 988 // Just hook it in & move on
duke@435 989 n->set_req(inpidx, debug_defs[slidx]);
duke@435 990 // (Note that this can make two sides of a split live at the
duke@435 991 // same time: The debug def on stack, and another def in a
duke@435 992 // register. The GC needs to know about both of them, but any
duke@435 993 // derived pointers after oopoff will refer to only one of the
duke@435 994 // two defs and the GC would therefore miss the other. Thus
duke@435 995 // this hack is only allowed for debug info which is Java state
duke@435 996 // and therefore never a derived pointer.)
duke@435 997 continue;
duke@435 998 }
duke@435 999 }
duke@435 1000 // Grab register mask info
duke@435 1001 const RegMask &dmask = def->out_RegMask();
duke@435 1002 const RegMask &umask = n->in_RegMask(inpidx);
kvn@3882 1003 bool is_vect = RegMask::is_vector(def->ideal_reg());
duke@435 1004 assert(inpidx < oopoff, "cannot use-split oop map info");
duke@435 1005
duke@435 1006 bool dup = UPblock[slidx];
duke@435 1007 bool uup = umask.is_UP();
duke@435 1008
duke@435 1009 // Need special logic to handle bound USES. Insert a split at this
duke@435 1010 // bound use if we can't rematerialize the def, or if we need the
duke@435 1011 // split to form a misaligned pair.
duke@435 1012 if( !umask.is_AllStack() &&
duke@435 1013 (int)umask.Size() <= lrgs(useidx).num_regs() &&
duke@435 1014 (!def->rematerialize() ||
kvn@3882 1015 !is_vect && umask.is_misaligned_pair())) {
duke@435 1016 // These need a Split regardless of overlap or pressure
duke@435 1017 // SPLIT - NO DEF - NO CISC SPILL
duke@435 1018 maxlrg = split_USE(def,b,n,inpidx,maxlrg,dup,false, splits,slidx);
duke@435 1019 // If it wasn't split bail
duke@435 1020 if (!maxlrg) {
duke@435 1021 return 0;
duke@435 1022 }
duke@435 1023 insidx++; // Reset iterator to skip USE side split
duke@435 1024 continue;
duke@435 1025 }
never@2085 1026
kvn@3040 1027 if (UseFPUForSpilling && n->is_MachCall() && !uup && !dup ) {
never@2085 1028 // The use at the call can force the def down so insert
never@2085 1029 // a split before the use to allow the def more freedom.
never@2085 1030 maxlrg = split_USE(def,b,n,inpidx,maxlrg,dup,false, splits,slidx);
never@2085 1031 // If it wasn't split bail
never@2085 1032 if (!maxlrg) {
never@2085 1033 return 0;
never@2085 1034 }
never@2085 1035 insidx++; // Reset iterator to skip USE side split
never@2085 1036 continue;
never@2085 1037 }
never@2085 1038
duke@435 1039 // Here is the logic chart which describes USE Splitting:
duke@435 1040 // 0 = false or DOWN, 1 = true or UP
duke@435 1041 //
duke@435 1042 // Overlap | DEF | USE | Action
duke@435 1043 //-------------------------------------------------------
duke@435 1044 // 0 | 0 | 0 | Copy - mem -> mem
duke@435 1045 // 0 | 0 | 1 | Split-UP - Check HRP
duke@435 1046 // 0 | 1 | 0 | Split-DOWN - Debug Info?
duke@435 1047 // 0 | 1 | 1 | Copy - reg -> reg
duke@435 1048 // 1 | 0 | 0 | Reset Input Edge (no Split)
duke@435 1049 // 1 | 0 | 1 | Split-UP - Check HRP
duke@435 1050 // 1 | 1 | 0 | Split-DOWN - Debug Info?
duke@435 1051 // 1 | 1 | 1 | Reset Input Edge (no Split)
duke@435 1052 //
duke@435 1053 // So, if (dup == uup), then overlap test determines action,
duke@435 1054 // with true being no split, and false being copy. Else,
duke@435 1055 // if DEF is DOWN, Split-UP, and check HRP to decide on
duke@435 1056 // resetting DEF. Finally if DEF is UP, Split-DOWN, with
duke@435 1057 // special handling for Debug Info.
duke@435 1058 if( dup == uup ) {
duke@435 1059 if( dmask.overlap(umask) ) {
duke@435 1060 // Both are either up or down, and there is overlap, No Split
duke@435 1061 n->set_req(inpidx, def);
duke@435 1062 }
duke@435 1063 else { // Both are either up or down, and there is no overlap
duke@435 1064 if( dup ) { // If UP, reg->reg copy
duke@435 1065 // COPY ACROSS HERE - NO DEF - NO CISC SPILL
duke@435 1066 maxlrg = split_USE(def,b,n,inpidx,maxlrg,false,false, splits,slidx);
duke@435 1067 // If it wasn't split bail
duke@435 1068 if (!maxlrg) {
duke@435 1069 return 0;
duke@435 1070 }
duke@435 1071 insidx++; // Reset iterator to skip USE side split
duke@435 1072 }
duke@435 1073 else { // DOWN, mem->mem copy
duke@435 1074 // COPY UP & DOWN HERE - NO DEF - NO CISC SPILL
duke@435 1075 // First Split-UP to move value into Register
duke@435 1076 uint def_ideal = def->ideal_reg();
duke@435 1077 const RegMask* tmp_rm = Matcher::idealreg2regmask[def_ideal];
duke@435 1078 Node *spill = new (C) MachSpillCopyNode(def, dmask, *tmp_rm);
duke@435 1079 insert_proj( b, insidx, spill, maxlrg );
duke@435 1080 // Then Split-DOWN as if previous Split was DEF
duke@435 1081 maxlrg = split_USE(spill,b,n,inpidx,maxlrg,false,false, splits,slidx);
duke@435 1082 // If it wasn't split bail
duke@435 1083 if (!maxlrg) {
duke@435 1084 return 0;
duke@435 1085 }
duke@435 1086 insidx += 2; // Reset iterator to skip USE side splits
duke@435 1087 }
duke@435 1088 } // End else no overlap
duke@435 1089 } // End if dup == uup
duke@435 1090 // dup != uup, so check dup for direction of Split
duke@435 1091 else {
duke@435 1092 if( dup ) { // If UP, Split-DOWN and check Debug Info
duke@435 1093 // If this node is already a SpillCopy, just patch the edge
duke@435 1094 // except the case of spilling to stack.
duke@435 1095 if( n->is_SpillCopy() ) {
duke@435 1096 RegMask tmp_rm(umask);
duke@435 1097 tmp_rm.SUBTRACT(Matcher::STACK_ONLY_mask);
duke@435 1098 if( dmask.overlap(tmp_rm) ) {
duke@435 1099 if( def != n->in(inpidx) ) {
duke@435 1100 n->set_req(inpidx, def);
duke@435 1101 }
duke@435 1102 continue;
duke@435 1103 }
duke@435 1104 }
duke@435 1105 // COPY DOWN HERE - NO DEF - NO CISC SPILL
duke@435 1106 maxlrg = split_USE(def,b,n,inpidx,maxlrg,false,false, splits,slidx);
duke@435 1107 // If it wasn't split bail
duke@435 1108 if (!maxlrg) {
duke@435 1109 return 0;
duke@435 1110 }
duke@435 1111 insidx++; // Reset iterator to skip USE side split
duke@435 1112 // Check for debug-info split. Capture it for later
duke@435 1113 // debug splits of the same value
duke@435 1114 if (jvms && jvms->debug_start() <= inpidx && inpidx < oopoff)
duke@435 1115 debug_defs[slidx] = n->in(inpidx);
duke@435 1116
duke@435 1117 }
duke@435 1118 else { // DOWN, Split-UP and check register pressure
duke@435 1119 if( is_high_pressure( b, &lrgs(useidx), insidx ) ) {
duke@435 1120 // COPY UP HERE - NO DEF - CISC SPILL
duke@435 1121 maxlrg = split_USE(def,b,n,inpidx,maxlrg,true,true, splits,slidx);
duke@435 1122 // If it wasn't split bail
duke@435 1123 if (!maxlrg) {
duke@435 1124 return 0;
duke@435 1125 }
duke@435 1126 insidx++; // Reset iterator to skip USE side split
duke@435 1127 } else { // LRP
duke@435 1128 // COPY UP HERE - WITH DEF - NO CISC SPILL
duke@435 1129 maxlrg = split_USE(def,b,n,inpidx,maxlrg,true,false, splits,slidx);
duke@435 1130 // If it wasn't split bail
duke@435 1131 if (!maxlrg) {
duke@435 1132 return 0;
duke@435 1133 }
duke@435 1134 // Flag this lift-up in a low-pressure block as
duke@435 1135 // already-spilled, so if it spills again it will
duke@435 1136 // spill hard (instead of not spilling hard and
duke@435 1137 // coalescing away).
duke@435 1138 set_was_spilled(n->in(inpidx));
duke@435 1139 // Since this is a new DEF, update Reachblock & UP
duke@435 1140 Reachblock[slidx] = n->in(inpidx);
duke@435 1141 UPblock[slidx] = true;
duke@435 1142 insidx++; // Reset iterator to skip USE side split
duke@435 1143 }
duke@435 1144 } // End else DOWN
duke@435 1145 } // End dup != uup
duke@435 1146 } // End if Spill USE
duke@435 1147 } // End For All Inputs
duke@435 1148 } // End If not nullcheck
duke@435 1149
duke@435 1150 // ********** Handle DEFS **********
duke@435 1151 // DEFS either Split DOWN in HRP regions or when the LRG is bound, or
duke@435 1152 // just reset the Reaches info in LRP regions. DEFS must always update
duke@435 1153 // UP info.
duke@435 1154 if( deflrg.reg() >= LRG::SPILL_REG ) { // Spilled?
duke@435 1155 uint slidx = lrg2reach[defidx];
duke@435 1156 // Add to defs list for later assignment of new live range number
duke@435 1157 defs->push(n);
duke@435 1158 // Set a flag on the Node indicating it has already spilled.
duke@435 1159 // Only do it for capacity spills not conflict spills.
duke@435 1160 if( !deflrg._direct_conflict )
duke@435 1161 set_was_spilled(n);
duke@435 1162 assert(!n->is_Phi(),"Cannot insert Phi into DEFS list");
duke@435 1163 // Grab UP info for DEF
duke@435 1164 const RegMask &dmask = n->out_RegMask();
duke@435 1165 bool defup = dmask.is_UP();
kevinw@9333 1166 uint ireg = n->ideal_reg();
kvn@3882 1167 bool is_vect = RegMask::is_vector(ireg);
duke@435 1168 // Only split at Def if this is a HRP block or bound (and spilled once)
duke@435 1169 if( !n->rematerialize() &&
kvn@3882 1170 (((dmask.is_bound(ireg) || !is_vect && dmask.is_misaligned_pair()) &&
kvn@3882 1171 (deflrg._direct_conflict || deflrg._must_spill)) ||
duke@435 1172 // Check for LRG being up in a register and we are inside a high
duke@435 1173 // pressure area. Spill it down immediately.
neliasso@9741 1174 (defup && is_high_pressure(b,&deflrg,insidx) && !n->is_SpillCopy())) ) {
duke@435 1175 assert( !n->rematerialize(), "" );
duke@435 1176 // Do a split at the def site.
duke@435 1177 maxlrg = split_DEF( n, b, insidx, maxlrg, Reachblock, debug_defs, splits, slidx );
duke@435 1178 // If it wasn't split bail
duke@435 1179 if (!maxlrg) {
duke@435 1180 return 0;
duke@435 1181 }
duke@435 1182 // Split DEF's Down
duke@435 1183 UPblock[slidx] = 0;
duke@435 1184 #ifndef PRODUCT
duke@435 1185 // DEBUG
duke@435 1186 if( trace_spilling() ) {
duke@435 1187 tty->print("\nNew Split DOWN DEF of Spill Idx ");
duke@435 1188 tty->print("%d, UP %d:\n",slidx,false);
duke@435 1189 n->dump();
duke@435 1190 }
duke@435 1191 #endif
duke@435 1192 }
duke@435 1193 else { // Neither bound nor HRP, must be LRP
duke@435 1194 // otherwise, just record the def
duke@435 1195 Reachblock[slidx] = n;
duke@435 1196 // UP should come from the outRegmask() of the DEF
duke@435 1197 UPblock[slidx] = defup;
duke@435 1198 // Update debug list of reaching down definitions, kill if DEF is UP
duke@435 1199 debug_defs[slidx] = defup ? NULL : n;
duke@435 1200 #ifndef PRODUCT
duke@435 1201 // DEBUG
duke@435 1202 if( trace_spilling() ) {
duke@435 1203 tty->print("\nNew DEF of Spill Idx ");
duke@435 1204 tty->print("%d, UP %d:\n",slidx,defup);
duke@435 1205 n->dump();
duke@435 1206 }
duke@435 1207 #endif
duke@435 1208 } // End else LRP
duke@435 1209 } // End if spill def
duke@435 1210
duke@435 1211 // ********** Split Left Over Mem-Mem Moves **********
duke@435 1212 // Check for mem-mem copies and split them now. Do not do this
duke@435 1213 // to copies about to be spilled; they will be Split shortly.
neliasso@4949 1214 if (copyidx) {
duke@435 1215 Node *use = n->in(copyidx);
neliasso@4949 1216 uint useidx = _lrg_map.find_id(use);
neliasso@4949 1217 if (useidx < _lrg_map.max_lrg_id() && // This is not a new split
duke@435 1218 OptoReg::is_stack(deflrg.reg()) &&
duke@435 1219 deflrg.reg() < LRG::SPILL_REG ) { // And DEF is from stack
duke@435 1220 LRG &uselrg = lrgs(useidx);
duke@435 1221 if( OptoReg::is_stack(uselrg.reg()) &&
duke@435 1222 uselrg.reg() < LRG::SPILL_REG && // USE is from stack
duke@435 1223 deflrg.reg() != uselrg.reg() ) { // Not trivially removed
coleenp@4037 1224 uint def_ideal_reg = n->bottom_type()->ideal_reg();
duke@435 1225 const RegMask &def_rm = *Matcher::idealreg2regmask[def_ideal_reg];
duke@435 1226 const RegMask &use_rm = n->in_RegMask(copyidx);
duke@435 1227 if( def_rm.overlap(use_rm) && n->is_SpillCopy() ) { // Bug 4707800, 'n' may be a storeSSL
duke@435 1228 if (C->check_node_count(NodeLimitFudgeFactor, out_of_nodes)) { // Check when generating nodes
duke@435 1229 return 0;
duke@435 1230 }
duke@435 1231 Node *spill = new (C) MachSpillCopyNode(use,use_rm,def_rm);
duke@435 1232 n->set_req(copyidx,spill);
duke@435 1233 n->as_MachSpillCopy()->set_in_RegMask(def_rm);
duke@435 1234 // Put the spill just before the copy
duke@435 1235 insert_proj( b, insidx++, spill, maxlrg++ );
duke@435 1236 }
duke@435 1237 }
duke@435 1238 }
duke@435 1239 }
duke@435 1240 } // End For All Instructions in Block - Non-PHI Pass
duke@435 1241
duke@435 1242 // Check if each LRG is live out of this block so as not to propagate
duke@435 1243 // beyond the last use of a LRG.
duke@435 1244 for( slidx = 0; slidx < spill_cnt; slidx++ ) {
duke@435 1245 uint defidx = lidxs.at(slidx);
duke@435 1246 IndexSet *liveout = _live->live(b);
duke@435 1247 if( !liveout->member(defidx) ) {
duke@435 1248 #ifdef ASSERT
duke@435 1249 // The index defidx is not live. Check the liveout array to ensure that
duke@435 1250 // it contains no members which compress to defidx. Finding such an
duke@435 1251 // instance may be a case to add liveout adjustment in compress_uf_map().
duke@435 1252 // See 5063219.
duke@435 1253 uint member;
duke@435 1254 IndexSetIterator isi(liveout);
duke@435 1255 while ((member = isi.next()) != 0) {
neliasso@4949 1256 assert(defidx != _lrg_map.find_const(member), "Live out member has not been compressed");
duke@435 1257 }
duke@435 1258 #endif
duke@435 1259 Reachblock[slidx] = NULL;
duke@435 1260 } else {
duke@435 1261 assert(Reachblock[slidx] != NULL,"No reaching definition for liveout value");
duke@435 1262 }
duke@435 1263 }
duke@435 1264 #ifndef PRODUCT
duke@435 1265 if( trace_spilling() )
duke@435 1266 b->dump();
duke@435 1267 #endif
duke@435 1268 } // End For All Blocks
duke@435 1269
duke@435 1270 //----------PASS 2----------
duke@435 1271 // Reset all DEF live range numbers here
duke@435 1272 for( insidx = 0; insidx < defs->size(); insidx++ ) {
duke@435 1273 // Grab the def
duke@435 1274 n1 = defs->at(insidx);
duke@435 1275 // Set new lidx for DEF
duke@435 1276 new_lrg(n1, maxlrg++);
duke@435 1277 }
duke@435 1278 //----------Phi Node Splitting----------
duke@435 1279 // Clean up a phi here, and assign a new live range number
duke@435 1280 // Cycle through this block's predecessors, collecting Reaches
duke@435 1281 // info for each spilled LRG and update edges.
duke@435 1282 // Walk the phis list to patch inputs, split phis, and name phis
never@2358 1283 uint lrgs_before_phi_split = maxlrg;
duke@435 1284 for( insidx = 0; insidx < phis->size(); insidx++ ) {
duke@435 1285 Node *phi = phis->at(insidx);
duke@435 1286 assert(phi->is_Phi(),"This list must only contain Phi Nodes");
adlertz@5509 1287 Block *b = _cfg.get_block_for_node(phi);
duke@435 1288 // Grab the live range number
neliasso@4949 1289 uint lidx = _lrg_map.find_id(phi);
duke@435 1290 uint slidx = lrg2reach[lidx];
duke@435 1291 // Update node to lidx map
duke@435 1292 new_lrg(phi, maxlrg++);
duke@435 1293 // Get PASS1's up/down decision for the block.
duke@435 1294 int phi_up = !!UP_entry[slidx]->test(b->_pre_order);
duke@435 1295
duke@435 1296 // Force down if double-spilling live range
duke@435 1297 if( lrgs(lidx)._was_spilled1 )
duke@435 1298 phi_up = false;
duke@435 1299
duke@435 1300 // When splitting a Phi we an split it normal or "inverted".
duke@435 1301 // An inverted split makes the splits target the Phi's UP/DOWN
duke@435 1302 // sense inverted; then the Phi is followed by a final def-side
duke@435 1303 // split to invert back. It changes which blocks the spill code
duke@435 1304 // goes in.
duke@435 1305
duke@435 1306 // Walk the predecessor blocks and assign the reaching def to the Phi.
duke@435 1307 // Split Phi nodes by placing USE side splits wherever the reaching
duke@435 1308 // DEF has the wrong UP/DOWN value.
duke@435 1309 for( uint i = 1; i < b->num_preds(); i++ ) {
duke@435 1310 // Get predecessor block pre-order number
adlertz@5509 1311 Block *pred = _cfg.get_block_for_node(b->pred(i));
duke@435 1312 pidx = pred->_pre_order;
duke@435 1313 // Grab reaching def
duke@435 1314 Node *def = Reaches[pidx][slidx];
adlertz@5992 1315 Node** Reachblock = Reaches[pidx];
duke@435 1316 assert( def, "must have reaching def" );
duke@435 1317 // If input up/down sense and reg-pressure DISagree
adlertz@5978 1318 if (def->rematerialize()) {
never@2358 1319 // Place the rematerialized node above any MSCs created during
never@2358 1320 // phi node splitting. end_idx points at the insertion point
never@2358 1321 // so look at the node before it.
never@2358 1322 int insert = pred->end_idx();
never@2358 1323 while (insert >= 1 &&
adlertz@5635 1324 pred->get_node(insert - 1)->is_SpillCopy() &&
adlertz@5635 1325 _lrg_map.find(pred->get_node(insert - 1)) >= lrgs_before_phi_split) {
never@2358 1326 insert--;
never@2358 1327 }
adlertz@5992 1328 def = split_Rematerialize(def, pred, insert, maxlrg, splits, slidx, lrg2reach, Reachblock, false);
neliasso@4949 1329 if (!def) {
neliasso@4949 1330 return 0; // Bail out
neliasso@4949 1331 }
duke@435 1332 }
duke@435 1333 // Update the Phi's input edge array
duke@435 1334 phi->set_req(i,def);
duke@435 1335 // Grab the UP/DOWN sense for the input
duke@435 1336 u1 = UP[pidx][slidx];
duke@435 1337 if( u1 != (phi_up != 0)) {
duke@435 1338 maxlrg = split_USE(def, b, phi, i, maxlrg, !u1, false, splits,slidx);
duke@435 1339 // If it wasn't split bail
duke@435 1340 if (!maxlrg) {
duke@435 1341 return 0;
duke@435 1342 }
duke@435 1343 }
duke@435 1344 } // End for all inputs to the Phi
duke@435 1345 } // End for all Phi Nodes
duke@435 1346 // Update _maxlrg to save Union asserts
neliasso@4949 1347 _lrg_map.set_max_lrg_id(maxlrg);
duke@435 1348
duke@435 1349
duke@435 1350 //----------PASS 3----------
duke@435 1351 // Pass over all Phi's to union the live ranges
duke@435 1352 for( insidx = 0; insidx < phis->size(); insidx++ ) {
duke@435 1353 Node *phi = phis->at(insidx);
duke@435 1354 assert(phi->is_Phi(),"This list must only contain Phi Nodes");
duke@435 1355 // Walk all inputs to Phi and Union input live range with Phi live range
duke@435 1356 for( uint i = 1; i < phi->req(); i++ ) {
duke@435 1357 // Grab the input node
duke@435 1358 Node *n = phi->in(i);
neliasso@4949 1359 assert(n, "node should exist");
neliasso@4949 1360 uint lidx = _lrg_map.find(n);
neliasso@4949 1361 uint pidx = _lrg_map.find(phi);
neliasso@4949 1362 if (lidx < pidx) {
duke@435 1363 Union(n, phi);
neliasso@4949 1364 }
neliasso@4949 1365 else if(lidx > pidx) {
duke@435 1366 Union(phi, n);
neliasso@4949 1367 }
duke@435 1368 } // End for all inputs to the Phi Node
duke@435 1369 } // End for all Phi Nodes
duke@435 1370 // Now union all two address instructions
neliasso@4949 1371 for (insidx = 0; insidx < defs->size(); insidx++) {
duke@435 1372 // Grab the def
duke@435 1373 n1 = defs->at(insidx);
duke@435 1374 // Set new lidx for DEF & handle 2-addr instructions
neliasso@4949 1375 if (n1->is_Mach() && ((twoidx = n1->as_Mach()->two_adr()) != 0)) {
neliasso@4949 1376 assert(_lrg_map.find(n1->in(twoidx)) < maxlrg,"Assigning bad live range index");
duke@435 1377 // Union the input and output live ranges
neliasso@4949 1378 uint lr1 = _lrg_map.find(n1);
neliasso@4949 1379 uint lr2 = _lrg_map.find(n1->in(twoidx));
neliasso@4949 1380 if (lr1 < lr2) {
duke@435 1381 Union(n1, n1->in(twoidx));
neliasso@4949 1382 }
neliasso@4949 1383 else if (lr1 > lr2) {
duke@435 1384 Union(n1->in(twoidx), n1);
neliasso@4949 1385 }
duke@435 1386 } // End if two address
duke@435 1387 } // End for all defs
duke@435 1388 // DEBUG
duke@435 1389 #ifdef ASSERT
duke@435 1390 // Validate all live range index assignments
adlertz@5539 1391 for (bidx = 0; bidx < _cfg.number_of_blocks(); bidx++) {
adlertz@5539 1392 b = _cfg.get_block(bidx);
neliasso@4949 1393 for (insidx = 0; insidx <= b->end_idx(); insidx++) {
adlertz@5635 1394 Node *n = b->get_node(insidx);
neliasso@4949 1395 uint defidx = _lrg_map.find(n);
neliasso@4949 1396 assert(defidx < _lrg_map.max_lrg_id(), "Bad live range index in Split");
duke@435 1397 assert(defidx < maxlrg,"Bad live range index in Split");
duke@435 1398 }
duke@435 1399 }
duke@435 1400 // Issue a warning if splitting made no progress
duke@435 1401 int noprogress = 0;
neliasso@4949 1402 for (slidx = 0; slidx < spill_cnt; slidx++) {
neliasso@4949 1403 if (PrintOpto && WizardMode && splits.at(slidx) == 0) {
duke@435 1404 tty->print_cr("Failed to split live range %d", lidxs.at(slidx));
duke@435 1405 //BREAKPOINT;
duke@435 1406 }
duke@435 1407 else {
duke@435 1408 noprogress++;
duke@435 1409 }
duke@435 1410 }
duke@435 1411 if(!noprogress) {
duke@435 1412 tty->print_cr("Failed to make progress in Split");
duke@435 1413 //BREAKPOINT;
duke@435 1414 }
duke@435 1415 #endif
duke@435 1416 // Return updated count of live ranges
duke@435 1417 return maxlrg;
duke@435 1418 }

mercurial