src/share/vm/opto/coalesce.cpp

Fri, 27 Feb 2009 13:27:09 -0800

author
twisti
date
Fri, 27 Feb 2009 13:27:09 -0800
changeset 1040
98cb887364d3
parent 772
9ee9cf798b59
child 1108
fbc12e71c476
permissions
-rw-r--r--

6810672: Comment typos
Summary: I have collected some typos I have found while looking at the code.
Reviewed-by: kvn, never

duke@435 1 /*
xdono@772 2 * Copyright 1997-2008 Sun Microsystems, Inc. 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 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 #include "incls/_precompiled.incl"
duke@435 26 #include "incls/_coalesce.cpp.incl"
duke@435 27
duke@435 28 //=============================================================================
duke@435 29 //------------------------------reset_uf_map-----------------------------------
duke@435 30 void PhaseChaitin::reset_uf_map( uint maxlrg ) {
duke@435 31 _maxlrg = maxlrg;
duke@435 32 // Force the Union-Find mapping to be at least this large
duke@435 33 _uf_map.extend(_maxlrg,0);
duke@435 34 // Initialize it to be the ID mapping.
duke@435 35 for( uint i=0; i<_maxlrg; i++ )
duke@435 36 _uf_map.map(i,i);
duke@435 37 }
duke@435 38
duke@435 39 //------------------------------compress_uf_map--------------------------------
duke@435 40 // Make all Nodes map directly to their final live range; no need for
duke@435 41 // the Union-Find mapping after this call.
duke@435 42 void PhaseChaitin::compress_uf_map_for_nodes( ) {
duke@435 43 // For all Nodes, compress mapping
duke@435 44 uint unique = _names.Size();
duke@435 45 for( uint i=0; i<unique; i++ ) {
duke@435 46 uint lrg = _names[i];
duke@435 47 uint compressed_lrg = Find(lrg);
duke@435 48 if( lrg != compressed_lrg )
duke@435 49 _names.map(i,compressed_lrg);
duke@435 50 }
duke@435 51 }
duke@435 52
duke@435 53 //------------------------------Find-------------------------------------------
duke@435 54 // Straight out of Tarjan's union-find algorithm
duke@435 55 uint PhaseChaitin::Find_compress( uint lrg ) {
duke@435 56 uint cur = lrg;
duke@435 57 uint next = _uf_map[cur];
duke@435 58 while( next != cur ) { // Scan chain of equivalences
duke@435 59 assert( next < cur, "always union smaller" );
duke@435 60 cur = next; // until find a fixed-point
duke@435 61 next = _uf_map[cur];
duke@435 62 }
duke@435 63 // Core of union-find algorithm: update chain of
duke@435 64 // equivalences to be equal to the root.
duke@435 65 while( lrg != next ) {
duke@435 66 uint tmp = _uf_map[lrg];
duke@435 67 _uf_map.map(lrg, next);
duke@435 68 lrg = tmp;
duke@435 69 }
duke@435 70 return lrg;
duke@435 71 }
duke@435 72
duke@435 73 //------------------------------Find-------------------------------------------
duke@435 74 // Straight out of Tarjan's union-find algorithm
duke@435 75 uint PhaseChaitin::Find_compress( const Node *n ) {
duke@435 76 uint lrg = Find_compress(_names[n->_idx]);
duke@435 77 _names.map(n->_idx,lrg);
duke@435 78 return lrg;
duke@435 79 }
duke@435 80
duke@435 81 //------------------------------Find_const-------------------------------------
duke@435 82 // Like Find above, but no path compress, so bad asymptotic behavior
duke@435 83 uint PhaseChaitin::Find_const( uint lrg ) const {
duke@435 84 if( !lrg ) return lrg; // Ignore the zero LRG
duke@435 85 // Off the end? This happens during debugging dumps when you got
duke@435 86 // brand new live ranges but have not told the allocator yet.
duke@435 87 if( lrg >= _maxlrg ) return lrg;
duke@435 88 uint next = _uf_map[lrg];
duke@435 89 while( next != lrg ) { // Scan chain of equivalences
duke@435 90 assert( next < lrg, "always union smaller" );
duke@435 91 lrg = next; // until find a fixed-point
duke@435 92 next = _uf_map[lrg];
duke@435 93 }
duke@435 94 return next;
duke@435 95 }
duke@435 96
duke@435 97 //------------------------------Find-------------------------------------------
duke@435 98 // Like Find above, but no path compress, so bad asymptotic behavior
duke@435 99 uint PhaseChaitin::Find_const( const Node *n ) const {
duke@435 100 if( n->_idx >= _names.Size() ) return 0; // not mapped, usual for debug dump
duke@435 101 return Find_const( _names[n->_idx] );
duke@435 102 }
duke@435 103
duke@435 104 //------------------------------Union------------------------------------------
duke@435 105 // union 2 sets together.
duke@435 106 void PhaseChaitin::Union( const Node *src_n, const Node *dst_n ) {
duke@435 107 uint src = Find(src_n);
duke@435 108 uint dst = Find(dst_n);
duke@435 109 assert( src, "" );
duke@435 110 assert( dst, "" );
duke@435 111 assert( src < _maxlrg, "oob" );
duke@435 112 assert( dst < _maxlrg, "oob" );
duke@435 113 assert( src < dst, "always union smaller" );
duke@435 114 _uf_map.map(dst,src);
duke@435 115 }
duke@435 116
duke@435 117 //------------------------------new_lrg----------------------------------------
duke@435 118 void PhaseChaitin::new_lrg( const Node *x, uint lrg ) {
duke@435 119 // Make the Node->LRG mapping
duke@435 120 _names.extend(x->_idx,lrg);
duke@435 121 // Make the Union-Find mapping an identity function
duke@435 122 _uf_map.extend(lrg,lrg);
duke@435 123 }
duke@435 124
duke@435 125 //------------------------------clone_projs------------------------------------
twisti@1040 126 // After cloning some rematerialized instruction, clone any MachProj's that
duke@435 127 // follow it. Example: Intel zero is XOR, kills flags. Sparc FP constants
duke@435 128 // use G3 as an address temp.
duke@435 129 int PhaseChaitin::clone_projs( Block *b, uint idx, Node *con, Node *copy, uint &maxlrg ) {
duke@435 130 Block *bcon = _cfg._bbs[con->_idx];
duke@435 131 uint cindex = bcon->find_node(con);
duke@435 132 Node *con_next = bcon->_nodes[cindex+1];
duke@435 133 if( con_next->in(0) != con || con_next->Opcode() != Op_MachProj )
duke@435 134 return false; // No MachProj's follow
duke@435 135
duke@435 136 // Copy kills after the cloned constant
duke@435 137 Node *kills = con_next->clone();
duke@435 138 kills->set_req( 0, copy );
duke@435 139 b->_nodes.insert( idx, kills );
duke@435 140 _cfg._bbs.map( kills->_idx, b );
duke@435 141 new_lrg( kills, maxlrg++ );
duke@435 142 return true;
duke@435 143 }
duke@435 144
duke@435 145 //------------------------------compact----------------------------------------
duke@435 146 // Renumber the live ranges to compact them. Makes the IFG smaller.
duke@435 147 void PhaseChaitin::compact() {
duke@435 148 // Current the _uf_map contains a series of short chains which are headed
duke@435 149 // by a self-cycle. All the chains run from big numbers to little numbers.
duke@435 150 // The Find() call chases the chains & shortens them for the next Find call.
duke@435 151 // We are going to change this structure slightly. Numbers above a moving
duke@435 152 // wave 'i' are unchanged. Numbers below 'j' point directly to their
duke@435 153 // compacted live range with no further chaining. There are no chains or
duke@435 154 // cycles below 'i', so the Find call no longer works.
duke@435 155 uint j=1;
duke@435 156 uint i;
duke@435 157 for( i=1; i < _maxlrg; i++ ) {
duke@435 158 uint lr = _uf_map[i];
duke@435 159 // Ignore unallocated live ranges
duke@435 160 if( !lr ) continue;
duke@435 161 assert( lr <= i, "" );
duke@435 162 _uf_map.map(i, ( lr == i ) ? j++ : _uf_map[lr]);
duke@435 163 }
duke@435 164 if( false ) // PrintOptoCompactLiveRanges
duke@435 165 printf("Compacted %d LRs from %d\n",i-j,i);
duke@435 166 // Now change the Node->LR mapping to reflect the compacted names
duke@435 167 uint unique = _names.Size();
duke@435 168 for( i=0; i<unique; i++ )
duke@435 169 _names.map(i,_uf_map[_names[i]]);
duke@435 170
duke@435 171 // Reset the Union-Find mapping
duke@435 172 reset_uf_map(j);
duke@435 173
duke@435 174 }
duke@435 175
duke@435 176 //=============================================================================
duke@435 177 //------------------------------Dump-------------------------------------------
duke@435 178 #ifndef PRODUCT
duke@435 179 void PhaseCoalesce::dump( Node *n ) const {
duke@435 180 // Being a const function means I cannot use 'Find'
duke@435 181 uint r = _phc.Find(n);
duke@435 182 tty->print("L%d/N%d ",r,n->_idx);
duke@435 183 }
duke@435 184
duke@435 185 //------------------------------dump-------------------------------------------
duke@435 186 void PhaseCoalesce::dump() const {
duke@435 187 // I know I have a block layout now, so I can print blocks in a loop
duke@435 188 for( uint i=0; i<_phc._cfg._num_blocks; i++ ) {
duke@435 189 uint j;
duke@435 190 Block *b = _phc._cfg._blocks[i];
duke@435 191 // Print a nice block header
duke@435 192 tty->print("B%d: ",b->_pre_order);
duke@435 193 for( j=1; j<b->num_preds(); j++ )
duke@435 194 tty->print("B%d ", _phc._cfg._bbs[b->pred(j)->_idx]->_pre_order);
duke@435 195 tty->print("-> ");
duke@435 196 for( j=0; j<b->_num_succs; j++ )
duke@435 197 tty->print("B%d ",b->_succs[j]->_pre_order);
duke@435 198 tty->print(" IDom: B%d/#%d\n", b->_idom ? b->_idom->_pre_order : 0, b->_dom_depth);
duke@435 199 uint cnt = b->_nodes.size();
duke@435 200 for( j=0; j<cnt; j++ ) {
duke@435 201 Node *n = b->_nodes[j];
duke@435 202 dump( n );
duke@435 203 tty->print("\t%s\t",n->Name());
duke@435 204
duke@435 205 // Dump the inputs
duke@435 206 uint k; // Exit value of loop
duke@435 207 for( k=0; k<n->req(); k++ ) // For all required inputs
duke@435 208 if( n->in(k) ) dump( n->in(k) );
duke@435 209 else tty->print("_ ");
duke@435 210 int any_prec = 0;
duke@435 211 for( ; k<n->len(); k++ ) // For all precedence inputs
duke@435 212 if( n->in(k) ) {
duke@435 213 if( !any_prec++ ) tty->print(" |");
duke@435 214 dump( n->in(k) );
duke@435 215 }
duke@435 216
duke@435 217 // Dump node-specific info
duke@435 218 n->dump_spec(tty);
duke@435 219 tty->print("\n");
duke@435 220
duke@435 221 }
duke@435 222 tty->print("\n");
duke@435 223 }
duke@435 224 }
duke@435 225 #endif
duke@435 226
duke@435 227 //------------------------------combine_these_two------------------------------
duke@435 228 // Combine the live ranges def'd by these 2 Nodes. N2 is an input to N1.
duke@435 229 void PhaseCoalesce::combine_these_two( Node *n1, Node *n2 ) {
duke@435 230 uint lr1 = _phc.Find(n1);
duke@435 231 uint lr2 = _phc.Find(n2);
duke@435 232 if( lr1 != lr2 && // Different live ranges already AND
duke@435 233 !_phc._ifg->test_edge_sq( lr1, lr2 ) ) { // Do not interfere
duke@435 234 LRG *lrg1 = &_phc.lrgs(lr1);
duke@435 235 LRG *lrg2 = &_phc.lrgs(lr2);
duke@435 236 // Not an oop->int cast; oop->oop, int->int, AND int->oop are OK.
duke@435 237
duke@435 238 // Now, why is int->oop OK? We end up declaring a raw-pointer as an oop
duke@435 239 // and in general that's a bad thing. However, int->oop conversions only
duke@435 240 // happen at GC points, so the lifetime of the misclassified raw-pointer
duke@435 241 // is from the CheckCastPP (that converts it to an oop) backwards up
duke@435 242 // through a merge point and into the slow-path call, and around the
duke@435 243 // diamond up to the heap-top check and back down into the slow-path call.
duke@435 244 // The misclassified raw pointer is NOT live across the slow-path call,
duke@435 245 // and so does not appear in any GC info, so the fact that it is
duke@435 246 // misclassified is OK.
duke@435 247
duke@435 248 if( (lrg1->_is_oop || !lrg2->_is_oop) && // not an oop->int cast AND
duke@435 249 // Compatible final mask
duke@435 250 lrg1->mask().overlap( lrg2->mask() ) ) {
duke@435 251 // Merge larger into smaller.
duke@435 252 if( lr1 > lr2 ) {
duke@435 253 uint tmp = lr1; lr1 = lr2; lr2 = tmp;
duke@435 254 Node *n = n1; n1 = n2; n2 = n;
duke@435 255 LRG *ltmp = lrg1; lrg1 = lrg2; lrg2 = ltmp;
duke@435 256 }
duke@435 257 // Union lr2 into lr1
duke@435 258 _phc.Union( n1, n2 );
duke@435 259 if (lrg1->_maxfreq < lrg2->_maxfreq)
duke@435 260 lrg1->_maxfreq = lrg2->_maxfreq;
duke@435 261 // Merge in the IFG
duke@435 262 _phc._ifg->Union( lr1, lr2 );
duke@435 263 // Combine register restrictions
duke@435 264 lrg1->AND(lrg2->mask());
duke@435 265 }
duke@435 266 }
duke@435 267 }
duke@435 268
duke@435 269 //------------------------------coalesce_driver--------------------------------
duke@435 270 // Copy coalescing
duke@435 271 void PhaseCoalesce::coalesce_driver( ) {
duke@435 272
duke@435 273 verify();
duke@435 274 // Coalesce from high frequency to low
duke@435 275 for( uint i=0; i<_phc._cfg._num_blocks; i++ )
duke@435 276 coalesce( _phc._blks[i] );
duke@435 277
duke@435 278 }
duke@435 279
duke@435 280 //------------------------------insert_copy_with_overlap-----------------------
duke@435 281 // I am inserting copies to come out of SSA form. In the general case, I am
duke@435 282 // doing a parallel renaming. I'm in the Named world now, so I can't do a
duke@435 283 // general parallel renaming. All the copies now use "names" (live-ranges)
duke@435 284 // to carry values instead of the explicit use-def chains. Suppose I need to
duke@435 285 // insert 2 copies into the same block. They copy L161->L128 and L128->L132.
duke@435 286 // If I insert them in the wrong order then L128 will get clobbered before it
duke@435 287 // can get used by the second copy. This cannot happen in the SSA model;
duke@435 288 // direct use-def chains get me the right value. It DOES happen in the named
duke@435 289 // model so I have to handle the reordering of copies.
duke@435 290 //
duke@435 291 // In general, I need to topo-sort the placed copies to avoid conflicts.
duke@435 292 // Its possible to have a closed cycle of copies (e.g., recirculating the same
duke@435 293 // values around a loop). In this case I need a temp to break the cycle.
duke@435 294 void PhaseAggressiveCoalesce::insert_copy_with_overlap( Block *b, Node *copy, uint dst_name, uint src_name ) {
duke@435 295
duke@435 296 // Scan backwards for the locations of the last use of the dst_name.
duke@435 297 // I am about to clobber the dst_name, so the copy must be inserted
duke@435 298 // after the last use. Last use is really first-use on a backwards scan.
duke@435 299 uint i = b->end_idx()-1;
duke@435 300 while( 1 ) {
duke@435 301 Node *n = b->_nodes[i];
duke@435 302 // Check for end of virtual copies; this is also the end of the
duke@435 303 // parallel renaming effort.
duke@435 304 if( n->_idx < _unique ) break;
duke@435 305 uint idx = n->is_Copy();
duke@435 306 assert( idx || n->is_Con() || n->Opcode() == Op_MachProj, "Only copies during parallel renaming" );
duke@435 307 if( idx && _phc.Find(n->in(idx)) == dst_name ) break;
duke@435 308 i--;
duke@435 309 }
duke@435 310 uint last_use_idx = i;
duke@435 311
duke@435 312 // Also search for any kill of src_name that exits the block.
duke@435 313 // Since the copy uses src_name, I have to come before any kill.
duke@435 314 uint kill_src_idx = b->end_idx();
duke@435 315 // There can be only 1 kill that exits any block and that is
duke@435 316 // the last kill. Thus it is the first kill on a backwards scan.
duke@435 317 i = b->end_idx()-1;
duke@435 318 while( 1 ) {
duke@435 319 Node *n = b->_nodes[i];
duke@435 320 // Check for end of virtual copies; this is also the end of the
duke@435 321 // parallel renaming effort.
duke@435 322 if( n->_idx < _unique ) break;
duke@435 323 assert( n->is_Copy() || n->is_Con() || n->Opcode() == Op_MachProj, "Only copies during parallel renaming" );
duke@435 324 if( _phc.Find(n) == src_name ) {
duke@435 325 kill_src_idx = i;
duke@435 326 break;
duke@435 327 }
duke@435 328 i--;
duke@435 329 }
duke@435 330 // Need a temp? Last use of dst comes after the kill of src?
duke@435 331 if( last_use_idx >= kill_src_idx ) {
duke@435 332 // Need to break a cycle with a temp
duke@435 333 uint idx = copy->is_Copy();
duke@435 334 Node *tmp = copy->clone();
duke@435 335 _phc.new_lrg(tmp,_phc._maxlrg++);
duke@435 336 // Insert new temp between copy and source
duke@435 337 tmp ->set_req(idx,copy->in(idx));
duke@435 338 copy->set_req(idx,tmp);
duke@435 339 // Save source in temp early, before source is killed
duke@435 340 b->_nodes.insert(kill_src_idx,tmp);
duke@435 341 _phc._cfg._bbs.map( tmp->_idx, b );
duke@435 342 last_use_idx++;
duke@435 343 }
duke@435 344
duke@435 345 // Insert just after last use
duke@435 346 b->_nodes.insert(last_use_idx+1,copy);
duke@435 347 }
duke@435 348
duke@435 349 //------------------------------insert_copies----------------------------------
duke@435 350 void PhaseAggressiveCoalesce::insert_copies( Matcher &matcher ) {
duke@435 351 // We do LRGs compressing and fix a liveout data only here since the other
duke@435 352 // place in Split() is guarded by the assert which we never hit.
duke@435 353 _phc.compress_uf_map_for_nodes();
duke@435 354 // Fix block's liveout data for compressed live ranges.
duke@435 355 for(uint lrg = 1; lrg < _phc._maxlrg; lrg++ ) {
duke@435 356 uint compressed_lrg = _phc.Find(lrg);
duke@435 357 if( lrg != compressed_lrg ) {
duke@435 358 for( uint bidx = 0; bidx < _phc._cfg._num_blocks; bidx++ ) {
duke@435 359 IndexSet *liveout = _phc._live->live(_phc._cfg._blocks[bidx]);
duke@435 360 if( liveout->member(lrg) ) {
duke@435 361 liveout->remove(lrg);
duke@435 362 liveout->insert(compressed_lrg);
duke@435 363 }
duke@435 364 }
duke@435 365 }
duke@435 366 }
duke@435 367
duke@435 368 // All new nodes added are actual copies to replace virtual copies.
duke@435 369 // Nodes with index less than '_unique' are original, non-virtual Nodes.
duke@435 370 _unique = C->unique();
duke@435 371
duke@435 372 for( uint i=0; i<_phc._cfg._num_blocks; i++ ) {
duke@435 373 Block *b = _phc._cfg._blocks[i];
duke@435 374 uint cnt = b->num_preds(); // Number of inputs to the Phi
duke@435 375
duke@435 376 for( uint l = 1; l<b->_nodes.size(); l++ ) {
duke@435 377 Node *n = b->_nodes[l];
duke@435 378
duke@435 379 // Do not use removed-copies, use copied value instead
duke@435 380 uint ncnt = n->req();
duke@435 381 for( uint k = 1; k<ncnt; k++ ) {
duke@435 382 Node *copy = n->in(k);
duke@435 383 uint cidx = copy->is_Copy();
duke@435 384 if( cidx ) {
duke@435 385 Node *def = copy->in(cidx);
duke@435 386 if( _phc.Find(copy) == _phc.Find(def) )
duke@435 387 n->set_req(k,def);
duke@435 388 }
duke@435 389 }
duke@435 390
duke@435 391 // Remove any explicit copies that get coalesced.
duke@435 392 uint cidx = n->is_Copy();
duke@435 393 if( cidx ) {
duke@435 394 Node *def = n->in(cidx);
duke@435 395 if( _phc.Find(n) == _phc.Find(def) ) {
duke@435 396 n->replace_by(def);
duke@435 397 n->set_req(cidx,NULL);
duke@435 398 b->_nodes.remove(l);
duke@435 399 l--;
duke@435 400 continue;
duke@435 401 }
duke@435 402 }
duke@435 403
duke@435 404 if( n->is_Phi() ) {
duke@435 405 // Get the chosen name for the Phi
duke@435 406 uint phi_name = _phc.Find( n );
duke@435 407 // Ignore the pre-allocated specials
duke@435 408 if( !phi_name ) continue;
duke@435 409 // Check for mismatch inputs to Phi
duke@435 410 for( uint j = 1; j<cnt; j++ ) {
duke@435 411 Node *m = n->in(j);
duke@435 412 uint src_name = _phc.Find(m);
duke@435 413 if( src_name != phi_name ) {
duke@435 414 Block *pred = _phc._cfg._bbs[b->pred(j)->_idx];
duke@435 415 Node *copy;
duke@435 416 assert(!m->is_Con() || m->is_Mach(), "all Con must be Mach");
duke@435 417 // Rematerialize constants instead of copying them
duke@435 418 if( m->is_Mach() && m->as_Mach()->is_Con() &&
duke@435 419 m->as_Mach()->rematerialize() ) {
duke@435 420 copy = m->clone();
duke@435 421 // Insert the copy in the predecessor basic block
duke@435 422 pred->add_inst(copy);
duke@435 423 // Copy any flags as well
duke@435 424 _phc.clone_projs( pred, pred->end_idx(), m, copy, _phc._maxlrg );
duke@435 425 } else {
duke@435 426 const RegMask *rm = C->matcher()->idealreg2spillmask[m->ideal_reg()];
duke@435 427 copy = new (C) MachSpillCopyNode(m,*rm,*rm);
duke@435 428 // Find a good place to insert. Kinda tricky, use a subroutine
duke@435 429 insert_copy_with_overlap(pred,copy,phi_name,src_name);
duke@435 430 }
duke@435 431 // Insert the copy in the use-def chain
duke@435 432 n->set_req( j, copy );
duke@435 433 _phc._cfg._bbs.map( copy->_idx, pred );
duke@435 434 // Extend ("register allocate") the names array for the copy.
duke@435 435 _phc._names.extend( copy->_idx, phi_name );
duke@435 436 } // End of if Phi names do not match
duke@435 437 } // End of for all inputs to Phi
duke@435 438 } else { // End of if Phi
duke@435 439
duke@435 440 // Now check for 2-address instructions
duke@435 441 uint idx;
duke@435 442 if( n->is_Mach() && (idx=n->as_Mach()->two_adr()) ) {
duke@435 443 // Get the chosen name for the Node
duke@435 444 uint name = _phc.Find( n );
duke@435 445 assert( name, "no 2-address specials" );
duke@435 446 // Check for name mis-match on the 2-address input
duke@435 447 Node *m = n->in(idx);
duke@435 448 if( _phc.Find(m) != name ) {
duke@435 449 Node *copy;
duke@435 450 assert(!m->is_Con() || m->is_Mach(), "all Con must be Mach");
duke@435 451 // At this point it is unsafe to extend live ranges (6550579).
duke@435 452 // Rematerialize only constants as we do for Phi above.
duke@435 453 if( m->is_Mach() && m->as_Mach()->is_Con() &&
duke@435 454 m->as_Mach()->rematerialize() ) {
duke@435 455 copy = m->clone();
duke@435 456 // Insert the copy in the basic block, just before us
duke@435 457 b->_nodes.insert( l++, copy );
duke@435 458 if( _phc.clone_projs( b, l, m, copy, _phc._maxlrg ) )
duke@435 459 l++;
duke@435 460 } else {
duke@435 461 const RegMask *rm = C->matcher()->idealreg2spillmask[m->ideal_reg()];
duke@435 462 copy = new (C) MachSpillCopyNode( m, *rm, *rm );
duke@435 463 // Insert the copy in the basic block, just before us
duke@435 464 b->_nodes.insert( l++, copy );
duke@435 465 }
duke@435 466 // Insert the copy in the use-def chain
duke@435 467 n->set_req(idx, copy );
duke@435 468 // Extend ("register allocate") the names array for the copy.
duke@435 469 _phc._names.extend( copy->_idx, name );
duke@435 470 _phc._cfg._bbs.map( copy->_idx, b );
duke@435 471 }
duke@435 472
duke@435 473 } // End of is two-adr
duke@435 474
duke@435 475 // Insert a copy at a debug use for a lrg which has high frequency
duke@435 476 if( (b->_freq < OPTO_DEBUG_SPLIT_FREQ) && n->is_MachSafePoint() ) {
duke@435 477 // Walk the debug inputs to the node and check for lrg freq
duke@435 478 JVMState* jvms = n->jvms();
duke@435 479 uint debug_start = jvms ? jvms->debug_start() : 999999;
duke@435 480 uint debug_end = jvms ? jvms->debug_end() : 999999;
duke@435 481 for(uint inpidx = debug_start; inpidx < debug_end; inpidx++) {
duke@435 482 // Do not split monitors; they are only needed for debug table
duke@435 483 // entries and need no code.
duke@435 484 if( jvms->is_monitor_use(inpidx) ) continue;
duke@435 485 Node *inp = n->in(inpidx);
duke@435 486 uint nidx = _phc.n2lidx(inp);
duke@435 487 LRG &lrg = lrgs(nidx);
duke@435 488
duke@435 489 // If this lrg has a high frequency use/def
duke@435 490 if( lrg._maxfreq >= OPTO_LRG_HIGH_FREQ ) {
duke@435 491 // If the live range is also live out of this block (like it
duke@435 492 // would be for a fast/slow idiom), the normal spill mechanism
duke@435 493 // does an excellent job. If it is not live out of this block
duke@435 494 // (like it would be for debug info to uncommon trap) splitting
duke@435 495 // the live range now allows a better allocation in the high
duke@435 496 // frequency blocks.
duke@435 497 // Build_IFG_virtual has converted the live sets to
duke@435 498 // live-IN info, not live-OUT info.
duke@435 499 uint k;
duke@435 500 for( k=0; k < b->_num_succs; k++ )
duke@435 501 if( _phc._live->live(b->_succs[k])->member( nidx ) )
duke@435 502 break; // Live in to some successor block?
duke@435 503 if( k < b->_num_succs )
duke@435 504 continue; // Live out; do not pre-split
duke@435 505 // Split the lrg at this use
duke@435 506 const RegMask *rm = C->matcher()->idealreg2spillmask[inp->ideal_reg()];
duke@435 507 Node *copy = new (C) MachSpillCopyNode( inp, *rm, *rm );
duke@435 508 // Insert the copy in the use-def chain
duke@435 509 n->set_req(inpidx, copy );
duke@435 510 // Insert the copy in the basic block, just before us
duke@435 511 b->_nodes.insert( l++, copy );
duke@435 512 // Extend ("register allocate") the names array for the copy.
duke@435 513 _phc.new_lrg( copy, _phc._maxlrg++ );
duke@435 514 _phc._cfg._bbs.map( copy->_idx, b );
duke@435 515 //tty->print_cr("Split a debug use in Aggressive Coalesce");
duke@435 516 } // End of if high frequency use/def
duke@435 517 } // End of for all debug inputs
duke@435 518 } // End of if low frequency safepoint
duke@435 519
duke@435 520 } // End of if Phi
duke@435 521
duke@435 522 } // End of for all instructions
duke@435 523 } // End of for all blocks
duke@435 524 }
duke@435 525
duke@435 526 //=============================================================================
duke@435 527 //------------------------------coalesce---------------------------------------
duke@435 528 // Aggressive (but pessimistic) copy coalescing of a single block
duke@435 529
duke@435 530 // The following coalesce pass represents a single round of aggressive
duke@435 531 // pessimistic coalesce. "Aggressive" means no attempt to preserve
duke@435 532 // colorability when coalescing. This occasionally means more spills, but
duke@435 533 // it also means fewer rounds of coalescing for better code - and that means
duke@435 534 // faster compiles.
duke@435 535
duke@435 536 // "Pessimistic" means we do not hit the fixed point in one pass (and we are
duke@435 537 // reaching for the least fixed point to boot). This is typically solved
duke@435 538 // with a few more rounds of coalescing, but the compiler must run fast. We
duke@435 539 // could optimistically coalescing everything touching PhiNodes together
duke@435 540 // into one big live range, then check for self-interference. Everywhere
duke@435 541 // the live range interferes with self it would have to be split. Finding
duke@435 542 // the right split points can be done with some heuristics (based on
duke@435 543 // expected frequency of edges in the live range). In short, it's a real
duke@435 544 // research problem and the timeline is too short to allow such research.
duke@435 545 // Further thoughts: (1) build the LR in a pass, (2) find self-interference
duke@435 546 // in another pass, (3) per each self-conflict, split, (4) split by finding
duke@435 547 // the low-cost cut (min-cut) of the LR, (5) edges in the LR are weighted
duke@435 548 // according to the GCM algorithm (or just exec freq on CFG edges).
duke@435 549
duke@435 550 void PhaseAggressiveCoalesce::coalesce( Block *b ) {
duke@435 551 // Copies are still "virtual" - meaning we have not made them explicitly
duke@435 552 // copies. Instead, Phi functions of successor blocks have mis-matched
duke@435 553 // live-ranges. If I fail to coalesce, I'll have to insert a copy to line
duke@435 554 // up the live-ranges. Check for Phis in successor blocks.
duke@435 555 uint i;
duke@435 556 for( i=0; i<b->_num_succs; i++ ) {
duke@435 557 Block *bs = b->_succs[i];
duke@435 558 // Find index of 'b' in 'bs' predecessors
duke@435 559 uint j=1;
duke@435 560 while( _phc._cfg._bbs[bs->pred(j)->_idx] != b ) j++;
duke@435 561 // Visit all the Phis in successor block
duke@435 562 for( uint k = 1; k<bs->_nodes.size(); k++ ) {
duke@435 563 Node *n = bs->_nodes[k];
duke@435 564 if( !n->is_Phi() ) break;
duke@435 565 combine_these_two( n, n->in(j) );
duke@435 566 }
duke@435 567 } // End of for all successor blocks
duke@435 568
duke@435 569
duke@435 570 // Check _this_ block for 2-address instructions and copies.
duke@435 571 uint cnt = b->end_idx();
duke@435 572 for( i = 1; i<cnt; i++ ) {
duke@435 573 Node *n = b->_nodes[i];
duke@435 574 uint idx;
duke@435 575 // 2-address instructions have a virtual Copy matching their input
duke@435 576 // to their output
duke@435 577 if( n->is_Mach() && (idx = n->as_Mach()->two_adr()) ) {
duke@435 578 MachNode *mach = n->as_Mach();
duke@435 579 combine_these_two( mach, mach->in(idx) );
duke@435 580 }
duke@435 581 } // End of for all instructions in block
duke@435 582 }
duke@435 583
duke@435 584 //=============================================================================
duke@435 585 //------------------------------PhaseConservativeCoalesce----------------------
duke@435 586 PhaseConservativeCoalesce::PhaseConservativeCoalesce( PhaseChaitin &chaitin ) : PhaseCoalesce(chaitin) {
duke@435 587 _ulr.initialize(_phc._maxlrg);
duke@435 588 }
duke@435 589
duke@435 590 //------------------------------verify-----------------------------------------
duke@435 591 void PhaseConservativeCoalesce::verify() {
duke@435 592 #ifdef ASSERT
duke@435 593 _phc.set_was_low();
duke@435 594 #endif
duke@435 595 }
duke@435 596
duke@435 597 //------------------------------union_helper-----------------------------------
duke@435 598 void PhaseConservativeCoalesce::union_helper( Node *lr1_node, Node *lr2_node, uint lr1, uint lr2, Node *src_def, Node *dst_copy, Node *src_copy, Block *b, uint bindex ) {
duke@435 599 // Join live ranges. Merge larger into smaller. Union lr2 into lr1 in the
duke@435 600 // union-find tree
duke@435 601 _phc.Union( lr1_node, lr2_node );
duke@435 602
duke@435 603 // Single-def live range ONLY if both live ranges are single-def.
duke@435 604 // If both are single def, then src_def powers one live range
duke@435 605 // and def_copy powers the other. After merging, src_def powers
duke@435 606 // the combined live range.
never@730 607 lrgs(lr1)._def = (lrgs(lr1).is_multidef() ||
never@730 608 lrgs(lr2).is_multidef() )
duke@435 609 ? NodeSentinel : src_def;
duke@435 610 lrgs(lr2)._def = NULL; // No def for lrg 2
duke@435 611 lrgs(lr2).Clear(); // Force empty mask for LRG 2
duke@435 612 //lrgs(lr2)._size = 0; // Live-range 2 goes dead
duke@435 613 lrgs(lr1)._is_oop |= lrgs(lr2)._is_oop;
duke@435 614 lrgs(lr2)._is_oop = 0; // In particular, not an oop for GC info
duke@435 615
duke@435 616 if (lrgs(lr1)._maxfreq < lrgs(lr2)._maxfreq)
duke@435 617 lrgs(lr1)._maxfreq = lrgs(lr2)._maxfreq;
duke@435 618
duke@435 619 // Copy original value instead. Intermediate copies go dead, and
duke@435 620 // the dst_copy becomes useless.
duke@435 621 int didx = dst_copy->is_Copy();
duke@435 622 dst_copy->set_req( didx, src_def );
duke@435 623 // Add copy to free list
duke@435 624 // _phc.free_spillcopy(b->_nodes[bindex]);
duke@435 625 assert( b->_nodes[bindex] == dst_copy, "" );
duke@435 626 dst_copy->replace_by( dst_copy->in(didx) );
duke@435 627 dst_copy->set_req( didx, NULL);
duke@435 628 b->_nodes.remove(bindex);
duke@435 629 if( bindex < b->_ihrp_index ) b->_ihrp_index--;
duke@435 630 if( bindex < b->_fhrp_index ) b->_fhrp_index--;
duke@435 631
duke@435 632 // Stretched lr1; add it to liveness of intermediate blocks
duke@435 633 Block *b2 = _phc._cfg._bbs[src_copy->_idx];
duke@435 634 while( b != b2 ) {
duke@435 635 b = _phc._cfg._bbs[b->pred(1)->_idx];
duke@435 636 _phc._live->live(b)->insert(lr1);
duke@435 637 }
duke@435 638 }
duke@435 639
duke@435 640 //------------------------------compute_separating_interferences---------------
duke@435 641 // Factored code from copy_copy that computes extra interferences from
duke@435 642 // lengthening a live range by double-coalescing.
duke@435 643 uint PhaseConservativeCoalesce::compute_separating_interferences(Node *dst_copy, Node *src_copy, Block *b, uint bindex, RegMask &rm, uint reg_degree, uint rm_size, uint lr1, uint lr2 ) {
duke@435 644
duke@435 645 assert(!lrgs(lr1)._fat_proj, "cannot coalesce fat_proj");
duke@435 646 assert(!lrgs(lr2)._fat_proj, "cannot coalesce fat_proj");
duke@435 647 Node *prev_copy = dst_copy->in(dst_copy->is_Copy());
duke@435 648 Block *b2 = b;
duke@435 649 uint bindex2 = bindex;
duke@435 650 while( 1 ) {
duke@435 651 // Find previous instruction
duke@435 652 bindex2--; // Chain backwards 1 instruction
duke@435 653 while( bindex2 == 0 ) { // At block start, find prior block
duke@435 654 assert( b2->num_preds() == 2, "cannot double coalesce across c-flow" );
duke@435 655 b2 = _phc._cfg._bbs[b2->pred(1)->_idx];
duke@435 656 bindex2 = b2->end_idx()-1;
duke@435 657 }
duke@435 658 // Get prior instruction
duke@435 659 assert(bindex2 < b2->_nodes.size(), "index out of bounds");
duke@435 660 Node *x = b2->_nodes[bindex2];
duke@435 661 if( x == prev_copy ) { // Previous copy in copy chain?
duke@435 662 if( prev_copy == src_copy)// Found end of chain and all interferences
duke@435 663 break; // So break out of loop
duke@435 664 // Else work back one in copy chain
duke@435 665 prev_copy = prev_copy->in(prev_copy->is_Copy());
duke@435 666 } else { // Else collect interferences
duke@435 667 uint lidx = _phc.Find(x);
duke@435 668 // Found another def of live-range being stretched?
duke@435 669 if( lidx == lr1 ) return max_juint;
duke@435 670 if( lidx == lr2 ) return max_juint;
duke@435 671
duke@435 672 // If we attempt to coalesce across a bound def
duke@435 673 if( lrgs(lidx).is_bound() ) {
duke@435 674 // Do not let the coalesced LRG expect to get the bound color
duke@435 675 rm.SUBTRACT( lrgs(lidx).mask() );
duke@435 676 // Recompute rm_size
duke@435 677 rm_size = rm.Size();
duke@435 678 //if( rm._flags ) rm_size += 1000000;
duke@435 679 if( reg_degree >= rm_size ) return max_juint;
duke@435 680 }
duke@435 681 if( rm.overlap(lrgs(lidx).mask()) ) {
duke@435 682 // Insert lidx into union LRG; returns TRUE if actually inserted
duke@435 683 if( _ulr.insert(lidx) ) {
duke@435 684 // Infinite-stack neighbors do not alter colorability, as they
duke@435 685 // can always color to some other color.
duke@435 686 if( !lrgs(lidx).mask().is_AllStack() ) {
duke@435 687 // If this coalesce will make any new neighbor uncolorable,
duke@435 688 // do not coalesce.
duke@435 689 if( lrgs(lidx).just_lo_degree() )
duke@435 690 return max_juint;
duke@435 691 // Bump our degree
duke@435 692 if( ++reg_degree >= rm_size )
duke@435 693 return max_juint;
duke@435 694 } // End of if not infinite-stack neighbor
duke@435 695 } // End of if actually inserted
duke@435 696 } // End of if live range overlaps
twisti@1040 697 } // End of else collect interferences for 1 node
twisti@1040 698 } // End of while forever, scan back for interferences
duke@435 699 return reg_degree;
duke@435 700 }
duke@435 701
duke@435 702 //------------------------------update_ifg-------------------------------------
duke@435 703 void PhaseConservativeCoalesce::update_ifg(uint lr1, uint lr2, IndexSet *n_lr1, IndexSet *n_lr2) {
duke@435 704 // Some original neighbors of lr1 might have gone away
duke@435 705 // because the constrained register mask prevented them.
duke@435 706 // Remove lr1 from such neighbors.
duke@435 707 IndexSetIterator one(n_lr1);
duke@435 708 uint neighbor;
duke@435 709 LRG &lrg1 = lrgs(lr1);
duke@435 710 while ((neighbor = one.next()) != 0)
duke@435 711 if( !_ulr.member(neighbor) )
duke@435 712 if( _phc._ifg->neighbors(neighbor)->remove(lr1) )
duke@435 713 lrgs(neighbor).inc_degree( -lrg1.compute_degree(lrgs(neighbor)) );
duke@435 714
duke@435 715
duke@435 716 // lr2 is now called (coalesced into) lr1.
duke@435 717 // Remove lr2 from the IFG.
duke@435 718 IndexSetIterator two(n_lr2);
duke@435 719 LRG &lrg2 = lrgs(lr2);
duke@435 720 while ((neighbor = two.next()) != 0)
duke@435 721 if( _phc._ifg->neighbors(neighbor)->remove(lr2) )
duke@435 722 lrgs(neighbor).inc_degree( -lrg2.compute_degree(lrgs(neighbor)) );
duke@435 723
duke@435 724 // Some neighbors of intermediate copies now interfere with the
duke@435 725 // combined live range.
duke@435 726 IndexSetIterator three(&_ulr);
duke@435 727 while ((neighbor = three.next()) != 0)
duke@435 728 if( _phc._ifg->neighbors(neighbor)->insert(lr1) )
duke@435 729 lrgs(neighbor).inc_degree( lrg1.compute_degree(lrgs(neighbor)) );
duke@435 730 }
duke@435 731
duke@435 732 //------------------------------record_bias------------------------------------
duke@435 733 static void record_bias( const PhaseIFG *ifg, int lr1, int lr2 ) {
duke@435 734 // Tag copy bias here
duke@435 735 if( !ifg->lrgs(lr1)._copy_bias )
duke@435 736 ifg->lrgs(lr1)._copy_bias = lr2;
duke@435 737 if( !ifg->lrgs(lr2)._copy_bias )
duke@435 738 ifg->lrgs(lr2)._copy_bias = lr1;
duke@435 739 }
duke@435 740
duke@435 741 //------------------------------copy_copy--------------------------------------
duke@435 742 // See if I can coalesce a series of multiple copies together. I need the
duke@435 743 // final dest copy and the original src copy. They can be the same Node.
duke@435 744 // Compute the compatible register masks.
duke@435 745 bool PhaseConservativeCoalesce::copy_copy( Node *dst_copy, Node *src_copy, Block *b, uint bindex ) {
duke@435 746
duke@435 747 if( !dst_copy->is_SpillCopy() ) return false;
duke@435 748 if( !src_copy->is_SpillCopy() ) return false;
duke@435 749 Node *src_def = src_copy->in(src_copy->is_Copy());
duke@435 750 uint lr1 = _phc.Find(dst_copy);
duke@435 751 uint lr2 = _phc.Find(src_def );
duke@435 752
duke@435 753 // Same live ranges already?
duke@435 754 if( lr1 == lr2 ) return false;
duke@435 755
duke@435 756 // Interfere?
duke@435 757 if( _phc._ifg->test_edge_sq( lr1, lr2 ) ) return false;
duke@435 758
duke@435 759 // Not an oop->int cast; oop->oop, int->int, AND int->oop are OK.
duke@435 760 if( !lrgs(lr1)._is_oop && lrgs(lr2)._is_oop ) // not an oop->int cast
duke@435 761 return false;
duke@435 762
duke@435 763 // Coalescing between an aligned live range and a mis-aligned live range?
duke@435 764 // No, no! Alignment changes how we count degree.
duke@435 765 if( lrgs(lr1)._fat_proj != lrgs(lr2)._fat_proj )
duke@435 766 return false;
duke@435 767
duke@435 768 // Sort; use smaller live-range number
duke@435 769 Node *lr1_node = dst_copy;
duke@435 770 Node *lr2_node = src_def;
duke@435 771 if( lr1 > lr2 ) {
duke@435 772 uint tmp = lr1; lr1 = lr2; lr2 = tmp;
duke@435 773 lr1_node = src_def; lr2_node = dst_copy;
duke@435 774 }
duke@435 775
duke@435 776 // Check for compatibility of the 2 live ranges by
duke@435 777 // intersecting their allowed register sets.
duke@435 778 RegMask rm = lrgs(lr1).mask();
duke@435 779 rm.AND(lrgs(lr2).mask());
duke@435 780 // Number of bits free
duke@435 781 uint rm_size = rm.Size();
duke@435 782
duke@435 783 // If we can use any stack slot, then effective size is infinite
duke@435 784 if( rm.is_AllStack() ) rm_size += 1000000;
duke@435 785 // Incompatible masks, no way to coalesce
duke@435 786 if( rm_size == 0 ) return false;
duke@435 787
duke@435 788 // Another early bail-out test is when we are double-coalescing and the
twisti@1040 789 // 2 copies are separated by some control flow.
duke@435 790 if( dst_copy != src_copy ) {
duke@435 791 Block *src_b = _phc._cfg._bbs[src_copy->_idx];
duke@435 792 Block *b2 = b;
duke@435 793 while( b2 != src_b ) {
duke@435 794 if( b2->num_preds() > 2 ){// Found merge-point
duke@435 795 _phc._lost_opp_cflow_coalesce++;
duke@435 796 // extra record_bias commented out because Chris believes it is not
duke@435 797 // productive. Since we can record only 1 bias, we want to choose one
duke@435 798 // that stands a chance of working and this one probably does not.
duke@435 799 //record_bias( _phc._lrgs, lr1, lr2 );
duke@435 800 return false; // To hard to find all interferences
duke@435 801 }
duke@435 802 b2 = _phc._cfg._bbs[b2->pred(1)->_idx];
duke@435 803 }
duke@435 804 }
duke@435 805
duke@435 806 // Union the two interference sets together into '_ulr'
duke@435 807 uint reg_degree = _ulr.lrg_union( lr1, lr2, rm_size, _phc._ifg, rm );
duke@435 808
duke@435 809 if( reg_degree >= rm_size ) {
duke@435 810 record_bias( _phc._ifg, lr1, lr2 );
duke@435 811 return false;
duke@435 812 }
duke@435 813
duke@435 814 // Now I need to compute all the interferences between dst_copy and
duke@435 815 // src_copy. I'm not willing visit the entire interference graph, so
duke@435 816 // I limit my search to things in dst_copy's block or in a straight
duke@435 817 // line of previous blocks. I give up at merge points or when I get
duke@435 818 // more interferences than my degree. I can stop when I find src_copy.
duke@435 819 if( dst_copy != src_copy ) {
duke@435 820 reg_degree = compute_separating_interferences(dst_copy, src_copy, b, bindex, rm, rm_size, reg_degree, lr1, lr2 );
duke@435 821 if( reg_degree == max_juint ) {
duke@435 822 record_bias( _phc._ifg, lr1, lr2 );
duke@435 823 return false;
duke@435 824 }
duke@435 825 } // End of if dst_copy & src_copy are different
duke@435 826
duke@435 827
duke@435 828 // ---- THE COMBINED LRG IS COLORABLE ----
duke@435 829
duke@435 830 // YEAH - Now coalesce this copy away
duke@435 831 assert( lrgs(lr1).num_regs() == lrgs(lr2).num_regs(), "" );
duke@435 832
duke@435 833 IndexSet *n_lr1 = _phc._ifg->neighbors(lr1);
duke@435 834 IndexSet *n_lr2 = _phc._ifg->neighbors(lr2);
duke@435 835
duke@435 836 // Update the interference graph
duke@435 837 update_ifg(lr1, lr2, n_lr1, n_lr2);
duke@435 838
duke@435 839 _ulr.remove(lr1);
duke@435 840
duke@435 841 // Uncomment the following code to trace Coalescing in great detail.
duke@435 842 //
duke@435 843 //if (false) {
duke@435 844 // tty->cr();
duke@435 845 // tty->print_cr("#######################################");
duke@435 846 // tty->print_cr("union %d and %d", lr1, lr2);
duke@435 847 // n_lr1->dump();
duke@435 848 // n_lr2->dump();
duke@435 849 // tty->print_cr("resulting set is");
duke@435 850 // _ulr.dump();
duke@435 851 //}
duke@435 852
duke@435 853 // Replace n_lr1 with the new combined live range. _ulr will use
duke@435 854 // n_lr1's old memory on the next iteration. n_lr2 is cleared to
duke@435 855 // send its internal memory to the free list.
duke@435 856 _ulr.swap(n_lr1);
duke@435 857 _ulr.clear();
duke@435 858 n_lr2->clear();
duke@435 859
duke@435 860 lrgs(lr1).set_degree( _phc._ifg->effective_degree(lr1) );
duke@435 861 lrgs(lr2).set_degree( 0 );
duke@435 862
duke@435 863 // Join live ranges. Merge larger into smaller. Union lr2 into lr1 in the
duke@435 864 // union-find tree
duke@435 865 union_helper( lr1_node, lr2_node, lr1, lr2, src_def, dst_copy, src_copy, b, bindex );
duke@435 866 // Combine register restrictions
duke@435 867 lrgs(lr1).set_mask(rm);
duke@435 868 lrgs(lr1).compute_set_mask_size();
duke@435 869 lrgs(lr1)._cost += lrgs(lr2)._cost;
duke@435 870 lrgs(lr1)._area += lrgs(lr2)._area;
duke@435 871
duke@435 872 // While its uncommon to successfully coalesce live ranges that started out
duke@435 873 // being not-lo-degree, it can happen. In any case the combined coalesced
duke@435 874 // live range better Simplify nicely.
duke@435 875 lrgs(lr1)._was_lo = 1;
duke@435 876
duke@435 877 // kinda expensive to do all the time
duke@435 878 //tty->print_cr("warning: slow verify happening");
duke@435 879 //_phc._ifg->verify( &_phc );
duke@435 880 return true;
duke@435 881 }
duke@435 882
duke@435 883 //------------------------------coalesce---------------------------------------
duke@435 884 // Conservative (but pessimistic) copy coalescing of a single block
duke@435 885 void PhaseConservativeCoalesce::coalesce( Block *b ) {
duke@435 886 // Bail out on infrequent blocks
duke@435 887 if( b->is_uncommon(_phc._cfg._bbs) )
duke@435 888 return;
duke@435 889 // Check this block for copies.
duke@435 890 for( uint i = 1; i<b->end_idx(); i++ ) {
duke@435 891 // Check for actual copies on inputs. Coalesce a copy into its
duke@435 892 // input if use and copy's input are compatible.
duke@435 893 Node *copy1 = b->_nodes[i];
duke@435 894 uint idx1 = copy1->is_Copy();
duke@435 895 if( !idx1 ) continue; // Not a copy
duke@435 896
duke@435 897 if( copy_copy(copy1,copy1,b,i) ) {
duke@435 898 i--; // Retry, same location in block
duke@435 899 PhaseChaitin::_conserv_coalesce++; // Collect stats on success
duke@435 900 continue;
duke@435 901 }
duke@435 902
duke@435 903 /* do not attempt pairs. About 1/2 of all pairs can be removed by
duke@435 904 post-alloc. The other set are too few to bother.
duke@435 905 Node *copy2 = copy1->in(idx1);
duke@435 906 uint idx2 = copy2->is_Copy();
duke@435 907 if( !idx2 ) continue;
duke@435 908 if( copy_copy(copy1,copy2,b,i) ) {
duke@435 909 i--; // Retry, same location in block
duke@435 910 PhaseChaitin::_conserv_coalesce_pair++; // Collect stats on success
duke@435 911 continue;
duke@435 912 }
duke@435 913 */
duke@435 914 }
duke@435 915 }

mercurial