hotspot/src/share/vm/opto/loopTransform.cpp
author kvn
Tue, 10 May 2011 12:57:21 -0700
changeset 9634 985153f94e98
parent 9449 b2c921e1f46d
child 9941 f2365fbd62f4
permissions -rw-r--r--
7043552: regression after 7042327 Summary: Generate Opaque2 node only during first unroll. Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8921
14bfe81f2a9d 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 8884
diff changeset
     2
 * Copyright (c) 2000, 2011, 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: 5054
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5054
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: 5054
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: 6770
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    26
#include "compiler/compileLog.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    27
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    28
#include "opto/addnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    29
#include "opto/callnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    30
#include "opto/connode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    31
#include "opto/divnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    32
#include "opto/loopnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    33
#include "opto/mulnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    34
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    35
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    36
#include "opto/subnode.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//------------------------------is_loop_exit-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Given an IfNode, return the loop-exiting projection or NULL if both
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// arms remain in the loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
Node *IdealLoopTree::is_loop_exit(Node *iff) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  if( iff->outcnt() != 2 ) return NULL; // Ignore partially dead tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  PhaseIdealLoop *phase = _phase;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Test is an IfNode, has 2 projections.  If BOTH are in the loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // we need loop unswitching instead of peeling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  if( !is_member(phase->get_loop( iff->raw_out(0) )) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    return iff->raw_out(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  if( !is_member(phase->get_loop( iff->raw_out(1) )) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    return iff->raw_out(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//------------------------------record_for_igvn----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// Put loop body on igvn work list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void IdealLoopTree::record_for_igvn() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  for( uint i = 0; i < _body.size(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    Node *n = _body.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    _phase->_igvn._worklist.push(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    66
//------------------------------compute_exact_trip_count-----------------------
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    67
// Compute loop exact trip count if possible. Do not recalculate trip count for
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    68
// split loops (pre-main-post) which have their limits and inits behind Opaque node.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    69
void IdealLoopTree::compute_exact_trip_count( PhaseIdealLoop *phase ) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    70
  if (!_head->as_Loop()->is_valid_counted_loop()) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    71
    return;
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    72
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    73
  CountedLoopNode* cl = _head->as_CountedLoop();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    74
  // Trip count may become nonexact for iteration split loops since
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    75
  // RCE modifies limits. Note, _trip_count value is not reset since
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    76
  // it is used to limit unrolling of main loop.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    77
  cl->set_nonexact_trip_count();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    78
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    79
  // Loop's test should be part of loop.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    80
  if (!phase->is_member(this, phase->get_ctrl(cl->loopexit()->in(CountedLoopEndNode::TestValue))))
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    81
    return; // Infinite loop
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    82
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    83
#ifdef ASSERT
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    84
  BoolTest::mask bt = cl->loopexit()->test_trip();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    85
  assert(bt == BoolTest::lt || bt == BoolTest::gt ||
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
    86
         (bt == BoolTest::ne && !LoopLimitCheck), "canonical test is expected");
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    87
#endif
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    88
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    89
  Node* init_n = cl->init_trip();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    90
  Node* limit_n = cl->limit();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    91
  if (init_n  != NULL &&  init_n->is_Con() &&
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    92
      limit_n != NULL && limit_n->is_Con()) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    93
    // Use longs to avoid integer overflow.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    94
    int stride_con  = cl->stride_con();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    95
    long init_con   = cl->init_trip()->get_int();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    96
    long limit_con  = cl->limit()->get_int();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    97
    int stride_m    = stride_con - (stride_con > 0 ? 1 : -1);
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    98
    long trip_count = (limit_con - init_con + stride_m)/stride_con;
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    99
    if (trip_count > 0 && (julong)trip_count < (julong)max_juint) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   100
      // Set exact trip count.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   101
      cl->set_exact_trip_count((uint)trip_count);
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   102
    }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   103
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   104
}
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   105
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
//------------------------------compute_profile_trip_cnt----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// Compute loop trip count from profile data as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
//    (backedge_count + loop_exit_count) / loop_exit_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
void IdealLoopTree::compute_profile_trip_cnt( PhaseIdealLoop *phase ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  if (!_head->is_CountedLoop()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  CountedLoopNode* head = _head->as_CountedLoop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  if (head->profile_trip_cnt() != COUNT_UNKNOWN) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    return; // Already computed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  float trip_cnt = (float)max_jint; // default is big
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  Node* back = head->in(LoopNode::LoopBackControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  while (back != head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    if ((back->Opcode() == Op_IfTrue || back->Opcode() == Op_IfFalse) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
        back->in(0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
        back->in(0)->is_If() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
        back->in(0)->as_If()->_fcnt != COUNT_UNKNOWN &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
        back->in(0)->as_If()->_prob != PROB_UNKNOWN) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    back = phase->idom(back);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  if (back != head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    assert((back->Opcode() == Op_IfTrue || back->Opcode() == Op_IfFalse) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
           back->in(0), "if-projection exists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    IfNode* back_if = back->in(0)->as_If();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    float loop_back_cnt = back_if->_fcnt * back_if->_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    // Now compute a loop exit count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    float loop_exit_cnt = 0.0f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    for( uint i = 0; i < _body.size(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      Node *n = _body[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      if( n->is_If() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
        IfNode *iff = n->as_If();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
        if( iff->_fcnt != COUNT_UNKNOWN && iff->_prob != PROB_UNKNOWN ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
          Node *exit = is_loop_exit(iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
          if( exit ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
            float exit_prob = iff->_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
            if (exit->Opcode() == Op_IfFalse) exit_prob = 1.0 - exit_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
            if (exit_prob > PROB_MIN) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
              float exit_cnt = iff->_fcnt * exit_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
              loop_exit_cnt += exit_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    if (loop_exit_cnt > 0.0f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      trip_cnt = (loop_back_cnt + loop_exit_cnt) / loop_exit_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
      // No exit count so use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      trip_cnt = loop_back_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  if (TraceProfileTripCount) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    tty->print_cr("compute_profile_trip_cnt  lp: %d cnt: %f\n", head->_idx, trip_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  head->set_profile_trip_cnt(trip_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
//---------------------is_invariant_addition-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// Return nonzero index of invariant operand for an Add or Sub
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1500
diff changeset
   172
// of (nonconstant) invariant and variant values. Helper for reassociate_invariants.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
int IdealLoopTree::is_invariant_addition(Node* n, PhaseIdealLoop *phase) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  int op = n->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  if (op == Op_AddI || op == Op_SubI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    bool in1_invar = this->is_invariant(n->in(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    bool in2_invar = this->is_invariant(n->in(2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    if (in1_invar && !in2_invar) return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    if (!in1_invar && in2_invar) return 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
//---------------------reassociate_add_sub-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
// Reassociate invariant add and subtract expressions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
// inv1 + (x + inv2)  =>  ( inv1 + inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// (x + inv2) + inv1  =>  ( inv1 + inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
// inv1 + (x - inv2)  =>  ( inv1 - inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
// inv1 - (inv2 - x)  =>  ( inv1 - inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// (x + inv2) - inv1  =>  (-inv1 + inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
// (x - inv2) + inv1  =>  ( inv1 - inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
// (x - inv2) - inv1  =>  (-inv1 - inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
// inv1 + (inv2 - x)  =>  ( inv1 + inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// inv1 - (x - inv2)  =>  ( inv1 + inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// (inv2 - x) + inv1  =>  ( inv1 + inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
// (inv2 - x) - inv1  =>  (-inv1 + inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
// inv1 - (x + inv2)  =>  ( inv1 - inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
Node* IdealLoopTree::reassociate_add_sub(Node* n1, PhaseIdealLoop *phase) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  if (!n1->is_Add() && !n1->is_Sub() || n1->outcnt() == 0) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  if (is_invariant(n1)) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  int inv1_idx = is_invariant_addition(n1, phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  if (!inv1_idx) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // Don't mess with add of constant (igvn moves them to expression tree root.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  if (n1->is_Add() && n1->in(2)->is_Con()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  Node* inv1 = n1->in(inv1_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  Node* n2 = n1->in(3 - inv1_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  int inv2_idx = is_invariant_addition(n2, phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (!inv2_idx) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  Node* x    = n2->in(3 - inv2_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  Node* inv2 = n2->in(inv2_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  bool neg_x    = n2->is_Sub() && inv2_idx == 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  bool neg_inv2 = n2->is_Sub() && inv2_idx == 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  bool neg_inv1 = n1->is_Sub() && inv1_idx == 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  if (n1->is_Sub() && inv1_idx == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    neg_x    = !neg_x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    neg_inv2 = !neg_inv2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  Node* inv1_c = phase->get_ctrl(inv1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  Node* inv2_c = phase->get_ctrl(inv2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  Node* n_inv1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (neg_inv1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    Node *zero = phase->_igvn.intcon(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    phase->set_ctrl(zero, phase->C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    n_inv1 = new (phase->C, 3) SubINode(zero, inv1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    phase->register_new_node(n_inv1, inv1_c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    n_inv1 = inv1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  Node* inv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  if (neg_inv2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    inv = new (phase->C, 3) SubINode(n_inv1, inv2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    inv = new (phase->C, 3) AddINode(n_inv1, inv2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  phase->register_new_node(inv, phase->get_early_ctrl(inv));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  Node* addx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  if (neg_x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    addx = new (phase->C, 3) SubINode(inv, x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    addx = new (phase->C, 3) AddINode(x, inv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  phase->register_new_node(addx, phase->get_ctrl(x));
5901
c046f8e9c52b 6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents: 5547
diff changeset
   247
  phase->_igvn.replace_node(n1, addx);
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   248
  assert(phase->get_loop(phase->get_ctrl(n1)) == this, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   249
  _body.yank(n1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  return addx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
//---------------------reassociate_invariants-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
// Reassociate invariant expressions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
void IdealLoopTree::reassociate_invariants(PhaseIdealLoop *phase) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  for (int i = _body.size() - 1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    Node *n = _body.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    for (int j = 0; j < 5; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      Node* nn = reassociate_add_sub(n, phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      if (nn == NULL) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      n = nn; // again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
//------------------------------policy_peeling---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
// Return TRUE or FALSE if the loop should be peeled or not.  Peel if we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
// make some loop-invariant test (usually a null-check) happen before the loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
bool IdealLoopTree::policy_peeling( PhaseIdealLoop *phase ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  Node *test = ((IdealLoopTree*)this)->tail();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  int  body_size = ((IdealLoopTree*)this)->_body.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  int  uniq      = phase->C->unique();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // Peeling does loop cloning which can result in O(N^2) node construction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  if( body_size > 255 /* Prevent overflow for large body_size */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      || (body_size * body_size + uniq > MaxNodeLimit) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    return false;           // too large to safely clone
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  while( test != _head ) {      // Scan till run off top of loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    if( test->is_If() ) {       // Test?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      Node *ctrl = phase->get_ctrl(test->in(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      if (ctrl->is_top())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
        return false;           // Found dead test on live IF?  No peeling!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      // Standard IF only has one input value to check for loop invariance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      assert( test->Opcode() == Op_If || test->Opcode() == Op_CountedLoopEnd, "Check this code when new subtype is added");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      // Condition is not a member of this loop?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      if( !is_member(phase->get_loop(ctrl)) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
          is_loop_exit(test) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
        return true;            // Found reason to peel!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    // Walk up dominators to loop _head looking for test which is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    // executed on every path thru loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    test = phase->idom(test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
//------------------------------peeled_dom_test_elim---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
// If we got the effect of peeling, either by actually peeling or by making
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// a pre-loop which must execute at least once, we can remove all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
// loop-invariant dominated tests in the main body.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
void PhaseIdealLoop::peeled_dom_test_elim( IdealLoopTree *loop, Node_List &old_new ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  bool progress = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  while( progress ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    progress = false;           // Reset for next iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    Node *prev = loop->_head->in(LoopNode::LoopBackControl);//loop->tail();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    Node *test = prev->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    while( test != loop->_head ) { // Scan till run off top of loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
      int p_op = prev->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
      if( (p_op == Op_IfFalse || p_op == Op_IfTrue) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
          test->is_If() &&      // Test?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
          !test->in(1)->is_Con() && // And not already obvious?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
          // Condition is not a member of this loop?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
          !loop->is_member(get_loop(get_ctrl(test->in(1))))){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
        // Walk loop body looking for instances of this test
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
        for( uint i = 0; i < loop->_body.size(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
          Node *n = loop->_body.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
          if( n->is_If() && n->in(1) == test->in(1) /*&& n != loop->tail()->in(0)*/ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
            // IfNode was dominated by version in peeled loop body
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
            progress = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
            dominated_by( old_new[prev->_idx], n );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      prev = test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      test = idom(test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    } // End of scan tests in loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  } // End of while( progress )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
//------------------------------do_peeling-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
// Peel the first iteration of the given loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
// Step 1: Clone the loop body.  The clone becomes the peeled iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
//         The pre-loop illegally has 2 control users (old & new loops).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
// Step 2: Make the old-loop fall-in edges point to the peeled iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
//         Do this by making the old-loop fall-in edges act as if they came
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
//         around the loopback from the prior iteration (follow the old-loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
//         backedges) and then map to the new peeled iteration.  This leaves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
//         the pre-loop with only 1 user (the new peeled iteration), but the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
//         peeled-loop backedge has 2 users.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
// Step 3: Cut the backedge on the clone (so its not a loop) and remove the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
//         extra backedge user.
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   344
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   345
//                   orig
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   346
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   347
//                  stmt1
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   348
//                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   349
//                    v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   350
//              loop predicate
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   351
//                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   352
//                    v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   353
//                   loop<----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   354
//                     |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   355
//                   stmt2    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   356
//                     |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   357
//                     v      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   358
//                    if      ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   359
//                   / \      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   360
//                  /   \     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   361
//                 v     v    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   362
//               false true   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   363
//               /       \    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   364
//              /         ----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   365
//             |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   366
//             v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   367
//           exit
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   368
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   369
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   370
//            after clone loop
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   371
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   372
//                   stmt1
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   373
//                     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   374
//                     v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   375
//               loop predicate
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   376
//                 /       \
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   377
//        clone   /         \   orig
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   378
//               /           \
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   379
//              /             \
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   380
//             v               v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   381
//   +---->loop clone          loop<----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   382
//   |      |                    |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   383
//   |    stmt2 clone          stmt2    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   384
//   |      |                    |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   385
//   |      v                    v      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   386
//   ^      if clone            If      ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   387
//   |      / \                / \      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   388
//   |     /   \              /   \     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   389
//   |    v     v            v     v    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   390
//   |    true  false      false true   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   391
//   |    /         \      /       \    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   392
//   +----           \    /         ----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   393
//                    \  /
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   394
//                    1v v2
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   395
//                  region
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   396
//                     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   397
//                     v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   398
//                   exit
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   399
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   400
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   401
//         after peel and predicate move
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   402
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   403
//                   stmt1
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   404
//                    /
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   405
//                   /
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   406
//        clone     /            orig
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   407
//                 /
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   408
//                /              +----------+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   409
//               /               |          |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   410
//              /          loop predicate   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   411
//             /                 |          |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   412
//            v                  v          |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   413
//   TOP-->loop clone          loop<----+   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   414
//          |                    |      |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   415
//        stmt2 clone          stmt2    |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   416
//          |                    |      |   ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   417
//          v                    v      |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   418
//          if clone            If      ^   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   419
//          / \                / \      |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   420
//         /   \              /   \     |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   421
//        v     v            v     v    |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   422
//      true   false      false  true   |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   423
//        |         \      /       \    |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   424
//        |          \    /         ----+   ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   425
//        |           \  /                  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   426
//        |           1v v2                 |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   427
//        v         region                  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   428
//        |            |                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   429
//        |            v                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   430
//        |          exit                   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   431
//        |                                 |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   432
//        +--------------->-----------------+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   433
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   434
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   435
//              final graph
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   436
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   437
//                  stmt1
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   438
//                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   439
//                    v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   440
//                  stmt2 clone
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   441
//                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   442
//                    v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   443
//                   if clone
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   444
//                  / |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   445
//                 /  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   446
//                v   v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   447
//            false  true
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   448
//             |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   449
//             |      v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   450
//             | loop predicate
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   451
//             |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   452
//             |      v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   453
//             |     loop<----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   454
//             |      |       |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   455
//             |    stmt2     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   456
//             |      |       |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   457
//             |      v       |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   458
//             v      if      ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   459
//             |     /  \     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   460
//             |    /    \    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   461
//             |   v     v    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   462
//             | false  true  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   463
//             |  |        \  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   464
//             v  v         --+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   465
//            region
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   466
//              |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   467
//              v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   468
//             exit
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   469
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
void PhaseIdealLoop::do_peeling( IdealLoopTree *loop, Node_List &old_new ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  // Peeling a 'main' loop in a pre/main/post situation obfuscates the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  // 'pre' loop from the main and the 'pre' can no longer have it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  // iterations adjusted.  Therefore, we need to declare this loop as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // no longer a 'main' loop; it will need new pre and post loops before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  // we can do further RCE.
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   478
#ifndef PRODUCT
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   479
  if (TraceLoopOpts) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   480
    tty->print("Peel         ");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   481
    loop->dump_head();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   482
  }
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   483
#endif
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   484
  Node* head = loop->_head;
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   485
  bool counted_loop = head->is_CountedLoop();
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   486
  if (counted_loop) {
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   487
    CountedLoopNode *cl = head->as_CountedLoop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    assert(cl->trip_count() > 0, "peeling a fully unrolled loop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    cl->set_trip_count(cl->trip_count() - 1);
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   490
    if (cl->is_main_loop()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
      cl->set_normal_loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
#ifndef PRODUCT
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   493
      if (PrintOpto && VerifyLoopOptimizations) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
        tty->print("Peeling a 'main' loop; resetting to 'normal' ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
        loop->dump_head();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  }
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   500
  Node* entry = head->in(LoopNode::EntryControl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // Step 1: Clone the loop body.  The clone becomes the peeled iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  //         The pre-loop illegally has 2 control users (old & new loops).
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   504
  clone_loop( loop, old_new, dom_depth(head) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  // Step 2: Make the old-loop fall-in edges point to the peeled iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  //         Do this by making the old-loop fall-in edges act as if they came
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  //         around the loopback from the prior iteration (follow the old-loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  //         backedges) and then map to the new peeled iteration.  This leaves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  //         the pre-loop with only 1 user (the new peeled iteration), but the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  //         peeled-loop backedge has 2 users.
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   512
  Node* new_exit_value = old_new[head->in(LoopNode::LoopBackControl)->_idx];
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   513
  new_exit_value = move_loop_predicates(entry, new_exit_value, !counted_loop);
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   514
  _igvn.hash_delete(head);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   515
  head->set_req(LoopNode::EntryControl, new_exit_value);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   516
  for (DUIterator_Fast jmax, j = head->fast_outs(jmax); j < jmax; j++) {
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   517
    Node* old = head->fast_out(j);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   518
    if (old->in(0) == loop->_head && old->req() == 3 && old->is_Phi()) {
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   519
      new_exit_value = old_new[old->in(LoopNode::LoopBackControl)->_idx];
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   520
      if (!new_exit_value )     // Backedge value is ALSO loop invariant?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
        // Then loop body backedge value remains the same.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
        new_exit_value = old->in(LoopNode::LoopBackControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
      _igvn.hash_delete(old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
      old->set_req(LoopNode::EntryControl, new_exit_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // Step 3: Cut the backedge on the clone (so its not a loop) and remove the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  //         extra backedge user.
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   531
  Node* new_head = old_new[head->_idx];
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   532
  _igvn.hash_delete(new_head);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   533
  new_head->set_req(LoopNode::LoopBackControl, C->top());
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   534
  for (DUIterator_Fast j2max, j2 = new_head->fast_outs(j2max); j2 < j2max; j2++) {
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   535
    Node* use = new_head->fast_out(j2);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   536
    if (use->in(0) == new_head && use->req() == 3 && use->is_Phi()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
      _igvn.hash_delete(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
      use->set_req(LoopNode::LoopBackControl, C->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  // Step 4: Correct dom-depth info.  Set to loop-head depth.
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   544
  int dd = dom_depth(head);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   545
  set_idom(head, head->in(1), dd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  for (uint j3 = 0; j3 < loop->_body.size(); j3++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    Node *old = loop->_body.at(j3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    Node *nnn = old_new[old->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    if (!has_ctrl(nnn))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
      set_idom(nnn, idom(nnn), dd-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    // While we're at it, remove any SafePoints from the peeled code
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   552
    if (old->Opcode() == Op_SafePoint) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      Node *nnn = old_new[old->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      lazy_replace(nnn,nnn->in(TypeFunc::Control));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  // Now force out all loop-invariant dominating tests.  The optimizer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  // finds some, but we _know_ they are all useless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  peeled_dom_test_elim(loop,old_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  loop->record_for_igvn();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   565
#define EMPTY_LOOP_SIZE 7 // number of nodes in an empty loop
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   566
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
//------------------------------policy_maximally_unroll------------------------
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   568
// Calculate exact loop trip count and return true if loop can be maximally
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   569
// unrolled.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
bool IdealLoopTree::policy_maximally_unroll( PhaseIdealLoop *phase ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  CountedLoopNode *cl = _head->as_CountedLoop();
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   572
  assert(cl->is_normal_loop(), "");
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   573
  if (!cl->is_valid_counted_loop())
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   574
    return false; // Malformed counted loop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   576
  if (!cl->has_exact_trip_count()) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   577
    // Trip count is not exact.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   581
  uint trip_count = cl->trip_count();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   582
  // Note, max_juint is used to indicate unknown trip count.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   583
  assert(trip_count > 1, "one iteration loop should be optimized out already");
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   584
  assert(trip_count < max_juint, "exact trip_count should be less than max_uint.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  // Real policy: if we maximally unroll, does it get too big?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  // Allow the unrolled mess to get larger than standard loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  // size.  After all, it will no longer be a loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  uint body_size    = _body.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  uint unroll_limit = (uint)LoopUnrollLimit * 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  assert( (intx)unroll_limit == LoopUnrollLimit * 4, "LoopUnrollLimit must fit in 32bits");
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   592
  if (trip_count > unroll_limit || body_size > unroll_limit) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   593
    return false;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   594
  }
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   595
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   596
  // Fully unroll a loop with few iterations regardless next
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   597
  // conditions since following loop optimizations will split
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   598
  // such loop anyway (pre-main-post).
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   599
  if (trip_count <= 3)
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   600
    return true;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   601
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   602
  // Take into account that after unroll conjoined heads and tails will fold,
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   603
  // otherwise policy_unroll() may allow more unrolling than max unrolling.
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   604
  uint new_body_size = EMPTY_LOOP_SIZE + (body_size - EMPTY_LOOP_SIZE) * trip_count;
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   605
  uint tst_body_size = (new_body_size - EMPTY_LOOP_SIZE) / trip_count + EMPTY_LOOP_SIZE;
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   606
  if (body_size != tst_body_size) // Check for int overflow
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   607
    return false;
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   608
  if (new_body_size > unroll_limit ||
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   609
      // Unrolling can result in a large amount of node construction
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   610
      new_body_size >= MaxNodeLimit - phase->C->unique()) {
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   611
    return false;
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   612
  }
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   613
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   614
  // Do not unroll a loop with String intrinsics code.
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   615
  // String intrinsics are large and have loops.
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   616
  for (uint k = 0; k < _body.size(); k++) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   617
    Node* n = _body.at(k);
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   618
    switch (n->Opcode()) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   619
      case Op_StrComp:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   620
      case Op_StrEquals:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   621
      case Op_StrIndexOf:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   622
      case Op_AryEq: {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   623
        return false;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   624
      }
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   625
    } // switch
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   626
  }
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   627
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   628
  return true; // Do maximally unroll
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
9434
56d7158be6dc 7039652: Performance regression after 7004547 changes
kvn
parents: 9124
diff changeset
   632
#define MAX_UNROLL 16 // maximum number of unrolls for main loop
56d7158be6dc 7039652: Performance regression after 7004547 changes
kvn
parents: 9124
diff changeset
   633
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
//------------------------------policy_unroll----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
// Return TRUE or FALSE if the loop should be unrolled or not.  Unroll if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
// the loop is a CountedLoop and the body is small enough.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
bool IdealLoopTree::policy_unroll( PhaseIdealLoop *phase ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  CountedLoopNode *cl = _head->as_CountedLoop();
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   640
  assert(cl->is_normal_loop() || cl->is_main_loop(), "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   642
  if (!cl->is_valid_counted_loop())
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   643
    return false; // Malformed counted loop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   645
  // Protect against over-unrolling.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   646
  // After split at least one iteration will be executed in pre-loop.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   647
  if (cl->trip_count() <= (uint)(cl->is_normal_loop() ? 2 : 1)) return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
9434
56d7158be6dc 7039652: Performance regression after 7004547 changes
kvn
parents: 9124
diff changeset
   649
  int future_unroll_ct = cl->unrolled_count() * 2;
56d7158be6dc 7039652: Performance regression after 7004547 changes
kvn
parents: 9124
diff changeset
   650
  if (future_unroll_ct > MAX_UNROLL) return false;
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   651
9434
56d7158be6dc 7039652: Performance regression after 7004547 changes
kvn
parents: 9124
diff changeset
   652
  // Check for initial stride being a small enough constant
56d7158be6dc 7039652: Performance regression after 7004547 changes
kvn
parents: 9124
diff changeset
   653
  if (abs(cl->stride_con()) > (1<<2)*future_unroll_ct) return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  // Don't unroll if the next round of unrolling would push us
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  // over the expected trip count of the loop.  One is subtracted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  // from the expected trip count because the pre-loop normally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  // executes 1 iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  if (UnrollLimitForProfileCheck > 0 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
      cl->profile_trip_cnt() != COUNT_UNKNOWN &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
      future_unroll_ct        > UnrollLimitForProfileCheck &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
      (float)future_unroll_ct > cl->profile_trip_cnt() - 1.0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  // When unroll count is greater than LoopUnrollMin, don't unroll if:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  //   the residual iterations are more than 10% of the trip count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  //   and rounds of "unroll,optimize" are not making significant progress
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  //   Progress defined as current size less than 20% larger than previous size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  if (UseSuperWord && cl->node_count_before_unroll() > 0 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
      future_unroll_ct > LoopUnrollMin &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
      (future_unroll_ct - 1) * 10.0 > cl->profile_trip_cnt() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
      1.2 * cl->node_count_before_unroll() < (double)_body.size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  Node *init_n = cl->init_trip();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  Node *limit_n = cl->limit();
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   679
  int stride_con = cl->stride_con();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // Non-constant bounds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  // Protect against over-unrolling when init or/and limit are not constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  // (so that trip_count's init value is maxint) but iv range is known.
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   683
  if (init_n   == NULL || !init_n->is_Con()  ||
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   684
      limit_n  == NULL || !limit_n->is_Con()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    Node* phi = cl->phi();
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   686
    if (phi != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
      assert(phi->is_Phi() && phi->in(0) == _head, "Counted loop should have iv phi.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
      const TypeInt* iv_type = phase->_igvn.type(phi)->is_int();
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   689
      int next_stride = stride_con * 2; // stride after this unroll
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   690
      if (next_stride > 0) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   691
        if (iv_type->_lo + next_stride <= iv_type->_lo || // overflow
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   692
            iv_type->_lo + next_stride >  iv_type->_hi) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
          return false;  // over-unrolling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
        }
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   695
      } else if (next_stride < 0) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   696
        if (iv_type->_hi + next_stride >= iv_type->_hi || // overflow
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   697
            iv_type->_hi + next_stride <  iv_type->_lo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
          return false;  // over-unrolling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   704
  // After unroll limit will be adjusted: new_limit = limit-stride.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   705
  // Bailout if adjustment overflow.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   706
  const TypeInt* limit_type = phase->_igvn.type(limit_n)->is_int();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   707
  if (stride_con > 0 && ((limit_type->_hi - stride_con) >= limit_type->_hi) ||
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   708
      stride_con < 0 && ((limit_type->_lo - stride_con) <= limit_type->_lo))
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   709
    return false;  // overflow
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   710
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  // Adjust body_size to determine if we unroll or not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  uint body_size = _body.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  // Also count ModL, DivL and MulL which expand mightly
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   714
  for (uint k = 0; k < _body.size(); k++) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   715
    Node* n = _body.at(k);
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   716
    switch (n->Opcode()) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   717
      case Op_ModL: body_size += 30; break;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   718
      case Op_DivL: body_size += 30; break;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   719
      case Op_MulL: body_size += 10; break;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   720
      case Op_StrComp:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   721
      case Op_StrEquals:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   722
      case Op_StrIndexOf:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   723
      case Op_AryEq: {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   724
        // Do not unroll a loop with String intrinsics code.
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   725
        // String intrinsics are large and have loops.
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   726
        return false;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   727
      }
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   728
    } // switch
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  // Check for being too big
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   732
  if (body_size > (uint)LoopUnrollLimit) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   733
     // Normal case: loop too big
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  // Unroll once!  (Each trip will soon do double iterations)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
//------------------------------policy_align-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
// Return TRUE or FALSE if the loop should be cache-line aligned.  Gather the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
// expression that does the alignment.  Note that only one array base can be
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1500
diff changeset
   744
// aligned in a loop (unless the VM guarantees mutual alignment).  Note that
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
// if we vectorize short memory ops into longer memory ops, we may want to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
// increase alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
bool IdealLoopTree::policy_align( PhaseIdealLoop *phase ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
//------------------------------policy_range_check-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
// Return TRUE or FALSE if the loop should be range-check-eliminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
// Actually we do iteration-splitting, a more powerful form of RCE.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
bool IdealLoopTree::policy_range_check( PhaseIdealLoop *phase ) const {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   755
  if (!RangeCheckElimination) return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  CountedLoopNode *cl = _head->as_CountedLoop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  // If we unrolled with no intention of doing RCE and we later
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  // changed our minds, we got no pre-loop.  Either we need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  // make a new pre-loop, or we gotta disallow RCE.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   761
  if (cl->is_main_no_pre_loop()) return false; // Disallowed for now.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  Node *trip_counter = cl->phi();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  // Check loop body for tests of trip-counter plus loop-invariant vs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  // loop-invariant.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   766
  for (uint i = 0; i < _body.size(); i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    Node *iff = _body[i];
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   768
    if (iff->Opcode() == Op_If) { // Test?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
      // Comparing trip+off vs limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
      Node *bol = iff->in(1);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   772
      if (bol->req() != 2) continue; // dead constant test
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
   773
      if (!bol->is_Bool()) {
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
   774
        assert(UseLoopPredicate && bol->Opcode() == Op_Conv2B, "predicate check only");
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
   775
        continue;
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
   776
      }
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   777
      if (bol->as_Bool()->_test._test == BoolTest::ne)
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   778
        continue; // not RC
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   779
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
      Node *cmp = bol->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
      Node *rc_exp = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      Node *limit = cmp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      Node *limit_c = phase->get_ctrl(limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      if( limit_c == phase->C->top() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
        return false;           // Found dead test on live IF?  No RCE!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
      if( is_member(phase->get_loop(limit_c) ) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
        // Compare might have operands swapped; commute them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
        rc_exp = cmp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
        limit  = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
        limit_c = phase->get_ctrl(limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
        if( is_member(phase->get_loop(limit_c) ) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
          continue;             // Both inputs are loop varying; cannot RCE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
      if (!phase->is_scaled_iv_plus_offset(rc_exp, trip_counter, NULL, NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
      // Yeah!  Found a test like 'trip+off vs limit'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      // Test is an IfNode, has 2 projections.  If BOTH are in the loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      // we need loop unswitching instead of iteration splitting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
      if( is_loop_exit(iff) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
        return true;            // Found reason to split iterations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    } // End of is IF
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
//------------------------------policy_peel_only-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
// Return TRUE or FALSE if the loop should NEVER be RCE'd or aligned.  Useful
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
// for unrolling loops with NO array accesses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
bool IdealLoopTree::policy_peel_only( PhaseIdealLoop *phase ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  for( uint i = 0; i < _body.size(); i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
    if( _body[i]->is_Mem() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  // No memory accesses at all!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
//------------------------------clone_up_backedge_goo--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
// If Node n lives in the back_ctrl block and cannot float, we clone a private
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
// version of n in preheader_ctrl block and return that, otherwise return n.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
Node *PhaseIdealLoop::clone_up_backedge_goo( Node *back_ctrl, Node *preheader_ctrl, Node *n ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  if( get_ctrl(n) != back_ctrl ) return n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  Node *x = NULL;               // If required, a clone of 'n'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  // Check for 'n' being pinned in the backedge.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  if( n->in(0) && n->in(0) == back_ctrl ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    x = n->clone();             // Clone a copy of 'n' to preheader
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    x->set_req( 0, preheader_ctrl ); // Fix x's control input to preheader
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  // Recursive fixup any other input edges into x.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  // If there are no changes we can just return 'n', otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  // we need to clone a private copy and change it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  for( uint i = 1; i < n->req(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
    Node *g = clone_up_backedge_goo( back_ctrl, preheader_ctrl, n->in(i) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
    if( g != n->in(i) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
      if( !x )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
        x = n->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
      x->set_req(i, g);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  if( x ) {                     // x can legally float to pre-header location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
    register_new_node( x, preheader_ctrl );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    return x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  } else {                      // raise n to cover LCA of uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    set_ctrl( n, find_non_split_ctrl(back_ctrl->in(0)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  return n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
//------------------------------insert_pre_post_loops--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
// Insert pre and post loops.  If peel_only is set, the pre-loop can not have
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
// more iterations added.  It acts as a 'peel' only, no lower-bound RCE, no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
// alignment.  Useful to unroll loops that do no array accesses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
void PhaseIdealLoop::insert_pre_post_loops( IdealLoopTree *loop, Node_List &old_new, bool peel_only ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   863
#ifndef PRODUCT
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   864
  if (TraceLoopOpts) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   865
    if (peel_only)
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   866
      tty->print("PeelMainPost ");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   867
    else
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   868
      tty->print("PreMainPost  ");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   869
    loop->dump_head();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   870
  }
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   871
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  // Find common pieces of the loop being guarded with pre & post loops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  CountedLoopNode *main_head = loop->_head->as_CountedLoop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  assert( main_head->is_normal_loop(), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  CountedLoopEndNode *main_end = main_head->loopexit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  assert( main_end->outcnt() == 2, "1 true, 1 false path only" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  uint dd_main_head = dom_depth(main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  uint max = main_head->outcnt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  Node *pre_header= main_head->in(LoopNode::EntryControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  Node *init      = main_head->init_trip();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  Node *incr      = main_end ->incr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  Node *limit     = main_end ->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  Node *stride    = main_end ->stride();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  Node *cmp       = main_end ->cmp_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  BoolTest::mask b_test = main_end->test_trip();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  // Need only 1 user of 'bol' because I will be hacking the loop bounds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  Node *bol = main_end->in(CountedLoopEndNode::TestValue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  if( bol->outcnt() != 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    bol = bol->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    register_new_node(bol,main_end->in(CountedLoopEndNode::TestControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    _igvn.hash_delete(main_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    main_end->set_req(CountedLoopEndNode::TestValue, bol);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  // Need only 1 user of 'cmp' because I will be hacking the loop bounds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  if( cmp->outcnt() != 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    cmp = cmp->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    register_new_node(cmp,main_end->in(CountedLoopEndNode::TestControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    _igvn.hash_delete(bol);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    bol->set_req(1, cmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  //------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  // Step A: Create Post-Loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  Node* main_exit = main_end->proj_out(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  assert( main_exit->Opcode() == Op_IfFalse, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  int dd_main_exit = dom_depth(main_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  // Step A1: Clone the loop body.  The clone becomes the post-loop.  The main
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  // loop pre-header illegally has 2 control users (old & new loops).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  clone_loop( loop, old_new, dd_main_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  assert( old_new[main_end ->_idx]->Opcode() == Op_CountedLoopEnd, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  CountedLoopNode *post_head = old_new[main_head->_idx]->as_CountedLoop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  post_head->set_post_loop(main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
1432
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
   919
  // Reduce the post-loop trip count.
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
   920
  CountedLoopEndNode* post_end = old_new[main_end ->_idx]->as_CountedLoopEnd();
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
   921
  post_end->_prob = PROB_FAIR;
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
   922
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  // Build the main-loop normal exit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  IfFalseNode *new_main_exit = new (C, 1) IfFalseNode(main_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  _igvn.register_new_node_with_optimizer( new_main_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  set_idom(new_main_exit, main_end, dd_main_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  set_loop(new_main_exit, loop->_parent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  // Step A2: Build a zero-trip guard for the post-loop.  After leaving the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  // main-loop, the post-loop may not execute at all.  We 'opaque' the incr
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  // (the main-loop trip-counter exit value) because we will be changing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  // the exit value (via unrolling) so we cannot constant-fold away the zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  // trip guard until all unrolling is done.
762
1b26adb5fea1 6715633: when matching a memory node the adr_type should not change
kvn
parents: 360
diff changeset
   934
  Node *zer_opaq = new (C, 2) Opaque1Node(C, incr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  Node *zer_cmp  = new (C, 3) CmpINode( zer_opaq, limit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  Node *zer_bol  = new (C, 2) BoolNode( zer_cmp, b_test );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  register_new_node( zer_opaq, new_main_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  register_new_node( zer_cmp , new_main_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  register_new_node( zer_bol , new_main_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  // Build the IfNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  IfNode *zer_iff = new (C, 2) IfNode( new_main_exit, zer_bol, PROB_FAIR, COUNT_UNKNOWN );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  _igvn.register_new_node_with_optimizer( zer_iff );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  set_idom(zer_iff, new_main_exit, dd_main_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  set_loop(zer_iff, loop->_parent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  // Plug in the false-path, taken if we need to skip post-loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  _igvn.hash_delete( main_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  main_exit->set_req(0, zer_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  _igvn._worklist.push(main_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  set_idom(main_exit, zer_iff, dd_main_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  set_idom(main_exit->unique_out(), zer_iff, dd_main_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  // Make the true-path, must enter the post loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  Node *zer_taken = new (C, 1) IfTrueNode( zer_iff );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  _igvn.register_new_node_with_optimizer( zer_taken );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  set_idom(zer_taken, zer_iff, dd_main_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  set_loop(zer_taken, loop->_parent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  // Plug in the true path
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  _igvn.hash_delete( post_head );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  post_head->set_req(LoopNode::EntryControl, zer_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  set_idom(post_head, zer_taken, dd_main_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  // Step A3: Make the fall-in values to the post-loop come from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  // fall-out values of the main-loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  for (DUIterator_Fast imax, i = main_head->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    Node* main_phi = main_head->fast_out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    if( main_phi->is_Phi() && main_phi->in(0) == main_head && main_phi->outcnt() >0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
      Node *post_phi = old_new[main_phi->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
      Node *fallmain  = clone_up_backedge_goo(main_head->back_control(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
                                              post_head->init_control(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
                                              main_phi->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
      _igvn.hash_delete(post_phi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
      post_phi->set_req( LoopNode::EntryControl, fallmain );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  // Update local caches for next stanza
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  main_exit = new_main_exit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  //------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  // Step B: Create Pre-Loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  // Step B1: Clone the loop body.  The clone becomes the pre-loop.  The main
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  // loop pre-header illegally has 2 control users (old & new loops).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  clone_loop( loop, old_new, dd_main_head );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  CountedLoopNode*    pre_head = old_new[main_head->_idx]->as_CountedLoop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  CountedLoopEndNode* pre_end  = old_new[main_end ->_idx]->as_CountedLoopEnd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  pre_head->set_pre_loop(main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  Node *pre_incr = old_new[incr->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
1432
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
   992
  // Reduce the pre-loop trip count.
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
   993
  pre_end->_prob = PROB_FAIR;
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
   994
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  // Find the pre-loop normal exit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  Node* pre_exit = pre_end->proj_out(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
  assert( pre_exit->Opcode() == Op_IfFalse, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  IfFalseNode *new_pre_exit = new (C, 1) IfFalseNode(pre_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  _igvn.register_new_node_with_optimizer( new_pre_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  set_idom(new_pre_exit, pre_end, dd_main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  set_loop(new_pre_exit, loop->_parent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  // Step B2: Build a zero-trip guard for the main-loop.  After leaving the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  // pre-loop, the main-loop may not execute at all.  Later in life this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  // zero-trip guard will become the minimum-trip guard when we unroll
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  // the main-loop.
762
1b26adb5fea1 6715633: when matching a memory node the adr_type should not change
kvn
parents: 360
diff changeset
  1007
  Node *min_opaq = new (C, 2) Opaque1Node(C, limit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  Node *min_cmp  = new (C, 3) CmpINode( pre_incr, min_opaq );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  Node *min_bol  = new (C, 2) BoolNode( min_cmp, b_test );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  register_new_node( min_opaq, new_pre_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  register_new_node( min_cmp , new_pre_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  register_new_node( min_bol , new_pre_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
1432
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
  1014
  // Build the IfNode (assume the main-loop is executed always).
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
  1015
  IfNode *min_iff = new (C, 2) IfNode( new_pre_exit, min_bol, PROB_ALWAYS, COUNT_UNKNOWN );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  _igvn.register_new_node_with_optimizer( min_iff );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  set_idom(min_iff, new_pre_exit, dd_main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  set_loop(min_iff, loop->_parent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  // Plug in the false-path, taken if we need to skip main-loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  _igvn.hash_delete( pre_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  pre_exit->set_req(0, min_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  set_idom(pre_exit, min_iff, dd_main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  set_idom(pre_exit->unique_out(), min_iff, dd_main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  // Make the true-path, must enter the main loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  Node *min_taken = new (C, 1) IfTrueNode( min_iff );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  _igvn.register_new_node_with_optimizer( min_taken );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  set_idom(min_taken, min_iff, dd_main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  set_loop(min_taken, loop->_parent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  // Plug in the true path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  _igvn.hash_delete( main_head );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  main_head->set_req(LoopNode::EntryControl, min_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  set_idom(main_head, min_taken, dd_main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  // Step B3: Make the fall-in values to the main-loop come from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  // fall-out values of the pre-loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  for (DUIterator_Fast i2max, i2 = main_head->fast_outs(i2max); i2 < i2max; i2++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
    Node* main_phi = main_head->fast_out(i2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
    if( main_phi->is_Phi() && main_phi->in(0) == main_head && main_phi->outcnt() > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
      Node *pre_phi = old_new[main_phi->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
      Node *fallpre  = clone_up_backedge_goo(pre_head->back_control(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
                                             main_head->init_control(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
                                             pre_phi->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
      _igvn.hash_delete(main_phi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
      main_phi->set_req( LoopNode::EntryControl, fallpre );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  // Step B4: Shorten the pre-loop to run only 1 iteration (for now).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  // RCE and alignment may change this later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  Node *cmp_end = pre_end->cmp_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  assert( cmp_end->in(2) == limit, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  Node *pre_limit = new (C, 3) AddINode( init, stride );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  // Save the original loop limit in this Opaque1 node for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  // use by range check elimination.
762
1b26adb5fea1 6715633: when matching a memory node the adr_type should not change
kvn
parents: 360
diff changeset
  1057
  Node *pre_opaq  = new (C, 3) Opaque1Node(C, pre_limit, limit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  register_new_node( pre_limit, pre_head->in(0) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  register_new_node( pre_opaq , pre_head->in(0) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  // Since no other users of pre-loop compare, I can hack limit directly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  assert( cmp_end->outcnt() == 1, "no other users" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  _igvn.hash_delete(cmp_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  cmp_end->set_req(2, peel_only ? pre_limit : pre_opaq);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  // Special case for not-equal loop bounds:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  // Change pre loop test, main loop test, and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  // main loop guard test to use lt or gt depending on stride
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  // direction:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  // positive stride use <
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  // negative stride use >
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  if (pre_end->in(CountedLoopEndNode::TestValue)->as_Bool()->_test._test == BoolTest::ne) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1075
    assert(!LoopLimitCheck, "only canonical tests (lt or gt) are expected");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    BoolTest::mask new_test = (main_end->stride_con() > 0) ? BoolTest::lt : BoolTest::gt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
    // Modify pre loop end condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
    Node* pre_bol = pre_end->in(CountedLoopEndNode::TestValue)->as_Bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
    BoolNode* new_bol0 = new (C, 2) BoolNode(pre_bol->in(1), new_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    register_new_node( new_bol0, pre_head->in(0) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
    _igvn.hash_delete(pre_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
    pre_end->set_req(CountedLoopEndNode::TestValue, new_bol0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
    // Modify main loop guard condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
    assert(min_iff->in(CountedLoopEndNode::TestValue) == min_bol, "guard okay");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    BoolNode* new_bol1 = new (C, 2) BoolNode(min_bol->in(1), new_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    register_new_node( new_bol1, new_pre_exit );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
    _igvn.hash_delete(min_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
    min_iff->set_req(CountedLoopEndNode::TestValue, new_bol1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
    // Modify main loop end condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    BoolNode* main_bol = main_end->in(CountedLoopEndNode::TestValue)->as_Bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
    BoolNode* new_bol2 = new (C, 2) BoolNode(main_bol->in(1), new_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
    register_new_node( new_bol2, main_end->in(CountedLoopEndNode::TestControl) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
    _igvn.hash_delete(main_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    main_end->set_req(CountedLoopEndNode::TestValue, new_bol2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  // Flag main loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  main_head->set_main_loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  if( peel_only ) main_head->set_main_no_pre_loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1102
  // Subtract a trip count for the pre-loop.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1103
  main_head->set_trip_count(main_head->trip_count() - 1);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1104
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  // It's difficult to be precise about the trip-counts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  // for the pre/post loops.  They are usually very short,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  // so guess that 4 trips is a reasonable value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  post_head->set_profile_trip_cnt(4.0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  pre_head->set_profile_trip_cnt(4.0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  // Now force out all loop-invariant dominating tests.  The optimizer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  // finds some, but we _know_ they are all useless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  peeled_dom_test_elim(loop,old_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
//------------------------------is_invariant-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
// Return true if n is invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
bool IdealLoopTree::is_invariant(Node* n) const {
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  1119
  Node *n_c = _phase->has_ctrl(n) ? _phase->get_ctrl(n) : n;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  if (n_c->is_top()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  return !is_member(_phase->get_loop(n_c));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
//------------------------------do_unroll--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
// Unroll the loop body one step - make each trip do 2 iterations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
void PhaseIdealLoop::do_unroll( IdealLoopTree *loop, Node_List &old_new, bool adjust_min_trip ) {
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1128
  assert(LoopUnrollLimit, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1129
  CountedLoopNode *loop_head = loop->_head->as_CountedLoop();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1130
  CountedLoopEndNode *loop_end = loop_head->loopexit();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1131
  assert(loop_end, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
#ifndef PRODUCT
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1133
  if (PrintOpto && VerifyLoopOptimizations) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    tty->print("Unrolling ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
    loop->dump_head();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1136
  } else if (TraceLoopOpts) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  1137
    if (loop_head->trip_count() < (uint)LoopUnrollLimit) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1138
      tty->print("Unroll %d(%2d) ", loop_head->unrolled_count()*2, loop_head->trip_count());
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  1139
    } else {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1140
      tty->print("Unroll %d     ", loop_head->unrolled_count()*2);
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  1141
    }
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1142
    loop->dump_head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  // Remember loop node count before unrolling to detect
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  // if rounds of unroll,optimize are making progress
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  loop_head->set_node_count_before_unroll(loop->_body.size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  Node *ctrl  = loop_head->in(LoopNode::EntryControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  Node *limit = loop_head->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  Node *init  = loop_head->init_trip();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1153
  Node *stride = loop_head->stride();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  Node *opaq = NULL;
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1156
  if (adjust_min_trip) {       // If not maximally unrolling, need adjustment
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1157
    // Search for zero-trip guard.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
    assert( loop_head->is_main_loop(), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
    assert( ctrl->Opcode() == Op_IfTrue || ctrl->Opcode() == Op_IfFalse, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
    Node *iff = ctrl->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
    assert( iff->Opcode() == Op_If, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
    Node *bol = iff->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
    assert( bol->Opcode() == Op_Bool, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
    Node *cmp = bol->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
    assert( cmp->Opcode() == Op_CmpI, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
    opaq = cmp->in(2);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1167
    // Occasionally it's possible for a zero-trip guard Opaque1 node to be
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
    // optimized away and then another round of loop opts attempted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
    // We can not optimize this particular loop in that case.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1170
    if (opaq->Opcode() != Op_Opaque1)
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1171
      return; // Cannot find zero-trip guard!  Bail out!
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1172
    // Zero-trip test uses an 'opaque' node which is not shared.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1173
    assert(opaq->outcnt() == 1 && opaq->in(1) == limit, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
  C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1178
  Node* new_limit = NULL;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1179
  if (UnrollLimitCheck) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1180
    int stride_con = stride->get_int();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1181
    int stride_p = (stride_con > 0) ? stride_con : -stride_con;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1182
    uint old_trip_count = loop_head->trip_count();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1183
    // Verify that unroll policy result is still valid.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1184
    assert(old_trip_count > 1 &&
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1185
           (!adjust_min_trip || stride_p <= (1<<3)*loop_head->unrolled_count()), "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1187
    // Adjust loop limit to keep valid iterations number after unroll.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1188
    // Use (limit - stride) instead of (((limit - init)/stride) & (-2))*stride
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1189
    // which may overflow.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1190
    if (!adjust_min_trip) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1191
      assert(old_trip_count > 1 && (old_trip_count & 1) == 0,
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1192
             "odd trip count for maximally unroll");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1193
      // Don't need to adjust limit for maximally unroll since trip count is even.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1194
    } else if (loop_head->has_exact_trip_count() && init->is_Con()) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1195
      // Loop's limit is constant. Loop's init could be constant when pre-loop
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1196
      // become peeled iteration.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1197
      long init_con = init->get_int();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1198
      // We can keep old loop limit if iterations count stays the same:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1199
      //   old_trip_count == new_trip_count * 2
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1200
      // Note: since old_trip_count >= 2 then new_trip_count >= 1
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1201
      // so we also don't need to adjust zero trip test.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1202
      long limit_con  = limit->get_int();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1203
      // (stride_con*2) not overflow since stride_con <= 8.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1204
      int new_stride_con = stride_con * 2;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1205
      int stride_m    = new_stride_con - (stride_con > 0 ? 1 : -1);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1206
      long trip_count = (limit_con - init_con + stride_m)/new_stride_con;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1207
      // New trip count should satisfy next conditions.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1208
      assert(trip_count > 0 && (julong)trip_count < (julong)max_juint/2, "sanity");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1209
      uint new_trip_count = (uint)trip_count;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1210
      adjust_min_trip = (old_trip_count != new_trip_count*2);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1211
    }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1212
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1213
    if (adjust_min_trip) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1214
      // Step 2: Adjust the trip limit if it is called for.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1215
      // The adjustment amount is -stride. Need to make sure if the
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1216
      // adjustment underflows or overflows, then the main loop is skipped.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1217
      Node* cmp = loop_end->cmp_node();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1218
      assert(cmp->in(2) == limit, "sanity");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1219
      assert(opaq != NULL && opaq->in(1) == limit, "sanity");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1220
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1221
      // Verify that policy_unroll result is still valid.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1222
      const TypeInt* limit_type = _igvn.type(limit)->is_int();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1223
      assert(stride_con > 0 && ((limit_type->_hi - stride_con) < limit_type->_hi) ||
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1224
             stride_con < 0 && ((limit_type->_lo - stride_con) > limit_type->_lo), "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1226
      if (limit->is_Con()) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1227
        // The check in policy_unroll and the assert above guarantee
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1228
        // no underflow if limit is constant.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1229
        new_limit = _igvn.intcon(limit->get_int() - stride_con);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1230
        set_ctrl(new_limit, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1231
      } else {
9449
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1232
        // Limit is not constant.
9634
985153f94e98 7043552: regression after 7042327
kvn
parents: 9449
diff changeset
  1233
        if (loop_head->unrolled_count() == 1) { // only for first unroll
9449
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1234
          // Separate limit by Opaque node in case it is an incremented
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1235
          // variable from previous loop to avoid using pre-incremented
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1236
          // value which could increase register pressure.
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1237
          // Otherwise reorg_offsets() optimization will create a separate
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1238
          // Opaque node for each use of trip-counter and as result
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1239
          // zero trip guard limit will be different from loop limit.
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1240
          assert(has_ctrl(opaq), "should have it");
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1241
          Node* opaq_ctrl = get_ctrl(opaq);
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1242
          limit = new (C, 2) Opaque2Node( C, limit );
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1243
          register_new_node( limit, opaq_ctrl );
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1244
        }
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1245
        if (stride_con > 0 && ((limit_type->_lo - stride_con) < limit_type->_lo) ||
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1246
                   stride_con < 0 && ((limit_type->_hi - stride_con) > limit_type->_hi)) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1247
          // No underflow.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1248
          new_limit = new (C, 3) SubINode(limit, stride);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1249
        } else {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1250
          // (limit - stride) may underflow.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1251
          // Clamp the adjustment value with MININT or MAXINT:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1252
          //
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1253
          //   new_limit = limit-stride
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1254
          //   if (stride > 0)
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1255
          //     new_limit = (limit < new_limit) ? MININT : new_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1256
          //   else
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1257
          //     new_limit = (limit > new_limit) ? MAXINT : new_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1258
          //
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1259
          BoolTest::mask bt = loop_end->test_trip();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1260
          assert(bt == BoolTest::lt || bt == BoolTest::gt, "canonical test is expected");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1261
          Node* adj_max = _igvn.intcon((stride_con > 0) ? min_jint : max_jint);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1262
          set_ctrl(adj_max, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1263
          Node* old_limit = NULL;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1264
          Node* adj_limit = NULL;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1265
          Node* bol = limit->is_CMove() ? limit->in(CMoveNode::Condition) : NULL;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1266
          if (loop_head->unrolled_count() > 1 &&
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1267
              limit->is_CMove() && limit->Opcode() == Op_CMoveI &&
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1268
              limit->in(CMoveNode::IfTrue) == adj_max &&
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1269
              bol->as_Bool()->_test._test == bt &&
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1270
              bol->in(1)->Opcode() == Op_CmpI &&
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1271
              bol->in(1)->in(2) == limit->in(CMoveNode::IfFalse)) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1272
            // Loop was unrolled before.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1273
            // Optimize the limit to avoid nested CMove:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1274
            // use original limit as old limit.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1275
            old_limit = bol->in(1)->in(1);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1276
            // Adjust previous adjusted limit.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1277
            adj_limit = limit->in(CMoveNode::IfFalse);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1278
            adj_limit = new (C, 3) SubINode(adj_limit, stride);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1279
          } else {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1280
            old_limit = limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1281
            adj_limit = new (C, 3) SubINode(limit, stride);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1282
          }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1283
          assert(old_limit != NULL && adj_limit != NULL, "");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1284
          register_new_node( adj_limit, ctrl ); // adjust amount
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1285
          Node* adj_cmp = new (C, 3) CmpINode(old_limit, adj_limit);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1286
          register_new_node( adj_cmp, ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1287
          Node* adj_bool = new (C, 2) BoolNode(adj_cmp, bt);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1288
          register_new_node( adj_bool, ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1289
          new_limit = new (C, 4) CMoveINode(adj_bool, adj_limit, adj_max, TypeInt::INT);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1290
        }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1291
        register_new_node(new_limit, ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1292
      }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1293
      assert(new_limit != NULL, "");
9449
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1294
      // Replace in loop test.
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1295
      _igvn.hash_delete(cmp);
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1296
      cmp->set_req(2, new_limit);
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1297
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1298
      // Step 3: Find the min-trip test guaranteed before a 'main' loop.
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1299
      // Make it a 1-trip test (means at least 2 trips).
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1300
9449
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1301
      // Guard test uses an 'opaque' node which is not shared.  Hence I
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1302
      // can edit it's inputs directly.  Hammer in the new limit for the
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1303
      // minimum-trip guard.
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1304
      assert(opaq->outcnt() == 1, "");
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1305
      _igvn.hash_delete(opaq);
b2c921e1f46d 7042327: assert(opaq->outcnt() == 1 && opaq->in(1) == limit)
kvn
parents: 9446
diff changeset
  1306
      opaq->set_req(1, new_limit);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1307
    }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1308
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1309
    // Adjust max trip count. The trip count is intentionally rounded
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1310
    // down here (e.g. 15-> 7-> 3-> 1) because if we unwittingly over-unroll,
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1311
    // the main, unrolled, part of the loop will never execute as it is protected
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1312
    // by the min-trip test.  See bug 4834191 for a case where we over-unrolled
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1313
    // and later determined that part of the unrolled loop was dead.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1314
    loop_head->set_trip_count(old_trip_count / 2);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1315
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1316
    // Double the count of original iterations in the unrolled loop body.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1317
    loop_head->double_unrolled_count();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1318
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1319
  } else { // LoopLimitCheck
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1320
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1321
    // Adjust max trip count. The trip count is intentionally rounded
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1322
    // down here (e.g. 15-> 7-> 3-> 1) because if we unwittingly over-unroll,
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1323
    // the main, unrolled, part of the loop will never execute as it is protected
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1324
    // by the min-trip test.  See bug 4834191 for a case where we over-unrolled
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1325
    // and later determined that part of the unrolled loop was dead.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1326
    loop_head->set_trip_count(loop_head->trip_count() / 2);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1327
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1328
    // Double the count of original iterations in the unrolled loop body.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1329
    loop_head->double_unrolled_count();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1331
    // -----------
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1332
    // Step 2: Cut back the trip counter for an unroll amount of 2.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1333
    // Loop will normally trip (limit - init)/stride_con.  Since it's a
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1334
    // CountedLoop this is exact (stride divides limit-init exactly).
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1335
    // We are going to double the loop body, so we want to knock off any
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1336
    // odd iteration: (trip_cnt & ~1).  Then back compute a new limit.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1337
    Node *span = new (C, 3) SubINode( limit, init );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1338
    register_new_node( span, ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1339
    Node *trip = new (C, 3) DivINode( 0, span, stride );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1340
    register_new_node( trip, ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1341
    Node *mtwo = _igvn.intcon(-2);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1342
    set_ctrl(mtwo, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1343
    Node *rond = new (C, 3) AndINode( trip, mtwo );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1344
    register_new_node( rond, ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1345
    Node *spn2 = new (C, 3) MulINode( rond, stride );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1346
    register_new_node( spn2, ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1347
    new_limit = new (C, 3) AddINode( spn2, init );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1348
    register_new_node( new_limit, ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1349
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1350
    // Hammer in the new limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1351
    Node *ctrl2 = loop_end->in(0);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1352
    Node *cmp2 = new (C, 3) CmpINode( loop_head->incr(), new_limit );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1353
    register_new_node( cmp2, ctrl2 );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1354
    Node *bol2 = new (C, 2) BoolNode( cmp2, loop_end->test_trip() );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1355
    register_new_node( bol2, ctrl2 );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1356
    _igvn.hash_delete(loop_end);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1357
    loop_end->set_req(CountedLoopEndNode::TestValue, bol2);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1358
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1359
    // Step 3: Find the min-trip test guaranteed before a 'main' loop.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1360
    // Make it a 1-trip test (means at least 2 trips).
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1361
    if( adjust_min_trip ) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1362
      assert( new_limit != NULL, "" );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1363
      // Guard test uses an 'opaque' node which is not shared.  Hence I
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1364
      // can edit it's inputs directly.  Hammer in the new limit for the
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1365
      // minimum-trip guard.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1366
      assert( opaq->outcnt() == 1, "" );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1367
      _igvn.hash_delete(opaq);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1368
      opaq->set_req(1, new_limit);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1369
    }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1370
  } // LoopLimitCheck
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
  // Step 4: Clone the loop body.  Move it inside the loop.  This loop body
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  // represents the odd iterations; since the loop trips an even number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  // times its backedge is never taken.  Kill the backedge.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
  uint dd = dom_depth(loop_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
  clone_loop( loop, old_new, dd );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  // Make backedges of the clone equal to backedges of the original.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
  // Make the fall-in from the original come from the fall-out of the clone.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  for (DUIterator_Fast jmax, j = loop_head->fast_outs(jmax); j < jmax; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
    Node* phi = loop_head->fast_out(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
    if( phi->is_Phi() && phi->in(0) == loop_head && phi->outcnt() > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
      Node *newphi = old_new[phi->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
      _igvn.hash_delete( phi );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
      _igvn.hash_delete( newphi );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
      phi   ->set_req(LoopNode::   EntryControl, newphi->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
      newphi->set_req(LoopNode::LoopBackControl, phi   ->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
      phi   ->set_req(LoopNode::LoopBackControl, C->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  Node *clone_head = old_new[loop_head->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
  _igvn.hash_delete( clone_head );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
  loop_head ->set_req(LoopNode::   EntryControl, clone_head->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
  clone_head->set_req(LoopNode::LoopBackControl, loop_head ->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
  loop_head ->set_req(LoopNode::LoopBackControl, C->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
  loop->_head = clone_head;     // New loop header
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
  set_idom(loop_head,  loop_head ->in(LoopNode::EntryControl), dd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  set_idom(clone_head, clone_head->in(LoopNode::EntryControl), dd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  // Kill the clone's backedge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  Node *newcle = old_new[loop_end->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  _igvn.hash_delete( newcle );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  Node *one = _igvn.intcon(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  set_ctrl(one, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  newcle->set_req(1, one);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  // Force clone into same loop body
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  uint max = loop->_body.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  for( uint k = 0; k < max; k++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
    Node *old = loop->_body.at(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
    Node *nnn = old_new[old->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
    loop->_body.push(nnn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
    if (!has_ctrl(old))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
      set_loop(nnn, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
  }
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 781
diff changeset
  1418
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 781
diff changeset
  1419
  loop->record_for_igvn();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
//------------------------------do_maximally_unroll----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
void PhaseIdealLoop::do_maximally_unroll( IdealLoopTree *loop, Node_List &old_new ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  CountedLoopNode *cl = loop->_head->as_CountedLoop();
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1426
  assert(cl->has_exact_trip_count(), "trip count is not exact");
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1427
  assert(cl->trip_count() > 0, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1428
#ifndef PRODUCT
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1429
  if (TraceLoopOpts) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1430
    tty->print("MaxUnroll  %d ", cl->trip_count());
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1431
    loop->dump_head();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1432
  }
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1433
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
  // If loop is tripping an odd number of times, peel odd iteration
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1436
  if ((cl->trip_count() & 1) == 1) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1437
    do_peeling(loop, old_new);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
  // Now its tripping an even number of times remaining.  Double loop body.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  // Do not adjust pre-guards; they are not needed and do not exist.
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1442
  if (cl->trip_count() > 0) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1443
    assert((cl->trip_count() & 1) == 0, "missed peeling");
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1444
    do_unroll(loop, old_new, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
//------------------------------dominates_backedge---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
// Returns true if ctrl is executed on every complete iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
bool IdealLoopTree::dominates_backedge(Node* ctrl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
  assert(ctrl->is_CFG(), "must be control");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  Node* backedge = _head->as_Loop()->in(LoopNode::LoopBackControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  return _phase->dom_lca_internal(ctrl, backedge) == ctrl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
//------------------------------add_constraint---------------------------------
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1457
// Constrain the main loop iterations so the conditions:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1458
//    low_limit <= scale_con * I + offset  <  upper_limit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
// always holds true.  That is, either increase the number of iterations in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
// the pre-loop or the post-loop until the condition holds true in the main
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
// loop.  Stride, scale, offset and limit are all loop invariant.  Further,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
// stride and scale are constants (offset and limit often are).
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1463
void PhaseIdealLoop::add_constraint( int stride_con, int scale_con, Node *offset, Node *low_limit, Node *upper_limit, Node *pre_ctrl, Node **pre_limit, Node **main_limit ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  // For positive stride, the pre-loop limit always uses a MAX function
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  // and the main loop a MIN function.  For negative stride these are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  // reversed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  // Also for positive stride*scale the affine function is increasing, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
  // pre-loop must check for underflow and the post-loop for overflow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  // Negative stride*scale reverses this; pre-loop checks for overflow and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  // post-loop for underflow.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1472
  if (stride_con*scale_con > 0) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1473
    // The overflow limit: scale*I+offset < upper_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1474
    // For main-loop compute
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1475
    //   ( if (scale > 0) /* and stride > 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1476
    //       I < (upper_limit-offset)/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1477
    //     else /* scale < 0 and stride < 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1478
    //       I > (upper_limit-offset)/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1479
    //   )
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1480
    //
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1481
    // (upper_limit-offset) may overflow when offset < 0.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1482
    // But it is fine since main loop will either have
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1483
    // less iterations or will be skipped in such case.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1484
    Node *con = new (C, 3) SubINode(upper_limit, offset);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1485
    register_new_node(con, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1486
    Node *scale = _igvn.intcon(scale_con);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1487
    set_ctrl(scale, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1488
    Node *X = new (C, 3) DivINode(0, con, scale);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1489
    register_new_node(X, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1490
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1491
    // Adjust main-loop last iteration
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1492
    Node *loop_limit = *main_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1493
    loop_limit = (stride_con > 0) // scale > 0
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1494
      ? (Node*)(new (C, 3) MinINode(loop_limit, X))
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1495
      : (Node*)(new (C, 3) MaxINode(loop_limit, X));
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1496
    register_new_node(loop_limit, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1497
    *main_limit = loop_limit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1499
    // The underflow limit: low_limit <= scale*I+offset.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1500
    // For pre-loop compute
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1501
    //   NOT(scale*I+offset >= low_limit)
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1502
    //   scale*I+offset < low_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1503
    //   ( if (scale > 0) /* and stride > 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1504
    //       I < (low_limit-offset)/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1505
    //     else /* scale < 0 and stride < 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1506
    //       I > (low_limit-offset)/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1507
    //   )
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1508
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1509
    if (low_limit->get_int() == -max_jint) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1510
      if (!RangeLimitCheck) return;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1511
      // We need this guard when scale*pre_limit+offset >= limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1512
      // due to underflow so we need execute pre-loop until
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1513
      // scale*I+offset >= min_int. But (low_limit-offset) will
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1514
      // underflow when offset > 0 and X will be > original_limit.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1515
      // To avoid it we replace offset = offset > 0 ? 0 : offset
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1516
      // and add min(pre_limit, original_limit).
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1517
      Node* shift = _igvn.intcon(31);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1518
      set_ctrl(shift, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1519
      Node *neg_off = new (C, 3) RShiftINode(offset, shift);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1520
      register_new_node(neg_off, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1521
      offset = new (C, 3) AndINode(offset, neg_off);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1522
      register_new_node(offset, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1523
    } else {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1524
      assert(low_limit->get_int() == 0, "wrong low limit for range check");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1525
      // The only problem we have here when offset == min_int
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1526
      // since (0-min_int) == min_int. It may be fine for scale > 0
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1527
      // but for scale < 0 X will be < original_limit.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1528
    }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1529
    con = new (C, 3) SubINode(low_limit, offset);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1530
    register_new_node(con, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1531
    scale = _igvn.intcon(scale_con);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1532
    set_ctrl(scale, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1533
    X = new (C, 3) DivINode(0, con, scale);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1534
    register_new_node(X, pre_ctrl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1536
    // Adjust pre-loop last iteration
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1537
    loop_limit = *pre_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1538
    loop_limit = (stride_con > 0) // scale > 0
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1539
      ? (Node*)(new (C, 3) MaxINode(loop_limit, X))
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1540
      : (Node*)(new (C, 3) MinINode(loop_limit, X));
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1541
    register_new_node( loop_limit, pre_ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1542
    *pre_limit = loop_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1543
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1544
  } else { // stride_con*scale_con < 0
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1545
    // For negative stride*scale pre-loop checks for overflow and
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1546
    // post-loop for underflow.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1547
    //
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1548
    // The underflow limit: low_limit <= scale*I+offset.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1549
    // For main-loop compute
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1550
    //   scale*I+offset+1 > low_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1551
    //   ( if (scale < 0) /* and stride > 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1552
    //       I < (low_limit-(offset+1))/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1553
    //     else /* scale < 0 and stride < 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1554
    //       I > (low_limit-(offset+1))/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1555
    //   )
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1556
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1557
    if (low_limit->get_int() == -max_jint) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1558
      if (!RangeLimitCheck) return;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1559
    } else {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1560
      assert(low_limit->get_int() == 0, "wrong low limit for range check");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1561
    }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1562
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1563
    Node *one  = _igvn.intcon(1);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1564
    set_ctrl(one, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1565
    Node *plus_one = new (C, 3) AddINode(offset, one);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1566
    register_new_node( plus_one, pre_ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1567
    Node *con = new (C, 3) SubINode(low_limit, plus_one);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1568
    register_new_node(con, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1569
    Node *scale = _igvn.intcon(scale_con);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1570
    set_ctrl(scale, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1571
    Node *X = new (C, 3) DivINode(0, con, scale);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1572
    register_new_node(X, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1573
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1574
    // Adjust main-loop last iteration
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1575
    Node *loop_limit = *main_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1576
    loop_limit = (stride_con > 0) // scale < 0
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1577
      ? (Node*)(new (C, 3) MinINode(loop_limit, X))
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1578
      : (Node*)(new (C, 3) MaxINode(loop_limit, X));
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1579
    register_new_node(loop_limit, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1580
    *main_limit = loop_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1581
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1582
    // The overflow limit: scale*I+offset < upper_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1583
    // For pre-loop compute
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1584
    //   NOT(scale*I+offset < upper_limit)
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1585
    //   scale*I+offset >= upper_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1586
    //   scale*I+offset+1 > upper_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1587
    //   ( if (scale < 0) /* and stride > 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1588
    //       I < (upper_limit-(offset+1))/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1589
    //     else /* scale < 0 and stride < 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1590
    //       I > (upper_limit-(offset+1))/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1591
    //   )
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1592
    plus_one = new (C, 3) AddINode(offset, one);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1593
    register_new_node( plus_one, pre_ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1594
    con = new (C, 3) SubINode(upper_limit, plus_one);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1595
    register_new_node(con, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1596
    scale = _igvn.intcon(scale_con);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1597
    set_ctrl(scale, C->root());
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1598
    X = new (C, 3) DivINode(0, con, scale);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1599
    register_new_node(X, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1600
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1601
    // Adjust pre-loop last iteration
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1602
    loop_limit = *pre_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1603
    loop_limit = (stride_con > 0) // scale < 0
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1604
      ? (Node*)(new (C, 3) MaxINode(loop_limit, X))
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1605
      : (Node*)(new (C, 3) MinINode(loop_limit, X));
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1606
    register_new_node( loop_limit, pre_ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1607
    *pre_limit = loop_limit;
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1608
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
//------------------------------is_scaled_iv---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
// Return true if exp is a constant times an induction var
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
bool PhaseIdealLoop::is_scaled_iv(Node* exp, Node* iv, int* p_scale) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
  if (exp == iv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
    if (p_scale != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
      *p_scale = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
  int opc = exp->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
  if (opc == Op_MulI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
    if (exp->in(1) == iv && exp->in(2)->is_Con()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
      if (p_scale != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
        *p_scale = exp->in(2)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
    if (exp->in(2) == iv && exp->in(1)->is_Con()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
      if (p_scale != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
        *p_scale = exp->in(1)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
  } else if (opc == Op_LShiftI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
    if (exp->in(1) == iv && exp->in(2)->is_Con()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
      if (p_scale != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
        *p_scale = 1 << exp->in(2)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
//-----------------------------is_scaled_iv_plus_offset------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
// Return true if exp is a simple induction variable expression: k1*iv + (invar + k2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
bool PhaseIdealLoop::is_scaled_iv_plus_offset(Node* exp, Node* iv, int* p_scale, Node** p_offset, int depth) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
  if (is_scaled_iv(exp, iv, p_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
    if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
      Node *zero = _igvn.intcon(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
      set_ctrl(zero, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
      *p_offset = zero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
  int opc = exp->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
  if (opc == Op_AddI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
    if (is_scaled_iv(exp->in(1), iv, p_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
      if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
        *p_offset = exp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
    if (exp->in(2)->is_Con()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
      Node* offset2 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
      if (depth < 2 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
          is_scaled_iv_plus_offset(exp->in(1), iv, p_scale,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
                                   p_offset != NULL ? &offset2 : NULL, depth+1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
        if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
          Node *ctrl_off2 = get_ctrl(offset2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
          Node* offset = new (C, 3) AddINode(offset2, exp->in(2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
          register_new_node(offset, ctrl_off2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
          *p_offset = offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
  } else if (opc == Op_SubI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
    if (is_scaled_iv(exp->in(1), iv, p_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
      if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
        Node *zero = _igvn.intcon(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
        set_ctrl(zero, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
        Node *ctrl_off = get_ctrl(exp->in(2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
        Node* offset = new (C, 3) SubINode(zero, exp->in(2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
        register_new_node(offset, ctrl_off);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
        *p_offset = offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
    if (is_scaled_iv(exp->in(2), iv, p_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
      if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
        *p_scale *= -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
        *p_offset = exp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
//------------------------------do_range_check---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
// Eliminate range-checks and other trip-counter vs loop-invariant tests.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
void PhaseIdealLoop::do_range_check( IdealLoopTree *loop, Node_List &old_new ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
#ifndef PRODUCT
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1707
  if (PrintOpto && VerifyLoopOptimizations) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
    tty->print("Range Check Elimination ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
    loop->dump_head();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1710
  } else if (TraceLoopOpts) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1711
    tty->print("RangeCheck   ");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1712
    loop->dump_head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
#endif
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1715
  assert(RangeCheckElimination, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
  CountedLoopNode *cl = loop->_head->as_CountedLoop();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1717
  assert(cl->is_main_loop(), "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1718
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1719
  // protect against stride not being a constant
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1720
  if (!cl->stride_is_con())
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1721
    return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
  // Find the trip counter; we are iteration splitting based on it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
  Node *trip_counter = cl->phi();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
  // Find the main loop limit; we will trim it's iterations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
  // to not ever trip end tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
  Node *main_limit = cl->limit();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1728
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1729
  // Need to find the main-loop zero-trip guard
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1730
  Node *ctrl  = cl->in(LoopNode::EntryControl);
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1731
  assert(ctrl->Opcode() == Op_IfTrue || ctrl->Opcode() == Op_IfFalse, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1732
  Node *iffm = ctrl->in(0);
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1733
  assert(iffm->Opcode() == Op_If, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1734
  Node *bolzm = iffm->in(1);
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1735
  assert(bolzm->Opcode() == Op_Bool, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1736
  Node *cmpzm = bolzm->in(1);
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1737
  assert(cmpzm->is_Cmp(), "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1738
  Node *opqzm = cmpzm->in(2);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1739
  // Can not optimize a loop if zero-trip Opaque1 node is optimized
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1740
  // away and then another round of loop opts attempted.
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1741
  if (opqzm->Opcode() != Op_Opaque1)
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1742
    return;
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1743
  assert(opqzm->in(1) == main_limit, "do not understand situation");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1744
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
  // Find the pre-loop limit; we will expand it's iterations to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
  // not ever trip low tests.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
  Node *p_f = iffm->in(0);
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1748
  assert(p_f->Opcode() == Op_IfFalse, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
  CountedLoopEndNode *pre_end = p_f->in(0)->as_CountedLoopEnd();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1750
  assert(pre_end->loopnode()->is_pre_loop(), "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
  Node *pre_opaq1 = pre_end->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
  // Occasionally it's possible for a pre-loop Opaque1 node to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
  // optimized away and then another round of loop opts attempted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
  // We can not optimize this particular loop in that case.
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1755
  if (pre_opaq1->Opcode() != Op_Opaque1)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
  Opaque1Node *pre_opaq = (Opaque1Node*)pre_opaq1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
  Node *pre_limit = pre_opaq->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
  // Where do we put new limit calculations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
  Node *pre_ctrl = pre_end->loopnode()->in(LoopNode::EntryControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
  // Ensure the original loop limit is available from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
  // pre-loop Opaque1 node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
  Node *orig_limit = pre_opaq->original_loop_limit();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1766
  if (orig_limit == NULL || _igvn.type(orig_limit) == Type::TOP)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
  // Must know if its a count-up or count-down loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
  int stride_con = cl->stride_con();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
  Node *zero = _igvn.intcon(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
  Node *one  = _igvn.intcon(1);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1774
  // Use symmetrical int range [-max_jint,max_jint]
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1775
  Node *mini = _igvn.intcon(-max_jint);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
  set_ctrl(zero, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
  set_ctrl(one,  C->root());
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1778
  set_ctrl(mini, C->root());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
  // Range checks that do not dominate the loop backedge (ie.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
  // conditionally executed) can lengthen the pre loop limit beyond
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
  // the original loop limit. To prevent this, the pre limit is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
  // (for stride > 0) MINed with the original loop limit (MAXed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
  // stride < 0) when some range_check (rc) is conditionally
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
  // executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
  bool conditional_rc = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
  // Check loop body for tests of trip-counter plus loop-invariant vs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
  // loop-invariant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
  for( uint i = 0; i < loop->_body.size(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
    Node *iff = loop->_body[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
    if( iff->Opcode() == Op_If ) { // Test?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
      // Test is an IfNode, has 2 projections.  If BOTH are in the loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
      // we need loop unswitching instead of iteration splitting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
      Node *exit = loop->is_loop_exit(iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
      if( !exit ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
      int flip = (exit->Opcode() == Op_IfTrue) ? 1 : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
      // Get boolean condition to test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
      Node *i1 = iff->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
      if( !i1->is_Bool() ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
      BoolNode *bol = i1->as_Bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
      BoolTest b_test = bol->_test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
      // Flip sense of test if exit condition is flipped
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
      if( flip )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
        b_test = b_test.negate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
      // Get compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
      Node *cmp = bol->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
      // Look for trip_counter + offset vs limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
      Node *rc_exp = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
      Node *limit  = cmp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
      jint scale_con= 1;        // Assume trip counter not scaled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
      Node *limit_c = get_ctrl(limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
      if( loop->is_member(get_loop(limit_c) ) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
        // Compare might have operands swapped; commute them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
        b_test = b_test.commute();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
        rc_exp = cmp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
        limit  = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
        limit_c = get_ctrl(limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
        if( loop->is_member(get_loop(limit_c) ) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
          continue;             // Both inputs are loop varying; cannot RCE
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
      // Here we know 'limit' is loop invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
      // 'limit' maybe pinned below the zero trip test (probably from a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
      // previous round of rce), in which case, it can't be used in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
      // zero trip test expression which must occur before the zero test's if.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
      if( limit_c == ctrl ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
        continue;  // Don't rce this check but continue looking for other candidates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
      // Check for scaled induction variable plus an offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
      Node *offset = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
      if (!is_scaled_iv_plus_offset(rc_exp, trip_counter, &scale_con, &offset)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
      Node *offset_c = get_ctrl(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
      if( loop->is_member( get_loop(offset_c) ) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
        continue;               // Offset is not really loop invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
      // Here we know 'offset' is loop invariant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
      // As above for the 'limit', the 'offset' maybe pinned below the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
      // zero trip test.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
      if( offset_c == ctrl ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
        continue; // Don't rce this check but continue looking for other candidates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
      }
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1853
#ifdef ASSERT
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1854
      if (TraceRangeLimitCheck) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1855
        tty->print_cr("RC bool node%s", flip ? " flipped:" : ":");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1856
        bol->dump(2);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1857
      }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1858
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
      // At this point we have the expression as:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
      //   scale_con * trip_counter + offset :: limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
      // where scale_con, offset and limit are loop invariant.  Trip_counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
      // monotonically increases by stride_con, a constant.  Both (or either)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
      // stride_con and scale_con can be negative which will flip about the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
      // sense of the test.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
      // Adjust pre and main loop limits to guard the correct iteration set
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
      if( cmp->Opcode() == Op_CmpU ) {// Unsigned compare is really 2 tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
        if( b_test._test == BoolTest::lt ) { // Range checks always use lt
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1869
          // The underflow and overflow limits: 0 <= scale*I+offset < limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1870
          add_constraint( stride_con, scale_con, offset, zero, limit, pre_ctrl, &pre_limit, &main_limit );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
          if (!conditional_rc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
            conditional_rc = !loop->dominates_backedge(iff);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1873
            // It is also needed if offset->_lo == min_int since
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1874
            // (0-min_int) == min_int. It may be fine for stride > 0
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1875
            // but for stride < 0 pre_limit will be < original_limit.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1876
            const TypeInt* offset_t = _igvn.type(offset)->is_int();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1877
            conditional_rc |= RangeLimitCheck && (offset_t->_lo == min_jint) &&
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1878
                              (scale_con<0) && (stride_con<0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
          if( PrintOpto )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
            tty->print_cr("missed RCE opportunity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
          continue;             // In release mode, ignore it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
      } else {                  // Otherwise work on normal compares
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
        switch( b_test._test ) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1889
        case BoolTest::gt:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1890
          // Fall into GE case
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1891
        case BoolTest::ge:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1892
          // Convert (I*scale+offset) >= Limit to (I*(-scale)+(-offset)) <= -Limit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
          scale_con = -scale_con;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
          offset = new (C, 3) SubINode( zero, offset );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
          register_new_node( offset, pre_ctrl );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
          limit  = new (C, 3) SubINode( zero, limit  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
          register_new_node( limit, pre_ctrl );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
          // Fall into LE case
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1899
        case BoolTest::le:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1900
          if (b_test._test != BoolTest::gt) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1901
            // Convert X <= Y to X < Y+1
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1902
            limit = new (C, 3) AddINode( limit, one );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1903
            register_new_node( limit, pre_ctrl );
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1904
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
          // Fall into LT case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
        case BoolTest::lt:
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1907
          // The underflow and overflow limits: MIN_INT <= scale*I+offset < limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1908
          add_constraint( stride_con, scale_con, offset, mini, limit, pre_ctrl, &pre_limit, &main_limit );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
          if (!conditional_rc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
            conditional_rc = !loop->dominates_backedge(iff);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1911
            // It is also needed if scale*pre_limit+offset >= limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1912
            // due to underflow so we need execute pre-loop until
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1913
            // scale*I+offset >= min_int. But (low_limit-offset) will
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1914
            // underflow when offset > 0 and X will be > original_limit.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1915
            const TypeInt* offset_t = _igvn.type(offset)->is_int();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1916
            conditional_rc |= RangeLimitCheck && (offset_t->_hi > 0) &&
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1917
                              (scale_con>0) && (stride_con>0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
          if( PrintOpto )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
            tty->print_cr("missed RCE opportunity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
          continue;             // Unhandled case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
      // Kill the eliminated test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
      C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
      Node *kill_con = _igvn.intcon( 1-flip );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
      set_ctrl(kill_con, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
      _igvn.hash_delete(iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
      iff->set_req(1, kill_con);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
      _igvn._worklist.push(iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
      // Find surviving projection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
      assert(iff->is_If(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
      ProjNode* dp = ((IfNode*)iff)->proj_out(1-flip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
      // Find loads off the surviving projection; remove their control edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
      for (DUIterator_Fast imax, i = dp->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
        Node* cd = dp->fast_out(i); // Control-dependent node
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
        if( cd->is_Load() ) {   // Loads can now float around in the loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
          _igvn.hash_delete(cd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
          // Allow the load to float around in the loop, or before it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
          // but NOT before the pre-loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
          cd->set_req(0, ctrl);   // ctrl, not NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
          _igvn._worklist.push(cd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
          --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
          --imax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
    } // End of is IF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
  // Update loop limits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
  if (conditional_rc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
    pre_limit = (stride_con > 0) ? (Node*)new (C,3) MinINode(pre_limit, orig_limit)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
                                 : (Node*)new (C,3) MaxINode(pre_limit, orig_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
    register_new_node(pre_limit, pre_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
  _igvn.hash_delete(pre_opaq);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
  pre_opaq->set_req(1, pre_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
  // Note:: we are making the main loop limit no longer precise;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
  // need to round up based on stride.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1968
  cl->set_nonexact_trip_count();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1969
  if (!LoopLimitCheck && stride_con != 1 && stride_con != -1) { // Cutout for common case
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
    // "Standard" round-up logic:  ([main_limit-init+(y-1)]/y)*y+init
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
    // Hopefully, compiler will optimize for powers of 2.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
    Node *ctrl = get_ctrl(main_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
    Node *stride = cl->stride();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
    Node *init = cl->init_trip();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
    Node *span = new (C, 3) SubINode(main_limit,init);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
    register_new_node(span,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
    Node *rndup = _igvn.intcon(stride_con + ((stride_con>0)?-1:1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
    Node *add = new (C, 3) AddINode(span,rndup);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
    register_new_node(add,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
    Node *div = new (C, 3) DivINode(0,add,stride);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
    register_new_node(div,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
    Node *mul = new (C, 3) MulINode(div,stride);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
    register_new_node(mul,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
    Node *newlim = new (C, 3) AddINode(mul,init);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
    register_new_node(newlim,ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
    main_limit = newlim;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
  Node *main_cle = cl->loopexit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
  Node *main_bol = main_cle->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
  // Hacking loop bounds; need private copies of exit test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
  if( main_bol->outcnt() > 1 ) {// BoolNode shared?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
    _igvn.hash_delete(main_cle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
    main_bol = main_bol->clone();// Clone a private BoolNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
    register_new_node( main_bol, main_cle->in(0) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
    main_cle->set_req(1,main_bol);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
  Node *main_cmp = main_bol->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
  if( main_cmp->outcnt() > 1 ) { // CmpNode shared?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
    _igvn.hash_delete(main_bol);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
    main_cmp = main_cmp->clone();// Clone a private CmpNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
    register_new_node( main_cmp, main_cle->in(0) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
    main_bol->set_req(1,main_cmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
  // Hack the now-private loop bounds
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
  _igvn.hash_delete(main_cmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
  main_cmp->set_req(2, main_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
  _igvn._worklist.push(main_cmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
  // The OpaqueNode is unshared by design
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
  _igvn.hash_delete(opqzm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
  assert( opqzm->outcnt() == 1, "cannot hack shared node" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
  opqzm->set_req(1,main_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
  _igvn._worklist.push(opqzm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
//------------------------------DCE_loop_body----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
// Remove simplistic dead code from loop body
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
void IdealLoopTree::DCE_loop_body() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
  for( uint i = 0; i < _body.size(); i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
    if( _body.at(i)->outcnt() == 0 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
      _body.map( i--, _body.pop() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
//------------------------------adjust_loop_exit_prob--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
// Look for loop-exit tests with the 50/50 (or worse) guesses from the parsing stage.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
// Replace with a 1-in-10 exit guess.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
void IdealLoopTree::adjust_loop_exit_prob( PhaseIdealLoop *phase ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
  Node *test = tail();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
  while( test != _head ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
    uint top = test->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
    if( top == Op_IfTrue || top == Op_IfFalse ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
      int test_con = ((ProjNode*)test)->_con;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
      assert(top == (uint)(test_con? Op_IfTrue: Op_IfFalse), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
      IfNode *iff = test->in(0)->as_If();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
      if( iff->outcnt() == 2 ) {        // Ignore dead tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
        Node *bol = iff->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
        if( bol && bol->req() > 1 && bol->in(1) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
            ((bol->in(1)->Opcode() == Op_StorePConditional ) ||
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1433
diff changeset
  2040
             (bol->in(1)->Opcode() == Op_StoreIConditional ) ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
             (bol->in(1)->Opcode() == Op_StoreLConditional ) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
             (bol->in(1)->Opcode() == Op_CompareAndSwapI ) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
             (bol->in(1)->Opcode() == Op_CompareAndSwapL ) ||
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 212
diff changeset
  2044
             (bol->in(1)->Opcode() == Op_CompareAndSwapP ) ||
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 212
diff changeset
  2045
             (bol->in(1)->Opcode() == Op_CompareAndSwapN )))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
          return;               // Allocation loops RARELY take backedge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
        // Find the OTHER exit path from the IF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
        Node* ex = iff->proj_out(1-test_con);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
        float p = iff->_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
        if( !phase->is_member( this, ex ) && iff->_fcnt == COUNT_UNKNOWN ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
          if( top == Op_IfTrue ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
            if( p < (PROB_FAIR + PROB_UNLIKELY_MAG(3))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
              iff->_prob = PROB_STATIC_FREQUENT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
            if( p > (PROB_FAIR - PROB_UNLIKELY_MAG(3))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
              iff->_prob = PROB_STATIC_INFREQUENT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
    test = phase->idom(test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
//------------------------------policy_do_remove_empty_loop--------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
// Micro-benchmark spamming.  Policy is to always remove empty loops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
// The 'DO' part is to replace the trip counter with the value it will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
// have on the last iteration.  This will break the loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
bool IdealLoopTree::policy_do_remove_empty_loop( PhaseIdealLoop *phase ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
  // Minimum size must be empty loop
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  2074
  if (_body.size() > EMPTY_LOOP_SIZE)
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2075
    return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2077
  if (!_head->is_CountedLoop())
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2078
    return false;     // Dead loop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
  CountedLoopNode *cl = _head->as_CountedLoop();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2080
  if (!cl->loopexit())
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2081
    return false; // Malformed loop
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2082
  if (!phase->is_member(this, phase->get_ctrl(cl->loopexit()->in(CountedLoopEndNode::TestValue))))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
    return false;             // Infinite loop
8870
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2084
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
  // Ensure only one phi which is the iv.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
  Node* iv = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
  for (DUIterator_Fast imax, i = cl->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
    Node* n = cl->fast_out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
    if (n->Opcode() == Op_Phi) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
      assert(iv == NULL, "Too many phis" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
      iv = n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
  assert(iv == cl->phi(), "Wrong phi" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
#endif
8870
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2097
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2098
  // main and post loops have explicitly created zero trip guard
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2099
  bool needs_guard = !cl->is_main_loop() && !cl->is_post_loop();
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2100
  if (needs_guard) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2101
    // Skip guard if values not overlap.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2102
    const TypeInt* init_t = phase->_igvn.type(cl->init_trip())->is_int();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2103
    const TypeInt* limit_t = phase->_igvn.type(cl->limit())->is_int();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2104
    int  stride_con = cl->stride_con();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2105
    if (stride_con > 0) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2106
      needs_guard = (init_t->_hi >= limit_t->_lo);
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2107
    } else {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2108
      needs_guard = (init_t->_lo <= limit_t->_hi);
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2109
    }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2110
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2111
  if (needs_guard) {
8870
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2112
    // Check for an obvious zero trip guard.
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2113
    Node* inctrl = PhaseIdealLoop::skip_loop_predicates(cl->in(LoopNode::EntryControl));
8870
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2114
    if (inctrl->Opcode() == Op_IfTrue) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2115
      // The test should look like just the backedge of a CountedLoop
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2116
      Node* iff = inctrl->in(0);
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2117
      if (iff->is_If()) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2118
        Node* bol = iff->in(1);
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2119
        if (bol->is_Bool() && bol->as_Bool()->_test._test == cl->loopexit()->test_trip()) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2120
          Node* cmp = bol->in(1);
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2121
          if (cmp->is_Cmp() && cmp->in(1) == cl->init_trip() && cmp->in(2) == cl->limit()) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2122
            needs_guard = false;
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2123
          }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2124
        }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2125
      }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2126
    }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2127
  }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2128
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2129
#ifndef PRODUCT
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2130
  if (PrintOpto) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2131
    tty->print("Removing empty loop with%s zero trip guard", needs_guard ? "out" : "");
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2132
    this->dump_head();
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2133
  } else if (TraceLoopOpts) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2134
    tty->print("Empty with%s zero trip guard   ", needs_guard ? "out" : "");
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2135
    this->dump_head();
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2136
  }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2137
#endif
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2138
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2139
  if (needs_guard) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2140
    // Peel the loop to ensure there's a zero trip guard
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2141
    Node_List old_new;
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2142
    phase->do_peeling(this, old_new);
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2143
  }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  2144
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
  // Replace the phi at loop head with the final value of the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
  // iteration.  Then the CountedLoopEnd will collapse (backedge never
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
  // taken) and all loop-invariant uses of the exit values will be correct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
  Node *phi = cl->phi();
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2149
  Node *exact_limit = phase->exact_limit(this);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2150
  if (exact_limit != cl->limit()) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2151
    // We also need to replace the original limit to collapse loop exit.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2152
    Node* cmp = cl->loopexit()->cmp_node();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2153
    assert(cl->limit() == cmp->in(2), "sanity");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2154
    phase->_igvn._worklist.push(cmp->in(2)); // put limit on worklist
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2155
    phase->_igvn.hash_delete(cmp);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2156
    cmp->set_req(2, exact_limit);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2157
    phase->_igvn._worklist.push(cmp);        // put cmp on worklist
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2158
  }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2159
  // Note: the final value after increment should not overflow since
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2160
  // counted loop has limit check predicate.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2161
  Node *final = new (phase->C, 3) SubINode( exact_limit, cl->stride() );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
  phase->register_new_node(final,cl->in(LoopNode::EntryControl));
5901
c046f8e9c52b 6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents: 5547
diff changeset
  2163
  phase->_igvn.replace_node(phi,final);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
  phase->C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2168
//------------------------------policy_do_one_iteration_loop-------------------
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2169
// Convert one iteration loop into normal code.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2170
bool IdealLoopTree::policy_do_one_iteration_loop( PhaseIdealLoop *phase ) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2171
  if (!_head->as_Loop()->is_valid_counted_loop())
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2172
    return false; // Only for counted loop
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2173
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2174
  CountedLoopNode *cl = _head->as_CountedLoop();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2175
  if (!cl->has_exact_trip_count() || cl->trip_count() != 1) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2176
    return false;
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2177
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2178
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2179
#ifndef PRODUCT
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2180
  if(TraceLoopOpts) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2181
    tty->print("OneIteration ");
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2182
    this->dump_head();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2183
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2184
#endif
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2185
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2186
  Node *init_n = cl->init_trip();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2187
#ifdef ASSERT
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2188
  // Loop boundaries should be constant since trip count is exact.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2189
  assert(init_n->get_int() + cl->stride_con() >= cl->limit()->get_int(), "should be one iteration");
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2190
#endif
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2191
  // Replace the phi at loop head with the value of the init_trip.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2192
  // Then the CountedLoopEnd will collapse (backedge will not be taken)
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2193
  // and all loop-invariant uses of the exit values will be correct.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2194
  phase->_igvn.replace_node(cl->phi(), cl->init_trip());
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2195
  phase->C->set_major_progress();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2196
  return true;
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2197
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
//------------------------------iteration_split_impl---------------------------
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2201
bool IdealLoopTree::iteration_split_impl( PhaseIdealLoop *phase, Node_List &old_new ) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2202
  // Compute exact loop trip count if possible.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2203
  compute_exact_trip_count(phase);
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2204
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2205
  // Convert one iteration loop into normal code.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2206
  if (policy_do_one_iteration_loop(phase))
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2207
    return true;
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2208
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
  // Check and remove empty loops (spam micro-benchmarks)
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2210
  if (policy_do_remove_empty_loop(phase))
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  2211
    return true;  // Here we removed an empty loop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
  bool should_peel = policy_peeling(phase); // Should we peel?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
  bool should_unswitch = policy_unswitching(phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
  // Non-counted loops may be peeled; exactly 1 iteration is peeled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
  // This removes loop-invariant tests (usually null checks).
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2219
  if (!_head->is_CountedLoop()) { // Non-counted loop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
    if (PartialPeelLoop && phase->partial_peel(this, old_new)) {
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2221
      // Partial peel succeeded so terminate this round of loop opts
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2222
      return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
    }
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2224
    if (should_peel) {            // Should we peel?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
      if (PrintOpto) tty->print_cr("should_peel");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
      phase->do_peeling(this,old_new);
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2229
    } else if (should_unswitch) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
      phase->do_unswitching(this, old_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
    }
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2232
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
  CountedLoopNode *cl = _head->as_CountedLoop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2236
  if (!cl->loopexit()) return true; // Ignore various kinds of broken loops
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
  // Do nothing special to pre- and post- loops
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2239
  if (cl->is_pre_loop() || cl->is_post_loop()) return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
  // Compute loop trip count from profile data
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
  compute_profile_trip_cnt(phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
  // Before attempting fancy unrolling, RCE or alignment, see if we want
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
  // to completely unroll this loop or do loop unswitching.
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2246
  if (cl->is_normal_loop()) {
2876
b8ebc85d0b47 6837146: Should perform unswitch before maximally unroll in loop transformation
cfang
parents: 2131
diff changeset
  2247
    if (should_unswitch) {
b8ebc85d0b47 6837146: Should perform unswitch before maximally unroll in loop transformation
cfang
parents: 2131
diff changeset
  2248
      phase->do_unswitching(this, old_new);
b8ebc85d0b47 6837146: Should perform unswitch before maximally unroll in loop transformation
cfang
parents: 2131
diff changeset
  2249
      return true;
b8ebc85d0b47 6837146: Should perform unswitch before maximally unroll in loop transformation
cfang
parents: 2131
diff changeset
  2250
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
    bool should_maximally_unroll =  policy_maximally_unroll(phase);
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2252
    if (should_maximally_unroll) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
      // Here we did some unrolling and peeling.  Eventually we will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
      // completely unroll this loop and it will no longer be a loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
      phase->do_maximally_unroll(this,old_new);
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2256
      return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  2260
  // Skip next optimizations if running low on nodes. Note that
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  2261
  // policy_unswitching and policy_maximally_unroll have this check.
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  2262
  uint nodes_left = MaxNodeLimit - phase->C->unique();
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  2263
  if ((2 * _body.size()) > nodes_left) {
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  2264
    return true;
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
  2265
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
  // Counted loops may be peeled, may need some iterations run up
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
  // front for RCE, and may want to align loop refs to a cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
  // line.  Thus we clone a full loop up front whose trip count is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
  // at least 1 (if peeling), but may be several more.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
  // The main loop will start cache-line aligned with at least 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
  // iteration of the unrolled body (zero-trip test required) and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
  // will have some range checks removed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
  // A post-loop will finish any odd iterations (leftover after
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
  // unrolling), plus any needed for RCE purposes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
  bool should_unroll = policy_unroll(phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
  bool should_rce = policy_range_check(phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
  bool should_align = policy_align(phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
  // If not RCE'ing (iteration splitting) or Aligning, then we do not
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
  // need a pre-loop.  We may still need to peel an initial iteration but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
  // we will not be needing an unknown number of pre-iterations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
  // Basically, if may_rce_align reports FALSE first time through,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
  // we will not be able to later do RCE or Aligning on this loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
  bool may_rce_align = !policy_peel_only(phase) || should_rce || should_align;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
  // If we have any of these conditions (RCE, alignment, unrolling) met, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
  // we switch to the pre-/main-/post-loop model.  This model also covers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
  // peeling.
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2296
  if (should_rce || should_align || should_unroll) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2297
    if (cl->is_normal_loop())  // Convert to 'pre/main/post' loops
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
      phase->insert_pre_post_loops(this,old_new, !may_rce_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
    // Adjust the pre- and main-loop limits to let the pre and post loops run
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
    // with full checks, but the main-loop with no checks.  Remove said
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
    // checks from the main body.
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2303
    if (should_rce)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
      phase->do_range_check(this,old_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
    // Double loop body for unrolling.  Adjust the minimum-trip test (will do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
    // twice as many iterations as before) and the main body limit (only do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
    // an even number of trips).  If we are peeling, we might enable some RCE
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
    // and we'd rather unroll the post-RCE'd loop SO... do not unroll if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
    // peeling.
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2311
    if (should_unroll && !should_peel)
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2312
      phase->do_unroll(this,old_new, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
    // Adjust the pre-loop limits to align the main body
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
    // iterations.
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2316
    if (should_align)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
      Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
  } else {                      // Else we have an unchanged counted loop
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  2320
    if (should_peel)           // Might want to peel but do nothing else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
      phase->do_peeling(this,old_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
  }
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2323
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
//------------------------------iteration_split--------------------------------
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2329
bool IdealLoopTree::iteration_split( PhaseIdealLoop *phase, Node_List &old_new ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
  // Recursively iteration split nested loops
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2331
  if (_child && !_child->iteration_split(phase, old_new))
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2332
    return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
  // Clean out prior deadwood
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
  DCE_loop_body();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
  // Look for loop-exit tests with my 50/50 guesses from the Parsing stage.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
  // Replace with a 1-in-10 exit guess.
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2340
  if (_parent /*not the root loop*/ &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
      !_irreducible &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
      // Also ignore the occasional dead backedge
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2343
      !tail()->is_top()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
    adjust_loop_exit_prob(phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
  // Gate unrolling, RCE and peeling efforts.
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2348
  if (!_child &&                // If not an inner loop, do not split
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
      !_irreducible &&
212
cd4963e67949 6667612: (Escape Analysis) disable loop cloning if it has a scalar replaceable allocation
kvn
parents: 1
diff changeset
  2350
      _allow_optimizations &&
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2351
      !tail()->is_top()) {     // Also ignore the occasional dead backedge
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
    if (!_has_call) {
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2353
        if (!iteration_split_impl(phase, old_new)) {
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  2354
          return false;
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  2355
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
    } else if (policy_unswitching(phase)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
      phase->do_unswitching(this, old_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
  // Minor offset re-organization to remove loop-fallout uses of
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2362
  // trip counter when there was no major reshaping.
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2363
  phase->reorg_offsets(this);
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2364
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2365
  if (_next && !_next->iteration_split(phase, old_new))
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2366
    return false;
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  2367
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
}
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  2369
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  2370
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2371
//=============================================================================
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2372
// Process all the loops in the loop tree and replace any fill
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2373
// patterns with an intrisc version.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2374
bool PhaseIdealLoop::do_intrinsify_fill() {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2375
  bool changed = false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2376
  for (LoopTreeIterator iter(_ltree_root); !iter.done(); iter.next()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2377
    IdealLoopTree* lpt = iter.current();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2378
    changed |= intrinsify_fill(lpt);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2379
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2380
  return changed;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2381
}
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2382
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2383
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2384
// Examine an inner loop looking for a a single store of an invariant
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2385
// value in a unit stride loop,
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2386
bool PhaseIdealLoop::match_fill_loop(IdealLoopTree* lpt, Node*& store, Node*& store_value,
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2387
                                     Node*& shift, Node*& con) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2388
  const char* msg = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2389
  Node* msg_node = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2390
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2391
  store_value = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2392
  con = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2393
  shift = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2394
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2395
  // Process the loop looking for stores.  If there are multiple
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2396
  // stores or extra control flow give at this point.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2397
  CountedLoopNode* head = lpt->_head->as_CountedLoop();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2398
  for (uint i = 0; msg == NULL && i < lpt->_body.size(); i++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2399
    Node* n = lpt->_body.at(i);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2400
    if (n->outcnt() == 0) continue; // Ignore dead
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2401
    if (n->is_Store()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2402
      if (store != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2403
        msg = "multiple stores";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2404
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2405
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2406
      int opc = n->Opcode();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2407
      if (opc == Op_StoreP || opc == Op_StoreN || opc == Op_StoreCM) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2408
        msg = "oop fills not handled";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2409
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2410
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2411
      Node* value = n->in(MemNode::ValueIn);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2412
      if (!lpt->is_invariant(value)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2413
        msg  = "variant store value";
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2414
      } else if (!_igvn.type(n->in(MemNode::Address))->isa_aryptr()) {
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2415
        msg = "not array address";
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2416
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2417
      store = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2418
      store_value = value;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2419
    } else if (n->is_If() && n != head->loopexit()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2420
      msg = "extra control flow";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2421
      msg_node = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2422
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2423
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2424
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2425
  if (store == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2426
    // No store in loop
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2427
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2428
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2429
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2430
  if (msg == NULL && head->stride_con() != 1) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2431
    // could handle negative strides too
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2432
    if (head->stride_con() < 0) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2433
      msg = "negative stride";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2434
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2435
      msg = "non-unit stride";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2436
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2437
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2438
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2439
  if (msg == NULL && !store->in(MemNode::Address)->is_AddP()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2440
    msg = "can't handle store address";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2441
    msg_node = store->in(MemNode::Address);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2442
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2443
6739
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2444
  if (msg == NULL &&
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2445
      (!store->in(MemNode::Memory)->is_Phi() ||
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2446
       store->in(MemNode::Memory)->in(LoopNode::LoopBackControl) != store)) {
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2447
    msg = "store memory isn't proper phi";
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2448
    msg_node = store->in(MemNode::Memory);
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2449
  }
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2450
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2451
  // Make sure there is an appropriate fill routine
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2452
  BasicType t = store->as_Mem()->memory_type();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2453
  const char* fill_name;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2454
  if (msg == NULL &&
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2455
      StubRoutines::select_fill_function(t, false, fill_name) == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2456
    msg = "unsupported store";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2457
    msg_node = store;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2458
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2459
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2460
  if (msg != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2461
#ifndef PRODUCT
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2462
    if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2463
      tty->print_cr("not fill intrinsic candidate: %s", msg);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2464
      if (msg_node != NULL) msg_node->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2465
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2466
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2467
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2468
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2469
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2470
  // Make sure the address expression can be handled.  It should be
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2471
  // head->phi * elsize + con.  head->phi might have a ConvI2L.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2472
  Node* elements[4];
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2473
  Node* conv = NULL;
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2474
  bool found_index = false;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2475
  int count = store->in(MemNode::Address)->as_AddP()->unpack_offsets(elements, ARRAY_SIZE(elements));
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2476
  for (int e = 0; e < count; e++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2477
    Node* n = elements[e];
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2478
    if (n->is_Con() && con == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2479
      con = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2480
    } else if (n->Opcode() == Op_LShiftX && shift == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2481
      Node* value = n->in(1);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2482
#ifdef _LP64
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2483
      if (value->Opcode() == Op_ConvI2L) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2484
        conv = value;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2485
        value = value->in(1);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2486
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2487
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2488
      if (value != head->phi()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2489
        msg = "unhandled shift in address";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2490
      } else {
9104
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  2491
        if (type2aelembytes(store->as_Mem()->memory_type(), true) != (1 << n->in(2)->get_int())) {
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  2492
          msg = "scale doesn't match";
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  2493
        } else {
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  2494
          found_index = true;
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  2495
          shift = n;
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  2496
        }
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2497
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2498
    } else if (n->Opcode() == Op_ConvI2L && conv == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2499
      if (n->in(1) == head->phi()) {
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2500
        found_index = true;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2501
        conv = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2502
      } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2503
        msg = "unhandled input to ConvI2L";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2504
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2505
    } else if (n == head->phi()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2506
      // no shift, check below for allowed cases
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2507
      found_index = true;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2508
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2509
      msg = "unhandled node in address";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2510
      msg_node = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2511
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2512
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2513
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2514
  if (count == -1) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2515
    msg = "malformed address expression";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2516
    msg_node = store;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2517
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2518
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2519
  if (!found_index) {
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2520
    msg = "missing use of index";
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2521
  }
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  2522
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2523
  // byte sized items won't have a shift
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2524
  if (msg == NULL && shift == NULL && t != T_BYTE && t != T_BOOLEAN) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2525
    msg = "can't find shift";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2526
    msg_node = store;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2527
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2528
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2529
  if (msg != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2530
#ifndef PRODUCT
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2531
    if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2532
      tty->print_cr("not fill intrinsic: %s", msg);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2533
      if (msg_node != NULL) msg_node->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2534
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2535
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2536
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2537
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2538
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2539
  // No make sure all the other nodes in the loop can be handled
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2540
  VectorSet ok(Thread::current()->resource_area());
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2541
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2542
  // store related values are ok
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2543
  ok.set(store->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2544
  ok.set(store->in(MemNode::Memory)->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2545
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2546
  // Loop structure is ok
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2547
  ok.set(head->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2548
  ok.set(head->loopexit()->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2549
  ok.set(head->phi()->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2550
  ok.set(head->incr()->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2551
  ok.set(head->loopexit()->cmp_node()->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2552
  ok.set(head->loopexit()->in(1)->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2553
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2554
  // Address elements are ok
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2555
  if (con)   ok.set(con->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2556
  if (shift) ok.set(shift->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2557
  if (conv)  ok.set(conv->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2558
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2559
  for (uint i = 0; msg == NULL && i < lpt->_body.size(); i++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2560
    Node* n = lpt->_body.at(i);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2561
    if (n->outcnt() == 0) continue; // Ignore dead
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2562
    if (ok.test(n->_idx)) continue;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2563
    // Backedge projection is ok
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2564
    if (n->is_IfTrue() && n->in(0) == head->loopexit()) continue;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2565
    if (!n->is_AddP()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2566
      msg = "unhandled node";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2567
      msg_node = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2568
      break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2569
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2570
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2571
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2572
  // Make sure no unexpected values are used outside the loop
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2573
  for (uint i = 0; msg == NULL && i < lpt->_body.size(); i++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2574
    Node* n = lpt->_body.at(i);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2575
    // These values can be replaced with other nodes if they are used
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2576
    // outside the loop.
6739
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2577
    if (n == store || n == head->loopexit() || n == head->incr() || n == store->in(MemNode::Memory)) continue;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2578
    for (SimpleDUIterator iter(n); iter.has_next(); iter.next()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2579
      Node* use = iter.get();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2580
      if (!lpt->_body.contains(use)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2581
        msg = "node is used outside loop";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2582
        // lpt->_body.dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2583
        msg_node = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2584
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2585
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2586
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2587
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2588
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2589
#ifdef ASSERT
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2590
  if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2591
    if (msg != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2592
      tty->print_cr("no fill intrinsic: %s", msg);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2593
      if (msg_node != NULL) msg_node->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2594
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2595
      tty->print_cr("fill intrinsic for:");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2596
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2597
    store->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2598
    if (Verbose) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2599
      lpt->_body.dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2600
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2601
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2602
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2603
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2604
  return msg == NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2605
}
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2606
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2607
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2608
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2609
bool PhaseIdealLoop::intrinsify_fill(IdealLoopTree* lpt) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2610
  // Only for counted inner loops
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2611
  if (!lpt->is_counted() || !lpt->is_inner()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2612
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2613
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2614
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2615
  // Must have constant stride
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2616
  CountedLoopNode* head = lpt->_head->as_CountedLoop();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2617
  if (!head->stride_is_con() || !head->is_normal_loop()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2618
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2619
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2620
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2621
  // Check that the body only contains a store of a loop invariant
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2622
  // value that is indexed by the loop phi.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2623
  Node* store = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2624
  Node* store_value = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2625
  Node* shift = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2626
  Node* offset = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2627
  if (!match_fill_loop(lpt, store, store_value, shift, offset)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2628
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2629
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2630
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2631
#ifndef PRODUCT
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2632
  if (TraceLoopOpts) {
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2633
    tty->print("ArrayFill    ");
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2634
    lpt->dump_head();
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2635
  }
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2636
#endif
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  2637
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2638
  // Now replace the whole loop body by a call to a fill routine that
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2639
  // covers the same region as the loop.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2640
  Node* base = store->in(MemNode::Address)->as_AddP()->in(AddPNode::Base);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2641
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2642
  // Build an expression for the beginning of the copy region
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2643
  Node* index = head->init_trip();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2644
#ifdef _LP64
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2645
  index = new (C, 2) ConvI2LNode(index);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2646
  _igvn.register_new_node_with_optimizer(index);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2647
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2648
  if (shift != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2649
    // byte arrays don't require a shift but others do.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2650
    index = new (C, 3) LShiftXNode(index, shift->in(2));
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2651
    _igvn.register_new_node_with_optimizer(index);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2652
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2653
  index = new (C, 4) AddPNode(base, base, index);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2654
  _igvn.register_new_node_with_optimizer(index);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2655
  Node* from = new (C, 4) AddPNode(base, index, offset);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2656
  _igvn.register_new_node_with_optimizer(from);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2657
  // Compute the number of elements to copy
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2658
  Node* len = new (C, 3) SubINode(head->limit(), head->init_trip());
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2659
  _igvn.register_new_node_with_optimizer(len);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2660
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2661
  BasicType t = store->as_Mem()->memory_type();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2662
  bool aligned = false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2663
  if (offset != NULL && head->init_trip()->is_Con()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2664
    int element_size = type2aelembytes(t);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2665
    aligned = (offset->find_intptr_t_type()->get_con() + head->init_trip()->get_int() * element_size) % HeapWordSize == 0;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2666
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2667
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2668
  // Build a call to the fill routine
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2669
  const char* fill_name;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2670
  address fill = StubRoutines::select_fill_function(t, aligned, fill_name);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2671
  assert(fill != NULL, "what?");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2672
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2673
  // Convert float/double to int/long for fill routines
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2674
  if (t == T_FLOAT) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2675
    store_value = new (C, 2) MoveF2INode(store_value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2676
    _igvn.register_new_node_with_optimizer(store_value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2677
  } else if (t == T_DOUBLE) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2678
    store_value = new (C, 2) MoveD2LNode(store_value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2679
    _igvn.register_new_node_with_optimizer(store_value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2680
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2681
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2682
  Node* mem_phi = store->in(MemNode::Memory);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2683
  Node* result_ctrl;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2684
  Node* result_mem;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2685
  const TypeFunc* call_type = OptoRuntime::array_fill_Type();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2686
  int size = call_type->domain()->cnt();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2687
  CallLeafNode *call = new (C, size) CallLeafNoFPNode(call_type, fill,
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2688
                                                      fill_name, TypeAryPtr::get_array_body_type(t));
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2689
  call->init_req(TypeFunc::Parms+0, from);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2690
  call->init_req(TypeFunc::Parms+1, store_value);
6770
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  2691
#ifdef _LP64
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  2692
  len = new (C, 2) ConvI2LNode(len);
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  2693
  _igvn.register_new_node_with_optimizer(len);
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  2694
#endif
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2695
  call->init_req(TypeFunc::Parms+2, len);
6770
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  2696
#ifdef _LP64
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  2697
  call->init_req(TypeFunc::Parms+3, C->top());
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  2698
#endif
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2699
  call->init_req( TypeFunc::Control, head->init_control());
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2700
  call->init_req( TypeFunc::I_O    , C->top() )        ;   // does no i/o
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2701
  call->init_req( TypeFunc::Memory ,  mem_phi->in(LoopNode::EntryControl) );
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2702
  call->init_req( TypeFunc::ReturnAdr, C->start()->proj_out(TypeFunc::ReturnAdr) );
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2703
  call->init_req( TypeFunc::FramePtr, C->start()->proj_out(TypeFunc::FramePtr) );
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2704
  _igvn.register_new_node_with_optimizer(call);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2705
  result_ctrl = new (C, 1) ProjNode(call,TypeFunc::Control);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2706
  _igvn.register_new_node_with_optimizer(result_ctrl);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2707
  result_mem = new (C, 1) ProjNode(call,TypeFunc::Memory);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2708
  _igvn.register_new_node_with_optimizer(result_mem);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2709
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2710
  // If this fill is tightly coupled to an allocation and overwrites
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2711
  // the whole body, allow it to take over the zeroing.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2712
  AllocateNode* alloc = AllocateNode::Ideal_allocation(base, this);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2713
  if (alloc != NULL && alloc->is_AllocateArray()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2714
    Node* length = alloc->as_AllocateArray()->Ideal_length();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2715
    if (head->limit() == length &&
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2716
        head->init_trip() == _igvn.intcon(0)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2717
      if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2718
        tty->print_cr("Eliminated zeroing in allocation");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2719
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2720
      alloc->maybe_set_complete(&_igvn);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2721
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2722
#ifdef ASSERT
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2723
      if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2724
        tty->print_cr("filling array but bounds don't match");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2725
        alloc->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2726
        head->init_trip()->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2727
        head->limit()->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2728
        length->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2729
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2730
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2731
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2732
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2733
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2734
  // Redirect the old control and memory edges that are outside the loop.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2735
  Node* exit = head->loopexit()->proj_out(0);
6739
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2736
  // Sometimes the memory phi of the head is used as the outgoing
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2737
  // state of the loop.  It's safe in this case to replace it with the
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2738
  // result_mem.
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  2739
  _igvn.replace_node(store->in(MemNode::Memory), result_mem);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2740
  _igvn.replace_node(exit, result_ctrl);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2741
  _igvn.replace_node(store, result_mem);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2742
  // Any uses the increment outside of the loop become the loop limit.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2743
  _igvn.replace_node(head->incr(), head->limit());
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2744
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2745
  // Disconnect the head from the loop.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2746
  for (uint i = 0; i < lpt->_body.size(); i++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2747
    Node* n = lpt->_body.at(i);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2748
    _igvn.replace_node(n, C->top());
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2749
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2750
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2751
  return true;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  2752
}