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