src/share/vm/opto/chaitin.hpp

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

author
twisti
date
Fri, 27 Feb 2009 13:27:09 -0800
changeset 1040
98cb887364d3
parent 1001
91263420e1c6
child 1063
7bb995fbd3c0
permissions
-rw-r--r--

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

duke@435 1 /*
xdono@631 2 * Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 class LoopTree;
duke@435 26 class MachCallNode;
duke@435 27 class MachSafePointNode;
duke@435 28 class Matcher;
duke@435 29 class PhaseCFG;
duke@435 30 class PhaseLive;
duke@435 31 class PhaseRegAlloc;
duke@435 32 class PhaseChaitin;
duke@435 33
duke@435 34 #define OPTO_DEBUG_SPLIT_FREQ BLOCK_FREQUENCY(0.001)
duke@435 35 #define OPTO_LRG_HIGH_FREQ BLOCK_FREQUENCY(0.25)
duke@435 36
duke@435 37 //------------------------------LRG--------------------------------------------
duke@435 38 // Live-RanGe structure.
duke@435 39 class LRG : public ResourceObj {
duke@435 40 public:
duke@435 41 enum { SPILL_REG=29999 }; // Register number of a spilled LRG
duke@435 42
duke@435 43 double _cost; // 2 for loads/1 for stores times block freq
duke@435 44 double _area; // Sum of all simultaneously live values
duke@435 45 double score() const; // Compute score from cost and area
duke@435 46 double _maxfreq; // Maximum frequency of any def or use
duke@435 47
duke@435 48 Node *_def; // Check for multi-def live ranges
duke@435 49 #ifndef PRODUCT
duke@435 50 GrowableArray<Node*>* _defs;
duke@435 51 #endif
duke@435 52
duke@435 53 uint _risk_bias; // Index of LRG which we want to avoid color
duke@435 54 uint _copy_bias; // Index of LRG which we want to share color
duke@435 55
duke@435 56 uint _next; // Index of next LRG in linked list
duke@435 57 uint _prev; // Index of prev LRG in linked list
duke@435 58 private:
duke@435 59 uint _reg; // Chosen register; undefined if mask is plural
duke@435 60 public:
duke@435 61 // Return chosen register for this LRG. Error if the LRG is not bound to
duke@435 62 // a single register.
duke@435 63 OptoReg::Name reg() const { return OptoReg::Name(_reg); }
duke@435 64 void set_reg( OptoReg::Name r ) { _reg = r; }
duke@435 65
duke@435 66 private:
duke@435 67 uint _eff_degree; // Effective degree: Sum of neighbors _num_regs
duke@435 68 public:
duke@435 69 int degree() const { assert( _degree_valid, "" ); return _eff_degree; }
duke@435 70 // Degree starts not valid and any change to the IFG neighbor
duke@435 71 // set makes it not valid.
duke@435 72 void set_degree( uint degree ) { _eff_degree = degree; debug_only(_degree_valid = 1;) }
duke@435 73 // Made a change that hammered degree
duke@435 74 void invalid_degree() { debug_only(_degree_valid=0;) }
duke@435 75 // Incrementally modify degree. If it was correct, it should remain correct
duke@435 76 void inc_degree( uint mod ) { _eff_degree += mod; }
duke@435 77 // Compute the degree between 2 live ranges
duke@435 78 int compute_degree( LRG &l ) const;
duke@435 79
duke@435 80 private:
duke@435 81 RegMask _mask; // Allowed registers for this LRG
duke@435 82 uint _mask_size; // cache of _mask.Size();
duke@435 83 public:
duke@435 84 int compute_mask_size() const { return _mask.is_AllStack() ? 65535 : _mask.Size(); }
duke@435 85 void set_mask_size( int size ) {
duke@435 86 assert((size == 65535) || (size == (int)_mask.Size()), "");
duke@435 87 _mask_size = size;
duke@435 88 debug_only(_msize_valid=1;)
duke@435 89 debug_only( if( _num_regs == 2 && !_fat_proj ) _mask.VerifyPairs(); )
duke@435 90 }
duke@435 91 void compute_set_mask_size() { set_mask_size(compute_mask_size()); }
duke@435 92 int mask_size() const { assert( _msize_valid, "mask size not valid" );
duke@435 93 return _mask_size; }
duke@435 94 // Get the last mask size computed, even if it does not match the
duke@435 95 // count of bits in the current mask.
duke@435 96 int get_invalid_mask_size() const { return _mask_size; }
duke@435 97 const RegMask &mask() const { return _mask; }
duke@435 98 void set_mask( const RegMask &rm ) { _mask = rm; debug_only(_msize_valid=0;)}
duke@435 99 void AND( const RegMask &rm ) { _mask.AND(rm); debug_only(_msize_valid=0;)}
duke@435 100 void SUBTRACT( const RegMask &rm ) { _mask.SUBTRACT(rm); debug_only(_msize_valid=0;)}
duke@435 101 void Clear() { _mask.Clear() ; debug_only(_msize_valid=1); _mask_size = 0; }
duke@435 102 void Set_All() { _mask.Set_All(); debug_only(_msize_valid=1); _mask_size = RegMask::CHUNK_SIZE; }
duke@435 103 void Insert( OptoReg::Name reg ) { _mask.Insert(reg); debug_only(_msize_valid=0;) }
duke@435 104 void Remove( OptoReg::Name reg ) { _mask.Remove(reg); debug_only(_msize_valid=0;) }
duke@435 105 void ClearToPairs() { _mask.ClearToPairs(); debug_only(_msize_valid=0;) }
duke@435 106
duke@435 107 // Number of registers this live range uses when it colors
duke@435 108 private:
duke@435 109 uint8 _num_regs; // 2 for Longs and Doubles, 1 for all else
duke@435 110 // except _num_regs is kill count for fat_proj
duke@435 111 public:
duke@435 112 int num_regs() const { return _num_regs; }
duke@435 113 void set_num_regs( int reg ) { assert( _num_regs == reg || !_num_regs, "" ); _num_regs = reg; }
duke@435 114
duke@435 115 private:
duke@435 116 // Number of physical registers this live range uses when it colors
duke@435 117 // Architecture and register-set dependent
duke@435 118 uint8 _reg_pressure;
duke@435 119 public:
duke@435 120 void set_reg_pressure(int i) { _reg_pressure = i; }
duke@435 121 int reg_pressure() const { return _reg_pressure; }
duke@435 122
duke@435 123 // How much 'wiggle room' does this live range have?
duke@435 124 // How many color choices can it make (scaled by _num_regs)?
duke@435 125 int degrees_of_freedom() const { return mask_size() - _num_regs; }
duke@435 126 // Bound LRGs have ZERO degrees of freedom. We also count
duke@435 127 // must_spill as bound.
duke@435 128 bool is_bound () const { return _is_bound; }
duke@435 129 // Negative degrees-of-freedom; even with no neighbors this
duke@435 130 // live range must spill.
duke@435 131 bool not_free() const { return degrees_of_freedom() < 0; }
duke@435 132 // Is this live range of "low-degree"? Trivially colorable?
duke@435 133 bool lo_degree () const { return degree() <= degrees_of_freedom(); }
duke@435 134 // Is this live range just barely "low-degree"? Trivially colorable?
duke@435 135 bool just_lo_degree () const { return degree() == degrees_of_freedom(); }
duke@435 136
duke@435 137 uint _is_oop:1, // Live-range holds an oop
duke@435 138 _is_float:1, // True if in float registers
duke@435 139 _was_spilled1:1, // True if prior spilling on def
duke@435 140 _was_spilled2:1, // True if twice prior spilling on def
duke@435 141 _is_bound:1, // live range starts life with no
duke@435 142 // degrees of freedom.
duke@435 143 _direct_conflict:1, // True if def and use registers in conflict
duke@435 144 _must_spill:1, // live range has lost all degrees of freedom
duke@435 145 // If _fat_proj is set, live range does NOT require aligned, adjacent
duke@435 146 // registers and has NO interferences.
duke@435 147 // If _fat_proj is clear, live range requires num_regs() to be a power of
duke@435 148 // 2, and it requires registers to form an aligned, adjacent set.
duke@435 149 _fat_proj:1, //
duke@435 150 _was_lo:1, // Was lo-degree prior to coalesce
duke@435 151 _msize_valid:1, // _mask_size cache valid
duke@435 152 _degree_valid:1, // _degree cache valid
duke@435 153 _has_copy:1, // Adjacent to some copy instruction
duke@435 154 _at_risk:1; // Simplify says this guy is at risk to spill
duke@435 155
duke@435 156
duke@435 157 // Alive if non-zero, dead if zero
duke@435 158 bool alive() const { return _def != NULL; }
never@730 159 bool is_multidef() const { return _def == NodeSentinel; }
never@730 160 bool is_singledef() const { return _def != NodeSentinel; }
duke@435 161
duke@435 162 #ifndef PRODUCT
duke@435 163 void dump( ) const;
duke@435 164 #endif
duke@435 165 };
duke@435 166
duke@435 167 //------------------------------LRG_List---------------------------------------
duke@435 168 // Map Node indices to Live RanGe indices.
duke@435 169 // Array lookup in the optimized case.
duke@435 170 class LRG_List : public ResourceObj {
duke@435 171 uint _cnt, _max;
duke@435 172 uint* _lidxs;
duke@435 173 ReallocMark _nesting; // assertion check for reallocations
duke@435 174 public:
duke@435 175 LRG_List( uint max );
duke@435 176
duke@435 177 uint lookup( uint nidx ) const {
duke@435 178 return _lidxs[nidx];
duke@435 179 }
duke@435 180 uint operator[] (uint nidx) const { return lookup(nidx); }
duke@435 181
duke@435 182 void map( uint nidx, uint lidx ) {
duke@435 183 assert( nidx < _cnt, "oob" );
duke@435 184 _lidxs[nidx] = lidx;
duke@435 185 }
duke@435 186 void extend( uint nidx, uint lidx );
duke@435 187
duke@435 188 uint Size() const { return _cnt; }
duke@435 189 };
duke@435 190
duke@435 191 //------------------------------IFG--------------------------------------------
duke@435 192 // InterFerence Graph
duke@435 193 // An undirected graph implementation. Created with a fixed number of
duke@435 194 // vertices. Edges can be added & tested. Vertices can be removed, then
duke@435 195 // added back later with all edges intact. Can add edges between one vertex
duke@435 196 // and a list of other vertices. Can union vertices (and their edges)
duke@435 197 // together. The IFG needs to be really really fast, and also fairly
duke@435 198 // abstract! It needs abstraction so I can fiddle with the implementation to
duke@435 199 // get even more speed.
duke@435 200 class PhaseIFG : public Phase {
duke@435 201 // Current implementation: a triangular adjacency list.
duke@435 202
duke@435 203 // Array of adjacency-lists, indexed by live-range number
duke@435 204 IndexSet *_adjs;
duke@435 205
duke@435 206 // Assertion bit for proper use of Squaring
duke@435 207 bool _is_square;
duke@435 208
duke@435 209 // Live range structure goes here
duke@435 210 LRG *_lrgs; // Array of LRG structures
duke@435 211
duke@435 212 public:
duke@435 213 // Largest live-range number
duke@435 214 uint _maxlrg;
duke@435 215
duke@435 216 Arena *_arena;
duke@435 217
duke@435 218 // Keep track of inserted and deleted Nodes
duke@435 219 VectorSet *_yanked;
duke@435 220
duke@435 221 PhaseIFG( Arena *arena );
duke@435 222 void init( uint maxlrg );
duke@435 223
duke@435 224 // Add edge between a and b. Returns true if actually addded.
duke@435 225 int add_edge( uint a, uint b );
duke@435 226
duke@435 227 // Add edge between a and everything in the vector
duke@435 228 void add_vector( uint a, IndexSet *vec );
duke@435 229
duke@435 230 // Test for edge existance
duke@435 231 int test_edge( uint a, uint b ) const;
duke@435 232
duke@435 233 // Square-up matrix for faster Union
duke@435 234 void SquareUp();
duke@435 235
duke@435 236 // Return number of LRG neighbors
duke@435 237 uint neighbor_cnt( uint a ) const { return _adjs[a].count(); }
duke@435 238 // Union edges of b into a on Squared-up matrix
duke@435 239 void Union( uint a, uint b );
duke@435 240 // Test for edge in Squared-up matrix
duke@435 241 int test_edge_sq( uint a, uint b ) const;
duke@435 242 // Yank a Node and all connected edges from the IFG. Be prepared to
duke@435 243 // re-insert the yanked Node in reverse order of yanking. Return a
duke@435 244 // list of neighbors (edges) yanked.
duke@435 245 IndexSet *remove_node( uint a );
duke@435 246 // Reinsert a yanked Node
duke@435 247 void re_insert( uint a );
duke@435 248 // Return set of neighbors
duke@435 249 IndexSet *neighbors( uint a ) const { return &_adjs[a]; }
duke@435 250
duke@435 251 #ifndef PRODUCT
duke@435 252 // Dump the IFG
duke@435 253 void dump() const;
duke@435 254 void stats() const;
duke@435 255 void verify( const PhaseChaitin * ) const;
duke@435 256 #endif
duke@435 257
duke@435 258 //--------------- Live Range Accessors
duke@435 259 LRG &lrgs(uint idx) const { assert(idx < _maxlrg, "oob"); return _lrgs[idx]; }
duke@435 260
duke@435 261 // Compute and set effective degree. Might be folded into SquareUp().
duke@435 262 void Compute_Effective_Degree();
duke@435 263
duke@435 264 // Compute effective degree as the sum of neighbors' _sizes.
duke@435 265 int effective_degree( uint lidx ) const;
duke@435 266 };
duke@435 267
duke@435 268 // TEMPORARILY REPLACED WITH COMMAND LINE FLAG
duke@435 269
duke@435 270 //// !!!!! Magic Constants need to move into ad file
duke@435 271 #ifdef SPARC
duke@435 272 //#define FLOAT_PRESSURE 30 /* SFLT_REG_mask.Size() - 1 */
duke@435 273 //#define INT_PRESSURE 23 /* NOTEMP_I_REG_mask.Size() - 1 */
duke@435 274 #define FLOAT_INCREMENT(regs) regs
duke@435 275 #else
duke@435 276 //#define FLOAT_PRESSURE 6
duke@435 277 //#define INT_PRESSURE 6
duke@435 278 #define FLOAT_INCREMENT(regs) 1
duke@435 279 #endif
duke@435 280
duke@435 281 //------------------------------Chaitin----------------------------------------
duke@435 282 // Briggs-Chaitin style allocation, mostly.
duke@435 283 class PhaseChaitin : public PhaseRegAlloc {
duke@435 284
duke@435 285 int _trip_cnt;
duke@435 286 int _alternate;
duke@435 287
duke@435 288 uint _maxlrg; // Max live range number
duke@435 289 LRG &lrgs(uint idx) const { return _ifg->lrgs(idx); }
duke@435 290 PhaseLive *_live; // Liveness, used in the interference graph
duke@435 291 PhaseIFG *_ifg; // Interference graph (for original chunk)
duke@435 292 Node_List **_lrg_nodes; // Array of node; lists for lrgs which spill
duke@435 293 VectorSet _spilled_once; // Nodes that have been spilled
duke@435 294 VectorSet _spilled_twice; // Nodes that have been spilled twice
duke@435 295
duke@435 296 LRG_List _names; // Map from Nodes to Live RanGes
duke@435 297
duke@435 298 // Union-find map. Declared as a short for speed.
duke@435 299 // Indexed by live-range number, it returns the compacted live-range number
duke@435 300 LRG_List _uf_map;
duke@435 301 // Reset the Union-Find map to identity
duke@435 302 void reset_uf_map( uint maxlrg );
duke@435 303 // Remove the need for the Union-Find mapping
duke@435 304 void compress_uf_map_for_nodes( );
duke@435 305
duke@435 306 // Combine the Live Range Indices for these 2 Nodes into a single live
duke@435 307 // range. Future requests for any Node in either live range will
duke@435 308 // return the live range index for the combined live range.
duke@435 309 void Union( const Node *src, const Node *dst );
duke@435 310
duke@435 311 void new_lrg( const Node *x, uint lrg );
duke@435 312
duke@435 313 // Compact live ranges, removing unused ones. Return new maxlrg.
duke@435 314 void compact();
duke@435 315
duke@435 316 uint _lo_degree; // Head of lo-degree LRGs list
duke@435 317 uint _lo_stk_degree; // Head of lo-stk-degree LRGs list
duke@435 318 uint _hi_degree; // Head of hi-degree LRGs list
duke@435 319 uint _simplified; // Linked list head of simplified LRGs
duke@435 320
duke@435 321 // Helper functions for Split()
duke@435 322 uint split_DEF( Node *def, Block *b, int loc, uint max, Node **Reachblock, Node **debug_defs, GrowableArray<uint> splits, int slidx );
duke@435 323 uint split_USE( Node *def, Block *b, Node *use, uint useidx, uint max, bool def_down, bool cisc_sp, GrowableArray<uint> splits, int slidx );
duke@435 324 int clone_projs( Block *b, uint idx, Node *con, Node *copy, uint &maxlrg );
never@730 325 Node *split_Rematerialize(Node *def, Block *b, uint insidx, uint &maxlrg, GrowableArray<uint> splits,
never@730 326 int slidx, uint *lrg2reach, Node **Reachblock, bool walkThru);
duke@435 327 // True if lidx is used before any real register is def'd in the block
duke@435 328 bool prompt_use( Block *b, uint lidx );
duke@435 329 Node *get_spillcopy_wide( Node *def, Node *use, uint uidx );
twisti@1040 330 // Insert the spill at chosen location. Skip over any intervening Proj's or
duke@435 331 // Phis. Skip over a CatchNode and projs, inserting in the fall-through block
duke@435 332 // instead. Update high-pressure indices. Create a new live range.
duke@435 333 void insert_proj( Block *b, uint i, Node *spill, uint maxlrg );
duke@435 334
duke@435 335 bool is_high_pressure( Block *b, LRG *lrg, uint insidx );
duke@435 336
duke@435 337 uint _oldphi; // Node index which separates pre-allocation nodes
duke@435 338
duke@435 339 Block **_blks; // Array of blocks sorted by frequency for coalescing
duke@435 340
duke@435 341 #ifndef PRODUCT
duke@435 342 bool _trace_spilling;
duke@435 343 #endif
duke@435 344
duke@435 345 public:
duke@435 346 PhaseChaitin( uint unique, PhaseCFG &cfg, Matcher &matcher );
duke@435 347 ~PhaseChaitin() {}
duke@435 348
duke@435 349 // Convert a Node into a Live Range Index - a lidx
duke@435 350 uint Find( const Node *n ) {
duke@435 351 uint lidx = n2lidx(n);
duke@435 352 uint uf_lidx = _uf_map[lidx];
duke@435 353 return (uf_lidx == lidx) ? uf_lidx : Find_compress(n);
duke@435 354 }
duke@435 355 uint Find_const( uint lrg ) const;
duke@435 356 uint Find_const( const Node *n ) const;
duke@435 357
duke@435 358 // Do all the real work of allocate
duke@435 359 void Register_Allocate();
duke@435 360
duke@435 361 uint n2lidx( const Node *n ) const { return _names[n->_idx]; }
duke@435 362
duke@435 363 #ifndef PRODUCT
duke@435 364 bool trace_spilling() const { return _trace_spilling; }
duke@435 365 #endif
duke@435 366
duke@435 367 private:
duke@435 368 // De-SSA the world. Assign registers to Nodes. Use the same register for
duke@435 369 // all inputs to a PhiNode, effectively coalescing live ranges. Insert
duke@435 370 // copies as needed.
duke@435 371 void de_ssa();
duke@435 372 uint Find_compress( const Node *n );
duke@435 373 uint Find( uint lidx ) {
duke@435 374 uint uf_lidx = _uf_map[lidx];
duke@435 375 return (uf_lidx == lidx) ? uf_lidx : Find_compress(lidx);
duke@435 376 }
duke@435 377 uint Find_compress( uint lidx );
duke@435 378
duke@435 379 uint Find_id( const Node *n ) {
duke@435 380 uint retval = n2lidx(n);
duke@435 381 assert(retval == Find(n),"Invalid node to lidx mapping");
duke@435 382 return retval;
duke@435 383 }
duke@435 384
duke@435 385 // Add edge between reg and everything in the vector.
duke@435 386 // Same as _ifg->add_vector(reg,live) EXCEPT use the RegMask
duke@435 387 // information to trim the set of interferences. Return the
duke@435 388 // count of edges added.
duke@435 389 void interfere_with_live( uint reg, IndexSet *live );
duke@435 390 // Count register pressure for asserts
duke@435 391 uint count_int_pressure( IndexSet *liveout );
duke@435 392 uint count_float_pressure( IndexSet *liveout );
duke@435 393
duke@435 394 // Build the interference graph using virtual registers only.
duke@435 395 // Used for aggressive coalescing.
duke@435 396 void build_ifg_virtual( );
duke@435 397
duke@435 398 // Build the interference graph using physical registers when available.
duke@435 399 // That is, if 2 live ranges are simultaneously alive but in their
duke@435 400 // acceptable register sets do not overlap, then they do not interfere.
duke@435 401 uint build_ifg_physical( ResourceArea *a );
duke@435 402
duke@435 403 // Gather LiveRanGe information, including register masks and base pointer/
duke@435 404 // derived pointer relationships.
duke@435 405 void gather_lrg_masks( bool mod_cisc_masks );
duke@435 406
duke@435 407 // Force the bases of derived pointers to be alive at GC points.
duke@435 408 bool stretch_base_pointer_live_ranges( ResourceArea *a );
duke@435 409 // Helper to stretch above; recursively discover the base Node for
duke@435 410 // a given derived Node. Easy for AddP-related machine nodes, but
duke@435 411 // needs to be recursive for derived Phis.
duke@435 412 Node *find_base_for_derived( Node **derived_base_map, Node *derived, uint &maxlrg );
duke@435 413
duke@435 414 // Set the was-lo-degree bit. Conservative coalescing should not change the
duke@435 415 // colorability of the graph. If any live range was of low-degree before
duke@435 416 // coalescing, it should Simplify. This call sets the was-lo-degree bit.
duke@435 417 void set_was_low();
duke@435 418
duke@435 419 // Split live-ranges that must spill due to register conflicts (as opposed
duke@435 420 // to capacity spills). Typically these are things def'd in a register
duke@435 421 // and used on the stack or vice-versa.
duke@435 422 void pre_spill();
duke@435 423
duke@435 424 // Init LRG caching of degree, numregs. Init lo_degree list.
duke@435 425 void cache_lrg_info( );
duke@435 426
duke@435 427 // Simplify the IFG by removing LRGs of low degree with no copies
duke@435 428 void Pre_Simplify();
duke@435 429
duke@435 430 // Simplify the IFG by removing LRGs of low degree
duke@435 431 void Simplify();
duke@435 432
duke@435 433 // Select colors by re-inserting edges into the IFG.
twisti@1040 434 // Return TRUE if any spills occurred.
duke@435 435 uint Select( );
duke@435 436 // Helper function for select which allows biased coloring
duke@435 437 OptoReg::Name choose_color( LRG &lrg, int chunk );
duke@435 438 // Helper function which implements biasing heuristic
duke@435 439 OptoReg::Name bias_color( LRG &lrg, int chunk );
duke@435 440
duke@435 441 // Split uncolorable live ranges
duke@435 442 // Return new number of live ranges
duke@435 443 uint Split( uint maxlrg );
duke@435 444
duke@435 445 // Copy 'was_spilled'-edness from one Node to another.
duke@435 446 void copy_was_spilled( Node *src, Node *dst );
duke@435 447 // Set the 'spilled_once' or 'spilled_twice' flag on a node.
duke@435 448 void set_was_spilled( Node *n );
duke@435 449
duke@435 450 // Convert ideal spill-nodes into machine loads & stores
duke@435 451 // Set C->failing when fixup spills could not complete, node limit exceeded.
duke@435 452 void fixup_spills();
duke@435 453
duke@435 454 // Post-Allocation peephole copy removal
duke@435 455 void post_allocate_copy_removal();
duke@435 456 Node *skip_copies( Node *c );
duke@435 457 int yank_if_dead( Node *old, Block *current_block, Node_List *value, Node_List *regnd );
duke@435 458 int elide_copy( Node *n, int k, Block *current_block, Node_List &value, Node_List &regnd, bool can_change_regs );
duke@435 459 int use_prior_register( Node *copy, uint idx, Node *def, Block *current_block, Node_List &value, Node_List &regnd );
duke@435 460 bool may_be_copy_of_callee( Node *def ) const;
duke@435 461
duke@435 462 // If nreg already contains the same constant as val then eliminate it
never@505 463 bool eliminate_copy_of_constant(Node* val, Node* n,
never@505 464 Block *current_block, Node_List& value, Node_List &regnd,
duke@435 465 OptoReg::Name nreg, OptoReg::Name nreg2);
duke@435 466 // Extend the node to LRG mapping
duke@435 467 void add_reference( const Node *node, const Node *old_node);
duke@435 468
duke@435 469 private:
duke@435 470
duke@435 471 static int _final_loads, _final_stores, _final_copies, _final_memoves;
duke@435 472 static double _final_load_cost, _final_store_cost, _final_copy_cost, _final_memove_cost;
duke@435 473 static int _conserv_coalesce, _conserv_coalesce_pair;
duke@435 474 static int _conserv_coalesce_trie, _conserv_coalesce_quad;
duke@435 475 static int _post_alloc;
duke@435 476 static int _lost_opp_pp_coalesce, _lost_opp_cflow_coalesce;
duke@435 477 static int _used_cisc_instructions, _unused_cisc_instructions;
duke@435 478 static int _allocator_attempts, _allocator_successes;
duke@435 479
duke@435 480 #ifndef PRODUCT
duke@435 481 static uint _high_pressure, _low_pressure;
duke@435 482
duke@435 483 void dump() const;
duke@435 484 void dump( const Node *n ) const;
duke@435 485 void dump( const Block * b ) const;
duke@435 486 void dump_degree_lists() const;
duke@435 487 void dump_simplified() const;
duke@435 488 void dump_lrg( uint lidx ) const;
duke@435 489 void dump_bb( uint pre_order ) const;
duke@435 490
duke@435 491 // Verify that base pointers and derived pointers are still sane
duke@435 492 void verify_base_ptrs( ResourceArea *a ) const;
duke@435 493
kvn@1001 494 void verify( ResourceArea *a, bool verify_ifg = false ) const;
kvn@1001 495
duke@435 496 void dump_for_spill_split_recycle() const;
duke@435 497
duke@435 498 public:
duke@435 499 void dump_frame() const;
duke@435 500 char *dump_register( const Node *n, char *buf ) const;
duke@435 501 private:
duke@435 502 static void print_chaitin_statistics();
duke@435 503 #endif
duke@435 504 friend class PhaseCoalesce;
duke@435 505 friend class PhaseAggressiveCoalesce;
duke@435 506 friend class PhaseConservativeCoalesce;
duke@435 507 };

mercurial