hotspot/src/share/vm/opto/split_if.cpp
author goetz
Thu, 22 Oct 2015 13:07:10 -0400
changeset 33589 7cbd1b2c139b
parent 24923 9631f7d691dc
child 34185 ee71c590a456
permissions -rw-r--r--
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux. Reviewed-by: stuefe, coleenp, roland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 13895
diff changeset
     2
 * Copyright (c) 1999, 2012, 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: 5024
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5024
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: 5024
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: 5901
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5901
diff changeset
    26
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5901
diff changeset
    27
#include "opto/callnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5901
diff changeset
    28
#include "opto/loopnode.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 13963
diff changeset
    29
#include "opto/movenode.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//------------------------------split_thru_region------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Split Node 'n' through merge point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
Node *PhaseIdealLoop::split_thru_region( Node *n, Node *region ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  uint wins = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  assert( n->is_CFG(), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  assert( region->is_Region(), "" );
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
    38
  Node *r = new RegionNode( region->req() );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  IdealLoopTree *loop = get_loop( n );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  for( uint i = 1; i < region->req(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    Node *x = n->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    Node *in0 = n->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    if( in0->in(0) == region ) x->set_req( 0, in0->in(i) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    for( uint j = 1; j < n->req(); j++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
      Node *in = n->in(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
      if( get_ctrl(in) == region )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
        x->set_req( j, in->in(i) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    _igvn.register_new_node_with_optimizer(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    set_loop(x, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    set_idom(x, x->in(0), dom_depth(x->in(0))+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    r->init_req(i, x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Record region
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  r->set_req(0,region);         // Not a TRUE RegionNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _igvn.register_new_node_with_optimizer(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  set_loop(r, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if( !loop->_child )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    loop->_body.push(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  return r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
//------------------------------split_up---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// Split block-local op up through the phis to empty the current block
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
bool PhaseIdealLoop::split_up( Node *n, Node *blk1, Node *blk2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if( n->is_CFG() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    assert( n->in(0) != blk1, "Lousy candidate for split-if" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  if( get_ctrl(n) != blk1 && get_ctrl(n) != blk2 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    return false;               // Not block local
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  if( n->is_Phi() ) return false; // Local PHIs are expected
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // Recursively split-up inputs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  for (uint i = 1; i < n->req(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    if( split_up( n->in(i), blk1, blk2 ) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      // Got split recursively and self went dead?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      if (n->outcnt() == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
        _igvn.remove_dead_node(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Check for needing to clone-up a compare.  Can't do that, it forces
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // another (nested) split-if transform.  Instead, clone it "down".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  if( n->is_Cmp() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    assert(get_ctrl(n) == blk2 || get_ctrl(n) == blk1, "must be in block with IF");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // Check for simple Cmp/Bool/CMove which we can clone-up.  Cmp/Bool/CMove
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // sequence can have no other users and it must all reside in the split-if
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    // block.  Non-simple Cmp/Bool/CMove sequences are 'cloned-down' below -
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // private, per-use versions of the Cmp and Bool are made.  These sink to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    // the CMove block.  If the CMove is in the split-if block, then in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    // next iteration this will become a simple Cmp/Bool/CMove set to clone-up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    Node *bol, *cmov;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    if( !(n->outcnt() == 1 && n->unique_out()->is_Bool() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
          (bol = n->unique_out()->as_Bool()) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
          (get_ctrl(bol) == blk1 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
           get_ctrl(bol) == blk2) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
          bol->outcnt() == 1 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
          bol->unique_out()->is_CMove() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
          (cmov = bol->unique_out()->as_CMove()) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
          (get_ctrl(cmov) == blk1 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
           get_ctrl(cmov) == blk2) ) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      // Must clone down
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      if( PrintOpto && VerifyLoopOptimizations ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
        tty->print("Cloning down: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
        n->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      // Clone down any block-local BoolNode uses of this CmpNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      for (DUIterator i = n->outs(); n->has_out(i); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
        Node* bol = n->out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
        assert( bol->is_Bool(), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
        if (bol->outcnt() == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
          Node* use = bol->unique_out();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
          Node *use_c = use->is_If() ? use->in(0) : get_ctrl(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
          if (use_c == blk1 || use_c == blk2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
            continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
        if (get_ctrl(bol) == blk1 || get_ctrl(bol) == blk2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
          // Recursively sink any BoolNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
          if( PrintOpto && VerifyLoopOptimizations ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
            tty->print("Cloning down: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
            bol->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
          for (DUIterator_Last jmin, j = bol->last_outs(jmin); j >= jmin; --j) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
            // Uses are either IfNodes or CMoves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
            Node* iff = bol->last_out(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
            assert( iff->in(1) == bol, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
            // Get control block of either the CMove or the If input
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
            Node *iff_ctrl = iff->is_If() ? iff->in(0) : get_ctrl(iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
            Node *x = bol->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
            register_new_node(x, iff_ctrl);
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 10502
diff changeset
   140
            _igvn.replace_input_of(iff, 1, x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
          _igvn.remove_dead_node( bol );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
          --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      // Clone down this CmpNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      for (DUIterator_Last jmin, j = n->last_outs(jmin); j >= jmin; --j) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
        Node* bol = n->last_out(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
        assert( bol->in(1) == n, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
        Node *x = n->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
        register_new_node(x, get_ctrl(bol));
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 10502
diff changeset
   152
        _igvn.replace_input_of(bol, 1, x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      _igvn.remove_dead_node( n );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // See if splitting-up a Store.  Any anti-dep loads must go up as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // well.  An anti-dep load might be in the wrong block, because in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // this particular layout/schedule we ignored anti-deps and allow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // memory to be alive twice.  This only works if we do the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // operations on anti-dep loads as we do their killing stores.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  if( n->is_Store() && n->in(MemNode::Memory)->in(0) == n->in(0) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    // Get store's memory slice
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    int alias_idx = C->get_alias_index(_igvn.type(n->in(MemNode::Address))->is_ptr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // Get memory-phi anti-dep loads will be using
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    Node *memphi = n->in(MemNode::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    assert( memphi->is_Phi(), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // Hoist any anti-dep load to the splitting block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // it will then "split-up".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    for (DUIterator_Fast imax,i = memphi->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      Node *load = memphi->fast_out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      if( load->is_Load() && alias_idx == C->get_alias_index(_igvn.type(load->in(MemNode::Address))->is_ptr()) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
        set_ctrl(load,blk1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Found some other Node; must clone it up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  if( PrintOpto && VerifyLoopOptimizations ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    tty->print("Cloning up: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    n->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
5024
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   189
  // ConvI2L may have type information on it which becomes invalid if
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   190
  // it moves up in the graph so change any clones so widen the type
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   191
  // to TypeLong::INT when pushing it up.
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   192
  const Type* rtype = NULL;
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   193
  if (n->Opcode() == Op_ConvI2L && n->bottom_type() != TypeLong::INT) {
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   194
    rtype = TypeLong::INT;
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   195
  }
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   196
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // Now actually split-up this guy.  One copy per control path merging.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  Node *phi = PhiNode::make_blank(blk1, n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  for( uint j = 1; j < blk1->req(); j++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    Node *x = n->clone();
5024
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   201
    // Widen the type of the ConvI2L when pushing up.
d7ac73e48389 6663854: assert(n != __null,"Bad immediate dominator info.") in C2 with -Xcomp
never
parents: 4643
diff changeset
   202
    if (rtype != NULL) x->as_Type()->set_type(rtype);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    if( n->in(0) && n->in(0) == blk1 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      x->set_req( 0, blk1->in(j) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    for( uint i = 1; i < n->req(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      Node *m = n->in(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
      if( get_ctrl(m) == blk1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
        assert( m->in(0) == blk1, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
        x->set_req( i, m->in(j) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    register_new_node( x, blk1->in(j) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    phi->init_req( j, x );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Announce phi to optimizer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  register_new_node(phi, blk1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // Remove cloned-up value from optimizer; use phi instead
5901
c046f8e9c52b 6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents: 5547
diff changeset
   219
  _igvn.replace_node( n, phi );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // (There used to be a self-recursive call to split_up() here,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // but it is not needed.  All necessary forward walking is done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // by do_split_if() below.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
//------------------------------register_new_node------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
void PhaseIdealLoop::register_new_node( Node *n, Node *blk ) {
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 2131
diff changeset
   230
  assert(!n->is_CFG(), "must be data node");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  _igvn.register_new_node_with_optimizer(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  set_ctrl(n, blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  IdealLoopTree *loop = get_loop(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  if( !loop->_child )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    loop->_body.push(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
//------------------------------small_cache------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
struct small_cache : public Dict {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  small_cache() : Dict( cmpkey, hashptr ) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  Node *probe( Node *use_blk ) { return (Node*)((*this)[use_blk]); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void lru_insert( Node *use_blk, Node *new_def ) { Insert(use_blk,new_def); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
//------------------------------spinup-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
// "Spin up" the dominator tree, starting at the use site and stopping when we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
// find the post-dominating point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
// We must be at the merge point which post-dominates 'new_false' and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// 'new_true'.  Figure out which edges into the RegionNode eventually lead up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
// to false and which to true.  Put in a PhiNode to merge values; plug in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
// the appropriate false-arm or true-arm values.  If some path leads to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
// original IF, then insert a Phi recursively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
Node *PhaseIdealLoop::spinup( Node *iff_dom, Node *new_false, Node *new_true, Node *use_blk, Node *def, small_cache *cache ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  if (use_blk->is_top())        // Handle dead uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    return use_blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  Node *prior_n = (Node*)0xdeadbeef;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  Node *n = use_blk;            // Get path input
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  assert( use_blk != iff_dom, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // Here's the "spinup" the dominator tree loop.  Do a cache-check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // along the way, in case we've come this way before.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  while( n != iff_dom ) {       // Found post-dominating point?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    prior_n = n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    n = idom(n);                // Search higher
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    Node *s = cache->probe( prior_n ); // Check cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    if( s ) return s;           // Cache hit!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  Node *phi_post;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  if( prior_n == new_false || prior_n == new_true ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    phi_post = def->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    phi_post->set_req(0, prior_n );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    register_new_node(phi_post, prior_n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    // This method handles both control uses (looking for Regions) or data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    // uses (looking for Phis).  If looking for a control use, then we need
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    // to insert a Region instead of a Phi; however Regions always exist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    // previously (the hash_find_insert below would always hit) so we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    // return the existing Region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    if( def->is_CFG() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      phi_post = prior_n;       // If looking for CFG, return prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      assert( def->is_Phi(), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      assert( prior_n->is_Region(), "must be a post-dominating merge point" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
      // Need a Phi here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      phi_post = PhiNode::make_blank(prior_n, def);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      // Search for both true and false on all paths till find one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      for( uint i = 1; i < phi_post->req(); i++ ) // For all paths
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
        phi_post->init_req( i, spinup( iff_dom, new_false, new_true, prior_n->in(i), def, cache ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      Node *t = _igvn.hash_find_insert(phi_post);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
      if( t ) {                 // See if we already have this one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
        // phi_post will not be used, so kill it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        _igvn.remove_dead_node(phi_post);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
        phi_post->destruct();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
        phi_post = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
        register_new_node( phi_post, prior_n );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // Update cache everywhere
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  prior_n = (Node*)0xdeadbeef;  // Reset IDOM walk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  n = use_blk;                  // Get path input
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // Spin-up the idom tree again, basically doing path-compression.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // Insert cache entries along the way, so that if we ever hit this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // point in the IDOM tree again we'll stop immediately on a cache hit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  while( n != iff_dom ) {       // Found post-dominating point?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    prior_n = n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    n = idom(n);                // Search higher
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    cache->lru_insert( prior_n, phi_post ); // Fill cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  } // End of while not gone high enough
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  return phi_post;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
//------------------------------find_use_block---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
// Find the block a USE is in.  Normally USE's are in the same block as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
// using instruction.  For Phi-USE's, the USE is in the predecessor block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
// along the corresponding path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
Node *PhaseIdealLoop::find_use_block( Node *use, Node *def, Node *old_false, Node *new_false, Node *old_true, Node *new_true ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // CFG uses are their own block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  if( use->is_CFG() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    return use;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  if( use->is_Phi() ) {         // Phi uses in prior block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    // Grab the first Phi use; there may be many.
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1
diff changeset
   330
    // Each will be handled as a separate iteration of
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    // the "while( phi->outcnt() )" loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    uint j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    for( j = 1; j < use->req(); j++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      if( use->in(j) == def )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    assert( j < use->req(), "def should be among use's inputs" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    return use->in(0)->in(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // Normal (non-phi) use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  Node *use_blk = get_ctrl(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // Some uses are directly attached to the old (and going away)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // false and true branches.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  if( use_blk == old_false ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    use_blk = new_false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    set_ctrl(use, new_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  if( use_blk == old_true ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    use_blk = new_true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    set_ctrl(use, new_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  if (use_blk == NULL) {        // He's dead, Jim
5901
c046f8e9c52b 6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents: 5547
diff changeset
   353
    _igvn.replace_node(use, C->top());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  return use_blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
//------------------------------handle_use-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
// Handle uses of the merge point.  Basically, split-if makes the merge point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
// go away so all uses of the merge point must go away as well.  Most block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
// local uses have already been split-up, through the merge point.  Uses from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
// far below the merge point can't always be split up (e.g., phi-uses are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
// pinned) and it makes too much stuff live.  Instead we use a path-based
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
// solution to move uses down.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
// If the use is along the pre-split-CFG true branch, then the new use will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
// be from the post-split-CFG true merge point.  Vice-versa for the false
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
// path.  Some uses will be along both paths; then we sink the use to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
// post-dominating location; we may need to insert a Phi there.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
void PhaseIdealLoop::handle_use( Node *use, Node *def, small_cache *cache, Node *region_dom, Node *new_false, Node *new_true, Node *old_false, Node *old_true ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  Node *use_blk = find_use_block(use,def,old_false,new_false,old_true,new_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  if( !use_blk ) return;        // He's dead, Jim
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // Walk up the dominator tree until I hit either the old IfFalse, the old
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // IfTrue or the old If.  Insert Phis where needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  Node *new_def = spinup( region_dom, new_false, new_true, use_blk, def, cache );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // Found where this USE goes.  Re-point him.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  uint i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  for( i = 0; i < use->req(); i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    if( use->in(i) == def )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  assert( i < use->req(), "def should be among use's inputs" );
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 10502
diff changeset
   386
  _igvn.replace_input_of(use, i, new_def);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
//------------------------------do_split_if------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
// Found an If getting its condition-code input from a Phi in the same block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
// Split thru the Region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
void PhaseIdealLoop::do_split_if( Node *iff ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  if( PrintOpto && VerifyLoopOptimizations )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    tty->print_cr("Split-if");
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 7397
diff changeset
   396
  if (TraceLoopOpts) {
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 7397
diff changeset
   397
    tty->print_cr("SplitIf");
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 7397
diff changeset
   398
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  Node *region = iff->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  Node *region_dom = idom(region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // We are going to clone this test (and the control flow with it) up through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // the incoming merge point.  We need to empty the current basic block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  // Clone any instructions which must be in this block up through the merge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  DUIterator i, j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  bool progress = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  while (progress) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    progress = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    for (i = region->outs(); region->has_out(i); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
      Node* n = region->out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      if( n == region ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      // The IF to be split is OK.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      if( n == iff ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
      if( !n->is_Phi() ) {      // Found pinned memory op or such
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
        if (split_up(n, region, iff)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
          i = region->refresh_out_pos(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
          progress = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      assert( n->in(0) == region, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      // Recursively split up all users of a Phi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
      for (j = n->outs(); n->has_out(j); j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
        Node* m = n->out(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
        // If m is dead, throw it away, and declare progress
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
        if (_nodes[m->_idx] == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
          _igvn.remove_dead_node(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
          // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
        else if (m != iff && split_up(m, region, iff)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
          // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
        // Something unpredictable changed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
        // Tell the iterators to refresh themselves, and rerun the loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
        i = region->refresh_out_pos(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
        j = region->refresh_out_pos(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
        progress = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  // Now we have no instructions in the block containing the IF.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // Split the IF.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  Node *new_iff = split_thru_region( iff, region );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  // Replace both uses of 'new_iff' with Regions merging True/False
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  // paths.  This makes 'new_iff' go dead.
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 24923
diff changeset
   454
  Node *old_false = NULL, *old_true = NULL;
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 24923
diff changeset
   455
  Node *new_false = NULL, *new_true = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  for (DUIterator_Last j2min, j2 = iff->last_outs(j2min); j2 >= j2min; --j2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    Node *ifp = iff->last_out(j2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    assert( ifp->Opcode() == Op_IfFalse || ifp->Opcode() == Op_IfTrue, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    ifp->set_req(0, new_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    Node *ifpx = split_thru_region( ifp, region );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    // Replace 'If' projection of a Region with a Region of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    // 'If' projections.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    ifpx->set_req(0, ifpx);       // A TRUE RegionNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    // Setup dominator info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    set_idom(ifpx, region_dom, dom_depth(region_dom) + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    // Check for splitting loop tails
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    if( get_loop(iff)->tail() == ifp )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
      get_loop(iff)->_tail = ifpx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    // Replace in the graph with lazy-update mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    new_iff->set_req(0, new_iff); // hook self so it does not go dead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    lazy_replace_proj( ifp, ifpx );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    new_iff->set_req(0, region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    // Record bits for later xforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    if( ifp->Opcode() == Op_IfFalse ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      old_false = ifp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
      new_false = ifpx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
      old_true = ifp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      new_true = ifpx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  _igvn.remove_dead_node(new_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  // Lazy replace IDOM info with the region's dominator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  lazy_replace( iff, region_dom );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  // Now make the original merge point go dead, by handling all its uses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  small_cache region_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  // Preload some control flow in region-cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  region_cache.lru_insert( new_false, new_false );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  region_cache.lru_insert( new_true , new_true  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // Now handle all uses of the splitting block
10502
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   497
  for (DUIterator k = region->outs(); region->has_out(k); k++) {
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   498
    Node* phi = region->out(k);
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   499
    if (!phi->in(0)) {         // Dead phi?  Remove it
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
      _igvn.remove_dead_node(phi);
10502
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   501
    } else if (phi == region) { // Found the self-reference
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   502
      continue;                 // No roll-back of DUIterator
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   503
    } else if (phi->is_Phi()) { // Expected common case: Phi hanging off of Region
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   504
      assert(phi->in(0) == region, "Inconsistent graph");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
      // Need a per-def cache.  Phi represents a def, so make a cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
      small_cache phi_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
      // Inspect all Phi uses to make the Phi go dead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
      for (DUIterator_Last lmin, l = phi->last_outs(lmin); l >= lmin; --l) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
        Node* use = phi->last_out(l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
        // Compute the new DEF for this USE.  New DEF depends on the path
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
        // taken from the original DEF to the USE.  The new DEF may be some
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
        // collection of PHI's merging values from different paths.  The Phis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
        // inserted depend only on the location of the USE.  We use a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
        // 2-element cache to handle multiple uses from the same block.
10502
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   516
        handle_use(use, phi, &phi_cache, region_dom, new_false, new_true, old_false, old_true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
      } // End of while phi has uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
      // Remove the dead Phi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
      _igvn.remove_dead_node( phi );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    } else {
10502
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   521
      assert(phi->in(0) == region, "Inconsistent graph");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      // Random memory op guarded by Region.  Compute new DEF for USE.
10502
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   523
      handle_use(phi, region, &region_cache, region_dom, new_false, new_true, old_false, old_true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    }
10502
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   525
    // Every path above deletes a use of the region, except for the region
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   526
    // self-cycle (which is needed by handle_use calling find_use_block
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   527
    // calling get_ctrl calling get_ctrl_no_update looking for dead
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   528
    // regions).  So roll back the DUIterator innards.
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   529
    --k;
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   530
  } // End of while merge point has phis
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
10502
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   532
  assert(region->outcnt() == 1, "Only self reference should remain"); // Just Self on the Region
17598114b94c 6591247: C2 cleans up the merge point too early during SplitIf
iveresov
parents: 9101
diff changeset
   533
  region->set_req(0, NULL);       // Break the self-cycle
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // Any leftover bits in the splitting block must not have depended on local
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  // Phi inputs (these have already been split-up).  Hence it's safe to hoist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  // these guys to the dominating point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  lazy_replace( region, region_dom );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  if( VerifyLoopOptimizations ) verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
}