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