src/share/vm/opto/chaitin.cpp

Fri, 16 Aug 2013 10:23:55 +0200

author
adlertz
date
Fri, 16 Aug 2013 10:23:55 +0200
changeset 5539
adb9a7d94cb5
parent 5509
d1034bd8cefc
child 5543
4b2838704fd5
permissions
-rw-r--r--

8023003: Cleanup the public interface to PhaseCFG
Summary: public methods that don't need to be public should be private.
Reviewed-by: kvn, twisti

duke@435 1 /*
drchase@5285 2 * Copyright (c) 2000, 2013, 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 "compiler/compileLog.hpp"
stefank@2314 27 #include "compiler/oopMap.hpp"
stefank@2314 28 #include "memory/allocation.inline.hpp"
stefank@2314 29 #include "opto/addnode.hpp"
stefank@2314 30 #include "opto/block.hpp"
stefank@2314 31 #include "opto/callnode.hpp"
stefank@2314 32 #include "opto/cfgnode.hpp"
stefank@2314 33 #include "opto/chaitin.hpp"
stefank@2314 34 #include "opto/coalesce.hpp"
stefank@2314 35 #include "opto/connode.hpp"
stefank@2314 36 #include "opto/idealGraphPrinter.hpp"
stefank@2314 37 #include "opto/indexSet.hpp"
stefank@2314 38 #include "opto/machnode.hpp"
stefank@2314 39 #include "opto/memnode.hpp"
stefank@2314 40 #include "opto/opcodes.hpp"
stefank@2314 41 #include "opto/rootnode.hpp"
duke@435 42
duke@435 43 #ifndef PRODUCT
adlertz@5539 44 void LRG::dump() const {
duke@435 45 ttyLocker ttyl;
duke@435 46 tty->print("%d ",num_regs());
duke@435 47 _mask.dump();
duke@435 48 if( _msize_valid ) {
duke@435 49 if( mask_size() == compute_mask_size() ) tty->print(", #%d ",_mask_size);
duke@435 50 else tty->print(", #!!!_%d_vs_%d ",_mask_size,_mask.Size());
duke@435 51 } else {
duke@435 52 tty->print(", #?(%d) ",_mask.Size());
duke@435 53 }
duke@435 54
duke@435 55 tty->print("EffDeg: ");
duke@435 56 if( _degree_valid ) tty->print( "%d ", _eff_degree );
duke@435 57 else tty->print("? ");
duke@435 58
never@730 59 if( is_multidef() ) {
duke@435 60 tty->print("MultiDef ");
duke@435 61 if (_defs != NULL) {
duke@435 62 tty->print("(");
duke@435 63 for (int i = 0; i < _defs->length(); i++) {
duke@435 64 tty->print("N%d ", _defs->at(i)->_idx);
duke@435 65 }
duke@435 66 tty->print(") ");
duke@435 67 }
duke@435 68 }
duke@435 69 else if( _def == 0 ) tty->print("Dead ");
duke@435 70 else tty->print("Def: N%d ",_def->_idx);
duke@435 71
duke@435 72 tty->print("Cost:%4.2g Area:%4.2g Score:%4.2g ",_cost,_area, score());
duke@435 73 // Flags
duke@435 74 if( _is_oop ) tty->print("Oop ");
duke@435 75 if( _is_float ) tty->print("Float ");
kvn@3882 76 if( _is_vector ) tty->print("Vector ");
duke@435 77 if( _was_spilled1 ) tty->print("Spilled ");
duke@435 78 if( _was_spilled2 ) tty->print("Spilled2 ");
duke@435 79 if( _direct_conflict ) tty->print("Direct_conflict ");
duke@435 80 if( _fat_proj ) tty->print("Fat ");
duke@435 81 if( _was_lo ) tty->print("Lo ");
duke@435 82 if( _has_copy ) tty->print("Copy ");
duke@435 83 if( _at_risk ) tty->print("Risk ");
duke@435 84
duke@435 85 if( _must_spill ) tty->print("Must_spill ");
duke@435 86 if( _is_bound ) tty->print("Bound ");
duke@435 87 if( _msize_valid ) {
duke@435 88 if( _degree_valid && lo_degree() ) tty->print("Trivial ");
duke@435 89 }
duke@435 90
duke@435 91 tty->cr();
duke@435 92 }
duke@435 93 #endif
duke@435 94
duke@435 95 // Compute score from cost and area. Low score is best to spill.
duke@435 96 static double raw_score( double cost, double area ) {
duke@435 97 return cost - (area*RegisterCostAreaRatio) * 1.52588e-5;
duke@435 98 }
duke@435 99
duke@435 100 double LRG::score() const {
duke@435 101 // Scale _area by RegisterCostAreaRatio/64K then subtract from cost.
duke@435 102 // Bigger area lowers score, encourages spilling this live range.
duke@435 103 // Bigger cost raise score, prevents spilling this live range.
duke@435 104 // (Note: 1/65536 is the magic constant below; I dont trust the C optimizer
duke@435 105 // to turn a divide by a constant into a multiply by the reciprical).
duke@435 106 double score = raw_score( _cost, _area);
duke@435 107
duke@435 108 // Account for area. Basically, LRGs covering large areas are better
duke@435 109 // to spill because more other LRGs get freed up.
duke@435 110 if( _area == 0.0 ) // No area? Then no progress to spill
duke@435 111 return 1e35;
duke@435 112
duke@435 113 if( _was_spilled2 ) // If spilled once before, we are unlikely
duke@435 114 return score + 1e30; // to make progress again.
duke@435 115
duke@435 116 if( _cost >= _area*3.0 ) // Tiny area relative to cost
duke@435 117 return score + 1e17; // Probably no progress to spill
duke@435 118
duke@435 119 if( (_cost+_cost) >= _area*3.0 ) // Small area relative to cost
duke@435 120 return score + 1e10; // Likely no progress to spill
duke@435 121
duke@435 122 return score;
duke@435 123 }
duke@435 124
duke@435 125 LRG_List::LRG_List( uint max ) : _cnt(max), _max(max), _lidxs(NEW_RESOURCE_ARRAY(uint,max)) {
duke@435 126 memset( _lidxs, 0, sizeof(uint)*max );
duke@435 127 }
duke@435 128
duke@435 129 void LRG_List::extend( uint nidx, uint lidx ) {
duke@435 130 _nesting.check();
duke@435 131 if( nidx >= _max ) {
duke@435 132 uint size = 16;
duke@435 133 while( size <= nidx ) size <<=1;
duke@435 134 _lidxs = REALLOC_RESOURCE_ARRAY( uint, _lidxs, _max, size );
duke@435 135 _max = size;
duke@435 136 }
duke@435 137 while( _cnt <= nidx )
duke@435 138 _lidxs[_cnt++] = 0;
duke@435 139 _lidxs[nidx] = lidx;
duke@435 140 }
duke@435 141
duke@435 142 #define NUMBUCKS 3
duke@435 143
neliasso@4949 144 // Straight out of Tarjan's union-find algorithm
neliasso@4949 145 uint LiveRangeMap::find_compress(uint lrg) {
neliasso@4949 146 uint cur = lrg;
neliasso@4949 147 uint next = _uf_map[cur];
neliasso@4949 148 while (next != cur) { // Scan chain of equivalences
neliasso@4949 149 assert( next < cur, "always union smaller");
neliasso@4949 150 cur = next; // until find a fixed-point
neliasso@4949 151 next = _uf_map[cur];
neliasso@4949 152 }
neliasso@4949 153
neliasso@4949 154 // Core of union-find algorithm: update chain of
neliasso@4949 155 // equivalences to be equal to the root.
neliasso@4949 156 while (lrg != next) {
neliasso@4949 157 uint tmp = _uf_map[lrg];
neliasso@4949 158 _uf_map.map(lrg, next);
neliasso@4949 159 lrg = tmp;
neliasso@4949 160 }
neliasso@4949 161 return lrg;
neliasso@4949 162 }
neliasso@4949 163
neliasso@4949 164 // Reset the Union-Find map to identity
neliasso@4949 165 void LiveRangeMap::reset_uf_map(uint max_lrg_id) {
neliasso@4949 166 _max_lrg_id= max_lrg_id;
neliasso@4949 167 // Force the Union-Find mapping to be at least this large
neliasso@4949 168 _uf_map.extend(_max_lrg_id, 0);
neliasso@4949 169 // Initialize it to be the ID mapping.
neliasso@4949 170 for (uint i = 0; i < _max_lrg_id; ++i) {
neliasso@4949 171 _uf_map.map(i, i);
neliasso@4949 172 }
neliasso@4949 173 }
neliasso@4949 174
neliasso@4949 175 // Make all Nodes map directly to their final live range; no need for
neliasso@4949 176 // the Union-Find mapping after this call.
neliasso@4949 177 void LiveRangeMap::compress_uf_map_for_nodes() {
neliasso@4949 178 // For all Nodes, compress mapping
neliasso@4949 179 uint unique = _names.Size();
neliasso@4949 180 for (uint i = 0; i < unique; ++i) {
neliasso@4949 181 uint lrg = _names[i];
neliasso@4949 182 uint compressed_lrg = find(lrg);
neliasso@4949 183 if (lrg != compressed_lrg) {
neliasso@4949 184 _names.map(i, compressed_lrg);
neliasso@4949 185 }
neliasso@4949 186 }
neliasso@4949 187 }
neliasso@4949 188
neliasso@4949 189 // Like Find above, but no path compress, so bad asymptotic behavior
neliasso@4949 190 uint LiveRangeMap::find_const(uint lrg) const {
neliasso@4949 191 if (!lrg) {
neliasso@4949 192 return lrg; // Ignore the zero LRG
neliasso@4949 193 }
neliasso@4949 194
neliasso@4949 195 // Off the end? This happens during debugging dumps when you got
neliasso@4949 196 // brand new live ranges but have not told the allocator yet.
neliasso@4949 197 if (lrg >= _max_lrg_id) {
neliasso@4949 198 return lrg;
neliasso@4949 199 }
neliasso@4949 200
neliasso@4949 201 uint next = _uf_map[lrg];
neliasso@4949 202 while (next != lrg) { // Scan chain of equivalences
neliasso@4949 203 assert(next < lrg, "always union smaller");
neliasso@4949 204 lrg = next; // until find a fixed-point
neliasso@4949 205 next = _uf_map[lrg];
neliasso@4949 206 }
neliasso@4949 207 return next;
neliasso@4949 208 }
neliasso@4949 209
duke@435 210 PhaseChaitin::PhaseChaitin(uint unique, PhaseCFG &cfg, Matcher &matcher)
duke@435 211 : PhaseRegAlloc(unique, cfg, matcher,
duke@435 212 #ifndef PRODUCT
duke@435 213 print_chaitin_statistics
duke@435 214 #else
duke@435 215 NULL
duke@435 216 #endif
neliasso@4949 217 )
neliasso@4949 218 , _lrg_map(unique)
neliasso@4949 219 , _live(0)
neliasso@4949 220 , _spilled_once(Thread::current()->resource_area())
neliasso@4949 221 , _spilled_twice(Thread::current()->resource_area())
neliasso@4949 222 , _lo_degree(0), _lo_stk_degree(0), _hi_degree(0), _simplified(0)
neliasso@4949 223 , _oldphi(unique)
duke@435 224 #ifndef PRODUCT
duke@435 225 , _trace_spilling(TraceSpilling || C->method_has_option("TraceSpilling"))
duke@435 226 #endif
duke@435 227 {
duke@435 228 NOT_PRODUCT( Compile::TracePhase t3("ctorChaitin", &_t_ctorChaitin, TimeCompiler); )
kvn@1108 229
adlertz@5539 230 _high_frequency_lrg = MIN2(float(OPTO_LRG_HIGH_FREQ), _cfg.get_outer_loop_frequency());
kvn@1108 231
duke@435 232 // Build a list of basic blocks, sorted by frequency
adlertz@5539 233 _blks = NEW_RESOURCE_ARRAY(Block *, _cfg.number_of_blocks());
duke@435 234 // Experiment with sorting strategies to speed compilation
duke@435 235 double cutoff = BLOCK_FREQUENCY(1.0); // Cutoff for high frequency bucket
duke@435 236 Block **buckets[NUMBUCKS]; // Array of buckets
duke@435 237 uint buckcnt[NUMBUCKS]; // Array of bucket counters
duke@435 238 double buckval[NUMBUCKS]; // Array of bucket value cutoffs
neliasso@4949 239 for (uint i = 0; i < NUMBUCKS; i++) {
adlertz@5539 240 buckets[i] = NEW_RESOURCE_ARRAY(Block *, _cfg.number_of_blocks());
duke@435 241 buckcnt[i] = 0;
duke@435 242 // Bump by three orders of magnitude each time
duke@435 243 cutoff *= 0.001;
duke@435 244 buckval[i] = cutoff;
adlertz@5539 245 for (uint j = 0; j < _cfg.number_of_blocks(); j++) {
duke@435 246 buckets[i][j] = NULL;
duke@435 247 }
duke@435 248 }
duke@435 249 // Sort blocks into buckets
adlertz@5539 250 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
neliasso@4949 251 for (uint j = 0; j < NUMBUCKS; j++) {
adlertz@5539 252 if ((j == NUMBUCKS - 1) || (_cfg.get_block(i)->_freq > buckval[j])) {
duke@435 253 // Assign block to end of list for appropriate bucket
adlertz@5539 254 buckets[j][buckcnt[j]++] = _cfg.get_block(i);
neliasso@4949 255 break; // kick out of inner loop
duke@435 256 }
duke@435 257 }
duke@435 258 }
duke@435 259 // Dump buckets into final block array
duke@435 260 uint blkcnt = 0;
neliasso@4949 261 for (uint i = 0; i < NUMBUCKS; i++) {
neliasso@4949 262 for (uint j = 0; j < buckcnt[i]; j++) {
duke@435 263 _blks[blkcnt++] = buckets[i][j];
duke@435 264 }
duke@435 265 }
duke@435 266
adlertz@5539 267 assert(blkcnt == _cfg.number_of_blocks(), "Block array not totally filled");
duke@435 268 }
duke@435 269
neliasso@4949 270 // union 2 sets together.
neliasso@4949 271 void PhaseChaitin::Union( const Node *src_n, const Node *dst_n ) {
neliasso@4949 272 uint src = _lrg_map.find(src_n);
neliasso@4949 273 uint dst = _lrg_map.find(dst_n);
neliasso@4949 274 assert(src, "");
neliasso@4949 275 assert(dst, "");
neliasso@4949 276 assert(src < _lrg_map.max_lrg_id(), "oob");
neliasso@4949 277 assert(dst < _lrg_map.max_lrg_id(), "oob");
neliasso@4949 278 assert(src < dst, "always union smaller");
neliasso@4949 279 _lrg_map.uf_map(dst, src);
neliasso@4949 280 }
neliasso@4949 281
neliasso@4949 282 void PhaseChaitin::new_lrg(const Node *x, uint lrg) {
neliasso@4949 283 // Make the Node->LRG mapping
neliasso@4949 284 _lrg_map.extend(x->_idx,lrg);
neliasso@4949 285 // Make the Union-Find mapping an identity function
neliasso@4949 286 _lrg_map.uf_extend(lrg, lrg);
neliasso@4949 287 }
neliasso@4949 288
neliasso@4949 289
neliasso@4949 290 bool PhaseChaitin::clone_projs_shared(Block *b, uint idx, Node *con, Node *copy, uint max_lrg_id) {
adlertz@5509 291 Block* bcon = _cfg.get_block_for_node(con);
neliasso@4949 292 uint cindex = bcon->find_node(con);
neliasso@4949 293 Node *con_next = bcon->_nodes[cindex+1];
neliasso@4949 294 if (con_next->in(0) != con || !con_next->is_MachProj()) {
neliasso@4949 295 return false; // No MachProj's follow
neliasso@4949 296 }
neliasso@4949 297
neliasso@4949 298 // Copy kills after the cloned constant
neliasso@4949 299 Node *kills = con_next->clone();
neliasso@4949 300 kills->set_req(0, copy);
neliasso@4949 301 b->_nodes.insert(idx, kills);
adlertz@5509 302 _cfg.map_node_to_block(kills, b);
neliasso@4949 303 new_lrg(kills, max_lrg_id);
neliasso@4949 304 return true;
neliasso@4949 305 }
neliasso@4949 306
neliasso@4949 307 // Renumber the live ranges to compact them. Makes the IFG smaller.
neliasso@4949 308 void PhaseChaitin::compact() {
neliasso@4949 309 // Current the _uf_map contains a series of short chains which are headed
neliasso@4949 310 // by a self-cycle. All the chains run from big numbers to little numbers.
neliasso@4949 311 // The Find() call chases the chains & shortens them for the next Find call.
neliasso@4949 312 // We are going to change this structure slightly. Numbers above a moving
neliasso@4949 313 // wave 'i' are unchanged. Numbers below 'j' point directly to their
neliasso@4949 314 // compacted live range with no further chaining. There are no chains or
neliasso@4949 315 // cycles below 'i', so the Find call no longer works.
neliasso@4949 316 uint j=1;
neliasso@4949 317 uint i;
neliasso@4949 318 for (i = 1; i < _lrg_map.max_lrg_id(); i++) {
neliasso@4949 319 uint lr = _lrg_map.uf_live_range_id(i);
neliasso@4949 320 // Ignore unallocated live ranges
neliasso@4949 321 if (!lr) {
neliasso@4949 322 continue;
neliasso@4949 323 }
neliasso@4949 324 assert(lr <= i, "");
neliasso@4949 325 _lrg_map.uf_map(i, ( lr == i ) ? j++ : _lrg_map.uf_live_range_id(lr));
neliasso@4949 326 }
neliasso@4949 327 // Now change the Node->LR mapping to reflect the compacted names
neliasso@4949 328 uint unique = _lrg_map.size();
neliasso@4949 329 for (i = 0; i < unique; i++) {
neliasso@4949 330 uint lrg_id = _lrg_map.live_range_id(i);
neliasso@4949 331 _lrg_map.map(i, _lrg_map.uf_live_range_id(lrg_id));
neliasso@4949 332 }
neliasso@4949 333
neliasso@4949 334 // Reset the Union-Find mapping
neliasso@4949 335 _lrg_map.reset_uf_map(j);
neliasso@4949 336 }
neliasso@4949 337
duke@435 338 void PhaseChaitin::Register_Allocate() {
duke@435 339
duke@435 340 // Above the OLD FP (and in registers) are the incoming arguments. Stack
duke@435 341 // slots in this area are called "arg_slots". Above the NEW FP (and in
duke@435 342 // registers) is the outgoing argument area; above that is the spill/temp
duke@435 343 // area. These are all "frame_slots". Arg_slots start at the zero
duke@435 344 // stack_slots and count up to the known arg_size. Frame_slots start at
duke@435 345 // the stack_slot #arg_size and go up. After allocation I map stack
duke@435 346 // slots to actual offsets. Stack-slots in the arg_slot area are biased
duke@435 347 // by the frame_size; stack-slots in the frame_slot area are biased by 0.
duke@435 348
duke@435 349 _trip_cnt = 0;
duke@435 350 _alternate = 0;
duke@435 351 _matcher._allocation_started = true;
duke@435 352
kvn@4019 353 ResourceArea split_arena; // Arena for Split local resources
duke@435 354 ResourceArea live_arena; // Arena for liveness & IFG info
duke@435 355 ResourceMark rm(&live_arena);
duke@435 356
duke@435 357 // Need live-ness for the IFG; need the IFG for coalescing. If the
duke@435 358 // liveness is JUST for coalescing, then I can get some mileage by renaming
duke@435 359 // all copy-related live ranges low and then using the max copy-related
duke@435 360 // live range as a cut-off for LIVE and the IFG. In other words, I can
duke@435 361 // build a subset of LIVE and IFG just for copies.
neliasso@4949 362 PhaseLive live(_cfg, _lrg_map.names(), &live_arena);
duke@435 363
duke@435 364 // Need IFG for coalescing and coloring
neliasso@4949 365 PhaseIFG ifg(&live_arena);
duke@435 366 _ifg = &ifg;
duke@435 367
duke@435 368 // Come out of SSA world to the Named world. Assign (virtual) registers to
duke@435 369 // Nodes. Use the same register for all inputs and the output of PhiNodes
duke@435 370 // - effectively ending SSA form. This requires either coalescing live
duke@435 371 // ranges or inserting copies. For the moment, we insert "virtual copies"
duke@435 372 // - we pretend there is a copy prior to each Phi in predecessor blocks.
duke@435 373 // We will attempt to coalesce such "virtual copies" before we manifest
duke@435 374 // them for real.
duke@435 375 de_ssa();
duke@435 376
kvn@1001 377 #ifdef ASSERT
kvn@1001 378 // Veify the graph before RA.
kvn@1001 379 verify(&live_arena);
kvn@1001 380 #endif
kvn@1001 381
duke@435 382 {
duke@435 383 NOT_PRODUCT( Compile::TracePhase t3("computeLive", &_t_computeLive, TimeCompiler); )
duke@435 384 _live = NULL; // Mark live as being not available
duke@435 385 rm.reset_to_mark(); // Reclaim working storage
duke@435 386 IndexSet::reset_memory(C, &live_arena);
neliasso@4949 387 ifg.init(_lrg_map.max_lrg_id()); // Empty IFG
duke@435 388 gather_lrg_masks( false ); // Collect LRG masks
neliasso@4949 389 live.compute(_lrg_map.max_lrg_id()); // Compute liveness
duke@435 390 _live = &live; // Mark LIVE as being available
duke@435 391 }
duke@435 392
duke@435 393 // Base pointers are currently "used" by instructions which define new
duke@435 394 // derived pointers. This makes base pointers live up to the where the
duke@435 395 // derived pointer is made, but not beyond. Really, they need to be live
duke@435 396 // across any GC point where the derived value is live. So this code looks
duke@435 397 // at all the GC points, and "stretches" the live range of any base pointer
duke@435 398 // to the GC point.
neliasso@4949 399 if (stretch_base_pointer_live_ranges(&live_arena)) {
neliasso@4949 400 NOT_PRODUCT(Compile::TracePhase t3("computeLive (sbplr)", &_t_computeLive, TimeCompiler);)
duke@435 401 // Since some live range stretched, I need to recompute live
duke@435 402 _live = NULL;
duke@435 403 rm.reset_to_mark(); // Reclaim working storage
duke@435 404 IndexSet::reset_memory(C, &live_arena);
neliasso@4949 405 ifg.init(_lrg_map.max_lrg_id());
neliasso@4949 406 gather_lrg_masks(false);
neliasso@4949 407 live.compute(_lrg_map.max_lrg_id());
duke@435 408 _live = &live;
duke@435 409 }
duke@435 410 // Create the interference graph using virtual copies
neliasso@4949 411 build_ifg_virtual(); // Include stack slots this time
duke@435 412
duke@435 413 // Aggressive (but pessimistic) copy coalescing.
duke@435 414 // This pass works on virtual copies. Any virtual copies which are not
duke@435 415 // coalesced get manifested as actual copies
duke@435 416 {
duke@435 417 // The IFG is/was triangular. I am 'squaring it up' so Union can run
duke@435 418 // faster. Union requires a 'for all' operation which is slow on the
duke@435 419 // triangular adjacency matrix (quick reminder: the IFG is 'sparse' -
duke@435 420 // meaning I can visit all the Nodes neighbors less than a Node in time
duke@435 421 // O(# of neighbors), but I have to visit all the Nodes greater than a
duke@435 422 // given Node and search them for an instance, i.e., time O(#MaxLRG)).
duke@435 423 _ifg->SquareUp();
duke@435 424
neliasso@4949 425 PhaseAggressiveCoalesce coalesce(*this);
neliasso@4949 426 coalesce.coalesce_driver();
duke@435 427 // Insert un-coalesced copies. Visit all Phis. Where inputs to a Phi do
duke@435 428 // not match the Phi itself, insert a copy.
duke@435 429 coalesce.insert_copies(_matcher);
drchase@5285 430 if (C->failing()) {
drchase@5285 431 return;
drchase@5285 432 }
duke@435 433 }
duke@435 434
duke@435 435 // After aggressive coalesce, attempt a first cut at coloring.
duke@435 436 // To color, we need the IFG and for that we need LIVE.
duke@435 437 {
duke@435 438 NOT_PRODUCT( Compile::TracePhase t3("computeLive", &_t_computeLive, TimeCompiler); )
duke@435 439 _live = NULL;
duke@435 440 rm.reset_to_mark(); // Reclaim working storage
duke@435 441 IndexSet::reset_memory(C, &live_arena);
neliasso@4949 442 ifg.init(_lrg_map.max_lrg_id());
duke@435 443 gather_lrg_masks( true );
neliasso@4949 444 live.compute(_lrg_map.max_lrg_id());
duke@435 445 _live = &live;
duke@435 446 }
duke@435 447
duke@435 448 // Build physical interference graph
duke@435 449 uint must_spill = 0;
neliasso@4949 450 must_spill = build_ifg_physical(&live_arena);
duke@435 451 // If we have a guaranteed spill, might as well spill now
neliasso@4949 452 if (must_spill) {
neliasso@4949 453 if(!_lrg_map.max_lrg_id()) {
neliasso@4949 454 return;
neliasso@4949 455 }
duke@435 456 // Bail out if unique gets too large (ie - unique > MaxNodeLimit)
duke@435 457 C->check_node_count(10*must_spill, "out of nodes before split");
neliasso@4949 458 if (C->failing()) {
neliasso@4949 459 return;
neliasso@4949 460 }
neliasso@4949 461
neliasso@4949 462 uint new_max_lrg_id = Split(_lrg_map.max_lrg_id(), &split_arena); // Split spilling LRG everywhere
neliasso@4949 463 _lrg_map.set_max_lrg_id(new_max_lrg_id);
duke@435 464 // Bail out if unique gets too large (ie - unique > MaxNodeLimit - 2*NodeLimitFudgeFactor)
duke@435 465 // or we failed to split
duke@435 466 C->check_node_count(2*NodeLimitFudgeFactor, "out of nodes after physical split");
neliasso@4949 467 if (C->failing()) {
neliasso@4949 468 return;
neliasso@4949 469 }
duke@435 470
neliasso@4949 471 NOT_PRODUCT(C->verify_graph_edges();)
duke@435 472
duke@435 473 compact(); // Compact LRGs; return new lower max lrg
duke@435 474
duke@435 475 {
duke@435 476 NOT_PRODUCT( Compile::TracePhase t3("computeLive", &_t_computeLive, TimeCompiler); )
duke@435 477 _live = NULL;
duke@435 478 rm.reset_to_mark(); // Reclaim working storage
duke@435 479 IndexSet::reset_memory(C, &live_arena);
neliasso@4949 480 ifg.init(_lrg_map.max_lrg_id()); // Build a new interference graph
duke@435 481 gather_lrg_masks( true ); // Collect intersect mask
neliasso@4949 482 live.compute(_lrg_map.max_lrg_id()); // Compute LIVE
duke@435 483 _live = &live;
duke@435 484 }
neliasso@4949 485 build_ifg_physical(&live_arena);
duke@435 486 _ifg->SquareUp();
duke@435 487 _ifg->Compute_Effective_Degree();
duke@435 488 // Only do conservative coalescing if requested
neliasso@4949 489 if (OptoCoalesce) {
duke@435 490 // Conservative (and pessimistic) copy coalescing of those spills
neliasso@4949 491 PhaseConservativeCoalesce coalesce(*this);
duke@435 492 // If max live ranges greater than cutoff, don't color the stack.
duke@435 493 // This cutoff can be larger than below since it is only done once.
neliasso@4949 494 coalesce.coalesce_driver();
duke@435 495 }
neliasso@4949 496 _lrg_map.compress_uf_map_for_nodes();
duke@435 497
duke@435 498 #ifdef ASSERT
kvn@1001 499 verify(&live_arena, true);
duke@435 500 #endif
duke@435 501 } else {
duke@435 502 ifg.SquareUp();
duke@435 503 ifg.Compute_Effective_Degree();
duke@435 504 #ifdef ASSERT
duke@435 505 set_was_low();
duke@435 506 #endif
duke@435 507 }
duke@435 508
duke@435 509 // Prepare for Simplify & Select
duke@435 510 cache_lrg_info(); // Count degree of LRGs
duke@435 511
duke@435 512 // Simplify the InterFerence Graph by removing LRGs of low degree.
duke@435 513 // LRGs of low degree are trivially colorable.
duke@435 514 Simplify();
duke@435 515
duke@435 516 // Select colors by re-inserting LRGs back into the IFG in reverse order.
duke@435 517 // Return whether or not something spills.
duke@435 518 uint spills = Select( );
duke@435 519
duke@435 520 // If we spill, split and recycle the entire thing
duke@435 521 while( spills ) {
duke@435 522 if( _trip_cnt++ > 24 ) {
duke@435 523 DEBUG_ONLY( dump_for_spill_split_recycle(); )
duke@435 524 if( _trip_cnt > 27 ) {
duke@435 525 C->record_method_not_compilable("failed spill-split-recycle sanity check");
duke@435 526 return;
duke@435 527 }
duke@435 528 }
duke@435 529
neliasso@4949 530 if (!_lrg_map.max_lrg_id()) {
neliasso@4949 531 return;
neliasso@4949 532 }
neliasso@4949 533 uint new_max_lrg_id = Split(_lrg_map.max_lrg_id(), &split_arena); // Split spilling LRG everywhere
neliasso@4949 534 _lrg_map.set_max_lrg_id(new_max_lrg_id);
duke@435 535 // Bail out if unique gets too large (ie - unique > MaxNodeLimit - 2*NodeLimitFudgeFactor)
neliasso@4949 536 C->check_node_count(2 * NodeLimitFudgeFactor, "out of nodes after split");
neliasso@4949 537 if (C->failing()) {
neliasso@4949 538 return;
neliasso@4949 539 }
duke@435 540
neliasso@4949 541 compact(); // Compact LRGs; return new lower max lrg
duke@435 542
duke@435 543 // Nuke the live-ness and interference graph and LiveRanGe info
duke@435 544 {
duke@435 545 NOT_PRODUCT( Compile::TracePhase t3("computeLive", &_t_computeLive, TimeCompiler); )
duke@435 546 _live = NULL;
duke@435 547 rm.reset_to_mark(); // Reclaim working storage
duke@435 548 IndexSet::reset_memory(C, &live_arena);
neliasso@4949 549 ifg.init(_lrg_map.max_lrg_id());
duke@435 550
duke@435 551 // Create LiveRanGe array.
duke@435 552 // Intersect register masks for all USEs and DEFs
neliasso@4949 553 gather_lrg_masks(true);
neliasso@4949 554 live.compute(_lrg_map.max_lrg_id());
duke@435 555 _live = &live;
duke@435 556 }
neliasso@4949 557 must_spill = build_ifg_physical(&live_arena);
duke@435 558 _ifg->SquareUp();
duke@435 559 _ifg->Compute_Effective_Degree();
duke@435 560
duke@435 561 // Only do conservative coalescing if requested
neliasso@4949 562 if (OptoCoalesce) {
duke@435 563 // Conservative (and pessimistic) copy coalescing
neliasso@4949 564 PhaseConservativeCoalesce coalesce(*this);
duke@435 565 // Check for few live ranges determines how aggressive coalesce is.
neliasso@4949 566 coalesce.coalesce_driver();
duke@435 567 }
neliasso@4949 568 _lrg_map.compress_uf_map_for_nodes();
duke@435 569 #ifdef ASSERT
kvn@1001 570 verify(&live_arena, true);
duke@435 571 #endif
duke@435 572 cache_lrg_info(); // Count degree of LRGs
duke@435 573
duke@435 574 // Simplify the InterFerence Graph by removing LRGs of low degree.
duke@435 575 // LRGs of low degree are trivially colorable.
duke@435 576 Simplify();
duke@435 577
duke@435 578 // Select colors by re-inserting LRGs back into the IFG in reverse order.
duke@435 579 // Return whether or not something spills.
neliasso@4949 580 spills = Select();
duke@435 581 }
duke@435 582
duke@435 583 // Count number of Simplify-Select trips per coloring success.
duke@435 584 _allocator_attempts += _trip_cnt + 1;
duke@435 585 _allocator_successes += 1;
duke@435 586
duke@435 587 // Peephole remove copies
duke@435 588 post_allocate_copy_removal();
duke@435 589
kvn@1001 590 #ifdef ASSERT
kvn@1001 591 // Veify the graph after RA.
kvn@1001 592 verify(&live_arena);
kvn@1001 593 #endif
kvn@1001 594
duke@435 595 // max_reg is past the largest *register* used.
duke@435 596 // Convert that to a frame_slot number.
neliasso@4949 597 if (_max_reg <= _matcher._new_SP) {
duke@435 598 _framesize = C->out_preserve_stack_slots();
neliasso@4949 599 }
neliasso@4949 600 else {
neliasso@4949 601 _framesize = _max_reg -_matcher._new_SP;
neliasso@4949 602 }
duke@435 603 assert((int)(_matcher._new_SP+_framesize) >= (int)_matcher._out_arg_limit, "framesize must be large enough");
duke@435 604
duke@435 605 // This frame must preserve the required fp alignment
never@854 606 _framesize = round_to(_framesize, Matcher::stack_alignment_in_slots());
duke@435 607 assert( _framesize >= 0 && _framesize <= 1000000, "sanity check" );
duke@435 608 #ifndef PRODUCT
duke@435 609 _total_framesize += _framesize;
neliasso@4949 610 if ((int)_framesize > _max_framesize) {
duke@435 611 _max_framesize = _framesize;
neliasso@4949 612 }
duke@435 613 #endif
duke@435 614
duke@435 615 // Convert CISC spills
duke@435 616 fixup_spills();
duke@435 617
duke@435 618 // Log regalloc results
duke@435 619 CompileLog* log = Compile::current()->log();
duke@435 620 if (log != NULL) {
duke@435 621 log->elem("regalloc attempts='%d' success='%d'", _trip_cnt, !C->failing());
duke@435 622 }
duke@435 623
neliasso@4949 624 if (C->failing()) {
neliasso@4949 625 return;
neliasso@4949 626 }
duke@435 627
neliasso@4949 628 NOT_PRODUCT(C->verify_graph_edges();)
duke@435 629
duke@435 630 // Move important info out of the live_arena to longer lasting storage.
neliasso@4949 631 alloc_node_regs(_lrg_map.size());
neliasso@4949 632 for (uint i=0; i < _lrg_map.size(); i++) {
neliasso@4949 633 if (_lrg_map.live_range_id(i)) { // Live range associated with Node?
neliasso@4949 634 LRG &lrg = lrgs(_lrg_map.live_range_id(i));
kvn@3882 635 if (!lrg.alive()) {
kvn@4007 636 set_bad(i);
kvn@3882 637 } else if (lrg.num_regs() == 1) {
kvn@4007 638 set1(i, lrg.reg());
kvn@4007 639 } else { // Must be a register-set
kvn@4007 640 if (!lrg._fat_proj) { // Must be aligned adjacent register set
duke@435 641 // Live ranges record the highest register in their mask.
duke@435 642 // We want the low register for the AD file writer's convenience.
kvn@4007 643 OptoReg::Name hi = lrg.reg(); // Get hi register
kvn@4007 644 OptoReg::Name lo = OptoReg::add(hi, (1-lrg.num_regs())); // Find lo
kvn@4007 645 // We have to use pair [lo,lo+1] even for wide vectors because
kvn@4007 646 // the rest of code generation works only with pairs. It is safe
kvn@4007 647 // since for registers encoding only 'lo' is used.
kvn@4007 648 // Second reg from pair is used in ScheduleAndBundle on SPARC where
kvn@4007 649 // vector max size is 8 which corresponds to registers pair.
kvn@4007 650 // It is also used in BuildOopMaps but oop operations are not
kvn@4007 651 // vectorized.
kvn@4007 652 set2(i, lo);
duke@435 653 } else { // Misaligned; extract 2 bits
duke@435 654 OptoReg::Name hi = lrg.reg(); // Get hi register
duke@435 655 lrg.Remove(hi); // Yank from mask
duke@435 656 int lo = lrg.mask().find_first_elem(); // Find lo
kvn@4007 657 set_pair(i, hi, lo);
duke@435 658 }
duke@435 659 }
duke@435 660 if( lrg._is_oop ) _node_oops.set(i);
duke@435 661 } else {
kvn@4007 662 set_bad(i);
duke@435 663 }
duke@435 664 }
duke@435 665
duke@435 666 // Done!
duke@435 667 _live = NULL;
duke@435 668 _ifg = NULL;
duke@435 669 C->set_indexSet_arena(NULL); // ResourceArea is at end of scope
duke@435 670 }
duke@435 671
duke@435 672 void PhaseChaitin::de_ssa() {
duke@435 673 // Set initial Names for all Nodes. Most Nodes get the virtual register
duke@435 674 // number. A few get the ZERO live range number. These do not
duke@435 675 // get allocated, but instead rely on correct scheduling to ensure that
duke@435 676 // only one instance is simultaneously live at a time.
duke@435 677 uint lr_counter = 1;
adlertz@5539 678 for( uint i = 0; i < _cfg.number_of_blocks(); i++ ) {
adlertz@5539 679 Block* block = _cfg.get_block(i);
adlertz@5539 680 uint cnt = block->_nodes.size();
duke@435 681
duke@435 682 // Handle all the normal Nodes in the block
duke@435 683 for( uint j = 0; j < cnt; j++ ) {
adlertz@5539 684 Node *n = block->_nodes[j];
duke@435 685 // Pre-color to the zero live range, or pick virtual register
duke@435 686 const RegMask &rm = n->out_RegMask();
neliasso@4949 687 _lrg_map.map(n->_idx, rm.is_NotEmpty() ? lr_counter++ : 0);
duke@435 688 }
duke@435 689 }
duke@435 690 // Reset the Union-Find mapping to be identity
neliasso@4949 691 _lrg_map.reset_uf_map(lr_counter);
duke@435 692 }
duke@435 693
duke@435 694
duke@435 695 // Gather LiveRanGe information, including register masks. Modification of
duke@435 696 // cisc spillable in_RegMasks should not be done before AggressiveCoalesce.
duke@435 697 void PhaseChaitin::gather_lrg_masks( bool after_aggressive ) {
duke@435 698
duke@435 699 // Nail down the frame pointer live range
adlertz@5539 700 uint fp_lrg = _lrg_map.live_range_id(_cfg.get_root_node()->in(1)->in(TypeFunc::FramePtr));
duke@435 701 lrgs(fp_lrg)._cost += 1e12; // Cost is infinite
duke@435 702
duke@435 703 // For all blocks
adlertz@5539 704 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adlertz@5539 705 Block* block = _cfg.get_block(i);
duke@435 706
duke@435 707 // For all instructions
adlertz@5539 708 for (uint j = 1; j < block->_nodes.size(); j++) {
adlertz@5539 709 Node* n = block->_nodes[j];
duke@435 710 uint input_edge_start =1; // Skip control most nodes
adlertz@5539 711 if (n->is_Mach()) {
adlertz@5539 712 input_edge_start = n->as_Mach()->oper_input_base();
adlertz@5539 713 }
duke@435 714 uint idx = n->is_Copy();
duke@435 715
duke@435 716 // Get virtual register number, same as LiveRanGe index
neliasso@4949 717 uint vreg = _lrg_map.live_range_id(n);
adlertz@5539 718 LRG& lrg = lrgs(vreg);
adlertz@5539 719 if (vreg) { // No vreg means un-allocable (e.g. memory)
duke@435 720
duke@435 721 // Collect has-copy bit
adlertz@5539 722 if (idx) {
duke@435 723 lrg._has_copy = 1;
neliasso@4949 724 uint clidx = _lrg_map.live_range_id(n->in(idx));
adlertz@5539 725 LRG& copy_src = lrgs(clidx);
duke@435 726 copy_src._has_copy = 1;
duke@435 727 }
duke@435 728
duke@435 729 // Check for float-vs-int live range (used in register-pressure
duke@435 730 // calculations)
duke@435 731 const Type *n_type = n->bottom_type();
adlertz@5539 732 if (n_type->is_floatingpoint()) {
duke@435 733 lrg._is_float = 1;
adlertz@5539 734 }
duke@435 735
duke@435 736 // Check for twice prior spilling. Once prior spilling might have
duke@435 737 // spilled 'soft', 2nd prior spill should have spilled 'hard' and
duke@435 738 // further spilling is unlikely to make progress.
adlertz@5539 739 if (_spilled_once.test(n->_idx)) {
duke@435 740 lrg._was_spilled1 = 1;
adlertz@5539 741 if (_spilled_twice.test(n->_idx)) {
duke@435 742 lrg._was_spilled2 = 1;
adlertz@5539 743 }
duke@435 744 }
duke@435 745
duke@435 746 #ifndef PRODUCT
duke@435 747 if (trace_spilling() && lrg._def != NULL) {
duke@435 748 // collect defs for MultiDef printing
duke@435 749 if (lrg._defs == NULL) {
kvn@2040 750 lrg._defs = new (_ifg->_arena) GrowableArray<Node*>(_ifg->_arena, 2, 0, NULL);
duke@435 751 lrg._defs->append(lrg._def);
duke@435 752 }
duke@435 753 lrg._defs->append(n);
duke@435 754 }
duke@435 755 #endif
duke@435 756
duke@435 757 // Check for a single def LRG; these can spill nicely
duke@435 758 // via rematerialization. Flag as NULL for no def found
duke@435 759 // yet, or 'n' for single def or -1 for many defs.
duke@435 760 lrg._def = lrg._def ? NodeSentinel : n;
duke@435 761
duke@435 762 // Limit result register mask to acceptable registers
duke@435 763 const RegMask &rm = n->out_RegMask();
duke@435 764 lrg.AND( rm );
duke@435 765
duke@435 766 int ireg = n->ideal_reg();
duke@435 767 assert( !n->bottom_type()->isa_oop_ptr() || ireg == Op_RegP,
duke@435 768 "oops must be in Op_RegP's" );
kvn@3882 769
kvn@3882 770 // Check for vector live range (only if vector register is used).
kvn@3882 771 // On SPARC vector uses RegD which could be misaligned so it is not
kvn@3882 772 // processes as vector in RA.
kvn@3882 773 if (RegMask::is_vector(ireg))
kvn@3882 774 lrg._is_vector = 1;
kvn@3882 775 assert(n_type->isa_vect() == NULL || lrg._is_vector || ireg == Op_RegD,
kvn@3882 776 "vector must be in vector registers");
kvn@3882 777
kvn@3882 778 // Check for bound register masks
kvn@3882 779 const RegMask &lrgmask = lrg.mask();
adlertz@5539 780 if (lrgmask.is_bound(ireg)) {
kvn@3882 781 lrg._is_bound = 1;
adlertz@5539 782 }
kvn@3882 783
kvn@3882 784 // Check for maximum frequency value
adlertz@5539 785 if (lrg._maxfreq < block->_freq) {
adlertz@5539 786 lrg._maxfreq = block->_freq;
adlertz@5539 787 }
kvn@3882 788
duke@435 789 // Check for oop-iness, or long/double
duke@435 790 // Check for multi-kill projection
adlertz@5539 791 switch (ireg) {
duke@435 792 case MachProjNode::fat_proj:
duke@435 793 // Fat projections have size equal to number of registers killed
duke@435 794 lrg.set_num_regs(rm.Size());
duke@435 795 lrg.set_reg_pressure(lrg.num_regs());
duke@435 796 lrg._fat_proj = 1;
duke@435 797 lrg._is_bound = 1;
duke@435 798 break;
duke@435 799 case Op_RegP:
duke@435 800 #ifdef _LP64
duke@435 801 lrg.set_num_regs(2); // Size is 2 stack words
duke@435 802 #else
duke@435 803 lrg.set_num_regs(1); // Size is 1 stack word
duke@435 804 #endif
duke@435 805 // Register pressure is tracked relative to the maximum values
duke@435 806 // suggested for that platform, INTPRESSURE and FLOATPRESSURE,
duke@435 807 // and relative to other types which compete for the same regs.
duke@435 808 //
duke@435 809 // The following table contains suggested values based on the
duke@435 810 // architectures as defined in each .ad file.
duke@435 811 // INTPRESSURE and FLOATPRESSURE may be tuned differently for
duke@435 812 // compile-speed or performance.
duke@435 813 // Note1:
duke@435 814 // SPARC and SPARCV9 reg_pressures are at 2 instead of 1
duke@435 815 // since .ad registers are defined as high and low halves.
duke@435 816 // These reg_pressure values remain compatible with the code
duke@435 817 // in is_high_pressure() which relates get_invalid_mask_size(),
duke@435 818 // Block::_reg_pressure and INTPRESSURE, FLOATPRESSURE.
duke@435 819 // Note2:
duke@435 820 // SPARC -d32 has 24 registers available for integral values,
duke@435 821 // but only 10 of these are safe for 64-bit longs.
duke@435 822 // Using set_reg_pressure(2) for both int and long means
duke@435 823 // the allocator will believe it can fit 26 longs into
duke@435 824 // registers. Using 2 for longs and 1 for ints means the
duke@435 825 // allocator will attempt to put 52 integers into registers.
duke@435 826 // The settings below limit this problem to methods with
duke@435 827 // many long values which are being run on 32-bit SPARC.
duke@435 828 //
duke@435 829 // ------------------- reg_pressure --------------------
duke@435 830 // Each entry is reg_pressure_per_value,number_of_regs
duke@435 831 // RegL RegI RegFlags RegF RegD INTPRESSURE FLOATPRESSURE
duke@435 832 // IA32 2 1 1 1 1 6 6
duke@435 833 // IA64 1 1 1 1 1 50 41
duke@435 834 // SPARC 2 2 2 2 2 48 (24) 52 (26)
duke@435 835 // SPARCV9 2 2 2 2 2 48 (24) 52 (26)
duke@435 836 // AMD64 1 1 1 1 1 14 15
duke@435 837 // -----------------------------------------------------
duke@435 838 #if defined(SPARC)
duke@435 839 lrg.set_reg_pressure(2); // use for v9 as well
duke@435 840 #else
duke@435 841 lrg.set_reg_pressure(1); // normally one value per register
duke@435 842 #endif
duke@435 843 if( n_type->isa_oop_ptr() ) {
duke@435 844 lrg._is_oop = 1;
duke@435 845 }
duke@435 846 break;
duke@435 847 case Op_RegL: // Check for long or double
duke@435 848 case Op_RegD:
duke@435 849 lrg.set_num_regs(2);
duke@435 850 // Define platform specific register pressure
roland@2683 851 #if defined(SPARC) || defined(ARM)
duke@435 852 lrg.set_reg_pressure(2);
duke@435 853 #elif defined(IA32)
duke@435 854 if( ireg == Op_RegL ) {
duke@435 855 lrg.set_reg_pressure(2);
duke@435 856 } else {
duke@435 857 lrg.set_reg_pressure(1);
duke@435 858 }
duke@435 859 #else
duke@435 860 lrg.set_reg_pressure(1); // normally one value per register
duke@435 861 #endif
duke@435 862 // If this def of a double forces a mis-aligned double,
duke@435 863 // flag as '_fat_proj' - really flag as allowing misalignment
duke@435 864 // AND changes how we count interferences. A mis-aligned
duke@435 865 // double can interfere with TWO aligned pairs, or effectively
duke@435 866 // FOUR registers!
kvn@3882 867 if (rm.is_misaligned_pair()) {
duke@435 868 lrg._fat_proj = 1;
duke@435 869 lrg._is_bound = 1;
duke@435 870 }
duke@435 871 break;
duke@435 872 case Op_RegF:
duke@435 873 case Op_RegI:
coleenp@548 874 case Op_RegN:
duke@435 875 case Op_RegFlags:
duke@435 876 case 0: // not an ideal register
duke@435 877 lrg.set_num_regs(1);
duke@435 878 #ifdef SPARC
duke@435 879 lrg.set_reg_pressure(2);
duke@435 880 #else
duke@435 881 lrg.set_reg_pressure(1);
duke@435 882 #endif
duke@435 883 break;
kvn@3882 884 case Op_VecS:
kvn@3882 885 assert(Matcher::vector_size_supported(T_BYTE,4), "sanity");
kvn@3882 886 assert(RegMask::num_registers(Op_VecS) == RegMask::SlotsPerVecS, "sanity");
kvn@3882 887 lrg.set_num_regs(RegMask::SlotsPerVecS);
kvn@3882 888 lrg.set_reg_pressure(1);
kvn@3882 889 break;
kvn@3882 890 case Op_VecD:
kvn@3882 891 assert(Matcher::vector_size_supported(T_FLOAT,RegMask::SlotsPerVecD), "sanity");
kvn@3882 892 assert(RegMask::num_registers(Op_VecD) == RegMask::SlotsPerVecD, "sanity");
kvn@3882 893 assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecD), "vector should be aligned");
kvn@3882 894 lrg.set_num_regs(RegMask::SlotsPerVecD);
kvn@3882 895 lrg.set_reg_pressure(1);
kvn@3882 896 break;
kvn@3882 897 case Op_VecX:
kvn@3882 898 assert(Matcher::vector_size_supported(T_FLOAT,RegMask::SlotsPerVecX), "sanity");
kvn@3882 899 assert(RegMask::num_registers(Op_VecX) == RegMask::SlotsPerVecX, "sanity");
kvn@3882 900 assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecX), "vector should be aligned");
kvn@3882 901 lrg.set_num_regs(RegMask::SlotsPerVecX);
kvn@3882 902 lrg.set_reg_pressure(1);
kvn@3882 903 break;
kvn@3882 904 case Op_VecY:
kvn@3882 905 assert(Matcher::vector_size_supported(T_FLOAT,RegMask::SlotsPerVecY), "sanity");
kvn@3882 906 assert(RegMask::num_registers(Op_VecY) == RegMask::SlotsPerVecY, "sanity");
kvn@3882 907 assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecY), "vector should be aligned");
kvn@3882 908 lrg.set_num_regs(RegMask::SlotsPerVecY);
kvn@3882 909 lrg.set_reg_pressure(1);
kvn@3882 910 break;
duke@435 911 default:
duke@435 912 ShouldNotReachHere();
duke@435 913 }
duke@435 914 }
duke@435 915
duke@435 916 // Now do the same for inputs
duke@435 917 uint cnt = n->req();
duke@435 918 // Setup for CISC SPILLING
duke@435 919 uint inp = (uint)AdlcVMDeps::Not_cisc_spillable;
duke@435 920 if( UseCISCSpill && after_aggressive ) {
duke@435 921 inp = n->cisc_operand();
duke@435 922 if( inp != (uint)AdlcVMDeps::Not_cisc_spillable )
duke@435 923 // Convert operand number to edge index number
duke@435 924 inp = n->as_Mach()->operand_index(inp);
duke@435 925 }
duke@435 926 // Prepare register mask for each input
duke@435 927 for( uint k = input_edge_start; k < cnt; k++ ) {
neliasso@4949 928 uint vreg = _lrg_map.live_range_id(n->in(k));
neliasso@4949 929 if (!vreg) {
neliasso@4949 930 continue;
neliasso@4949 931 }
duke@435 932
duke@435 933 // If this instruction is CISC Spillable, add the flags
duke@435 934 // bit to its appropriate input
duke@435 935 if( UseCISCSpill && after_aggressive && inp == k ) {
duke@435 936 #ifndef PRODUCT
duke@435 937 if( TraceCISCSpill ) {
duke@435 938 tty->print(" use_cisc_RegMask: ");
duke@435 939 n->dump();
duke@435 940 }
duke@435 941 #endif
duke@435 942 n->as_Mach()->use_cisc_RegMask();
duke@435 943 }
duke@435 944
duke@435 945 LRG &lrg = lrgs(vreg);
duke@435 946 // // Testing for floating point code shape
duke@435 947 // Node *test = n->in(k);
duke@435 948 // if( test->is_Mach() ) {
duke@435 949 // MachNode *m = test->as_Mach();
duke@435 950 // int op = m->ideal_Opcode();
duke@435 951 // if (n->is_Call() && (op == Op_AddF || op == Op_MulF) ) {
duke@435 952 // int zzz = 1;
duke@435 953 // }
duke@435 954 // }
duke@435 955
duke@435 956 // Limit result register mask to acceptable registers.
duke@435 957 // Do not limit registers from uncommon uses before
duke@435 958 // AggressiveCoalesce. This effectively pre-virtual-splits
duke@435 959 // around uncommon uses of common defs.
duke@435 960 const RegMask &rm = n->in_RegMask(k);
adlertz@5539 961 if (!after_aggressive && _cfg.get_block_for_node(n->in(k))->_freq > 1000 * block->_freq) {
duke@435 962 // Since we are BEFORE aggressive coalesce, leave the register
duke@435 963 // mask untrimmed by the call. This encourages more coalescing.
duke@435 964 // Later, AFTER aggressive, this live range will have to spill
duke@435 965 // but the spiller handles slow-path calls very nicely.
duke@435 966 } else {
duke@435 967 lrg.AND( rm );
duke@435 968 }
kvn@3882 969
duke@435 970 // Check for bound register masks
duke@435 971 const RegMask &lrgmask = lrg.mask();
kvn@3882 972 int kreg = n->in(k)->ideal_reg();
kvn@3882 973 bool is_vect = RegMask::is_vector(kreg);
kvn@3882 974 assert(n->in(k)->bottom_type()->isa_vect() == NULL ||
kvn@3882 975 is_vect || kreg == Op_RegD,
kvn@3882 976 "vector must be in vector registers");
kvn@3882 977 if (lrgmask.is_bound(kreg))
duke@435 978 lrg._is_bound = 1;
kvn@3882 979
duke@435 980 // If this use of a double forces a mis-aligned double,
duke@435 981 // flag as '_fat_proj' - really flag as allowing misalignment
duke@435 982 // AND changes how we count interferences. A mis-aligned
duke@435 983 // double can interfere with TWO aligned pairs, or effectively
duke@435 984 // FOUR registers!
kvn@3882 985 #ifdef ASSERT
kvn@3882 986 if (is_vect) {
kvn@3882 987 assert(lrgmask.is_aligned_sets(lrg.num_regs()), "vector should be aligned");
kvn@3882 988 assert(!lrg._fat_proj, "sanity");
kvn@3882 989 assert(RegMask::num_registers(kreg) == lrg.num_regs(), "sanity");
kvn@3882 990 }
kvn@3882 991 #endif
kvn@3882 992 if (!is_vect && lrg.num_regs() == 2 && !lrg._fat_proj && rm.is_misaligned_pair()) {
duke@435 993 lrg._fat_proj = 1;
duke@435 994 lrg._is_bound = 1;
duke@435 995 }
duke@435 996 // if the LRG is an unaligned pair, we will have to spill
duke@435 997 // so clear the LRG's register mask if it is not already spilled
kvn@3882 998 if (!is_vect && !n->is_SpillCopy() &&
kvn@3882 999 (lrg._def == NULL || lrg.is_multidef() || !lrg._def->is_SpillCopy()) &&
kvn@3882 1000 lrgmask.is_misaligned_pair()) {
duke@435 1001 lrg.Clear();
duke@435 1002 }
duke@435 1003
duke@435 1004 // Check for maximum frequency value
adlertz@5539 1005 if (lrg._maxfreq < block->_freq) {
adlertz@5539 1006 lrg._maxfreq = block->_freq;
adlertz@5539 1007 }
duke@435 1008
duke@435 1009 } // End for all allocated inputs
duke@435 1010 } // end for all instructions
duke@435 1011 } // end for all blocks
duke@435 1012
duke@435 1013 // Final per-liverange setup
neliasso@4949 1014 for (uint i2 = 0; i2 < _lrg_map.max_lrg_id(); i2++) {
duke@435 1015 LRG &lrg = lrgs(i2);
kvn@3882 1016 assert(!lrg._is_vector || !lrg._fat_proj, "sanity");
kvn@3882 1017 if (lrg.num_regs() > 1 && !lrg._fat_proj) {
kvn@3882 1018 lrg.clear_to_sets();
kvn@3882 1019 }
duke@435 1020 lrg.compute_set_mask_size();
kvn@3882 1021 if (lrg.not_free()) { // Handle case where we lose from the start
duke@435 1022 lrg.set_reg(OptoReg::Name(LRG::SPILL_REG));
duke@435 1023 lrg._direct_conflict = 1;
duke@435 1024 }
duke@435 1025 lrg.set_degree(0); // no neighbors in IFG yet
duke@435 1026 }
duke@435 1027 }
duke@435 1028
duke@435 1029 // Set the was-lo-degree bit. Conservative coalescing should not change the
duke@435 1030 // colorability of the graph. If any live range was of low-degree before
duke@435 1031 // coalescing, it should Simplify. This call sets the was-lo-degree bit.
duke@435 1032 // The bit is checked in Simplify.
duke@435 1033 void PhaseChaitin::set_was_low() {
duke@435 1034 #ifdef ASSERT
neliasso@4949 1035 for (uint i = 1; i < _lrg_map.max_lrg_id(); i++) {
duke@435 1036 int size = lrgs(i).num_regs();
duke@435 1037 uint old_was_lo = lrgs(i)._was_lo;
duke@435 1038 lrgs(i)._was_lo = 0;
duke@435 1039 if( lrgs(i).lo_degree() ) {
duke@435 1040 lrgs(i)._was_lo = 1; // Trivially of low degree
duke@435 1041 } else { // Else check the Brigg's assertion
duke@435 1042 // Brigg's observation is that the lo-degree neighbors of a
duke@435 1043 // hi-degree live range will not interfere with the color choices
duke@435 1044 // of said hi-degree live range. The Simplify reverse-stack-coloring
duke@435 1045 // order takes care of the details. Hence you do not have to count
duke@435 1046 // low-degree neighbors when determining if this guy colors.
duke@435 1047 int briggs_degree = 0;
duke@435 1048 IndexSet *s = _ifg->neighbors(i);
duke@435 1049 IndexSetIterator elements(s);
duke@435 1050 uint lidx;
duke@435 1051 while((lidx = elements.next()) != 0) {
duke@435 1052 if( !lrgs(lidx).lo_degree() )
duke@435 1053 briggs_degree += MAX2(size,lrgs(lidx).num_regs());
duke@435 1054 }
duke@435 1055 if( briggs_degree < lrgs(i).degrees_of_freedom() )
duke@435 1056 lrgs(i)._was_lo = 1; // Low degree via the briggs assertion
duke@435 1057 }
duke@435 1058 assert(old_was_lo <= lrgs(i)._was_lo, "_was_lo may not decrease");
duke@435 1059 }
duke@435 1060 #endif
duke@435 1061 }
duke@435 1062
duke@435 1063 #define REGISTER_CONSTRAINED 16
duke@435 1064
duke@435 1065 // Compute cost/area ratio, in case we spill. Build the lo-degree list.
duke@435 1066 void PhaseChaitin::cache_lrg_info( ) {
duke@435 1067
neliasso@4949 1068 for (uint i = 1; i < _lrg_map.max_lrg_id(); i++) {
duke@435 1069 LRG &lrg = lrgs(i);
duke@435 1070
duke@435 1071 // Check for being of low degree: means we can be trivially colored.
duke@435 1072 // Low degree, dead or must-spill guys just get to simplify right away
duke@435 1073 if( lrg.lo_degree() ||
duke@435 1074 !lrg.alive() ||
duke@435 1075 lrg._must_spill ) {
duke@435 1076 // Split low degree list into those guys that must get a
duke@435 1077 // register and those that can go to register or stack.
duke@435 1078 // The idea is LRGs that can go register or stack color first when
duke@435 1079 // they have a good chance of getting a register. The register-only
duke@435 1080 // lo-degree live ranges always get a register.
duke@435 1081 OptoReg::Name hi_reg = lrg.mask().find_last_elem();
duke@435 1082 if( OptoReg::is_stack(hi_reg)) { // Can go to stack?
duke@435 1083 lrg._next = _lo_stk_degree;
duke@435 1084 _lo_stk_degree = i;
duke@435 1085 } else {
duke@435 1086 lrg._next = _lo_degree;
duke@435 1087 _lo_degree = i;
duke@435 1088 }
duke@435 1089 } else { // Else high degree
duke@435 1090 lrgs(_hi_degree)._prev = i;
duke@435 1091 lrg._next = _hi_degree;
duke@435 1092 lrg._prev = 0;
duke@435 1093 _hi_degree = i;
duke@435 1094 }
duke@435 1095 }
duke@435 1096 }
duke@435 1097
duke@435 1098 // Simplify the IFG by removing LRGs of low degree that have NO copies
duke@435 1099 void PhaseChaitin::Pre_Simplify( ) {
duke@435 1100
duke@435 1101 // Warm up the lo-degree no-copy list
duke@435 1102 int lo_no_copy = 0;
neliasso@4949 1103 for (uint i = 1; i < _lrg_map.max_lrg_id(); i++) {
neliasso@4949 1104 if ((lrgs(i).lo_degree() && !lrgs(i)._has_copy) ||
duke@435 1105 !lrgs(i).alive() ||
neliasso@4949 1106 lrgs(i)._must_spill) {
duke@435 1107 lrgs(i)._next = lo_no_copy;
duke@435 1108 lo_no_copy = i;
duke@435 1109 }
duke@435 1110 }
duke@435 1111
duke@435 1112 while( lo_no_copy ) {
duke@435 1113 uint lo = lo_no_copy;
duke@435 1114 lo_no_copy = lrgs(lo)._next;
duke@435 1115 int size = lrgs(lo).num_regs();
duke@435 1116
duke@435 1117 // Put the simplified guy on the simplified list.
duke@435 1118 lrgs(lo)._next = _simplified;
duke@435 1119 _simplified = lo;
duke@435 1120
duke@435 1121 // Yank this guy from the IFG.
duke@435 1122 IndexSet *adj = _ifg->remove_node( lo );
duke@435 1123
duke@435 1124 // If any neighbors' degrees fall below their number of
duke@435 1125 // allowed registers, then put that neighbor on the low degree
duke@435 1126 // list. Note that 'degree' can only fall and 'numregs' is
duke@435 1127 // unchanged by this action. Thus the two are equal at most once,
duke@435 1128 // so LRGs hit the lo-degree worklists at most once.
duke@435 1129 IndexSetIterator elements(adj);
duke@435 1130 uint neighbor;
duke@435 1131 while ((neighbor = elements.next()) != 0) {
duke@435 1132 LRG *n = &lrgs(neighbor);
duke@435 1133 assert( _ifg->effective_degree(neighbor) == n->degree(), "" );
duke@435 1134
duke@435 1135 // Check for just becoming of-low-degree
duke@435 1136 if( n->just_lo_degree() && !n->_has_copy ) {
duke@435 1137 assert(!(*_ifg->_yanked)[neighbor],"Cannot move to lo degree twice");
duke@435 1138 // Put on lo-degree list
duke@435 1139 n->_next = lo_no_copy;
duke@435 1140 lo_no_copy = neighbor;
duke@435 1141 }
duke@435 1142 }
duke@435 1143 } // End of while lo-degree no_copy worklist not empty
duke@435 1144
duke@435 1145 // No more lo-degree no-copy live ranges to simplify
duke@435 1146 }
duke@435 1147
duke@435 1148 // Simplify the IFG by removing LRGs of low degree.
duke@435 1149 void PhaseChaitin::Simplify( ) {
duke@435 1150
duke@435 1151 while( 1 ) { // Repeat till simplified it all
duke@435 1152 // May want to explore simplifying lo_degree before _lo_stk_degree.
duke@435 1153 // This might result in more spills coloring into registers during
duke@435 1154 // Select().
duke@435 1155 while( _lo_degree || _lo_stk_degree ) {
duke@435 1156 // If possible, pull from lo_stk first
duke@435 1157 uint lo;
duke@435 1158 if( _lo_degree ) {
duke@435 1159 lo = _lo_degree;
duke@435 1160 _lo_degree = lrgs(lo)._next;
duke@435 1161 } else {
duke@435 1162 lo = _lo_stk_degree;
duke@435 1163 _lo_stk_degree = lrgs(lo)._next;
duke@435 1164 }
duke@435 1165
duke@435 1166 // Put the simplified guy on the simplified list.
duke@435 1167 lrgs(lo)._next = _simplified;
duke@435 1168 _simplified = lo;
duke@435 1169 // If this guy is "at risk" then mark his current neighbors
duke@435 1170 if( lrgs(lo)._at_risk ) {
duke@435 1171 IndexSetIterator elements(_ifg->neighbors(lo));
duke@435 1172 uint datum;
duke@435 1173 while ((datum = elements.next()) != 0) {
duke@435 1174 lrgs(datum)._risk_bias = lo;
duke@435 1175 }
duke@435 1176 }
duke@435 1177
duke@435 1178 // Yank this guy from the IFG.
duke@435 1179 IndexSet *adj = _ifg->remove_node( lo );
duke@435 1180
duke@435 1181 // If any neighbors' degrees fall below their number of
duke@435 1182 // allowed registers, then put that neighbor on the low degree
duke@435 1183 // list. Note that 'degree' can only fall and 'numregs' is
duke@435 1184 // unchanged by this action. Thus the two are equal at most once,
duke@435 1185 // so LRGs hit the lo-degree worklist at most once.
duke@435 1186 IndexSetIterator elements(adj);
duke@435 1187 uint neighbor;
duke@435 1188 while ((neighbor = elements.next()) != 0) {
duke@435 1189 LRG *n = &lrgs(neighbor);
duke@435 1190 #ifdef ASSERT
kvn@985 1191 if( VerifyOpto || VerifyRegisterAllocator ) {
duke@435 1192 assert( _ifg->effective_degree(neighbor) == n->degree(), "" );
duke@435 1193 }
duke@435 1194 #endif
duke@435 1195
duke@435 1196 // Check for just becoming of-low-degree just counting registers.
duke@435 1197 // _must_spill live ranges are already on the low degree list.
duke@435 1198 if( n->just_lo_degree() && !n->_must_spill ) {
duke@435 1199 assert(!(*_ifg->_yanked)[neighbor],"Cannot move to lo degree twice");
duke@435 1200 // Pull from hi-degree list
duke@435 1201 uint prev = n->_prev;
duke@435 1202 uint next = n->_next;
duke@435 1203 if( prev ) lrgs(prev)._next = next;
duke@435 1204 else _hi_degree = next;
duke@435 1205 lrgs(next)._prev = prev;
duke@435 1206 n->_next = _lo_degree;
duke@435 1207 _lo_degree = neighbor;
duke@435 1208 }
duke@435 1209 }
duke@435 1210 } // End of while lo-degree/lo_stk_degree worklist not empty
duke@435 1211
duke@435 1212 // Check for got everything: is hi-degree list empty?
duke@435 1213 if( !_hi_degree ) break;
duke@435 1214
duke@435 1215 // Time to pick a potential spill guy
duke@435 1216 uint lo_score = _hi_degree;
duke@435 1217 double score = lrgs(lo_score).score();
duke@435 1218 double area = lrgs(lo_score)._area;
kvn@1443 1219 double cost = lrgs(lo_score)._cost;
kvn@1443 1220 bool bound = lrgs(lo_score)._is_bound;
duke@435 1221
duke@435 1222 // Find cheapest guy
duke@435 1223 debug_only( int lo_no_simplify=0; );
kvn@1447 1224 for( uint i = _hi_degree; i; i = lrgs(i)._next ) {
duke@435 1225 assert( !(*_ifg->_yanked)[i], "" );
duke@435 1226 // It's just vaguely possible to move hi-degree to lo-degree without
duke@435 1227 // going through a just-lo-degree stage: If you remove a double from
duke@435 1228 // a float live range it's degree will drop by 2 and you can skip the
duke@435 1229 // just-lo-degree stage. It's very rare (shows up after 5000+ methods
duke@435 1230 // in -Xcomp of Java2Demo). So just choose this guy to simplify next.
duke@435 1231 if( lrgs(i).lo_degree() ) {
duke@435 1232 lo_score = i;
duke@435 1233 break;
duke@435 1234 }
duke@435 1235 debug_only( if( lrgs(i)._was_lo ) lo_no_simplify=i; );
duke@435 1236 double iscore = lrgs(i).score();
duke@435 1237 double iarea = lrgs(i)._area;
kvn@1443 1238 double icost = lrgs(i)._cost;
kvn@1443 1239 bool ibound = lrgs(i)._is_bound;
duke@435 1240
duke@435 1241 // Compare cost/area of i vs cost/area of lo_score. Smaller cost/area
duke@435 1242 // wins. Ties happen because all live ranges in question have spilled
duke@435 1243 // a few times before and the spill-score adds a huge number which
duke@435 1244 // washes out the low order bits. We are choosing the lesser of 2
duke@435 1245 // evils; in this case pick largest area to spill.
kvn@1443 1246 // Ties also happen when live ranges are defined and used only inside
kvn@1443 1247 // one block. In which case their area is 0 and score set to max.
kvn@1443 1248 // In such case choose bound live range over unbound to free registers
kvn@1443 1249 // or with smaller cost to spill.
duke@435 1250 if( iscore < score ||
kvn@1443 1251 (iscore == score && iarea > area && lrgs(lo_score)._was_spilled2) ||
kvn@1443 1252 (iscore == score && iarea == area &&
kvn@1443 1253 ( (ibound && !bound) || ibound == bound && (icost < cost) )) ) {
duke@435 1254 lo_score = i;
duke@435 1255 score = iscore;
duke@435 1256 area = iarea;
kvn@1443 1257 cost = icost;
kvn@1443 1258 bound = ibound;
duke@435 1259 }
duke@435 1260 }
duke@435 1261 LRG *lo_lrg = &lrgs(lo_score);
duke@435 1262 // The live range we choose for spilling is either hi-degree, or very
duke@435 1263 // rarely it can be low-degree. If we choose a hi-degree live range
duke@435 1264 // there better not be any lo-degree choices.
duke@435 1265 assert( lo_lrg->lo_degree() || !lo_no_simplify, "Live range was lo-degree before coalesce; should simplify" );
duke@435 1266
duke@435 1267 // Pull from hi-degree list
duke@435 1268 uint prev = lo_lrg->_prev;
duke@435 1269 uint next = lo_lrg->_next;
duke@435 1270 if( prev ) lrgs(prev)._next = next;
duke@435 1271 else _hi_degree = next;
duke@435 1272 lrgs(next)._prev = prev;
duke@435 1273 // Jam him on the lo-degree list, despite his high degree.
duke@435 1274 // Maybe he'll get a color, and maybe he'll spill.
duke@435 1275 // Only Select() will know.
duke@435 1276 lrgs(lo_score)._at_risk = true;
duke@435 1277 _lo_degree = lo_score;
duke@435 1278 lo_lrg->_next = 0;
duke@435 1279
duke@435 1280 } // End of while not simplified everything
duke@435 1281
duke@435 1282 }
duke@435 1283
kvn@4007 1284 // Is 'reg' register legal for 'lrg'?
kvn@4007 1285 static bool is_legal_reg(LRG &lrg, OptoReg::Name reg, int chunk) {
kvn@4007 1286 if (reg >= chunk && reg < (chunk + RegMask::CHUNK_SIZE) &&
kvn@4007 1287 lrg.mask().Member(OptoReg::add(reg,-chunk))) {
kvn@4007 1288 // RA uses OptoReg which represent the highest element of a registers set.
kvn@4007 1289 // For example, vectorX (128bit) on x86 uses [XMM,XMMb,XMMc,XMMd] set
kvn@4007 1290 // in which XMMd is used by RA to represent such vectors. A double value
kvn@4007 1291 // uses [XMM,XMMb] pairs and XMMb is used by RA for it.
kvn@4007 1292 // The register mask uses largest bits set of overlapping register sets.
kvn@4007 1293 // On x86 with AVX it uses 8 bits for each XMM registers set.
kvn@4007 1294 //
kvn@4007 1295 // The 'lrg' already has cleared-to-set register mask (done in Select()
kvn@4007 1296 // before calling choose_color()). Passing mask.Member(reg) check above
kvn@4007 1297 // indicates that the size (num_regs) of 'reg' set is less or equal to
kvn@4007 1298 // 'lrg' set size.
kvn@4007 1299 // For set size 1 any register which is member of 'lrg' mask is legal.
kvn@4007 1300 if (lrg.num_regs()==1)
kvn@4007 1301 return true;
kvn@4007 1302 // For larger sets only an aligned register with the same set size is legal.
kvn@4007 1303 int mask = lrg.num_regs()-1;
kvn@4007 1304 if ((reg&mask) == mask)
kvn@4007 1305 return true;
kvn@4007 1306 }
kvn@4007 1307 return false;
kvn@4007 1308 }
kvn@4007 1309
duke@435 1310 // Choose a color using the biasing heuristic
duke@435 1311 OptoReg::Name PhaseChaitin::bias_color( LRG &lrg, int chunk ) {
duke@435 1312
duke@435 1313 // Check for "at_risk" LRG's
neliasso@4949 1314 uint risk_lrg = _lrg_map.find(lrg._risk_bias);
duke@435 1315 if( risk_lrg != 0 ) {
duke@435 1316 // Walk the colored neighbors of the "at_risk" candidate
duke@435 1317 // Choose a color which is both legal and already taken by a neighbor
duke@435 1318 // of the "at_risk" candidate in order to improve the chances of the
duke@435 1319 // "at_risk" candidate of coloring
duke@435 1320 IndexSetIterator elements(_ifg->neighbors(risk_lrg));
duke@435 1321 uint datum;
duke@435 1322 while ((datum = elements.next()) != 0) {
duke@435 1323 OptoReg::Name reg = lrgs(datum).reg();
duke@435 1324 // If this LRG's register is legal for us, choose it
kvn@4007 1325 if (is_legal_reg(lrg, reg, chunk))
duke@435 1326 return reg;
duke@435 1327 }
duke@435 1328 }
duke@435 1329
neliasso@4949 1330 uint copy_lrg = _lrg_map.find(lrg._copy_bias);
duke@435 1331 if( copy_lrg != 0 ) {
duke@435 1332 // If he has a color,
duke@435 1333 if( !(*(_ifg->_yanked))[copy_lrg] ) {
duke@435 1334 OptoReg::Name reg = lrgs(copy_lrg).reg();
duke@435 1335 // And it is legal for you,
kvn@4007 1336 if (is_legal_reg(lrg, reg, chunk))
duke@435 1337 return reg;
duke@435 1338 } else if( chunk == 0 ) {
duke@435 1339 // Choose a color which is legal for him
duke@435 1340 RegMask tempmask = lrg.mask();
duke@435 1341 tempmask.AND(lrgs(copy_lrg).mask());
kvn@3882 1342 tempmask.clear_to_sets(lrg.num_regs());
kvn@3882 1343 OptoReg::Name reg = tempmask.find_first_set(lrg.num_regs());
kvn@3882 1344 if (OptoReg::is_valid(reg))
duke@435 1345 return reg;
duke@435 1346 }
duke@435 1347 }
duke@435 1348
duke@435 1349 // If no bias info exists, just go with the register selection ordering
kvn@3882 1350 if (lrg._is_vector || lrg.num_regs() == 2) {
kvn@3882 1351 // Find an aligned set
kvn@3882 1352 return OptoReg::add(lrg.mask().find_first_set(lrg.num_regs()),chunk);
duke@435 1353 }
duke@435 1354
duke@435 1355 // CNC - Fun hack. Alternate 1st and 2nd selection. Enables post-allocate
duke@435 1356 // copy removal to remove many more copies, by preventing a just-assigned
duke@435 1357 // register from being repeatedly assigned.
duke@435 1358 OptoReg::Name reg = lrg.mask().find_first_elem();
duke@435 1359 if( (++_alternate & 1) && OptoReg::is_valid(reg) ) {
duke@435 1360 // This 'Remove; find; Insert' idiom is an expensive way to find the
duke@435 1361 // SECOND element in the mask.
duke@435 1362 lrg.Remove(reg);
duke@435 1363 OptoReg::Name reg2 = lrg.mask().find_first_elem();
duke@435 1364 lrg.Insert(reg);
duke@435 1365 if( OptoReg::is_reg(reg2))
duke@435 1366 reg = reg2;
duke@435 1367 }
duke@435 1368 return OptoReg::add( reg, chunk );
duke@435 1369 }
duke@435 1370
duke@435 1371 // Choose a color in the current chunk
duke@435 1372 OptoReg::Name PhaseChaitin::choose_color( LRG &lrg, int chunk ) {
duke@435 1373 assert( C->in_preserve_stack_slots() == 0 || chunk != 0 || lrg._is_bound || lrg.mask().is_bound1() || !lrg.mask().Member(OptoReg::Name(_matcher._old_SP-1)), "must not allocate stack0 (inside preserve area)");
duke@435 1374 assert(C->out_preserve_stack_slots() == 0 || chunk != 0 || lrg._is_bound || lrg.mask().is_bound1() || !lrg.mask().Member(OptoReg::Name(_matcher._old_SP+0)), "must not allocate stack0 (inside preserve area)");
duke@435 1375
duke@435 1376 if( lrg.num_regs() == 1 || // Common Case
duke@435 1377 !lrg._fat_proj ) // Aligned+adjacent pairs ok
duke@435 1378 // Use a heuristic to "bias" the color choice
duke@435 1379 return bias_color(lrg, chunk);
duke@435 1380
kvn@3882 1381 assert(!lrg._is_vector, "should be not vector here" );
duke@435 1382 assert( lrg.num_regs() >= 2, "dead live ranges do not color" );
duke@435 1383
duke@435 1384 // Fat-proj case or misaligned double argument.
duke@435 1385 assert(lrg.compute_mask_size() == lrg.num_regs() ||
duke@435 1386 lrg.num_regs() == 2,"fat projs exactly color" );
duke@435 1387 assert( !chunk, "always color in 1st chunk" );
duke@435 1388 // Return the highest element in the set.
duke@435 1389 return lrg.mask().find_last_elem();
duke@435 1390 }
duke@435 1391
duke@435 1392 // Select colors by re-inserting LRGs back into the IFG. LRGs are re-inserted
duke@435 1393 // in reverse order of removal. As long as nothing of hi-degree was yanked,
duke@435 1394 // everything going back is guaranteed a color. Select that color. If some
duke@435 1395 // hi-degree LRG cannot get a color then we record that we must spill.
duke@435 1396 uint PhaseChaitin::Select( ) {
duke@435 1397 uint spill_reg = LRG::SPILL_REG;
duke@435 1398 _max_reg = OptoReg::Name(0); // Past max register used
duke@435 1399 while( _simplified ) {
duke@435 1400 // Pull next LRG from the simplified list - in reverse order of removal
duke@435 1401 uint lidx = _simplified;
duke@435 1402 LRG *lrg = &lrgs(lidx);
duke@435 1403 _simplified = lrg->_next;
duke@435 1404
duke@435 1405
duke@435 1406 #ifndef PRODUCT
duke@435 1407 if (trace_spilling()) {
duke@435 1408 ttyLocker ttyl;
duke@435 1409 tty->print_cr("L%d selecting degree %d degrees_of_freedom %d", lidx, lrg->degree(),
duke@435 1410 lrg->degrees_of_freedom());
duke@435 1411 lrg->dump();
duke@435 1412 }
duke@435 1413 #endif
duke@435 1414
duke@435 1415 // Re-insert into the IFG
duke@435 1416 _ifg->re_insert(lidx);
duke@435 1417 if( !lrg->alive() ) continue;
duke@435 1418 // capture allstackedness flag before mask is hacked
duke@435 1419 const int is_allstack = lrg->mask().is_AllStack();
duke@435 1420
duke@435 1421 // Yeah, yeah, yeah, I know, I know. I can refactor this
duke@435 1422 // to avoid the GOTO, although the refactored code will not
duke@435 1423 // be much clearer. We arrive here IFF we have a stack-based
duke@435 1424 // live range that cannot color in the current chunk, and it
duke@435 1425 // has to move into the next free stack chunk.
duke@435 1426 int chunk = 0; // Current chunk is first chunk
duke@435 1427 retry_next_chunk:
duke@435 1428
duke@435 1429 // Remove neighbor colors
duke@435 1430 IndexSet *s = _ifg->neighbors(lidx);
duke@435 1431
duke@435 1432 debug_only(RegMask orig_mask = lrg->mask();)
duke@435 1433 IndexSetIterator elements(s);
duke@435 1434 uint neighbor;
duke@435 1435 while ((neighbor = elements.next()) != 0) {
duke@435 1436 // Note that neighbor might be a spill_reg. In this case, exclusion
duke@435 1437 // of its color will be a no-op, since the spill_reg chunk is in outer
duke@435 1438 // space. Also, if neighbor is in a different chunk, this exclusion
duke@435 1439 // will be a no-op. (Later on, if lrg runs out of possible colors in
duke@435 1440 // its chunk, a new chunk of color may be tried, in which case
duke@435 1441 // examination of neighbors is started again, at retry_next_chunk.)
duke@435 1442 LRG &nlrg = lrgs(neighbor);
duke@435 1443 OptoReg::Name nreg = nlrg.reg();
duke@435 1444 // Only subtract masks in the same chunk
duke@435 1445 if( nreg >= chunk && nreg < chunk + RegMask::CHUNK_SIZE ) {
duke@435 1446 #ifndef PRODUCT
duke@435 1447 uint size = lrg->mask().Size();
duke@435 1448 RegMask rm = lrg->mask();
duke@435 1449 #endif
duke@435 1450 lrg->SUBTRACT(nlrg.mask());
duke@435 1451 #ifndef PRODUCT
duke@435 1452 if (trace_spilling() && lrg->mask().Size() != size) {
duke@435 1453 ttyLocker ttyl;
duke@435 1454 tty->print("L%d ", lidx);
duke@435 1455 rm.dump();
duke@435 1456 tty->print(" intersected L%d ", neighbor);
duke@435 1457 nlrg.mask().dump();
duke@435 1458 tty->print(" removed ");
duke@435 1459 rm.SUBTRACT(lrg->mask());
duke@435 1460 rm.dump();
duke@435 1461 tty->print(" leaving ");
duke@435 1462 lrg->mask().dump();
duke@435 1463 tty->cr();
duke@435 1464 }
duke@435 1465 #endif
duke@435 1466 }
duke@435 1467 }
duke@435 1468 //assert(is_allstack == lrg->mask().is_AllStack(), "nbrs must not change AllStackedness");
duke@435 1469 // Aligned pairs need aligned masks
kvn@3882 1470 assert(!lrg->_is_vector || !lrg->_fat_proj, "sanity");
kvn@3882 1471 if (lrg->num_regs() > 1 && !lrg->_fat_proj) {
kvn@3882 1472 lrg->clear_to_sets();
kvn@3882 1473 }
duke@435 1474
duke@435 1475 // Check if a color is available and if so pick the color
duke@435 1476 OptoReg::Name reg = choose_color( *lrg, chunk );
duke@435 1477 #ifdef SPARC
duke@435 1478 debug_only(lrg->compute_set_mask_size());
kvn@3882 1479 assert(lrg->num_regs() < 2 || lrg->is_bound() || is_even(reg-1), "allocate all doubles aligned");
duke@435 1480 #endif
duke@435 1481
duke@435 1482 //---------------
duke@435 1483 // If we fail to color and the AllStack flag is set, trigger
duke@435 1484 // a chunk-rollover event
duke@435 1485 if(!OptoReg::is_valid(OptoReg::add(reg,-chunk)) && is_allstack) {
duke@435 1486 // Bump register mask up to next stack chunk
duke@435 1487 chunk += RegMask::CHUNK_SIZE;
duke@435 1488 lrg->Set_All();
duke@435 1489
duke@435 1490 goto retry_next_chunk;
duke@435 1491 }
duke@435 1492
duke@435 1493 //---------------
duke@435 1494 // Did we get a color?
duke@435 1495 else if( OptoReg::is_valid(reg)) {
duke@435 1496 #ifndef PRODUCT
duke@435 1497 RegMask avail_rm = lrg->mask();
duke@435 1498 #endif
duke@435 1499
duke@435 1500 // Record selected register
duke@435 1501 lrg->set_reg(reg);
duke@435 1502
duke@435 1503 if( reg >= _max_reg ) // Compute max register limit
duke@435 1504 _max_reg = OptoReg::add(reg,1);
duke@435 1505 // Fold reg back into normal space
duke@435 1506 reg = OptoReg::add(reg,-chunk);
duke@435 1507
duke@435 1508 // If the live range is not bound, then we actually had some choices
duke@435 1509 // to make. In this case, the mask has more bits in it than the colors
twisti@1040 1510 // chosen. Restrict the mask to just what was picked.
kvn@3882 1511 int n_regs = lrg->num_regs();
kvn@3882 1512 assert(!lrg->_is_vector || !lrg->_fat_proj, "sanity");
kvn@3882 1513 if (n_regs == 1 || !lrg->_fat_proj) {
kvn@3882 1514 assert(!lrg->_is_vector || n_regs <= RegMask::SlotsPerVecY, "sanity");
duke@435 1515 lrg->Clear(); // Clear the mask
duke@435 1516 lrg->Insert(reg); // Set regmask to match selected reg
kvn@3882 1517 // For vectors and pairs, also insert the low bit of the pair
kvn@3882 1518 for (int i = 1; i < n_regs; i++)
kvn@3882 1519 lrg->Insert(OptoReg::add(reg,-i));
kvn@3882 1520 lrg->set_mask_size(n_regs);
duke@435 1521 } else { // Else fatproj
duke@435 1522 // mask must be equal to fatproj bits, by definition
duke@435 1523 }
duke@435 1524 #ifndef PRODUCT
duke@435 1525 if (trace_spilling()) {
duke@435 1526 ttyLocker ttyl;
duke@435 1527 tty->print("L%d selected ", lidx);
duke@435 1528 lrg->mask().dump();
duke@435 1529 tty->print(" from ");
duke@435 1530 avail_rm.dump();
duke@435 1531 tty->cr();
duke@435 1532 }
duke@435 1533 #endif
duke@435 1534 // Note that reg is the highest-numbered register in the newly-bound mask.
duke@435 1535 } // end color available case
duke@435 1536
duke@435 1537 //---------------
duke@435 1538 // Live range is live and no colors available
duke@435 1539 else {
duke@435 1540 assert( lrg->alive(), "" );
never@730 1541 assert( !lrg->_fat_proj || lrg->is_multidef() ||
duke@435 1542 lrg->_def->outcnt() > 0, "fat_proj cannot spill");
duke@435 1543 assert( !orig_mask.is_AllStack(), "All Stack does not spill" );
duke@435 1544
duke@435 1545 // Assign the special spillreg register
duke@435 1546 lrg->set_reg(OptoReg::Name(spill_reg++));
duke@435 1547 // Do not empty the regmask; leave mask_size lying around
duke@435 1548 // for use during Spilling
duke@435 1549 #ifndef PRODUCT
duke@435 1550 if( trace_spilling() ) {
duke@435 1551 ttyLocker ttyl;
duke@435 1552 tty->print("L%d spilling with neighbors: ", lidx);
duke@435 1553 s->dump();
duke@435 1554 debug_only(tty->print(" original mask: "));
duke@435 1555 debug_only(orig_mask.dump());
duke@435 1556 dump_lrg(lidx);
duke@435 1557 }
duke@435 1558 #endif
duke@435 1559 } // end spill case
duke@435 1560
duke@435 1561 }
duke@435 1562
duke@435 1563 return spill_reg-LRG::SPILL_REG; // Return number of spills
duke@435 1564 }
duke@435 1565
duke@435 1566 // Copy 'was_spilled'-edness from the source Node to the dst Node.
duke@435 1567 void PhaseChaitin::copy_was_spilled( Node *src, Node *dst ) {
duke@435 1568 if( _spilled_once.test(src->_idx) ) {
duke@435 1569 _spilled_once.set(dst->_idx);
neliasso@4949 1570 lrgs(_lrg_map.find(dst))._was_spilled1 = 1;
duke@435 1571 if( _spilled_twice.test(src->_idx) ) {
duke@435 1572 _spilled_twice.set(dst->_idx);
neliasso@4949 1573 lrgs(_lrg_map.find(dst))._was_spilled2 = 1;
duke@435 1574 }
duke@435 1575 }
duke@435 1576 }
duke@435 1577
duke@435 1578 // Set the 'spilled_once' or 'spilled_twice' flag on a node.
duke@435 1579 void PhaseChaitin::set_was_spilled( Node *n ) {
duke@435 1580 if( _spilled_once.test_set(n->_idx) )
duke@435 1581 _spilled_twice.set(n->_idx);
duke@435 1582 }
duke@435 1583
duke@435 1584 // Convert Ideal spill instructions into proper FramePtr + offset Loads and
duke@435 1585 // Stores. Use-def chains are NOT preserved, but Node->LRG->reg maps are.
duke@435 1586 void PhaseChaitin::fixup_spills() {
duke@435 1587 // This function does only cisc spill work.
duke@435 1588 if( !UseCISCSpill ) return;
duke@435 1589
duke@435 1590 NOT_PRODUCT( Compile::TracePhase t3("fixupSpills", &_t_fixupSpills, TimeCompiler); )
duke@435 1591
duke@435 1592 // Grab the Frame Pointer
adlertz@5539 1593 Node *fp = _cfg.get_root_block()->head()->in(1)->in(TypeFunc::FramePtr);
duke@435 1594
duke@435 1595 // For all blocks
adlertz@5539 1596 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adlertz@5539 1597 Block* block = _cfg.get_block(i);
duke@435 1598
duke@435 1599 // For all instructions in block
adlertz@5539 1600 uint last_inst = block->end_idx();
adlertz@5539 1601 for (uint j = 1; j <= last_inst; j++) {
adlertz@5539 1602 Node* n = block->_nodes[j];
duke@435 1603
duke@435 1604 // Dead instruction???
duke@435 1605 assert( n->outcnt() != 0 ||// Nothing dead after post alloc
duke@435 1606 C->top() == n || // Or the random TOP node
duke@435 1607 n->is_Proj(), // Or a fat-proj kill node
duke@435 1608 "No dead instructions after post-alloc" );
duke@435 1609
duke@435 1610 int inp = n->cisc_operand();
duke@435 1611 if( inp != AdlcVMDeps::Not_cisc_spillable ) {
duke@435 1612 // Convert operand number to edge index number
duke@435 1613 MachNode *mach = n->as_Mach();
duke@435 1614 inp = mach->operand_index(inp);
duke@435 1615 Node *src = n->in(inp); // Value to load or store
neliasso@4949 1616 LRG &lrg_cisc = lrgs(_lrg_map.find_const(src));
duke@435 1617 OptoReg::Name src_reg = lrg_cisc.reg();
duke@435 1618 // Doubles record the HIGH register of an adjacent pair.
duke@435 1619 src_reg = OptoReg::add(src_reg,1-lrg_cisc.num_regs());
duke@435 1620 if( OptoReg::is_stack(src_reg) ) { // If input is on stack
duke@435 1621 // This is a CISC Spill, get stack offset and construct new node
duke@435 1622 #ifndef PRODUCT
duke@435 1623 if( TraceCISCSpill ) {
duke@435 1624 tty->print(" reg-instr: ");
duke@435 1625 n->dump();
duke@435 1626 }
duke@435 1627 #endif
duke@435 1628 int stk_offset = reg2offset(src_reg);
duke@435 1629 // Bailout if we might exceed node limit when spilling this instruction
duke@435 1630 C->check_node_count(0, "out of nodes fixing spills");
duke@435 1631 if (C->failing()) return;
duke@435 1632 // Transform node
duke@435 1633 MachNode *cisc = mach->cisc_version(stk_offset, C)->as_Mach();
duke@435 1634 cisc->set_req(inp,fp); // Base register is frame pointer
duke@435 1635 if( cisc->oper_input_base() > 1 && mach->oper_input_base() <= 1 ) {
duke@435 1636 assert( cisc->oper_input_base() == 2, "Only adding one edge");
duke@435 1637 cisc->ins_req(1,src); // Requires a memory edge
duke@435 1638 }
adlertz@5539 1639 block->_nodes.map(j,cisc); // Insert into basic block
bharadwaj@4315 1640 n->subsume_by(cisc, C); // Correct graph
duke@435 1641 //
duke@435 1642 ++_used_cisc_instructions;
duke@435 1643 #ifndef PRODUCT
duke@435 1644 if( TraceCISCSpill ) {
duke@435 1645 tty->print(" cisc-instr: ");
duke@435 1646 cisc->dump();
duke@435 1647 }
duke@435 1648 #endif
duke@435 1649 } else {
duke@435 1650 #ifndef PRODUCT
duke@435 1651 if( TraceCISCSpill ) {
duke@435 1652 tty->print(" using reg-instr: ");
duke@435 1653 n->dump();
duke@435 1654 }
duke@435 1655 #endif
duke@435 1656 ++_unused_cisc_instructions; // input can be on stack
duke@435 1657 }
duke@435 1658 }
duke@435 1659
duke@435 1660 } // End of for all instructions
duke@435 1661
duke@435 1662 } // End of for all blocks
duke@435 1663 }
duke@435 1664
duke@435 1665 // Helper to stretch above; recursively discover the base Node for a
duke@435 1666 // given derived Node. Easy for AddP-related machine nodes, but needs
duke@435 1667 // to be recursive for derived Phis.
duke@435 1668 Node *PhaseChaitin::find_base_for_derived( Node **derived_base_map, Node *derived, uint &maxlrg ) {
duke@435 1669 // See if already computed; if so return it
duke@435 1670 if( derived_base_map[derived->_idx] )
duke@435 1671 return derived_base_map[derived->_idx];
duke@435 1672
duke@435 1673 // See if this happens to be a base.
duke@435 1674 // NOTE: we use TypePtr instead of TypeOopPtr because we can have
duke@435 1675 // pointers derived from NULL! These are always along paths that
duke@435 1676 // can't happen at run-time but the optimizer cannot deduce it so
duke@435 1677 // we have to handle it gracefully.
kvn@1164 1678 assert(!derived->bottom_type()->isa_narrowoop() ||
kvn@1164 1679 derived->bottom_type()->make_ptr()->is_ptr()->_offset == 0, "sanity");
duke@435 1680 const TypePtr *tj = derived->bottom_type()->isa_ptr();
duke@435 1681 // If its an OOP with a non-zero offset, then it is derived.
kvn@1164 1682 if( tj == NULL || tj->_offset == 0 ) {
duke@435 1683 derived_base_map[derived->_idx] = derived;
duke@435 1684 return derived;
duke@435 1685 }
duke@435 1686 // Derived is NULL+offset? Base is NULL!
duke@435 1687 if( derived->is_Con() ) {
kvn@1164 1688 Node *base = _matcher.mach_null();
kvn@1164 1689 assert(base != NULL, "sanity");
kvn@1164 1690 if (base->in(0) == NULL) {
kvn@1164 1691 // Initialize it once and make it shared:
kvn@1164 1692 // set control to _root and place it into Start block
kvn@1164 1693 // (where top() node is placed).
adlertz@5539 1694 base->init_req(0, _cfg.get_root_node());
adlertz@5509 1695 Block *startb = _cfg.get_block_for_node(C->top());
kvn@1164 1696 startb->_nodes.insert(startb->find_node(C->top()), base );
adlertz@5509 1697 _cfg.map_node_to_block(base, startb);
neliasso@4949 1698 assert(_lrg_map.live_range_id(base) == 0, "should not have LRG yet");
kvn@1164 1699 }
neliasso@4949 1700 if (_lrg_map.live_range_id(base) == 0) {
kvn@1164 1701 new_lrg(base, maxlrg++);
kvn@1164 1702 }
adlertz@5539 1703 assert(base->in(0) == _cfg.get_root_node() && _cfg.get_block_for_node(base) == _cfg.get_block_for_node(C->top()), "base NULL should be shared");
duke@435 1704 derived_base_map[derived->_idx] = base;
duke@435 1705 return base;
duke@435 1706 }
duke@435 1707
duke@435 1708 // Check for AddP-related opcodes
neliasso@4949 1709 if (!derived->is_Phi()) {
kvn@3971 1710 assert(derived->as_Mach()->ideal_Opcode() == Op_AddP, err_msg_res("but is: %s", derived->Name()));
duke@435 1711 Node *base = derived->in(AddPNode::Base);
duke@435 1712 derived_base_map[derived->_idx] = base;
duke@435 1713 return base;
duke@435 1714 }
duke@435 1715
duke@435 1716 // Recursively find bases for Phis.
duke@435 1717 // First check to see if we can avoid a base Phi here.
duke@435 1718 Node *base = find_base_for_derived( derived_base_map, derived->in(1),maxlrg);
duke@435 1719 uint i;
duke@435 1720 for( i = 2; i < derived->req(); i++ )
duke@435 1721 if( base != find_base_for_derived( derived_base_map,derived->in(i),maxlrg))
duke@435 1722 break;
duke@435 1723 // Went to the end without finding any different bases?
duke@435 1724 if( i == derived->req() ) { // No need for a base Phi here
duke@435 1725 derived_base_map[derived->_idx] = base;
duke@435 1726 return base;
duke@435 1727 }
duke@435 1728
duke@435 1729 // Now we see we need a base-Phi here to merge the bases
kvn@1164 1730 const Type *t = base->bottom_type();
kvn@4115 1731 base = new (C) PhiNode( derived->in(0), t );
kvn@1164 1732 for( i = 1; i < derived->req(); i++ ) {
duke@435 1733 base->init_req(i, find_base_for_derived(derived_base_map, derived->in(i), maxlrg));
kvn@1164 1734 t = t->meet(base->in(i)->bottom_type());
kvn@1164 1735 }
kvn@1164 1736 base->as_Phi()->set_type(t);
duke@435 1737
duke@435 1738 // Search the current block for an existing base-Phi
adlertz@5509 1739 Block *b = _cfg.get_block_for_node(derived);
duke@435 1740 for( i = 1; i <= b->end_idx(); i++ ) {// Search for matching Phi
duke@435 1741 Node *phi = b->_nodes[i];
duke@435 1742 if( !phi->is_Phi() ) { // Found end of Phis with no match?
duke@435 1743 b->_nodes.insert( i, base ); // Must insert created Phi here as base
adlertz@5509 1744 _cfg.map_node_to_block(base, b);
duke@435 1745 new_lrg(base,maxlrg++);
duke@435 1746 break;
duke@435 1747 }
duke@435 1748 // See if Phi matches.
duke@435 1749 uint j;
duke@435 1750 for( j = 1; j < base->req(); j++ )
duke@435 1751 if( phi->in(j) != base->in(j) &&
duke@435 1752 !(phi->in(j)->is_Con() && base->in(j)->is_Con()) ) // allow different NULLs
duke@435 1753 break;
duke@435 1754 if( j == base->req() ) { // All inputs match?
duke@435 1755 base = phi; // Then use existing 'phi' and drop 'base'
duke@435 1756 break;
duke@435 1757 }
duke@435 1758 }
duke@435 1759
duke@435 1760
duke@435 1761 // Cache info for later passes
duke@435 1762 derived_base_map[derived->_idx] = base;
duke@435 1763 return base;
duke@435 1764 }
duke@435 1765
duke@435 1766 // At each Safepoint, insert extra debug edges for each pair of derived value/
duke@435 1767 // base pointer that is live across the Safepoint for oopmap building. The
duke@435 1768 // edge pairs get added in after sfpt->jvmtail()->oopoff(), but are in the
duke@435 1769 // required edge set.
neliasso@4949 1770 bool PhaseChaitin::stretch_base_pointer_live_ranges(ResourceArea *a) {
duke@435 1771 int must_recompute_live = false;
neliasso@4949 1772 uint maxlrg = _lrg_map.max_lrg_id();
duke@435 1773 Node **derived_base_map = (Node**)a->Amalloc(sizeof(Node*)*C->unique());
duke@435 1774 memset( derived_base_map, 0, sizeof(Node*)*C->unique() );
duke@435 1775
duke@435 1776 // For all blocks in RPO do...
adlertz@5539 1777 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adlertz@5539 1778 Block* block = _cfg.get_block(i);
duke@435 1779 // Note use of deep-copy constructor. I cannot hammer the original
duke@435 1780 // liveout bits, because they are needed by the following coalesce pass.
adlertz@5539 1781 IndexSet liveout(_live->live(block));
duke@435 1782
adlertz@5539 1783 for (uint j = block->end_idx() + 1; j > 1; j--) {
adlertz@5539 1784 Node* n = block->_nodes[j - 1];
duke@435 1785
duke@435 1786 // Pre-split compares of loop-phis. Loop-phis form a cycle we would
duke@435 1787 // like to see in the same register. Compare uses the loop-phi and so
duke@435 1788 // extends its live range BUT cannot be part of the cycle. If this
duke@435 1789 // extended live range overlaps with the update of the loop-phi value
duke@435 1790 // we need both alive at the same time -- which requires at least 1
duke@435 1791 // copy. But because Intel has only 2-address registers we end up with
duke@435 1792 // at least 2 copies, one before the loop-phi update instruction and
duke@435 1793 // one after. Instead we split the input to the compare just after the
duke@435 1794 // phi.
duke@435 1795 if( n->is_Mach() && n->as_Mach()->ideal_Opcode() == Op_CmpI ) {
duke@435 1796 Node *phi = n->in(1);
duke@435 1797 if( phi->is_Phi() && phi->as_Phi()->region()->is_Loop() ) {
adlertz@5509 1798 Block *phi_block = _cfg.get_block_for_node(phi);
adlertz@5539 1799 if (_cfg.get_block_for_node(phi_block->pred(2)) == block) {
duke@435 1800 const RegMask *mask = C->matcher()->idealreg2spillmask[Op_RegI];
duke@435 1801 Node *spill = new (C) MachSpillCopyNode( phi, *mask, *mask );
duke@435 1802 insert_proj( phi_block, 1, spill, maxlrg++ );
duke@435 1803 n->set_req(1,spill);
duke@435 1804 must_recompute_live = true;
duke@435 1805 }
duke@435 1806 }
duke@435 1807 }
duke@435 1808
duke@435 1809 // Get value being defined
neliasso@4949 1810 uint lidx = _lrg_map.live_range_id(n);
neliasso@4949 1811 // Ignore the occasional brand-new live range
neliasso@4949 1812 if (lidx && lidx < _lrg_map.max_lrg_id()) {
duke@435 1813 // Remove from live-out set
duke@435 1814 liveout.remove(lidx);
duke@435 1815
duke@435 1816 // Copies do not define a new value and so do not interfere.
duke@435 1817 // Remove the copies source from the liveout set before interfering.
duke@435 1818 uint idx = n->is_Copy();
neliasso@4949 1819 if (idx) {
neliasso@4949 1820 liveout.remove(_lrg_map.live_range_id(n->in(idx)));
neliasso@4949 1821 }
duke@435 1822 }
duke@435 1823
duke@435 1824 // Found a safepoint?
duke@435 1825 JVMState *jvms = n->jvms();
duke@435 1826 if( jvms ) {
duke@435 1827 // Now scan for a live derived pointer
duke@435 1828 IndexSetIterator elements(&liveout);
duke@435 1829 uint neighbor;
duke@435 1830 while ((neighbor = elements.next()) != 0) {
duke@435 1831 // Find reaching DEF for base and derived values
duke@435 1832 // This works because we are still in SSA during this call.
duke@435 1833 Node *derived = lrgs(neighbor)._def;
duke@435 1834 const TypePtr *tj = derived->bottom_type()->isa_ptr();
kvn@1164 1835 assert(!derived->bottom_type()->isa_narrowoop() ||
kvn@1164 1836 derived->bottom_type()->make_ptr()->is_ptr()->_offset == 0, "sanity");
duke@435 1837 // If its an OOP with a non-zero offset, then it is derived.
duke@435 1838 if( tj && tj->_offset != 0 && tj->isa_oop_ptr() ) {
neliasso@4949 1839 Node *base = find_base_for_derived(derived_base_map, derived, maxlrg);
neliasso@4949 1840 assert(base->_idx < _lrg_map.size(), "");
duke@435 1841 // Add reaching DEFs of derived pointer and base pointer as a
duke@435 1842 // pair of inputs
neliasso@4949 1843 n->add_req(derived);
neliasso@4949 1844 n->add_req(base);
duke@435 1845
duke@435 1846 // See if the base pointer is already live to this point.
duke@435 1847 // Since I'm working on the SSA form, live-ness amounts to
duke@435 1848 // reaching def's. So if I find the base's live range then
duke@435 1849 // I know the base's def reaches here.
neliasso@4949 1850 if ((_lrg_map.live_range_id(base) >= _lrg_map.max_lrg_id() || // (Brand new base (hence not live) or
neliasso@4949 1851 !liveout.member(_lrg_map.live_range_id(base))) && // not live) AND
neliasso@4949 1852 (_lrg_map.live_range_id(base) > 0) && // not a constant
adlertz@5539 1853 _cfg.get_block_for_node(base) != block) { // base not def'd in blk)
duke@435 1854 // Base pointer is not currently live. Since I stretched
duke@435 1855 // the base pointer to here and it crosses basic-block
duke@435 1856 // boundaries, the global live info is now incorrect.
duke@435 1857 // Recompute live.
duke@435 1858 must_recompute_live = true;
duke@435 1859 } // End of if base pointer is not live to debug info
duke@435 1860 }
duke@435 1861 } // End of scan all live data for derived ptrs crossing GC point
duke@435 1862 } // End of if found a GC point
duke@435 1863
duke@435 1864 // Make all inputs live
neliasso@4949 1865 if (!n->is_Phi()) { // Phi function uses come from prior block
neliasso@4949 1866 for (uint k = 1; k < n->req(); k++) {
neliasso@4949 1867 uint lidx = _lrg_map.live_range_id(n->in(k));
neliasso@4949 1868 if (lidx < _lrg_map.max_lrg_id()) {
neliasso@4949 1869 liveout.insert(lidx);
neliasso@4949 1870 }
duke@435 1871 }
duke@435 1872 }
duke@435 1873
duke@435 1874 } // End of forall instructions in block
duke@435 1875 liveout.clear(); // Free the memory used by liveout.
duke@435 1876
duke@435 1877 } // End of forall blocks
neliasso@4949 1878 _lrg_map.set_max_lrg_id(maxlrg);
duke@435 1879
duke@435 1880 // If I created a new live range I need to recompute live
neliasso@4949 1881 if (maxlrg != _ifg->_maxlrg) {
duke@435 1882 must_recompute_live = true;
neliasso@4949 1883 }
duke@435 1884
duke@435 1885 return must_recompute_live != 0;
duke@435 1886 }
duke@435 1887
duke@435 1888 // Extend the node to LRG mapping
neliasso@4949 1889
neliasso@4949 1890 void PhaseChaitin::add_reference(const Node *node, const Node *old_node) {
neliasso@4949 1891 _lrg_map.extend(node->_idx, _lrg_map.live_range_id(old_node));
duke@435 1892 }
duke@435 1893
duke@435 1894 #ifndef PRODUCT
neliasso@4949 1895 void PhaseChaitin::dump(const Node *n) const {
neliasso@4949 1896 uint r = (n->_idx < _lrg_map.size()) ? _lrg_map.find_const(n) : 0;
duke@435 1897 tty->print("L%d",r);
neliasso@4949 1898 if (r && n->Opcode() != Op_Phi) {
duke@435 1899 if( _node_regs ) { // Got a post-allocation copy of allocation?
duke@435 1900 tty->print("[");
duke@435 1901 OptoReg::Name second = get_reg_second(n);
duke@435 1902 if( OptoReg::is_valid(second) ) {
duke@435 1903 if( OptoReg::is_reg(second) )
duke@435 1904 tty->print("%s:",Matcher::regName[second]);
duke@435 1905 else
duke@435 1906 tty->print("%s+%d:",OptoReg::regname(OptoReg::c_frame_pointer), reg2offset_unchecked(second));
duke@435 1907 }
duke@435 1908 OptoReg::Name first = get_reg_first(n);
duke@435 1909 if( OptoReg::is_reg(first) )
duke@435 1910 tty->print("%s]",Matcher::regName[first]);
duke@435 1911 else
duke@435 1912 tty->print("%s+%d]",OptoReg::regname(OptoReg::c_frame_pointer), reg2offset_unchecked(first));
duke@435 1913 } else
duke@435 1914 n->out_RegMask().dump();
duke@435 1915 }
duke@435 1916 tty->print("/N%d\t",n->_idx);
duke@435 1917 tty->print("%s === ", n->Name());
duke@435 1918 uint k;
neliasso@4949 1919 for (k = 0; k < n->req(); k++) {
duke@435 1920 Node *m = n->in(k);
neliasso@4949 1921 if (!m) {
neliasso@4949 1922 tty->print("_ ");
neliasso@4949 1923 }
duke@435 1924 else {
neliasso@4949 1925 uint r = (m->_idx < _lrg_map.size()) ? _lrg_map.find_const(m) : 0;
duke@435 1926 tty->print("L%d",r);
duke@435 1927 // Data MultiNode's can have projections with no real registers.
duke@435 1928 // Don't die while dumping them.
duke@435 1929 int op = n->Opcode();
duke@435 1930 if( r && op != Op_Phi && op != Op_Proj && op != Op_SCMemProj) {
duke@435 1931 if( _node_regs ) {
duke@435 1932 tty->print("[");
duke@435 1933 OptoReg::Name second = get_reg_second(n->in(k));
duke@435 1934 if( OptoReg::is_valid(second) ) {
duke@435 1935 if( OptoReg::is_reg(second) )
duke@435 1936 tty->print("%s:",Matcher::regName[second]);
duke@435 1937 else
duke@435 1938 tty->print("%s+%d:",OptoReg::regname(OptoReg::c_frame_pointer),
duke@435 1939 reg2offset_unchecked(second));
duke@435 1940 }
duke@435 1941 OptoReg::Name first = get_reg_first(n->in(k));
duke@435 1942 if( OptoReg::is_reg(first) )
duke@435 1943 tty->print("%s]",Matcher::regName[first]);
duke@435 1944 else
duke@435 1945 tty->print("%s+%d]",OptoReg::regname(OptoReg::c_frame_pointer),
duke@435 1946 reg2offset_unchecked(first));
duke@435 1947 } else
duke@435 1948 n->in_RegMask(k).dump();
duke@435 1949 }
duke@435 1950 tty->print("/N%d ",m->_idx);
duke@435 1951 }
duke@435 1952 }
duke@435 1953 if( k < n->len() && n->in(k) ) tty->print("| ");
duke@435 1954 for( ; k < n->len(); k++ ) {
duke@435 1955 Node *m = n->in(k);
neliasso@4949 1956 if(!m) {
neliasso@4949 1957 break;
neliasso@4949 1958 }
neliasso@4949 1959 uint r = (m->_idx < _lrg_map.size()) ? _lrg_map.find_const(m) : 0;
duke@435 1960 tty->print("L%d",r);
duke@435 1961 tty->print("/N%d ",m->_idx);
duke@435 1962 }
duke@435 1963 if( n->is_Mach() ) n->as_Mach()->dump_spec(tty);
duke@435 1964 else n->dump_spec(tty);
duke@435 1965 if( _spilled_once.test(n->_idx ) ) {
duke@435 1966 tty->print(" Spill_1");
duke@435 1967 if( _spilled_twice.test(n->_idx ) )
duke@435 1968 tty->print(" Spill_2");
duke@435 1969 }
duke@435 1970 tty->print("\n");
duke@435 1971 }
duke@435 1972
adlertz@5509 1973 void PhaseChaitin::dump(const Block *b) const {
adlertz@5509 1974 b->dump_head(&_cfg);
duke@435 1975
duke@435 1976 // For all instructions
duke@435 1977 for( uint j = 0; j < b->_nodes.size(); j++ )
duke@435 1978 dump(b->_nodes[j]);
duke@435 1979 // Print live-out info at end of block
duke@435 1980 if( _live ) {
duke@435 1981 tty->print("Liveout: ");
duke@435 1982 IndexSet *live = _live->live(b);
duke@435 1983 IndexSetIterator elements(live);
duke@435 1984 tty->print("{");
duke@435 1985 uint i;
duke@435 1986 while ((i = elements.next()) != 0) {
neliasso@4949 1987 tty->print("L%d ", _lrg_map.find_const(i));
duke@435 1988 }
duke@435 1989 tty->print_cr("}");
duke@435 1990 }
duke@435 1991 tty->print("\n");
duke@435 1992 }
duke@435 1993
duke@435 1994 void PhaseChaitin::dump() const {
duke@435 1995 tty->print( "--- Chaitin -- argsize: %d framesize: %d ---\n",
duke@435 1996 _matcher._new_SP, _framesize );
duke@435 1997
duke@435 1998 // For all blocks
adlertz@5539 1999 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adlertz@5539 2000 dump(_cfg.get_block(i));
adlertz@5539 2001 }
duke@435 2002 // End of per-block dump
duke@435 2003 tty->print("\n");
duke@435 2004
duke@435 2005 if (!_ifg) {
duke@435 2006 tty->print("(No IFG.)\n");
duke@435 2007 return;
duke@435 2008 }
duke@435 2009
duke@435 2010 // Dump LRG array
duke@435 2011 tty->print("--- Live RanGe Array ---\n");
neliasso@4949 2012 for (uint i2 = 1; i2 < _lrg_map.max_lrg_id(); i2++) {
duke@435 2013 tty->print("L%d: ",i2);
neliasso@4949 2014 if (i2 < _ifg->_maxlrg) {
neliasso@4949 2015 lrgs(i2).dump();
neliasso@4949 2016 }
neliasso@4949 2017 else {
neliasso@4949 2018 tty->print_cr("new LRG");
neliasso@4949 2019 }
duke@435 2020 }
duke@435 2021 tty->print_cr("");
duke@435 2022
duke@435 2023 // Dump lo-degree list
duke@435 2024 tty->print("Lo degree: ");
duke@435 2025 for(uint i3 = _lo_degree; i3; i3 = lrgs(i3)._next )
duke@435 2026 tty->print("L%d ",i3);
duke@435 2027 tty->print_cr("");
duke@435 2028
duke@435 2029 // Dump lo-stk-degree list
duke@435 2030 tty->print("Lo stk degree: ");
duke@435 2031 for(uint i4 = _lo_stk_degree; i4; i4 = lrgs(i4)._next )
duke@435 2032 tty->print("L%d ",i4);
duke@435 2033 tty->print_cr("");
duke@435 2034
duke@435 2035 // Dump lo-degree list
duke@435 2036 tty->print("Hi degree: ");
duke@435 2037 for(uint i5 = _hi_degree; i5; i5 = lrgs(i5)._next )
duke@435 2038 tty->print("L%d ",i5);
duke@435 2039 tty->print_cr("");
duke@435 2040 }
duke@435 2041
duke@435 2042 void PhaseChaitin::dump_degree_lists() const {
duke@435 2043 // Dump lo-degree list
duke@435 2044 tty->print("Lo degree: ");
duke@435 2045 for( uint i = _lo_degree; i; i = lrgs(i)._next )
duke@435 2046 tty->print("L%d ",i);
duke@435 2047 tty->print_cr("");
duke@435 2048
duke@435 2049 // Dump lo-stk-degree list
duke@435 2050 tty->print("Lo stk degree: ");
duke@435 2051 for(uint i2 = _lo_stk_degree; i2; i2 = lrgs(i2)._next )
duke@435 2052 tty->print("L%d ",i2);
duke@435 2053 tty->print_cr("");
duke@435 2054
duke@435 2055 // Dump lo-degree list
duke@435 2056 tty->print("Hi degree: ");
duke@435 2057 for(uint i3 = _hi_degree; i3; i3 = lrgs(i3)._next )
duke@435 2058 tty->print("L%d ",i3);
duke@435 2059 tty->print_cr("");
duke@435 2060 }
duke@435 2061
duke@435 2062 void PhaseChaitin::dump_simplified() const {
duke@435 2063 tty->print("Simplified: ");
duke@435 2064 for( uint i = _simplified; i; i = lrgs(i)._next )
duke@435 2065 tty->print("L%d ",i);
duke@435 2066 tty->print_cr("");
duke@435 2067 }
duke@435 2068
duke@435 2069 static char *print_reg( OptoReg::Name reg, const PhaseChaitin *pc, char *buf ) {
duke@435 2070 if ((int)reg < 0)
duke@435 2071 sprintf(buf, "<OptoReg::%d>", (int)reg);
duke@435 2072 else if (OptoReg::is_reg(reg))
duke@435 2073 strcpy(buf, Matcher::regName[reg]);
duke@435 2074 else
duke@435 2075 sprintf(buf,"%s + #%d",OptoReg::regname(OptoReg::c_frame_pointer),
duke@435 2076 pc->reg2offset(reg));
duke@435 2077 return buf+strlen(buf);
duke@435 2078 }
duke@435 2079
duke@435 2080 // Dump a register name into a buffer. Be intelligent if we get called
duke@435 2081 // before allocation is complete.
duke@435 2082 char *PhaseChaitin::dump_register( const Node *n, char *buf ) const {
duke@435 2083 if( !this ) { // Not got anything?
duke@435 2084 sprintf(buf,"N%d",n->_idx); // Then use Node index
duke@435 2085 } else if( _node_regs ) {
duke@435 2086 // Post allocation, use direct mappings, no LRG info available
duke@435 2087 print_reg( get_reg_first(n), this, buf );
duke@435 2088 } else {
neliasso@4949 2089 uint lidx = _lrg_map.find_const(n); // Grab LRG number
duke@435 2090 if( !_ifg ) {
duke@435 2091 sprintf(buf,"L%d",lidx); // No register binding yet
duke@435 2092 } else if( !lidx ) { // Special, not allocated value
duke@435 2093 strcpy(buf,"Special");
kvn@3882 2094 } else {
kvn@3882 2095 if (lrgs(lidx)._is_vector) {
kvn@3882 2096 if (lrgs(lidx).mask().is_bound_set(lrgs(lidx).num_regs()))
kvn@3882 2097 print_reg( lrgs(lidx).reg(), this, buf ); // a bound machine register
kvn@3882 2098 else
kvn@3882 2099 sprintf(buf,"L%d",lidx); // No register binding yet
kvn@3882 2100 } else if( (lrgs(lidx).num_regs() == 1)
kvn@3882 2101 ? lrgs(lidx).mask().is_bound1()
kvn@3882 2102 : lrgs(lidx).mask().is_bound_pair() ) {
kvn@3882 2103 // Hah! We have a bound machine register
kvn@3882 2104 print_reg( lrgs(lidx).reg(), this, buf );
kvn@3882 2105 } else {
kvn@3882 2106 sprintf(buf,"L%d",lidx); // No register binding yet
kvn@3882 2107 }
duke@435 2108 }
duke@435 2109 }
duke@435 2110 return buf+strlen(buf);
duke@435 2111 }
duke@435 2112
duke@435 2113 void PhaseChaitin::dump_for_spill_split_recycle() const {
duke@435 2114 if( WizardMode && (PrintCompilation || PrintOpto) ) {
duke@435 2115 // Display which live ranges need to be split and the allocator's state
duke@435 2116 tty->print_cr("Graph-Coloring Iteration %d will split the following live ranges", _trip_cnt);
neliasso@4949 2117 for (uint bidx = 1; bidx < _lrg_map.max_lrg_id(); bidx++) {
duke@435 2118 if( lrgs(bidx).alive() && lrgs(bidx).reg() >= LRG::SPILL_REG ) {
duke@435 2119 tty->print("L%d: ", bidx);
duke@435 2120 lrgs(bidx).dump();
duke@435 2121 }
duke@435 2122 }
duke@435 2123 tty->cr();
duke@435 2124 dump();
duke@435 2125 }
duke@435 2126 }
duke@435 2127
duke@435 2128 void PhaseChaitin::dump_frame() const {
duke@435 2129 const char *fp = OptoReg::regname(OptoReg::c_frame_pointer);
duke@435 2130 const TypeTuple *domain = C->tf()->domain();
duke@435 2131 const int argcnt = domain->cnt() - TypeFunc::Parms;
duke@435 2132
duke@435 2133 // Incoming arguments in registers dump
duke@435 2134 for( int k = 0; k < argcnt; k++ ) {
duke@435 2135 OptoReg::Name parmreg = _matcher._parm_regs[k].first();
duke@435 2136 if( OptoReg::is_reg(parmreg)) {
duke@435 2137 const char *reg_name = OptoReg::regname(parmreg);
duke@435 2138 tty->print("#r%3.3d %s", parmreg, reg_name);
duke@435 2139 parmreg = _matcher._parm_regs[k].second();
duke@435 2140 if( OptoReg::is_reg(parmreg)) {
duke@435 2141 tty->print(":%s", OptoReg::regname(parmreg));
duke@435 2142 }
duke@435 2143 tty->print(" : parm %d: ", k);
duke@435 2144 domain->field_at(k + TypeFunc::Parms)->dump();
duke@435 2145 tty->print_cr("");
duke@435 2146 }
duke@435 2147 }
duke@435 2148
duke@435 2149 // Check for un-owned padding above incoming args
duke@435 2150 OptoReg::Name reg = _matcher._new_SP;
duke@435 2151 if( reg > _matcher._in_arg_limit ) {
duke@435 2152 reg = OptoReg::add(reg, -1);
duke@435 2153 tty->print_cr("#r%3.3d %s+%2d: pad0, owned by CALLER", reg, fp, reg2offset_unchecked(reg));
duke@435 2154 }
duke@435 2155
duke@435 2156 // Incoming argument area dump
duke@435 2157 OptoReg::Name begin_in_arg = OptoReg::add(_matcher._old_SP,C->out_preserve_stack_slots());
duke@435 2158 while( reg > begin_in_arg ) {
duke@435 2159 reg = OptoReg::add(reg, -1);
duke@435 2160 tty->print("#r%3.3d %s+%2d: ",reg,fp,reg2offset_unchecked(reg));
duke@435 2161 int j;
duke@435 2162 for( j = 0; j < argcnt; j++) {
duke@435 2163 if( _matcher._parm_regs[j].first() == reg ||
duke@435 2164 _matcher._parm_regs[j].second() == reg ) {
duke@435 2165 tty->print("parm %d: ",j);
duke@435 2166 domain->field_at(j + TypeFunc::Parms)->dump();
duke@435 2167 tty->print_cr("");
duke@435 2168 break;
duke@435 2169 }
duke@435 2170 }
duke@435 2171 if( j >= argcnt )
duke@435 2172 tty->print_cr("HOLE, owned by SELF");
duke@435 2173 }
duke@435 2174
duke@435 2175 // Old outgoing preserve area
duke@435 2176 while( reg > _matcher._old_SP ) {
duke@435 2177 reg = OptoReg::add(reg, -1);
duke@435 2178 tty->print_cr("#r%3.3d %s+%2d: old out preserve",reg,fp,reg2offset_unchecked(reg));
duke@435 2179 }
duke@435 2180
duke@435 2181 // Old SP
duke@435 2182 tty->print_cr("# -- Old %s -- Framesize: %d --",fp,
duke@435 2183 reg2offset_unchecked(OptoReg::add(_matcher._old_SP,-1)) - reg2offset_unchecked(_matcher._new_SP)+jintSize);
duke@435 2184
duke@435 2185 // Preserve area dump
kvn@3577 2186 int fixed_slots = C->fixed_slots();
kvn@3577 2187 OptoReg::Name begin_in_preserve = OptoReg::add(_matcher._old_SP, -(int)C->in_preserve_stack_slots());
kvn@3577 2188 OptoReg::Name return_addr = _matcher.return_addr();
kvn@3577 2189
duke@435 2190 reg = OptoReg::add(reg, -1);
kvn@3577 2191 while (OptoReg::is_stack(reg)) {
duke@435 2192 tty->print("#r%3.3d %s+%2d: ",reg,fp,reg2offset_unchecked(reg));
kvn@3577 2193 if (return_addr == reg) {
duke@435 2194 tty->print_cr("return address");
kvn@3577 2195 } else if (reg >= begin_in_preserve) {
kvn@3577 2196 // Preserved slots are present on x86
kvn@3577 2197 if (return_addr == OptoReg::add(reg, VMRegImpl::slots_per_word))
kvn@3577 2198 tty->print_cr("saved fp register");
kvn@3577 2199 else if (return_addr == OptoReg::add(reg, 2*VMRegImpl::slots_per_word) &&
kvn@3577 2200 VerifyStackAtCalls)
kvn@3577 2201 tty->print_cr("0xBADB100D +VerifyStackAtCalls");
kvn@3577 2202 else
kvn@3577 2203 tty->print_cr("in_preserve");
kvn@3577 2204 } else if ((int)OptoReg::reg2stack(reg) < fixed_slots) {
duke@435 2205 tty->print_cr("Fixed slot %d", OptoReg::reg2stack(reg));
kvn@3577 2206 } else {
kvn@3577 2207 tty->print_cr("pad2, stack alignment");
kvn@3577 2208 }
duke@435 2209 reg = OptoReg::add(reg, -1);
duke@435 2210 }
duke@435 2211
duke@435 2212 // Spill area dump
duke@435 2213 reg = OptoReg::add(_matcher._new_SP, _framesize );
duke@435 2214 while( reg > _matcher._out_arg_limit ) {
duke@435 2215 reg = OptoReg::add(reg, -1);
duke@435 2216 tty->print_cr("#r%3.3d %s+%2d: spill",reg,fp,reg2offset_unchecked(reg));
duke@435 2217 }
duke@435 2218
duke@435 2219 // Outgoing argument area dump
duke@435 2220 while( reg > OptoReg::add(_matcher._new_SP, C->out_preserve_stack_slots()) ) {
duke@435 2221 reg = OptoReg::add(reg, -1);
duke@435 2222 tty->print_cr("#r%3.3d %s+%2d: outgoing argument",reg,fp,reg2offset_unchecked(reg));
duke@435 2223 }
duke@435 2224
duke@435 2225 // Outgoing new preserve area
duke@435 2226 while( reg > _matcher._new_SP ) {
duke@435 2227 reg = OptoReg::add(reg, -1);
duke@435 2228 tty->print_cr("#r%3.3d %s+%2d: new out preserve",reg,fp,reg2offset_unchecked(reg));
duke@435 2229 }
duke@435 2230 tty->print_cr("#");
duke@435 2231 }
duke@435 2232
duke@435 2233 void PhaseChaitin::dump_bb( uint pre_order ) const {
duke@435 2234 tty->print_cr("---dump of B%d---",pre_order);
adlertz@5539 2235 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adlertz@5539 2236 Block* block = _cfg.get_block(i);
adlertz@5539 2237 if (block->_pre_order == pre_order) {
adlertz@5539 2238 dump(block);
adlertz@5539 2239 }
duke@435 2240 }
duke@435 2241 }
duke@435 2242
never@2358 2243 void PhaseChaitin::dump_lrg( uint lidx, bool defs_only ) const {
duke@435 2244 tty->print_cr("---dump of L%d---",lidx);
duke@435 2245
neliasso@4949 2246 if (_ifg) {
neliasso@4949 2247 if (lidx >= _lrg_map.max_lrg_id()) {
duke@435 2248 tty->print("Attempt to print live range index beyond max live range.\n");
duke@435 2249 return;
duke@435 2250 }
duke@435 2251 tty->print("L%d: ",lidx);
neliasso@4949 2252 if (lidx < _ifg->_maxlrg) {
neliasso@4949 2253 lrgs(lidx).dump();
neliasso@4949 2254 } else {
neliasso@4949 2255 tty->print_cr("new LRG");
neliasso@4949 2256 }
duke@435 2257 }
never@2358 2258 if( _ifg && lidx < _ifg->_maxlrg) {
never@2358 2259 tty->print("Neighbors: %d - ", _ifg->neighbor_cnt(lidx));
duke@435 2260 _ifg->neighbors(lidx)->dump();
duke@435 2261 tty->cr();
duke@435 2262 }
duke@435 2263 // For all blocks
adlertz@5539 2264 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adlertz@5539 2265 Block* block = _cfg.get_block(i);
duke@435 2266 int dump_once = 0;
duke@435 2267
duke@435 2268 // For all instructions
adlertz@5539 2269 for( uint j = 0; j < block->_nodes.size(); j++ ) {
adlertz@5539 2270 Node *n = block->_nodes[j];
neliasso@4949 2271 if (_lrg_map.find_const(n) == lidx) {
neliasso@4949 2272 if (!dump_once++) {
duke@435 2273 tty->cr();
adlertz@5539 2274 block->dump_head(&_cfg);
duke@435 2275 }
duke@435 2276 dump(n);
duke@435 2277 continue;
duke@435 2278 }
never@2358 2279 if (!defs_only) {
never@2358 2280 uint cnt = n->req();
never@2358 2281 for( uint k = 1; k < cnt; k++ ) {
never@2358 2282 Node *m = n->in(k);
neliasso@4949 2283 if (!m) {
neliasso@4949 2284 continue; // be robust in the dumper
neliasso@4949 2285 }
neliasso@4949 2286 if (_lrg_map.find_const(m) == lidx) {
neliasso@4949 2287 if (!dump_once++) {
never@2358 2288 tty->cr();
adlertz@5539 2289 block->dump_head(&_cfg);
never@2358 2290 }
never@2358 2291 dump(n);
duke@435 2292 }
duke@435 2293 }
duke@435 2294 }
duke@435 2295 }
duke@435 2296 } // End of per-block dump
duke@435 2297 tty->cr();
duke@435 2298 }
duke@435 2299 #endif // not PRODUCT
duke@435 2300
duke@435 2301 int PhaseChaitin::_final_loads = 0;
duke@435 2302 int PhaseChaitin::_final_stores = 0;
duke@435 2303 int PhaseChaitin::_final_memoves= 0;
duke@435 2304 int PhaseChaitin::_final_copies = 0;
duke@435 2305 double PhaseChaitin::_final_load_cost = 0;
duke@435 2306 double PhaseChaitin::_final_store_cost = 0;
duke@435 2307 double PhaseChaitin::_final_memove_cost= 0;
duke@435 2308 double PhaseChaitin::_final_copy_cost = 0;
duke@435 2309 int PhaseChaitin::_conserv_coalesce = 0;
duke@435 2310 int PhaseChaitin::_conserv_coalesce_pair = 0;
duke@435 2311 int PhaseChaitin::_conserv_coalesce_trie = 0;
duke@435 2312 int PhaseChaitin::_conserv_coalesce_quad = 0;
duke@435 2313 int PhaseChaitin::_post_alloc = 0;
duke@435 2314 int PhaseChaitin::_lost_opp_pp_coalesce = 0;
duke@435 2315 int PhaseChaitin::_lost_opp_cflow_coalesce = 0;
duke@435 2316 int PhaseChaitin::_used_cisc_instructions = 0;
duke@435 2317 int PhaseChaitin::_unused_cisc_instructions = 0;
duke@435 2318 int PhaseChaitin::_allocator_attempts = 0;
duke@435 2319 int PhaseChaitin::_allocator_successes = 0;
duke@435 2320
duke@435 2321 #ifndef PRODUCT
duke@435 2322 uint PhaseChaitin::_high_pressure = 0;
duke@435 2323 uint PhaseChaitin::_low_pressure = 0;
duke@435 2324
duke@435 2325 void PhaseChaitin::print_chaitin_statistics() {
duke@435 2326 tty->print_cr("Inserted %d spill loads, %d spill stores, %d mem-mem moves and %d copies.", _final_loads, _final_stores, _final_memoves, _final_copies);
duke@435 2327 tty->print_cr("Total load cost= %6.0f, store cost = %6.0f, mem-mem cost = %5.2f, copy cost = %5.0f.", _final_load_cost, _final_store_cost, _final_memove_cost, _final_copy_cost);
duke@435 2328 tty->print_cr("Adjusted spill cost = %7.0f.",
duke@435 2329 _final_load_cost*4.0 + _final_store_cost * 2.0 +
duke@435 2330 _final_copy_cost*1.0 + _final_memove_cost*12.0);
duke@435 2331 tty->print("Conservatively coalesced %d copies, %d pairs",
duke@435 2332 _conserv_coalesce, _conserv_coalesce_pair);
duke@435 2333 if( _conserv_coalesce_trie || _conserv_coalesce_quad )
duke@435 2334 tty->print(", %d tries, %d quads", _conserv_coalesce_trie, _conserv_coalesce_quad);
duke@435 2335 tty->print_cr(", %d post alloc.", _post_alloc);
duke@435 2336 if( _lost_opp_pp_coalesce || _lost_opp_cflow_coalesce )
duke@435 2337 tty->print_cr("Lost coalesce opportunity, %d private-private, and %d cflow interfered.",
duke@435 2338 _lost_opp_pp_coalesce, _lost_opp_cflow_coalesce );
duke@435 2339 if( _used_cisc_instructions || _unused_cisc_instructions )
duke@435 2340 tty->print_cr("Used cisc instruction %d, remained in register %d",
duke@435 2341 _used_cisc_instructions, _unused_cisc_instructions);
duke@435 2342 if( _allocator_successes != 0 )
duke@435 2343 tty->print_cr("Average allocation trips %f", (float)_allocator_attempts/(float)_allocator_successes);
duke@435 2344 tty->print_cr("High Pressure Blocks = %d, Low Pressure Blocks = %d", _high_pressure, _low_pressure);
duke@435 2345 }
duke@435 2346 #endif // not PRODUCT

mercurial