src/hotspot/share/opto/loopTransform.cpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58589 45a085445a8c
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54022
ff399127078a 8217561: X86: Add floating-point Math.min/max intrinsics
bsrbnd
parents: 53306
diff changeset
     2
 * Copyright (c) 2000, 2019, 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"
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
    30
#include "opto/castnode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    31
#include "opto/connode.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 23491
diff changeset
    32
#include "opto/convertnode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    33
#include "opto/divnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    34
#include "opto/loopnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    35
#include "opto/mulnode.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 23491
diff changeset
    36
#include "opto/movenode.hpp"
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 23491
diff changeset
    37
#include "opto/opaquenode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    38
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    39
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6770
diff changeset
    40
#include "opto/subnode.hpp"
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
    41
#include "opto/superword.hpp"
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
    42
#include "opto/vectornode.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//------------------------------is_loop_exit-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// Given an IfNode, return the loop-exiting projection or NULL if both
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// arms remain in the loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
Node *IdealLoopTree::is_loop_exit(Node *iff) const {
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
    48
  if (iff->outcnt() != 2) return NULL;  // Ignore partially dead tests
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  PhaseIdealLoop *phase = _phase;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Test is an IfNode, has 2 projections.  If BOTH are in the loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // we need loop unswitching instead of peeling.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
    52
  if (!is_member(phase->get_loop(iff->raw_out(0))))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    return iff->raw_out(0);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
    54
  if (!is_member(phase->get_loop(iff->raw_out(1))))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    return iff->raw_out(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
//------------------------------record_for_igvn----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// Put loop body on igvn work list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
void IdealLoopTree::record_for_igvn() {
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
    66
  for (uint i = 0; i < _body.size(); i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    Node *n = _body.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    _phase->_igvn._worklist.push(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
    70
  // put body of outer strip mined loop on igvn work list as well
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
    71
  if (_head->is_CountedLoop() && _head->as_Loop()->is_strip_mined()) {
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
    72
    CountedLoopNode* l = _head->as_CountedLoop();
49600
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    73
    Node* outer_loop = l->outer_loop();
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    74
    assert(outer_loop != NULL, "missing piece of strip mined loop");
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    75
    _phase->_igvn._worklist.push(outer_loop);
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    76
    Node* outer_loop_tail = l->outer_loop_tail();
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    77
    assert(outer_loop_tail != NULL, "missing piece of strip mined loop");
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    78
    _phase->_igvn._worklist.push(outer_loop_tail);
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    79
    Node* outer_loop_end = l->outer_loop_end();
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    80
    assert(outer_loop_end != NULL, "missing piece of strip mined loop");
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    81
    _phase->_igvn._worklist.push(outer_loop_end);
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    82
    Node* outer_safepoint = l->outer_safepoint();
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    83
    assert(outer_safepoint != NULL, "missing piece of strip mined loop");
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    84
    _phase->_igvn._worklist.push(outer_safepoint);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
    85
    Node* cle_out = _head->as_CountedLoop()->loopexit()->proj_out(false);
49600
d7c83c8e4e65 8197931: Null pointer dereference in Unique_Node_List::push of node.hpp:1510
roland
parents: 49487
diff changeset
    86
    assert(cle_out != NULL, "missing piece of strip mined loop");
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
    87
    _phase->_igvn._worklist.push(cle_out);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
    88
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    91
//------------------------------compute_exact_trip_count-----------------------
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
    92
// Compute loop trip count if possible. Do not recalculate trip count for
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    93
// split loops (pre-main-post) which have their limits and inits behind Opaque node.
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
    94
void IdealLoopTree::compute_trip_count(PhaseIdealLoop* phase) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    95
  if (!_head->as_Loop()->is_valid_counted_loop()) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    96
    return;
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    97
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    98
  CountedLoopNode* cl = _head->as_CountedLoop();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
    99
  // Trip count may become nonexact for iteration split loops since
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   100
  // 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
   101
  // it is used to limit unrolling of main loop.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   102
  cl->set_nonexact_trip_count();
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
  // Loop's test should be part of loop.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   105
  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
   106
    return; // Infinite loop
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   107
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   108
#ifdef ASSERT
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   109
  BoolTest::mask bt = cl->loopexit()->test_trip();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   110
  assert(bt == BoolTest::lt || bt == BoolTest::gt ||
10005
ce4ea81a1329 7052494: Eclipse test fails on JDK 7 b142
kvn
parents: 9955
diff changeset
   111
         bt == BoolTest::ne, "canonical test is expected");
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   112
#endif
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   113
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   114
  Node* init_n = cl->init_trip();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   115
  Node* limit_n = cl->limit();
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   116
  if (init_n != NULL && limit_n != NULL) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   117
    // Use longs to avoid integer overflow.
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   118
    int stride_con = cl->stride_con();
50262
131a631b271a 8202949: C2: assert(false) failed: Bad graph detected in build_loop_late
thartmann
parents: 49600
diff changeset
   119
    const TypeInt* init_type = phase->_igvn.type(init_n)->is_int();
131a631b271a 8202949: C2: assert(false) failed: Bad graph detected in build_loop_late
thartmann
parents: 49600
diff changeset
   120
    const TypeInt* limit_type = phase->_igvn.type(limit_n)->is_int();
131a631b271a 8202949: C2: assert(false) failed: Bad graph detected in build_loop_late
thartmann
parents: 49600
diff changeset
   121
    jlong init_con = (stride_con > 0) ? init_type->_lo : init_type->_hi;
131a631b271a 8202949: C2: assert(false) failed: Bad graph detected in build_loop_late
thartmann
parents: 49600
diff changeset
   122
    jlong limit_con = (stride_con > 0) ? limit_type->_hi : limit_type->_lo;
131a631b271a 8202949: C2: assert(false) failed: Bad graph detected in build_loop_late
thartmann
parents: 49600
diff changeset
   123
    int stride_m = stride_con - (stride_con > 0 ? 1 : -1);
13967
bf7c8dfb5121 8000313: C2 should use jlong for 64bit values
vlivanov
parents: 13895
diff changeset
   124
    jlong trip_count = (limit_con - init_con + stride_m)/stride_con;
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   125
    if (trip_count > 0 && (julong)trip_count < (julong)max_juint) {
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   126
      if (init_n->is_Con() && limit_n->is_Con()) {
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   127
        // Set exact trip count.
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   128
        cl->set_exact_trip_count((uint)trip_count);
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   129
      } else if (cl->unrolled_count() == 1) {
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   130
        // Set maximum trip count before unrolling.
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   131
        cl->set_trip_count((uint)trip_count);
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
   132
      }
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   133
    }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   134
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   135
}
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   136
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
//------------------------------compute_profile_trip_cnt----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
// Compute loop trip count from profile data as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
//    (backedge_count + loop_exit_count) / loop_exit_count
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   140
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   141
float IdealLoopTree::compute_profile_trip_cnt_helper(Node* n) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   142
  if (n->is_If()) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   143
    IfNode *iff = n->as_If();
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   144
    if (iff->_fcnt != COUNT_UNKNOWN && iff->_prob != PROB_UNKNOWN) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   145
      Node *exit = is_loop_exit(iff);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   146
      if (exit) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   147
        float exit_prob = iff->_prob;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   148
        if (exit->Opcode() == Op_IfFalse) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   149
          exit_prob = 1.0 - exit_prob;
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   150
        }
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   151
        if (exit_prob > PROB_MIN) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   152
          float exit_cnt = iff->_fcnt * exit_prob;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   153
          return exit_cnt;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   154
        }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   155
      }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   156
    }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   157
  }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   158
  if (n->is_Jump()) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   159
    JumpNode *jmp = n->as_Jump();
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   160
    if (jmp->_fcnt != COUNT_UNKNOWN) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   161
      float* probs = jmp->_probs;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   162
      float exit_prob = 0;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   163
      PhaseIdealLoop *phase = _phase;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   164
      for (DUIterator_Fast imax, i = jmp->fast_outs(imax); i < imax; i++) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   165
        JumpProjNode* u = jmp->fast_out(i)->as_JumpProj();
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   166
        if (!is_member(_phase->get_loop(u))) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   167
          exit_prob += probs[u->_con];
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   168
        }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   169
      }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   170
      return exit_prob * jmp->_fcnt;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   171
    }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   172
  }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   173
  return 0;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   174
}
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   175
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   176
void IdealLoopTree::compute_profile_trip_cnt(PhaseIdealLoop *phase) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   177
  if (!_head->is_Loop()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   180
  LoopNode* head = _head->as_Loop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (head->profile_trip_cnt() != COUNT_UNKNOWN) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    return; // Already computed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  float trip_cnt = (float)max_jint; // default is big
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  Node* back = head->in(LoopNode::LoopBackControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  while (back != head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    if ((back->Opcode() == Op_IfTrue || back->Opcode() == Op_IfFalse) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
        back->in(0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
        back->in(0)->is_If() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        back->in(0)->as_If()->_fcnt != COUNT_UNKNOWN &&
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   192
        back->in(0)->as_If()->_prob != PROB_UNKNOWN &&
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   193
        (back->Opcode() == Op_IfTrue ? 1-back->in(0)->as_If()->_prob : back->in(0)->as_If()->_prob) > PROB_MIN) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    back = phase->idom(back);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  if (back != head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    assert((back->Opcode() == Op_IfTrue || back->Opcode() == Op_IfFalse) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
           back->in(0), "if-projection exists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    IfNode* back_if = back->in(0)->as_If();
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   202
    float loop_back_cnt = back_if->_fcnt * (back->Opcode() == Op_IfTrue ? back_if->_prob : (1 - back_if->_prob));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    // Now compute a loop exit count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    float loop_exit_cnt = 0.0f;
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   206
    if (_child == NULL) {
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   207
      for (uint i = 0; i < _body.size(); i++) {
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   208
        Node *n = _body[i];
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   209
        loop_exit_cnt += compute_profile_trip_cnt_helper(n);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   210
      }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   211
    } else {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   212
      ResourceMark rm;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   213
      Unique_Node_List wq;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   214
      wq.push(back);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   215
      for (uint i = 0; i < wq.size(); i++) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   216
        Node *n = wq.at(i);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   217
        assert(n->is_CFG(), "only control nodes");
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   218
        if (n != head) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   219
          if (n->is_Region()) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   220
            for (uint j = 1; j < n->req(); j++) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   221
              wq.push(n->in(j));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
            }
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   223
          } else {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   224
            loop_exit_cnt += compute_profile_trip_cnt_helper(n);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   225
            wq.push(n->in(0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
      }
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   229
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    if (loop_exit_cnt > 0.0f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
      trip_cnt = (loop_back_cnt + loop_exit_cnt) / loop_exit_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      // No exit count so use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
      trip_cnt = loop_back_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    }
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   237
  } else {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
   238
    head->mark_profile_trip_failed();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  if (TraceProfileTripCount) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    tty->print_cr("compute_profile_trip_cnt  lp: %d cnt: %f\n", head->_idx, trip_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  head->set_profile_trip_cnt(trip_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
//---------------------is_invariant_addition-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
// Return nonzero index of invariant operand for an Add or Sub
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1500
diff changeset
   250
// of (nonconstant) invariant and variant values. Helper for reassociate_invariants.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
int IdealLoopTree::is_invariant_addition(Node* n, PhaseIdealLoop *phase) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  int op = n->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  if (op == Op_AddI || op == Op_SubI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    bool in1_invar = this->is_invariant(n->in(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    bool in2_invar = this->is_invariant(n->in(2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    if (in1_invar && !in2_invar) return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    if (!in1_invar && in2_invar) return 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
//---------------------reassociate_add_sub-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
// Reassociate invariant add and subtract expressions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// inv1 + (x + inv2)  =>  ( inv1 + inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
// (x + inv2) + inv1  =>  ( inv1 + inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
// inv1 + (x - inv2)  =>  ( inv1 - inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
// inv1 - (inv2 - x)  =>  ( inv1 - inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
// (x + inv2) - inv1  =>  (-inv1 + inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// (x - inv2) + inv1  =>  ( inv1 - inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// (x - inv2) - inv1  =>  (-inv1 - inv2) + x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// inv1 + (inv2 - x)  =>  ( inv1 + inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
// inv1 - (x - inv2)  =>  ( inv1 + inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// (inv2 - x) + inv1  =>  ( inv1 + inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// (inv2 - x) - inv1  =>  (-inv1 + inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
// inv1 - (x + inv2)  =>  ( inv1 - inv2) - x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
Node* IdealLoopTree::reassociate_add_sub(Node* n1, PhaseIdealLoop *phase) {
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44314
diff changeset
   279
  if ((!n1->is_Add() && !n1->is_Sub()) || n1->outcnt() == 0) return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  if (is_invariant(n1)) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  int inv1_idx = is_invariant_addition(n1, phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  if (!inv1_idx) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // Don't mess with add of constant (igvn moves them to expression tree root.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  if (n1->is_Add() && n1->in(2)->is_Con()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  Node* inv1 = n1->in(inv1_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  Node* n2 = n1->in(3 - inv1_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  int inv2_idx = is_invariant_addition(n2, phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  if (!inv2_idx) return NULL;
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   289
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   290
  if (!phase->may_require_nodes(10, 10)) return NULL;
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   291
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  Node* x    = n2->in(3 - inv2_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  Node* inv2 = n2->in(inv2_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  bool neg_x    = n2->is_Sub() && inv2_idx == 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  bool neg_inv2 = n2->is_Sub() && inv2_idx == 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  bool neg_inv1 = n1->is_Sub() && inv1_idx == 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  if (n1->is_Sub() && inv1_idx == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    neg_x    = !neg_x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    neg_inv2 = !neg_inv2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  Node* inv1_c = phase->get_ctrl(inv1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  Node* inv2_c = phase->get_ctrl(inv2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  Node* n_inv1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  if (neg_inv1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    Node *zero = phase->_igvn.intcon(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    phase->set_ctrl(zero, phase->C->root());
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
   308
    n_inv1 = new SubINode(zero, inv1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    phase->register_new_node(n_inv1, inv1_c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    n_inv1 = inv1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  Node* inv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  if (neg_inv2) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
   315
    inv = new SubINode(n_inv1, inv2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  } else {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
   317
    inv = new AddINode(n_inv1, inv2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  phase->register_new_node(inv, phase->get_early_ctrl(inv));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  Node* addx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  if (neg_x) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
   323
    addx = new SubINode(inv, x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  } else {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
   325
    addx = new AddINode(x, inv);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  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
   328
  phase->_igvn.replace_node(n1, addx);
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   329
  assert(phase->get_loop(phase->get_ctrl(n1)) == this, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   330
  _body.yank(n1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  return addx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
//---------------------reassociate_invariants-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
// Reassociate invariant expressions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
void IdealLoopTree::reassociate_invariants(PhaseIdealLoop *phase) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  for (int i = _body.size() - 1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    Node *n = _body.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    for (int j = 0; j < 5; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      Node* nn = reassociate_add_sub(n, phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      if (nn == NULL) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
      n = nn; // again
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   343
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
//------------------------------policy_peeling---------------------------------
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   348
// Return TRUE if the loop should be peeled, otherwise return FALSE. Peeling
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   349
// is applicable if we can make a loop-invariant test (usually a null-check)
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   350
// execute before we enter the loop. When TRUE, the estimated node budget is
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   351
// also requested.
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   352
bool IdealLoopTree::policy_peeling(PhaseIdealLoop *phase) {
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   353
  uint estimate = estimate_peeling(phase);
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   354
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   355
  return estimate == 0 ? false : phase->may_require_nodes(estimate);
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   356
}
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   357
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   358
// Perform actual policy and size estimate for the loop peeling transform, and
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   359
// return the estimated loop size if peeling is applicable, otherwise return
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   360
// zero. No node budget is allocated.
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   361
uint IdealLoopTree::estimate_peeling(PhaseIdealLoop *phase) {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   362
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   363
  // If nodes are depleted, some transform has miscalculated its needs.
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   364
  assert(!phase->exceeding_node_budget(), "sanity");
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   365
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   366
  // Peeling does loop cloning which can result in O(N^2) node construction.
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   367
  if (_body.size() > 255) {
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   368
    return 0;   // Suppress too large body size.
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   369
  }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   370
  // Optimistic estimate that approximates loop body complexity via data and
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   371
  // control flow fan-out (instead of using the more pessimistic: BodySize^2).
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   372
  uint estimate = est_loop_clone_sz(2);
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   373
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   374
  if (phase->exceeding_node_budget(estimate)) {
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   375
    return 0;   // Too large to safely clone.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   377
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   378
  // Check for vectorized loops, any peeling done was already applied.
54698
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
   379
  if (_head->is_CountedLoop()) {
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
   380
    CountedLoopNode* cl = _head->as_CountedLoop();
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
   381
    if (cl->is_unroll_only() || cl->trip_count() == 1) {
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   382
      return 0;
54698
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
   383
    }
53167
030429d6baac 8215044: C2 crash in loopTransform.cpp with assert(cl->trip_count() > 0) failed: peeling a fully unrolled loop
roland
parents: 53063
diff changeset
   384
  }
030429d6baac 8215044: C2 crash in loopTransform.cpp with assert(cl->trip_count() > 0) failed: peeling a fully unrolled loop
roland
parents: 53063
diff changeset
   385
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   386
  Node* test = tail();
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   387
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   388
  while (test != _head) {   // Scan till run off top of loop
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   389
    if (test->is_If()) {    // Test?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
      Node *ctrl = phase->get_ctrl(test->in(1));
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   391
      if (ctrl->is_top()) {
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   392
        return 0;           // Found dead test on live IF?  No peeling!
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   393
      }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   394
      // Standard IF only has one input value to check for loop invariance.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   395
      assert(test->Opcode() == Op_If ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   396
             test->Opcode() == Op_CountedLoopEnd ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   397
             test->Opcode() == Op_RangeCheck,
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   398
             "Check this code when new subtype is added");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      // Condition is not a member of this loop?
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   400
      if (!is_member(phase->get_loop(ctrl)) && is_loop_exit(test)) {
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   401
        return estimate;    // Found reason to peel!
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   402
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   404
    // Walk up dominators to loop _head looking for test which is executed on
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   405
    // every path through the loop.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    test = phase->idom(test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   408
  return 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
//------------------------------peeled_dom_test_elim---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
// If we got the effect of peeling, either by actually peeling or by making
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
// a pre-loop which must execute at least once, we can remove all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
// loop-invariant dominated tests in the main body.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   415
void PhaseIdealLoop::peeled_dom_test_elim(IdealLoopTree *loop, Node_List &old_new) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  bool progress = true;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   417
  while (progress) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    progress = false;           // Reset for next iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    Node *prev = loop->_head->in(LoopNode::LoopBackControl);//loop->tail();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    Node *test = prev->in(0);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   421
    while (test != loop->_head) { // Scan till run off top of loop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      int p_op = prev->Opcode();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   424
      if ((p_op == Op_IfFalse || p_op == Op_IfTrue) &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
          test->is_If() &&      // Test?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
          !test->in(1)->is_Con() && // And not already obvious?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
          // Condition is not a member of this loop?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
          !loop->is_member(get_loop(get_ctrl(test->in(1))))){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
        // Walk loop body looking for instances of this test
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   430
        for (uint i = 0; i < loop->_body.size(); i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
          Node *n = loop->_body.at(i);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   432
          if (n->is_If() && n->in(1) == test->in(1) /*&& n != loop->tail()->in(0)*/) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
            // IfNode was dominated by version in peeled loop body
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
            progress = true;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   435
            dominated_by(old_new[prev->_idx], n);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
      prev = test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
      test = idom(test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    } // End of scan tests in loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   443
  } // End of while (progress)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
//------------------------------do_peeling-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
// Peel the first iteration of the given loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
// Step 1: Clone the loop body.  The clone becomes the peeled iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
//         The pre-loop illegally has 2 control users (old & new loops).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
// Step 2: Make the old-loop fall-in edges point to the peeled iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
//         Do this by making the old-loop fall-in edges act as if they came
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
//         around the loopback from the prior iteration (follow the old-loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
//         backedges) and then map to the new peeled iteration.  This leaves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
//         the pre-loop with only 1 user (the new peeled iteration), but the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
//         peeled-loop backedge has 2 users.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
// Step 3: Cut the backedge on the clone (so its not a loop) and remove the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
//         extra backedge user.
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   458
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   459
//                   orig
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
//                  stmt1
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   462
//                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   463
//                    v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   464
//              loop predicate
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   465
//                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   466
//                    v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   467
//                   loop<----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   468
//                     |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   469
//                   stmt2    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   470
//                     |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   471
//                     v      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   472
//                    if      ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   473
//                   / \      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   474
//                  /   \     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   475
//                 v     v    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   476
//               false true   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   477
//               /       \    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   478
//              /         ----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   479
//             |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   480
//             v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   481
//           exit
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   482
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   483
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   484
//            after clone loop
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   485
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   486
//                   stmt1
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   487
//                     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   488
//                     v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   489
//               loop predicate
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   490
//                 /       \
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   491
//        clone   /         \   orig
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   492
//               /           \
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   493
//              /             \
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   494
//             v               v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   495
//   +---->loop clone          loop<----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   496
//   |      |                    |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   497
//   |    stmt2 clone          stmt2    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   498
//   |      |                    |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   499
//   |      v                    v      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   500
//   ^      if clone            If      ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   501
//   |      / \                / \      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   502
//   |     /   \              /   \     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   503
//   |    v     v            v     v    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   504
//   |    true  false      false true   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   505
//   |    /         \      /       \    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   506
//   +----           \    /         ----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   507
//                    \  /
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   508
//                    1v v2
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   509
//                  region
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   510
//                     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   511
//                     v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   512
//                   exit
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   513
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   514
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   515
//         after peel and predicate move
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   516
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   517
//                   stmt1
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   518
//                    /
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   519
//                   /
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   520
//        clone     /            orig
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   521
//                 /
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   522
//                /              +----------+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   523
//               /               |          |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   524
//              /          loop predicate   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   525
//             /                 |          |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   526
//            v                  v          |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   527
//   TOP-->loop clone          loop<----+   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   528
//          |                    |      |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   529
//        stmt2 clone          stmt2    |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   530
//          |                    |      |   ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   531
//          v                    v      |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   532
//          if clone            If      ^   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   533
//          / \                / \      |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   534
//         /   \              /   \     |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   535
//        v     v            v     v    |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   536
//      true   false      false  true   |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   537
//        |         \      /       \    |   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   538
//        |          \    /         ----+   ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   539
//        |           \  /                  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   540
//        |           1v v2                 |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   541
//        v         region                  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   542
//        |            |                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   543
//        |            v                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   544
//        |          exit                   |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   545
//        |                                 |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   546
//        +--------------->-----------------+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   547
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   548
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   549
//              final graph
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   550
//
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   551
//                  stmt1
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   552
//                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   553
//                    v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   554
//                  stmt2 clone
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   555
//                    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   556
//                    v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   557
//                   if clone
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   558
//                  / |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   559
//                 /  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   560
//                v   v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   561
//            false  true
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   562
//             |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   563
//             |      v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   564
//             | loop predicate
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   565
//             |      |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   566
//             |      v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   567
//             |     loop<----+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   568
//             |      |       |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   569
//             |    stmt2     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   570
//             |      |       |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   571
//             |      v       |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   572
//             v      if      ^
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   573
//             |     /  \     |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   574
//             |    /    \    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   575
//             |   v     v    |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   576
//             | false  true  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   577
//             |  |        \  |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   578
//             v  v         --+
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   579
//            region
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   580
//              |
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   581
//              v
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   582
//             exit
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   583
//
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   584
void PhaseIdealLoop::do_peeling(IdealLoopTree *loop, Node_List &old_new) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  // Peeling a 'main' loop in a pre/main/post situation obfuscates the
31133
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
   588
  // 'pre' loop from the main and the 'pre' can no longer have its
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  // iterations adjusted.  Therefore, we need to declare this loop as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  // no longer a 'main' loop; it will need new pre and post loops before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  // we can do further RCE.
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   592
#ifndef PRODUCT
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   593
  if (TraceLoopOpts) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   594
    tty->print("Peel         ");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   595
    loop->dump_head();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   596
  }
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   597
#endif
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
   598
  LoopNode* head = loop->_head->as_Loop();
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   599
  bool counted_loop = head->is_CountedLoop();
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   600
  if (counted_loop) {
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   601
    CountedLoopNode *cl = head->as_CountedLoop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    assert(cl->trip_count() > 0, "peeling a fully unrolled loop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    cl->set_trip_count(cl->trip_count() - 1);
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   604
    if (cl->is_main_loop()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
      cl->set_normal_loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
#ifndef PRODUCT
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
   607
      if (PrintOpto && VerifyLoopOptimizations) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
        tty->print("Peeling a 'main' loop; resetting to 'normal' ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
        loop->dump_head();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  }
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   614
  Node* entry = head->in(LoopNode::EntryControl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  // Step 1: Clone the loop body.  The clone becomes the peeled iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  //         The pre-loop illegally has 2 control users (old & new loops).
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
   618
  clone_loop(loop, old_new, dom_depth(head->skip_strip_mined()), ControlAroundStripMined);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  // Step 2: Make the old-loop fall-in edges point to the peeled iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  //         Do this by making the old-loop fall-in edges act as if they came
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  //         around the loopback from the prior iteration (follow the old-loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  //         backedges) and then map to the new peeled iteration.  This leaves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  //         the pre-loop with only 1 user (the new peeled iteration), but the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  //         peeled-loop backedge has 2 users.
10258
10c77b8c8d3e 7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents: 10011
diff changeset
   626
  Node* new_entry = old_new[head->in(LoopNode::LoopBackControl)->_idx];
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
   627
  _igvn.hash_delete(head->skip_strip_mined());
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
   628
  head->skip_strip_mined()->set_req(LoopNode::EntryControl, new_entry);
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   629
  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
   630
    Node* old = head->fast_out(j);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   631
    if (old->in(0) == loop->_head && old->req() == 3 && old->is_Phi()) {
10258
10c77b8c8d3e 7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents: 10011
diff changeset
   632
      Node* new_exit_value = old_new[old->in(LoopNode::LoopBackControl)->_idx];
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   633
      if (!new_exit_value)     // Backedge value is ALSO loop invariant?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
        // Then loop body backedge value remains the same.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
        new_exit_value = old->in(LoopNode::LoopBackControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
      _igvn.hash_delete(old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
      old->set_req(LoopNode::EntryControl, new_exit_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  // Step 3: Cut the backedge on the clone (so its not a loop) and remove the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  //         extra backedge user.
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   644
  Node* new_head = old_new[head->_idx];
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   645
  _igvn.hash_delete(new_head);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   646
  new_head->set_req(LoopNode::LoopBackControl, C->top());
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   647
  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
   648
    Node* use = new_head->fast_out(j2);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   649
    if (use->in(0) == new_head && use->req() == 3 && use->is_Phi()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
      _igvn.hash_delete(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
      use->set_req(LoopNode::LoopBackControl, C->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  // Step 4: Correct dom-depth info.  Set to loop-head depth.
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   656
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   657
  int dd = dom_depth(head);
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
   658
  set_idom(head, head->in(1), dd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  for (uint j3 = 0; j3 < loop->_body.size(); j3++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    Node *old = loop->_body.at(j3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    Node *nnn = old_new[old->_idx];
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   662
    if (!has_ctrl(nnn)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
      set_idom(nnn, idom(nnn), dd-1);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   664
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  // Now force out all loop-invariant dominating tests.  The optimizer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  // finds some, but we _know_ they are all useless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  peeled_dom_test_elim(loop,old_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  loop->record_for_igvn();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
//------------------------------policy_maximally_unroll------------------------
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   675
// Calculate the exact  loop trip-count and return TRUE if loop can be fully,
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   676
// i.e. maximally, unrolled, otherwise return FALSE. When TRUE, the estimated
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   677
// node budget is also requested.
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   678
bool IdealLoopTree::policy_maximally_unroll(PhaseIdealLoop* phase) const {
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   679
  CountedLoopNode* cl = _head->as_CountedLoop();
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   680
  assert(cl->is_normal_loop(), "");
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   681
  if (!cl->is_valid_counted_loop()) {
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   682
    return false;   // Malformed counted loop.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   683
  }
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   684
  if (!cl->has_exact_trip_count()) {
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   685
    return false;   // Trip count is not exact.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   688
  uint trip_count = cl->trip_count();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   689
  // Note, max_juint is used to indicate unknown trip count.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
   690
  assert(trip_count > 1, "one iteration loop should be optimized out already");
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   691
  assert(trip_count < max_juint, "exact trip_count should be less than max_juint.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   693
  // If nodes are depleted, some transform has miscalculated its needs.
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   694
  assert(!phase->exceeding_node_budget(), "sanity");
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   695
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   696
  // Allow the unrolled body to get larger than the standard loop size limit.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  uint unroll_limit = (uint)LoopUnrollLimit * 4;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   698
  assert((intx)unroll_limit == LoopUnrollLimit * 4, "LoopUnrollLimit must fit in 32bits");
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   699
  if (trip_count > unroll_limit || _body.size() > unroll_limit) {
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   700
    return false;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   701
  }
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   702
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   703
  uint new_body_size = est_loop_unroll_sz(trip_count);
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   704
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   705
  if (new_body_size == UINT_MAX) { // Check for bad estimate (overflow).
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   706
    return false;
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   707
  }
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   708
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   709
  // Fully unroll a loop with few iterations, regardless of other conditions,
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   710
  // since the following (general) loop optimizations will split such loop in
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   711
  // any case (into pre-main-post).
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   712
  if (trip_count <= 3) {
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   713
    return phase->may_require_nodes(new_body_size);
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   714
  }
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   715
58354
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   716
  // Reject if unrolling will result in too much node construction.
e6b5ec45ab9e 8229499: Node budget assert in fuzzed test.
phedlin
parents: 58061
diff changeset
   717
  if (new_body_size > unroll_limit || phase->exceeding_node_budget(new_body_size)) {
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   718
    return false;
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   719
  }
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   720
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   721
  // 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
   722
  // String intrinsics are large and have loops.
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   723
  for (uint k = 0; k < _body.size(); k++) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   724
    Node* n = _body.at(k);
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   725
    switch (n->Opcode()) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   726
      case Op_StrComp:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   727
      case Op_StrEquals:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   728
      case Op_StrIndexOf:
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 32202
diff changeset
   729
      case Op_StrIndexOfChar:
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   730
      case Op_EncodeISOArray:
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 32202
diff changeset
   731
      case Op_AryEq:
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 32202
diff changeset
   732
      case Op_HasNegatives: {
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   733
        return false;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   734
      }
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   735
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   736
      case Op_FastLock:
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   737
      case Op_FastUnlock: {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   738
        // Don't unroll RTM locking code because it is large.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   739
        if (UseRTMLocking) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   740
          return false;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   741
        }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   742
      }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   743
#endif
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   744
    } // switch
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   745
  }
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   746
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   747
  return phase->may_require_nodes(new_body_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
}
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_unroll----------------------------------
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   752
// Return TRUE or FALSE if the loop should be unrolled or not. Apply unroll if
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   753
// the loop is  a counted loop and  the loop body is small  enough. When TRUE,
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   754
// the estimated node budget is also requested.
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   755
bool IdealLoopTree::policy_unroll(PhaseIdealLoop *phase) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  CountedLoopNode *cl = _head->as_CountedLoop();
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   758
  assert(cl->is_normal_loop() || cl->is_main_loop(), "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   760
  if (!cl->is_valid_counted_loop()) {
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   761
    return false; // Malformed counted loop
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   762
  }
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   763
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   764
  // If nodes are depleted, some transform has miscalculated its needs.
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   765
  assert(!phase->exceeding_node_budget(), "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   767
  // Protect against over-unrolling.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   768
  // After split at least one iteration will be executed in pre-loop.
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   769
  if (cl->trip_count() <= (cl->is_normal_loop() ? 2u : 1u)) {
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   770
    return false;
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   771
  }
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   772
  _local_loop_unroll_limit  = LoopUnrollLimit;
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   773
  _local_loop_unroll_factor = 4;
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   774
  int future_unroll_cnt = cl->unrolled_count() * 2;
47591
d78db2ebce5e 8187601: Unrolling more when SLP auto-vectorization failed
zyao
parents: 47216
diff changeset
   775
  if (!cl->is_vectorized_loop()) {
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   776
    if (future_unroll_cnt > LoopMaxUnroll) return false;
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   777
  } else {
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   778
    // obey user constraints on vector mapped loops with additional unrolling applied
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
   779
    int unroll_constraint = (cl->slp_max_unroll()) ? cl->slp_max_unroll() : 1;
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   780
    if ((future_unroll_cnt / unroll_constraint) > LoopMaxUnroll) return false;
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   781
  }
9109
ec7b2f3b386c 7004547: regular loop unroll should not unroll more than max unrolling
kvn
parents: 9104
diff changeset
   782
9434
56d7158be6dc 7039652: Performance regression after 7004547 changes
kvn
parents: 9124
diff changeset
   783
  // Check for initial stride being a small enough constant
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   784
  if (abs(cl->stride_con()) > (1<<2)*future_unroll_cnt) return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  // Don't unroll if the next round of unrolling would push us
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  // over the expected trip count of the loop.  One is subtracted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  // from the expected trip count because the pre-loop normally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  // executes 1 iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  if (UnrollLimitForProfileCheck > 0 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
      cl->profile_trip_cnt() != COUNT_UNKNOWN &&
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   792
      future_unroll_cnt        > UnrollLimitForProfileCheck &&
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   793
      (float)future_unroll_cnt > cl->profile_trip_cnt() - 1.0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  // When unroll count is greater than LoopUnrollMin, don't unroll if:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  //   the residual iterations are more than 10% of the trip count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  //   and rounds of "unroll,optimize" are not making significant progress
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  //   Progress defined as current size less than 20% larger than previous size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  if (UseSuperWord && cl->node_count_before_unroll() > 0 &&
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   802
      future_unroll_cnt > LoopUnrollMin &&
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   803
      (future_unroll_cnt - 1) * (100 / LoopPercentProfileLimit) > cl->profile_trip_cnt() &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
      1.2 * cl->node_count_before_unroll() < (double)_body.size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  Node *init_n = cl->init_trip();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  Node *limit_n = cl->limit();
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   810
  int stride_con = cl->stride_con();
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 51017
diff changeset
   811
  if (limit_n == NULL) return false; // We will dereference it below.
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 51017
diff changeset
   812
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  // Non-constant bounds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  // Protect against over-unrolling when init or/and limit are not constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  // (so that trip_count's init value is maxint) but iv range is known.
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 51017
diff changeset
   816
  if (init_n == NULL || !init_n->is_Con() || !limit_n->is_Con()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
    Node* phi = cl->phi();
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   818
    if (phi != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
      assert(phi->is_Phi() && phi->in(0) == _head, "Counted loop should have iv phi.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
      const TypeInt* iv_type = phase->_igvn.type(phi)->is_int();
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   821
      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
   822
      if (next_stride > 0) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   823
        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
   824
            iv_type->_lo + next_stride >  iv_type->_hi) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
          return false;  // over-unrolling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
        }
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   827
      } else if (next_stride < 0) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   828
        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
   829
            iv_type->_hi + next_stride <  iv_type->_lo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
          return false;  // over-unrolling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   836
  // After unroll limit will be adjusted: new_limit = limit-stride.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   837
  // Bailout if adjustment overflow.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   838
  const TypeInt* limit_type = phase->_igvn.type(limit_n)->is_int();
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44314
diff changeset
   839
  if ((stride_con > 0 && ((limit_type->_hi - stride_con) >= limit_type->_hi)) ||
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44314
diff changeset
   840
      (stride_con < 0 && ((limit_type->_lo - stride_con) <= limit_type->_lo)))
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   841
    return false;  // overflow
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   842
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  // Adjust body_size to determine if we unroll or not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  uint body_size = _body.size();
10538
d6bf448fa3ad 7054211: No loop unrolling done in jdk7b144 for a test update() while loop
kvn
parents: 10263
diff changeset
   845
  // Key test to unroll loop in CRC32 java code
d6bf448fa3ad 7054211: No loop unrolling done in jdk7b144 for a test update() while loop
kvn
parents: 10263
diff changeset
   846
  int xors_in_loop = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  // 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
   848
  for (uint k = 0; k < _body.size(); k++) {
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   849
    Node* n = _body.at(k);
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   850
    switch (n->Opcode()) {
10538
d6bf448fa3ad 7054211: No loop unrolling done in jdk7b144 for a test update() while loop
kvn
parents: 10263
diff changeset
   851
      case Op_XorI: xors_in_loop++; break; // CRC32 java code
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   852
      case Op_ModL: body_size += 30; break;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   853
      case Op_DivL: body_size += 30; break;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   854
      case Op_MulL: body_size += 10; break;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   855
      case Op_StrComp:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   856
      case Op_StrEquals:
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   857
      case Op_StrIndexOf:
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 32202
diff changeset
   858
      case Op_StrIndexOfChar:
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   859
      case Op_EncodeISOArray:
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 32202
diff changeset
   860
      case Op_AryEq:
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 32202
diff changeset
   861
      case Op_HasNegatives: {
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   862
        // 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
   863
        // String intrinsics are large and have loops.
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   864
        return false;
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   865
      }
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   866
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   867
      case Op_FastLock:
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   868
      case Op_FastUnlock: {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   869
        // Don't unroll RTM locking code because it is large.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   870
        if (UseRTMLocking) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   871
          return false;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   872
        }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   873
      }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22911
diff changeset
   874
#endif
8879
e6ae9a7aa72a 7029152: Ideal nodes for String intrinsics miss memory edge optimization
kvn
parents: 8870
diff changeset
   875
    } // switch
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   878
  if (UseSuperWord) {
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   879
    if (!cl->is_reduction_loop()) {
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   880
      phase->mark_reductions(this);
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   881
    }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   882
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   883
    // Only attempt slp analysis when user controls do not prohibit it
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   884
    if (LoopMaxUnroll > _local_loop_unroll_factor) {
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   885
      // Once policy_slp_analysis succeeds, mark the loop with the
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   886
      // maximal unroll factor so that we minimize analysis passes
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   887
      if (future_unroll_cnt >= _local_loop_unroll_factor) {
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   888
        policy_unroll_slp_analysis(cl, phase, future_unroll_cnt);
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   889
      }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   890
    }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   891
  }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   892
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   893
  int slp_max_unroll_factor = cl->slp_max_unroll();
46692
117b089cb1c3 8175096: Analyse subword in the loop to set maximum vector size
vdeshpande
parents: 46630
diff changeset
   894
  if ((LoopMaxUnroll < slp_max_unroll_factor) && FLAG_IS_DEFAULT(LoopMaxUnroll) && UseSubwordForMaxVector) {
117b089cb1c3 8175096: Analyse subword in the loop to set maximum vector size
vdeshpande
parents: 46630
diff changeset
   895
    LoopMaxUnroll = slp_max_unroll_factor;
117b089cb1c3 8175096: Analyse subword in the loop to set maximum vector size
vdeshpande
parents: 46630
diff changeset
   896
  }
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   897
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   898
  uint estimate = est_loop_clone_sz(2);
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   899
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   900
  if (cl->has_passed_slp()) {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   901
    if (slp_max_unroll_factor >= future_unroll_cnt) {
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   902
      return phase->may_require_nodes(estimate);
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   903
    }
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   904
    return false; // Loop too big.
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   905
  }
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   906
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  // Check for being too big
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   908
  if (body_size > (uint)_local_loop_unroll_limit) {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   909
    if ((cl->is_subword_loop() || xors_in_loop >= 4) && body_size < 4u * LoopUnrollLimit) {
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   910
      return phase->may_require_nodes(estimate);
51017
dd7ce84016a5 8194740: UseSubwordForMaxVector causes performance regression
vdeshpande
parents: 50632
diff changeset
   911
    }
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   912
    return false; // Loop too big.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
54698
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
   915
  if (cl->is_unroll_only()) {
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
   916
    if (TraceSuperWordLoopUnrollAnalysis) {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   917
      tty->print_cr("policy_unroll passed vector loop(vlen=%d, factor=%d)\n",
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   918
                    slp_max_unroll_factor, future_unroll_cnt);
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
   919
    }
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   920
  }
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   921
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  // Unroll once!  (Each trip will soon do double iterations)
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   923
  return phase->may_require_nodes(estimate);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   926
void IdealLoopTree::policy_unroll_slp_analysis(CountedLoopNode *cl, PhaseIdealLoop *phase, int future_unroll_cnt) {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   927
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   928
  // If nodes are depleted, some transform has miscalculated its needs.
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   929
  assert(!phase->exceeding_node_budget(), "sanity");
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   930
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   931
  // Enable this functionality target by target as needed
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   932
  if (SuperWordLoopUnrollAnalysis) {
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   933
    if (!cl->was_slp_analyzed()) {
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   934
      SuperWord sw(phase);
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   935
      sw.transform_loop(this, false);
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   936
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   937
      // If the loop is slp canonical analyze it
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   938
      if (sw.early_return() == false) {
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   939
        sw.unrolling_analysis(_local_loop_unroll_factor);
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   940
      }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   941
    }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   942
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   943
    if (cl->has_passed_slp()) {
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   944
      int slp_max_unroll_factor = cl->slp_max_unroll();
54702
45b84dd85b9e 8223141: Change (count) suffix _ct into _cnt.
phedlin
parents: 54700
diff changeset
   945
      if (slp_max_unroll_factor >= future_unroll_cnt) {
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   946
        int new_limit = cl->node_count_before_unroll() * slp_max_unroll_factor;
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   947
        if (new_limit > LoopUnrollLimit) {
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
   948
          if (TraceSuperWordLoopUnrollAnalysis) {
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
   949
            tty->print_cr("slp analysis unroll=%d, default limit=%d\n", new_limit, _local_loop_unroll_limit);
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
   950
          }
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   951
          _local_loop_unroll_limit = new_limit;
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   952
        }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   953
      }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   954
    }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   955
  }
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   956
}
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
   957
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
//------------------------------policy_align-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
// Return TRUE or FALSE if the loop should be cache-line aligned.  Gather the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
// expression that does the alignment.  Note that only one array base can be
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1500
diff changeset
   961
// aligned in a loop (unless the VM guarantees mutual alignment).  Note that
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
// if we vectorize short memory ops into longer memory ops, we may want to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
// increase alignment.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   964
bool IdealLoopTree::policy_align(PhaseIdealLoop *phase) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
//------------------------------policy_range_check-----------------------------
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   969
// Return TRUE or FALSE if the loop should be range-check-eliminated or not.
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   970
// When TRUE, the estimated node budget is also requested.
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   971
//
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   972
// We will actually perform iteration-splitting, a more powerful form of RCE.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   973
bool IdealLoopTree::policy_range_check(PhaseIdealLoop *phase) const {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   974
  if (!RangeCheckElimination) return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   976
  // If nodes are depleted, some transform has miscalculated its needs.
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   977
  assert(!phase->exceeding_node_budget(), "sanity");
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
   978
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  CountedLoopNode *cl = _head->as_CountedLoop();
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   980
  // If we unrolled  with no intention of doing RCE and we  later changed our
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   981
  // minds, we got no pre-loop.  Either we need to make a new pre-loop, or we
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
   982
  // have to disallow RCE.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   983
  if (cl->is_main_no_pre_loop()) return false; // Disallowed for now.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  Node *trip_counter = cl->phi();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   986
  // check for vectorized loops, some opts are no longer needed
54698
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
   987
  if (cl->is_unroll_only()) return false;
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
   988
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  // Check loop body for tests of trip-counter plus loop-invariant vs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  // loop-invariant.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
   991
  for (uint i = 0; i < _body.size(); i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
    Node *iff = _body[i];
34164
a9e6034d7707 8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents: 33628
diff changeset
   993
    if (iff->Opcode() == Op_If ||
a9e6034d7707 8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents: 33628
diff changeset
   994
        iff->Opcode() == Op_RangeCheck) { // Test?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
      // Comparing trip+off vs limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
      Node *bol = iff->in(1);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   998
      if (bol->req() != 2) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
   999
        continue; // dead constant test
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1000
      }
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  1001
      if (!bol->is_Bool()) {
39429
2c9cde29cd3f 8159715: Fix for 8072422 is incorrect
thartmann
parents: 39419
diff changeset
  1002
        assert(bol->Opcode() == Op_Conv2B, "predicate check only");
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  1003
        continue;
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  1004
      }
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1005
      if (bol->as_Bool()->_test._test == BoolTest::ne) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1006
        continue; // not RC
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1007
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
      Node *cmp = bol->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
      Node *rc_exp = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
      Node *limit = cmp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
      Node *limit_c = phase->get_ctrl(limit);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1013
      if (limit_c == phase->C->top()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
        return false;           // Found dead test on live IF?  No RCE!
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1015
      }
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1016
      if (is_member(phase->get_loop(limit_c))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
        // Compare might have operands swapped; commute them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
        rc_exp = cmp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
        limit  = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
        limit_c = phase->get_ctrl(limit);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1021
        if (is_member(phase->get_loop(limit_c))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
          continue;             // Both inputs are loop varying; cannot RCE
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1023
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
      if (!phase->is_scaled_iv_plus_offset(rc_exp, trip_counter, NULL, NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
      }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  1029
      // Found a test like 'trip+off vs limit'. Test is an IfNode, has two (2)
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  1030
      // projections. If BOTH are in the loop we need loop unswitching instead
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  1031
      // of iteration splitting.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1032
      if (is_loop_exit(iff)) {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1033
        // Found valid reason to split iterations (if there is room).
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1034
        // NOTE: Usually a gross overestimate.
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  1035
        return phase->may_require_nodes(est_loop_clone_sz(2));
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1036
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    } // End of is IF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
//------------------------------policy_peel_only-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
// Return TRUE or FALSE if the loop should NEVER be RCE'd or aligned.  Useful
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
// for unrolling loops with NO array accesses.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1046
bool IdealLoopTree::policy_peel_only(PhaseIdealLoop *phase) const {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1047
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1048
  // If nodes are depleted, some transform has miscalculated its needs.
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1049
  assert(!phase->exceeding_node_budget(), "sanity");
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1050
31772
718fc367468d 8129920: Vectorized loop unrolling
kvn
parents: 31590
diff changeset
  1051
  // check for vectorized loops, any peeling done was already applied
54698
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
  1052
  if (_head->is_CountedLoop() && _head->as_CountedLoop()->is_unroll_only()) {
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
  1053
    return false;
3ebf58dbf5d8 8223137: Rename predicate 'do_unroll_only()' to 'is_unroll_only()'.
phedlin
parents: 54022
diff changeset
  1054
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1056
  for (uint i = 0; i < _body.size(); i++) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1057
    if (_body[i]->is_Mem()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
      return false;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1059
    }
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1060
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  // No memory accesses at all!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
//------------------------------clone_up_backedge_goo--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
// If Node n lives in the back_ctrl block and cannot float, we clone a private
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
// version of n in preheader_ctrl block and return that, otherwise return n.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1068
Node *PhaseIdealLoop::clone_up_backedge_goo(Node *back_ctrl, Node *preheader_ctrl, Node *n, VectorSet &visited, Node_Stack &clones) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1069
  if (get_ctrl(n) != back_ctrl) return n;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
10011
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1071
  // Only visit once
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1072
  if (visited.test_set(n->_idx)) {
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1073
    Node *x = clones.find(n->_idx);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1074
    return (x != NULL) ? x : n;
10011
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1075
  }
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1076
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  Node *x = NULL;               // If required, a clone of 'n'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  // Check for 'n' being pinned in the backedge.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1079
  if (n->in(0) && n->in(0) == back_ctrl) {
10011
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1080
    assert(clones.find(n->_idx) == NULL, "dead loop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    x = n->clone();             // Clone a copy of 'n' to preheader
10011
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1082
    clones.push(x, n->_idx);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1083
    x->set_req(0, preheader_ctrl); // Fix x's control input to preheader
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  // Recursive fixup any other input edges into x.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  // If there are no changes we can just return 'n', otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  // we need to clone a private copy and change it.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1089
  for (uint i = 1; i < n->req(); i++) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1090
    Node *g = clone_up_backedge_goo(back_ctrl, preheader_ctrl, n->in(i), visited, clones);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1091
    if (g != n->in(i)) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1092
      if (!x) {
10011
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1093
        assert(clones.find(n->_idx) == NULL, "dead loop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
        x = n->clone();
10011
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1095
        clones.push(x, n->_idx);
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1096
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
      x->set_req(i, g);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  }
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1100
  if (x) {                     // x can legally float to pre-header location
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1101
    register_new_node(x, preheader_ctrl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
    return x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  } else {                      // raise n to cover LCA of uses
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1104
    set_ctrl(n, find_non_split_ctrl(back_ctrl->in(0)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  return n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1109
Node* PhaseIdealLoop::cast_incr_before_loop(Node* incr, Node* ctrl, Node* loop) {
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1110
  Node* castii = new CastIINode(incr, TypeInt::INT, true);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1111
  castii->set_req(0, ctrl);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1112
  register_new_node(castii, ctrl);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1113
  for (DUIterator_Fast imax, i = incr->fast_outs(imax); i < imax; i++) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1114
    Node* n = incr->fast_out(i);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1115
    if (n->is_Phi() && n->in(0) == loop) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1116
      int nrep = n->replace_edge(incr, castii);
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1117
      return castii;
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1118
    }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1119
  }
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1120
  return NULL;
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1121
}
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1122
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1123
// Make a copy of the skeleton range check predicates before the main
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1124
// loop and set the initial value of loop as input. After unrolling,
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1125
// the range of values for the induction variable in the main loop can
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1126
// fall outside the allowed range of values by the array access (main
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1127
// loop is never executed). When that happens, range check
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1128
// CastII/ConvI2L nodes cause some data paths to die. For consistency,
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1129
// the control paths must die too but the range checks were removed by
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1130
// predication. The range checks that we add here guarantee that they do.
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1131
void PhaseIdealLoop::duplicate_predicates_helper(Node* predicate, Node* start, Node* end,
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1132
                                                 IdealLoopTree* outer_loop, LoopNode* outer_main_head,
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1133
                                                 uint dd_main_head) {
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1134
  if (predicate != NULL) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1135
    IfNode* iff = predicate->in(0)->as_If();
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1136
    ProjNode* uncommon_proj = iff->proj_out(1 - predicate->as_Proj()->_con);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1137
    Node* rgn = uncommon_proj->unique_ctrl_out();
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1138
    assert(rgn->is_Region() || rgn->is_Call(), "must be a region or call uct");
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1139
    assert(iff->in(1)->in(1)->Opcode() == Op_Opaque1, "unexpected predicate shape");
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1140
    predicate = iff->in(0);
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1141
    Node* current_proj = outer_main_head->in(LoopNode::EntryControl);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1142
    Node* prev_proj = current_proj;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1143
    while (predicate != NULL && predicate->is_Proj() && predicate->in(0)->is_If()) {
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1144
      iff = predicate->in(0)->as_If();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1145
      uncommon_proj = iff->proj_out(1 - predicate->as_Proj()->_con);
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1146
      if (uncommon_proj->unique_ctrl_out() != rgn)
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1147
        break;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1148
      if (iff->in(1)->Opcode() == Op_Opaque4) {
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1149
        assert(skeleton_predicate_has_opaque(iff), "unexpected");
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1150
        // Clone the predicate twice and initialize one with the initial
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1151
        // value of the loop induction variable. Leave the other predicate
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1152
        // to be initialized when increasing the stride during loop unrolling.
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1153
        prev_proj = clone_skeleton_predicate(iff, start, predicate, uncommon_proj, current_proj, outer_loop, prev_proj);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1154
        assert(skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()) == (start->Opcode() == Op_Opaque1), "");
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1155
        prev_proj = clone_skeleton_predicate(iff, end, predicate, uncommon_proj, current_proj, outer_loop, prev_proj);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1156
        assert(skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()) == (end->Opcode() == Op_Opaque1), "");
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1157
        // Remove the skeleton predicate from the pre-loop
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1158
        _igvn.replace_input_of(iff, 1, _igvn.intcon(1));
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1159
      }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1160
      predicate = predicate->in(0)->in(0);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1161
    }
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1162
    _igvn.replace_input_of(outer_main_head, LoopNode::EntryControl, prev_proj);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1163
    set_idom(outer_main_head, prev_proj, dd_main_head);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1164
  }
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1165
}
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1166
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1167
static bool skeleton_follow_inputs(Node* n, int op) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1168
  return (n->is_Bool() ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1169
          n->is_Cmp() ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1170
          op == Op_AndL ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1171
          op == Op_OrL ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1172
          op == Op_RShiftL ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1173
          op == Op_LShiftL ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1174
          op == Op_AddL ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1175
          op == Op_AddI ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1176
          op == Op_MulL ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1177
          op == Op_MulI ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1178
          op == Op_SubL ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1179
          op == Op_SubI ||
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1180
          op == Op_ConvI2L);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1181
}
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1182
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1183
bool PhaseIdealLoop::skeleton_predicate_has_opaque(IfNode* iff) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1184
  ResourceMark rm;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1185
  Unique_Node_List wq;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1186
  wq.push(iff->in(1)->in(1));
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1187
  for (uint i = 0; i < wq.size(); i++) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1188
    Node* n = wq.at(i);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1189
    int op = n->Opcode();
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1190
    if (skeleton_follow_inputs(n, op)) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1191
      for (uint j = 1; j < n->req(); j++) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1192
        Node* m = n->in(j);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1193
        if (m != NULL) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1194
          wq.push(m);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1195
        }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1196
      }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1197
      continue;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1198
    }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1199
    if (op == Op_Opaque1) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1200
      return true;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1201
    }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1202
  }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1203
  return false;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1204
}
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1205
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1206
Node* PhaseIdealLoop::clone_skeleton_predicate(Node* iff, Node* value, Node* predicate, Node* uncommon_proj,
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1207
                                               Node* current_proj, IdealLoopTree* outer_loop, Node* prev_proj) {
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1208
  Node_Stack to_clone(2);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1209
  to_clone.push(iff->in(1), 1);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1210
  uint current = C->unique();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1211
  Node* result = NULL;
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1212
  // Look for the opaque node to replace with the new value
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1213
  // and clone everything in between. We keep the Opaque4 node
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1214
  // so the duplicated predicates are eliminated once loop
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1215
  // opts are over: they are here only to keep the IR graph
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1216
  // consistent.
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1217
  do {
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1218
    Node* n = to_clone.node();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1219
    uint i = to_clone.index();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1220
    Node* m = n->in(i);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1221
    int op = m->Opcode();
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1222
    if (skeleton_follow_inputs(m, op)) {
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1223
        to_clone.push(m, 1);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1224
        continue;
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1225
    }
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1226
    if (op == Op_Opaque1) {
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1227
      if (n->_idx < current) {
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1228
        n = n->clone();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1229
      }
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1230
      n->set_req(i, value);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1231
      register_new_node(n, current_proj);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1232
      to_clone.set_node(n);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1233
    }
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1234
    for (;;) {
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1235
      Node* cur = to_clone.node();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1236
      uint j = to_clone.index();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1237
      if (j+1 < cur->req()) {
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1238
        to_clone.set_index(j+1);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1239
        break;
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1240
      }
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1241
      to_clone.pop();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1242
      if (to_clone.size() == 0) {
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1243
        result = cur;
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1244
        break;
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1245
      }
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1246
      Node* next = to_clone.node();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1247
      j = to_clone.index();
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1248
      if (next->in(j) != cur) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1249
        assert(cur->_idx >= current || next->in(j)->Opcode() == Op_Opaque1, "new node or Opaque1 being replaced");
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1250
        if (next->_idx < current) {
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1251
          next = next->clone();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1252
          register_new_node(next, current_proj);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1253
          to_clone.set_node(next);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1254
        }
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1255
        next->set_req(j, cur);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1256
      }
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1257
    }
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1258
  } while (result == NULL);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1259
  assert(result->_idx >= current, "new node expected");
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1260
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1261
  Node* proj = predicate->clone();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1262
  Node* other_proj = uncommon_proj->clone();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1263
  Node* new_iff = iff->clone();
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1264
  new_iff->set_req(1, result);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1265
  proj->set_req(0, new_iff);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1266
  other_proj->set_req(0, new_iff);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1267
  Node *frame = new ParmNode(C->start(), TypeFunc::FramePtr);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1268
  register_new_node(frame, C->start());
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1269
  // It's impossible for the predicate to fail at runtime. Use an Halt node.
58061
fafba5cf3546 8225653: Provide more information when hitting SIGILL from HaltNode
chagedorn
parents: 55150
diff changeset
  1270
  Node* halt = new HaltNode(other_proj, frame, "duplicated predicate failed which is impossible");
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1271
  C->root()->add_req(halt);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1272
  new_iff->set_req(0, prev_proj);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1273
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1274
  register_control(new_iff, outer_loop->_parent, prev_proj);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1275
  register_control(proj, outer_loop->_parent, new_iff);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1276
  register_control(other_proj, _ltree_root, new_iff);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1277
  register_control(halt, _ltree_root, other_proj);
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1278
  return proj;
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1279
}
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1280
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1281
void PhaseIdealLoop::duplicate_predicates(CountedLoopNode* pre_head, Node* start, Node* end,
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1282
                                          IdealLoopTree* outer_loop, LoopNode* outer_main_head,
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1283
                                          uint dd_main_head) {
50561
5756e8eecb17 8205034: [BACKOUT] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50558
diff changeset
  1284
  if (UseLoopPredicate) {
5756e8eecb17 8205034: [BACKOUT] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50558
diff changeset
  1285
    Node* entry = pre_head->in(LoopNode::EntryControl);
5756e8eecb17 8205034: [BACKOUT] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50558
diff changeset
  1286
    Node* predicate = NULL;
5756e8eecb17 8205034: [BACKOUT] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50558
diff changeset
  1287
    predicate = find_predicate_insertion_point(entry, Deoptimization::Reason_loop_limit_check);
5756e8eecb17 8205034: [BACKOUT] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50558
diff changeset
  1288
    if (predicate != NULL) {
52608
61241fc2217a 8211451: ~2.5% regression on compression benchmark starting with 12-b11
roland
parents: 51078
diff changeset
  1289
      entry = skip_loop_predicates(entry);
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1290
    }
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1291
    Node* profile_predicate = NULL;
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1292
    if (UseProfiledLoopPredicate) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1293
      profile_predicate = find_predicate_insertion_point(entry, Deoptimization::Reason_profile_predicate);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1294
      if (profile_predicate != NULL) {
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1295
        entry = skip_loop_predicates(entry);
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1296
      }
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  1297
    }
50561
5756e8eecb17 8205034: [BACKOUT] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50558
diff changeset
  1298
    predicate = find_predicate_insertion_point(entry, Deoptimization::Reason_predicate);
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1299
    duplicate_predicates_helper(predicate, start, end, outer_loop, outer_main_head, dd_main_head);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1300
    duplicate_predicates_helper(profile_predicate, start, end, outer_loop, outer_main_head, dd_main_head);
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1301
  }
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1302
}
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1303
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
//------------------------------insert_pre_post_loops--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
// Insert pre and post loops.  If peel_only is set, the pre-loop can not have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
// more iterations added.  It acts as a 'peel' only, no lower-bound RCE, no
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
// alignment.  Useful to unroll loops that do no array accesses.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1308
void PhaseIdealLoop::insert_pre_post_loops(IdealLoopTree *loop, Node_List &old_new, bool peel_only) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1310
#ifndef PRODUCT
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1311
  if (TraceLoopOpts) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1312
    if (peel_only)
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1313
      tty->print("PeelMainPost ");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1314
    else
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1315
      tty->print("PreMainPost  ");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1316
    loop->dump_head();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1317
  }
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1318
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
  // Find common pieces of the loop being guarded with pre & post loops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  CountedLoopNode *main_head = loop->_head->as_CountedLoop();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1323
  assert(main_head->is_normal_loop(), "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
  CountedLoopEndNode *main_end = main_head->loopexit();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1325
  assert(main_end->outcnt() == 2, "1 true, 1 false path only");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
  Node *pre_header= main_head->in(LoopNode::EntryControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
  Node *init      = main_head->init_trip();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
  Node *incr      = main_end ->incr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  Node *limit     = main_end ->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
  Node *stride    = main_end ->stride();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  Node *cmp       = main_end ->cmp_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
  BoolTest::mask b_test = main_end->test_trip();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  // Need only 1 user of 'bol' because I will be hacking the loop bounds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  Node *bol = main_end->in(CountedLoopEndNode::TestValue);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1337
  if (bol->outcnt() != 1) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
    bol = bol->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
    register_new_node(bol,main_end->in(CountedLoopEndNode::TestControl));
25913
81dbc151e91c 8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents: 24923
diff changeset
  1340
    _igvn.replace_input_of(main_end, CountedLoopEndNode::TestValue, bol);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  // Need only 1 user of 'cmp' because I will be hacking the loop bounds.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1343
  if (cmp->outcnt() != 1) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
    cmp = cmp->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
    register_new_node(cmp,main_end->in(CountedLoopEndNode::TestControl));
25913
81dbc151e91c 8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents: 24923
diff changeset
  1346
    _igvn.replace_input_of(bol, 1, cmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1349
  // Add the post loop
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1350
  CountedLoopNode *post_head = NULL;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1351
  Node *main_exit = insert_post_loop(loop, old_new, main_head, main_end, incr, limit, post_head);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  //------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  // Step B: Create Pre-Loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  // Step B1: Clone the loop body.  The clone becomes the pre-loop.  The main
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  // loop pre-header illegally has 2 control users (old & new loops).
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1358
  LoopNode* outer_main_head = main_head;
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1359
  IdealLoopTree* outer_loop = loop;
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1360
  if (main_head->is_strip_mined()) {
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1361
    main_head->verify_strip_mined(1);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1362
    outer_main_head = main_head->outer_loop();
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1363
    outer_loop = loop->_parent;
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1364
    assert(outer_loop->_head == outer_main_head, "broken loop tree");
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1365
  }
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1366
  uint dd_main_head = dom_depth(outer_main_head);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1367
  clone_loop(loop, old_new, dd_main_head, ControlAroundStripMined);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  CountedLoopNode*    pre_head = old_new[main_head->_idx]->as_CountedLoop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  CountedLoopEndNode* pre_end  = old_new[main_end ->_idx]->as_CountedLoopEnd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  pre_head->set_pre_loop(main_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  Node *pre_incr = old_new[incr->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
1432
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
  1373
  // 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
  1374
  pre_end->_prob = PROB_FAIR;
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
  1375
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
  // Find the pre-loop normal exit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
  Node* pre_exit = pre_end->proj_out(false);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1378
  assert(pre_exit->Opcode() == Op_IfFalse, "");
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  1379
  IfFalseNode *new_pre_exit = new IfFalseNode(pre_end);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1380
  _igvn.register_new_node_with_optimizer(new_pre_exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  set_idom(new_pre_exit, pre_end, dd_main_head);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1382
  set_loop(new_pre_exit, outer_loop->_parent);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  // Step B2: Build a zero-trip guard for the main-loop.  After leaving the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  // pre-loop, the main-loop may not execute at all.  Later in life this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  // zero-trip guard will become the minimum-trip guard when we unroll
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
  // the main-loop.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  1388
  Node *min_opaq = new Opaque1Node(C, limit);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1389
  Node *min_cmp  = new CmpINode(pre_incr, min_opaq);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1390
  Node *min_bol  = new BoolNode(min_cmp, b_test);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1391
  register_new_node(min_opaq, new_pre_exit);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1392
  register_new_node(min_cmp , new_pre_exit);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1393
  register_new_node(min_bol , new_pre_exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
1432
44f076e3d2a4 6667595: Set probability FAIR for pre-, post- loops and ALWAYS for main loop
kvn
parents: 1399
diff changeset
  1395
  // Build the IfNode (assume the main-loop is executed always).
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1396
  IfNode *min_iff = new IfNode(new_pre_exit, min_bol, PROB_ALWAYS, COUNT_UNKNOWN);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1397
  _igvn.register_new_node_with_optimizer(min_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
  set_idom(min_iff, new_pre_exit, dd_main_head);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1399
  set_loop(min_iff, outer_loop->_parent);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  // Plug in the false-path, taken if we need to skip main-loop
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1402
  _igvn.hash_delete(pre_exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  pre_exit->set_req(0, min_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  set_idom(pre_exit, min_iff, dd_main_head);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1405
  set_idom(pre_exit->unique_ctrl_out(), min_iff, dd_main_head);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  // Make the true-path, must enter the main loop
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1407
  Node *min_taken = new IfTrueNode(min_iff);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1408
  _igvn.register_new_node_with_optimizer(min_taken);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  set_idom(min_taken, min_iff, dd_main_head);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1410
  set_loop(min_taken, outer_loop->_parent);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  // Plug in the true path
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1412
  _igvn.hash_delete(outer_main_head);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1413
  outer_main_head->set_req(LoopNode::EntryControl, min_taken);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1414
  set_idom(outer_main_head, min_taken, dd_main_head);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1416
  Arena *a = Thread::current()->resource_area();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1417
  VectorSet visited(a);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1418
  Node_Stack clones(a, main_head->back_control()->outcnt());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
  // Step B3: Make the fall-in values to the main-loop come from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  // fall-out values of the pre-loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  for (DUIterator_Fast i2max, i2 = main_head->fast_outs(i2max); i2 < i2max; i2++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
    Node* main_phi = main_head->fast_out(i2);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1423
    if (main_phi->is_Phi() && main_phi->in(0) == main_head && main_phi->outcnt() > 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
      Node *pre_phi = old_new[main_phi->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
      Node *fallpre  = clone_up_backedge_goo(pre_head->back_control(),
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1426
                                             main_head->skip_strip_mined()->in(LoopNode::EntryControl),
10011
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1427
                                             pre_phi->in(LoopNode::LoopBackControl),
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 10005
diff changeset
  1428
                                             visited, clones);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
      _igvn.hash_delete(main_phi);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1430
      main_phi->set_req(LoopNode::EntryControl, fallpre);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1434
  // Nodes inside the loop may be control dependent on a predicate
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1435
  // that was moved before the preloop. If the back branch of the main
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1436
  // or post loops becomes dead, those nodes won't be dependent on the
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1437
  // test that guards that loop nest anymore which could lead to an
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1438
  // incorrect array access because it executes independently of the
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1439
  // test that was guarding the loop nest. We add a special CastII on
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1440
  // the if branch that enters the loop, between the input induction
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1441
  // variable value and the induction variable Phi to preserve correct
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1442
  // dependencies.
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1443
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1444
  // CastII for the main loop:
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1445
  Node* castii = cast_incr_before_loop(pre_incr, min_taken, main_head);
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1446
  assert(castii != NULL, "no castII inserted");
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1447
  Node* opaque_castii = new Opaque1Node(C, castii);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1448
  register_new_node(opaque_castii, outer_main_head->in(LoopNode::EntryControl));
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1449
  duplicate_predicates(pre_head, castii, opaque_castii, outer_loop, outer_main_head, dd_main_head);
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 27707
diff changeset
  1450
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
  // Step B4: Shorten the pre-loop to run only 1 iteration (for now).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  // RCE and alignment may change this later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  Node *cmp_end = pre_end->cmp_node();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1454
  assert(cmp_end->in(2) == limit, "");
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1455
  Node *pre_limit = new AddINode(init, stride);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  // Save the original loop limit in this Opaque1 node for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  // use by range check elimination.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  1459
  Node *pre_opaq  = new Opaque1Node(C, pre_limit, limit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1461
  register_new_node(pre_limit, pre_head->in(0));
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1462
  register_new_node(pre_opaq , pre_head->in(0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  // Since no other users of pre-loop compare, I can hack limit directly
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1465
  assert(cmp_end->outcnt() == 1, "no other users");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  _igvn.hash_delete(cmp_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  cmp_end->set_req(2, peel_only ? pre_limit : pre_opaq);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
  // Special case for not-equal loop bounds:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  // Change pre loop test, main loop test, and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  // main loop guard test to use lt or gt depending on stride
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  // direction:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  // positive stride use <
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  // negative stride use >
10005
ce4ea81a1329 7052494: Eclipse test fails on JDK 7 b142
kvn
parents: 9955
diff changeset
  1475
  //
ce4ea81a1329 7052494: Eclipse test fails on JDK 7 b142
kvn
parents: 9955
diff changeset
  1476
  // not-equal test is kept for post loop to handle case
ce4ea81a1329 7052494: Eclipse test fails on JDK 7 b142
kvn
parents: 9955
diff changeset
  1477
  // when init > limit when stride > 0 (and reverse).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  if (pre_end->in(CountedLoopEndNode::TestValue)->as_Bool()->_test._test == BoolTest::ne) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
    BoolTest::mask new_test = (main_end->stride_con() > 0) ? BoolTest::lt : BoolTest::gt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
    // Modify pre loop end condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
    Node* pre_bol = pre_end->in(CountedLoopEndNode::TestValue)->as_Bool();
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  1484
    BoolNode* new_bol0 = new BoolNode(pre_bol->in(1), new_test);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1485
    register_new_node(new_bol0, pre_head->in(0));
25913
81dbc151e91c 8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents: 24923
diff changeset
  1486
    _igvn.replace_input_of(pre_end, CountedLoopEndNode::TestValue, new_bol0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
    // Modify main loop guard condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
    assert(min_iff->in(CountedLoopEndNode::TestValue) == min_bol, "guard okay");
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  1489
    BoolNode* new_bol1 = new BoolNode(min_bol->in(1), new_test);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1490
    register_new_node(new_bol1, new_pre_exit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
    _igvn.hash_delete(min_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
    min_iff->set_req(CountedLoopEndNode::TestValue, new_bol1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
    // Modify main loop end condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
    BoolNode* main_bol = main_end->in(CountedLoopEndNode::TestValue)->as_Bool();
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  1495
    BoolNode* new_bol2 = new BoolNode(main_bol->in(1), new_test);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1496
    register_new_node(new_bol2, main_end->in(CountedLoopEndNode::TestControl));
25913
81dbc151e91c 8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents: 24923
diff changeset
  1497
    _igvn.replace_input_of(main_end, CountedLoopEndNode::TestValue, new_bol2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
  // Flag main loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
  main_head->set_main_loop();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1502
  if (peel_only) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1503
    main_head->set_main_no_pre_loop();
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1504
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1506
  // Subtract a trip count for the pre-loop.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1507
  main_head->set_trip_count(main_head->trip_count() - 1);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1508
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
  // It's difficult to be precise about the trip-counts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
  // for the pre/post loops.  They are usually very short,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
  // so guess that 4 trips is a reasonable value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
  post_head->set_profile_trip_cnt(4.0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
  pre_head->set_profile_trip_cnt(4.0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
  // Now force out all loop-invariant dominating tests.  The optimizer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
  // finds some, but we _know_ they are all useless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
  peeled_dom_test_elim(loop,old_new);
24020
d73865d27efc 8039050: Crash in C2 compiler at Node::rematerialize
kvn
parents: 23528
diff changeset
  1518
  loop->record_for_igvn();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1521
//------------------------------insert_vector_post_loop------------------------
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1522
// Insert a copy of the atomic unrolled vectorized main loop as a post loop,
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1523
// unroll_policy has  already informed  us that more  unrolling is  about to
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1524
// happen  to the  main  loop.  The  resultant  post loop  will  serve as  a
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1525
// vectorized drain loop.
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1526
void PhaseIdealLoop::insert_vector_post_loop(IdealLoopTree *loop, Node_List &old_new) {
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1527
  if (!loop->_head->is_CountedLoop()) return;
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1528
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1529
  CountedLoopNode *cl = loop->_head->as_CountedLoop();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1530
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1531
  // only process vectorized main loops
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1532
  if (!cl->is_vectorized_loop() || !cl->is_main_loop()) return;
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1533
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1534
  int slp_max_unroll_factor = cl->slp_max_unroll();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1535
  int cur_unroll = cl->unrolled_count();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1536
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1537
  if (slp_max_unroll_factor == 0) return;
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1538
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1539
  // only process atomic unroll vector loops (not super unrolled after vectorization)
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1540
  if (cur_unroll != slp_max_unroll_factor) return;
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1541
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1542
  // we only ever process this one time
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1543
  if (cl->has_atomic_post_loop()) return;
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1544
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  1545
  if (!may_require_nodes(loop->est_loop_clone_sz(2))) {
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  1546
    return;
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  1547
  }
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  1548
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1549
#ifndef PRODUCT
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1550
  if (TraceLoopOpts) {
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1551
    tty->print("PostVector  ");
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1552
    loop->dump_head();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1553
  }
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1554
#endif
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1555
  C->set_major_progress();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1556
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1557
  // Find common pieces of the loop being guarded with pre & post loops
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1558
  CountedLoopNode *main_head = loop->_head->as_CountedLoop();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1559
  CountedLoopEndNode *main_end = main_head->loopexit();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1560
  // diagnostic to show loop end is not properly formed
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1561
  assert(main_end->outcnt() == 2, "1 true, 1 false path only");
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1562
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1563
  // mark this loop as processed
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1564
  main_head->mark_has_atomic_post_loop();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1565
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1566
  Node *incr = main_end->incr();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1567
  Node *limit = main_end->limit();
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1568
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1569
  // In this case we throw away the result as we are not using it to connect anything else.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1570
  CountedLoopNode *post_head = NULL;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1571
  insert_post_loop(loop, old_new, main_head, main_end, incr, limit, post_head);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1572
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1573
  // It's difficult to be precise about the trip-counts
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1574
  // for post loops.  They are usually very short,
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1575
  // so guess that unit vector trips is a reasonable value.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1576
  post_head->set_profile_trip_cnt(cur_unroll);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1577
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1578
  // Now force out all loop-invariant dominating tests.  The optimizer
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1579
  // finds some, but we _know_ they are all useless.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1580
  peeled_dom_test_elim(loop, old_new);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1581
  loop->record_for_igvn();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1582
}
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1583
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1584
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1585
//-------------------------insert_scalar_rced_post_loop------------------------
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1586
// Insert a copy of the rce'd main loop as a post loop,
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1587
// We have not unrolled the main loop, so this is the right time to inject this.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1588
// Later we will examine the partner of this post loop pair which still has range checks
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1589
// to see inject code which tests at runtime if the range checks are applicable.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1590
void PhaseIdealLoop::insert_scalar_rced_post_loop(IdealLoopTree *loop, Node_List &old_new) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1591
  if (!loop->_head->is_CountedLoop()) return;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1592
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1593
  CountedLoopNode *cl = loop->_head->as_CountedLoop();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1594
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1595
  // only process RCE'd main loops
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1596
  if (!cl->is_main_loop() || cl->range_checks_present()) return;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1597
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1598
#ifndef PRODUCT
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1599
  if (TraceLoopOpts) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1600
    tty->print("PostScalarRce  ");
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1601
    loop->dump_head();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1602
  }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1603
#endif
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1604
  C->set_major_progress();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1605
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1606
  // Find common pieces of the loop being guarded with pre & post loops
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1607
  CountedLoopNode *main_head = loop->_head->as_CountedLoop();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1608
  CountedLoopEndNode *main_end = main_head->loopexit();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1609
  // diagnostic to show loop end is not properly formed
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1610
  assert(main_end->outcnt() == 2, "1 true, 1 false path only");
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1611
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1612
  Node *incr = main_end->incr();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1613
  Node *limit = main_end->limit();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1614
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1615
  // In this case we throw away the result as we are not using it to connect anything else.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1616
  CountedLoopNode *post_head = NULL;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1617
  insert_post_loop(loop, old_new, main_head, main_end, incr, limit, post_head);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1618
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1619
  // It's difficult to be precise about the trip-counts
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1620
  // for post loops.  They are usually very short,
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1621
  // so guess that unit vector trips is a reasonable value.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1622
  post_head->set_profile_trip_cnt(4.0);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1623
  post_head->set_is_rce_post_loop();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1624
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1625
  // Now force out all loop-invariant dominating tests.  The optimizer
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1626
  // finds some, but we _know_ they are all useless.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1627
  peeled_dom_test_elim(loop, old_new);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1628
  loop->record_for_igvn();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1629
}
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1630
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1631
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1632
//------------------------------insert_post_loop-------------------------------
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1633
// Insert post loops.  Add a post loop to the given loop passed.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1634
Node *PhaseIdealLoop::insert_post_loop(IdealLoopTree *loop, Node_List &old_new,
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1635
                                       CountedLoopNode *main_head, CountedLoopEndNode *main_end,
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1636
                                       Node *incr, Node *limit, CountedLoopNode *&post_head) {
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1637
  IfNode* outer_main_end = main_end;
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1638
  IdealLoopTree* outer_loop = loop;
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1639
  if (main_head->is_strip_mined()) {
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1640
    main_head->verify_strip_mined(1);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1641
    outer_main_end = main_head->outer_loop_end();
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1642
    outer_loop = loop->_parent;
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1643
    assert(outer_loop->_head == main_head->in(LoopNode::EntryControl), "broken loop tree");
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1644
  }
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1645
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1646
  //------------------------------
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1647
  // Step A: Create a new post-Loop.
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1648
  Node* main_exit = outer_main_end->proj_out(false);
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1649
  assert(main_exit->Opcode() == Op_IfFalse, "");
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1650
  int dd_main_exit = dom_depth(main_exit);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1651
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
  1652
  // Step A1: Clone the loop body of main. The clone becomes the post-loop.
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1653
  // The main loop pre-header illegally has 2 control users (old & new loops).
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1654
  clone_loop(loop, old_new, dd_main_exit, ControlAroundStripMined);
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1655
  assert(old_new[main_end->_idx]->Opcode() == Op_CountedLoopEnd, "");
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1656
  post_head = old_new[main_head->_idx]->as_CountedLoop();
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1657
  post_head->set_normal_loop();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1658
  post_head->set_post_loop(main_head);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1659
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1660
  // Reduce the post-loop trip count.
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1661
  CountedLoopEndNode* post_end = old_new[main_end->_idx]->as_CountedLoopEnd();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1662
  post_end->_prob = PROB_FAIR;
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1663
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1664
  // Build the main-loop normal exit.
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1665
  IfFalseNode *new_main_exit = new IfFalseNode(outer_main_end);
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1666
  _igvn.register_new_node_with_optimizer(new_main_exit);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1667
  set_idom(new_main_exit, outer_main_end, dd_main_exit);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1668
  set_loop(new_main_exit, outer_loop->_parent);
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1669
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1670
  // Step A2: Build a zero-trip guard for the post-loop.  After leaving the
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1671
  // main-loop, the post-loop may not execute at all.  We 'opaque' the incr
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1672
  // (the previous loop trip-counter exit value) because we will be changing
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1673
  // the exit value (via additional unrolling) so we cannot constant-fold away the zero
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1674
  // trip guard until all unrolling is done.
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1675
  Node *zer_opaq = new Opaque1Node(C, incr);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1676
  Node *zer_cmp = new CmpINode(zer_opaq, limit);
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1677
  Node *zer_bol = new BoolNode(zer_cmp, main_end->test_trip());
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1678
  register_new_node(zer_opaq, new_main_exit);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1679
  register_new_node(zer_cmp, new_main_exit);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1680
  register_new_node(zer_bol, new_main_exit);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1681
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1682
  // Build the IfNode
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1683
  IfNode *zer_iff = new IfNode(new_main_exit, zer_bol, PROB_FAIR, COUNT_UNKNOWN);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1684
  _igvn.register_new_node_with_optimizer(zer_iff);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1685
  set_idom(zer_iff, new_main_exit, dd_main_exit);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1686
  set_loop(zer_iff, outer_loop->_parent);
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1687
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1688
  // Plug in the false-path, taken if we need to skip this post-loop
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1689
  _igvn.replace_input_of(main_exit, 0, zer_iff);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1690
  set_idom(main_exit, zer_iff, dd_main_exit);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1691
  set_idom(main_exit->unique_out(), zer_iff, dd_main_exit);
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1692
  // Make the true-path, must enter this post loop
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1693
  Node *zer_taken = new IfTrueNode(zer_iff);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1694
  _igvn.register_new_node_with_optimizer(zer_taken);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1695
  set_idom(zer_taken, zer_iff, dd_main_exit);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1696
  set_loop(zer_taken, outer_loop->_parent);
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1697
  // Plug in the true path
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1698
  _igvn.hash_delete(post_head);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1699
  post_head->set_req(LoopNode::EntryControl, zer_taken);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1700
  set_idom(post_head, zer_taken, dd_main_exit);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1701
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1702
  Arena *a = Thread::current()->resource_area();
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1703
  VectorSet visited(a);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1704
  Node_Stack clones(a, main_head->back_control()->outcnt());
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1705
  // Step A3: Make the fall-in values to the post-loop come from the
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1706
  // fall-out values of the main-loop.
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1707
  for (DUIterator_Fast imax, i = main_head->fast_outs(imax); i < imax; i++) {
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1708
    Node* main_phi = main_head->fast_out(i);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1709
    if (main_phi->is_Phi() && main_phi->in(0) == main_head && main_phi->outcnt() > 0) {
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1710
      Node *cur_phi = old_new[main_phi->_idx];
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1711
      Node *fallnew = clone_up_backedge_goo(main_head->back_control(),
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1712
                                            post_head->init_control(),
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1713
                                            main_phi->in(LoopNode::LoopBackControl),
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1714
                                            visited, clones);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1715
      _igvn.hash_delete(cur_phi);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1716
      cur_phi->set_req(LoopNode::EntryControl, fallnew);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1717
    }
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1718
  }
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1719
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1720
  // CastII for the new post loop:
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1721
  Node* castii = cast_incr_before_loop(zer_opaq->in(1), zer_taken, post_head);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1722
  assert(castii != NULL, "no castII inserted");
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1723
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1724
  return new_main_exit;
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1725
}
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  1726
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
//------------------------------is_invariant-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
// Return true if n is invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
bool IdealLoopTree::is_invariant(Node* n) const {
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  1730
  Node *n_c = _phase->has_ctrl(n) ? _phase->get_ctrl(n) : n;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
  if (n_c->is_top()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
  return !is_member(_phase->get_loop(n_c));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1735
void PhaseIdealLoop::update_skeleton_predicates(Node* ctrl, CountedLoopNode* loop_head, Node* init, int stride_con) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1736
  // Search for skeleton predicates and update them according to the new stride
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1737
  Node* entry = ctrl;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1738
  Node* prev_proj = ctrl;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1739
  LoopNode* outer_loop_head = loop_head->skip_strip_mined();
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1740
  IdealLoopTree* outer_loop = get_loop(outer_loop_head);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1741
  while (entry != NULL && entry->is_Proj() && entry->in(0)->is_If()) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1742
    IfNode* iff = entry->in(0)->as_If();
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1743
    ProjNode* proj = iff->proj_out(1 - entry->as_Proj()->_con);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1744
    if (proj->unique_ctrl_out()->Opcode() != Op_Halt) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1745
      break;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1746
    }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1747
    if (iff->in(1)->Opcode() == Op_Opaque4) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1748
      // Look for predicate with an Opaque1 node that can be used as a template
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1749
      if (!skeleton_predicate_has_opaque(iff)) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1750
        // No Opaque1 node? It's either the check for the first value
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1751
        // of the first iteration or the check for the last value of
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1752
        // the first iteration of an unrolled loop. We can't
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1753
        // tell. Kill it in any case.
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1754
        _igvn.replace_input_of(iff, 1, iff->in(1)->in(2));
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1755
      } else {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1756
        // Add back the predicate for the value at the beginning of the first entry
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1757
        prev_proj = clone_skeleton_predicate(iff, init, entry, proj, ctrl, outer_loop, prev_proj);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1758
        assert(!skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()), "unexpected");
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1759
        // Compute the value of the loop induction variable at the end of the
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1760
        // first iteration of the unrolled loop: init + new_stride_con - init_inc
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1761
        int init_inc = stride_con/loop_head->unrolled_count();
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1762
        assert(init_inc != 0, "invalid loop increment");
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1763
        int new_stride_con = stride_con * 2;
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1764
        Node* max_value = _igvn.intcon(new_stride_con - init_inc);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1765
        max_value = new AddINode(init, max_value);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1766
        register_new_node(max_value, get_ctrl(iff->in(1)));
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1767
        prev_proj = clone_skeleton_predicate(iff, max_value, entry, proj, ctrl, outer_loop, prev_proj);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1768
        assert(!skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()), "unexpected");
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1769
      }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1770
    }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1771
    entry = entry->in(0)->in(0);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1772
  }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1773
  if (prev_proj != ctrl) {
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1774
    _igvn.replace_input_of(outer_loop_head, LoopNode::EntryControl, prev_proj);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1775
    set_idom(outer_loop_head, prev_proj, dom_depth(outer_loop_head));
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1776
  }
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1777
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
//------------------------------do_unroll--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
// Unroll the loop body one step - make each trip do 2 iterations.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1781
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
  1782
  assert(LoopUnrollLimit, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1783
  CountedLoopNode *loop_head = loop->_head->as_CountedLoop();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1784
  CountedLoopEndNode *loop_end = loop_head->loopexit();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
#ifndef PRODUCT
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1786
  if (PrintOpto && VerifyLoopOptimizations) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
    tty->print("Unrolling ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
    loop->dump_head();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1789
  } else if (TraceLoopOpts) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  1790
    if (loop_head->trip_count() < (uint)LoopUnrollLimit) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1791
      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
  1792
    } else {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1793
      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
  1794
    }
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1795
    loop->dump_head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
  }
30593
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  1797
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44314
diff changeset
  1798
  if (C->do_vector_loop() && (PrintOpto && (VerifyLoopOptimizations || TraceLoopOpts))) {
30593
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  1799
    Arena* arena = Thread::current()->resource_area();
32202
7e7ad8b06f5b 8011858: Use Compile::live_nodes() instead of Compile::unique() in appropriate places
kvn
parents: 31772
diff changeset
  1800
    Node_Stack stack(arena, C->live_nodes() >> 2);
30593
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  1801
    Node_List rpo_list;
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  1802
    VectorSet visited(arena);
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  1803
    visited.set(loop_head->_idx);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1804
    rpo(loop_head, stack, visited, rpo_list);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1805
    dump(loop, rpo_list.size(), rpo_list);
30593
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  1806
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
  // Remember loop node count before unrolling to detect
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
  // if rounds of unroll,optimize are making progress
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
  loop_head->set_node_count_before_unroll(loop->_body.size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1813
  Node *ctrl  = loop_head->skip_strip_mined()->in(LoopNode::EntryControl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
  Node *limit = loop_head->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
  Node *init  = loop_head->init_trip();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  1816
  Node *stride = loop_head->stride();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
  Node *opaq = NULL;
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1819
  if (adjust_min_trip) {       // If not maximally unrolling, need adjustment
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1820
    // Search for zero-trip guard.
36809
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  1821
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  1822
    // Check the shape of the graph at the loop entry. If an inappropriate
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  1823
    // graph shape is encountered, the compiler bails out loop unrolling;
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  1824
    // compilation of the method will still succeed.
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  1825
    if (!is_canonical_loop_entry(loop_head)) {
36809
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  1826
      return;
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  1827
    }
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  1828
    opaq = loop_head->skip_predicates()->in(0)->in(1)->in(1)->in(2);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1829
    // Zero-trip test uses an 'opaque' node which is not shared.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1830
    assert(opaq->outcnt() == 1 && opaq->in(1) == limit, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
  C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1835
  Node* new_limit = NULL;
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1836
  int stride_con = stride->get_int();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1837
  int stride_p = (stride_con > 0) ? stride_con : -stride_con;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1838
  uint old_trip_count = loop_head->trip_count();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1839
  // Verify that unroll policy result is still valid.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1840
  assert(old_trip_count > 1 &&
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1841
      (!adjust_min_trip || stride_p <= (1<<3)*loop_head->unrolled_count()), "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  1843
  update_skeleton_predicates(ctrl, loop_head, init, stride_con);
50632
fd430e352427 8205033: [REDO] Induction variable of over-unrolled loop conflicts with range checks
thartmann
parents: 50623
diff changeset
  1844
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1845
  // Adjust loop limit to keep valid iterations number after unroll.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1846
  // Use (limit - stride) instead of (((limit - init)/stride) & (-2))*stride
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1847
  // which may overflow.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1848
  if (!adjust_min_trip) {
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1849
    assert(old_trip_count > 1 && (old_trip_count & 1) == 0,
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1850
        "odd trip count for maximally unroll");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1851
    // Don't need to adjust limit for maximally unroll since trip count is even.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1852
  } else if (loop_head->has_exact_trip_count() && init->is_Con()) {
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1853
    // Loop's limit is constant. Loop's init could be constant when pre-loop
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1854
    // become peeled iteration.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1855
    jlong init_con = init->get_int();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1856
    // We can keep old loop limit if iterations count stays the same:
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1857
    //   old_trip_count == new_trip_count * 2
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1858
    // Note: since old_trip_count >= 2 then new_trip_count >= 1
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1859
    // so we also don't need to adjust zero trip test.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1860
    jlong limit_con  = limit->get_int();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1861
    // (stride_con*2) not overflow since stride_con <= 8.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1862
    int new_stride_con = stride_con * 2;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1863
    int stride_m    = new_stride_con - (stride_con > 0 ? 1 : -1);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1864
    jlong trip_count = (limit_con - init_con + stride_m)/new_stride_con;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1865
    // New trip count should satisfy next conditions.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1866
    assert(trip_count > 0 && (julong)trip_count < (julong)max_juint/2, "sanity");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1867
    uint new_trip_count = (uint)trip_count;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1868
    adjust_min_trip = (old_trip_count != new_trip_count*2);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1869
  }
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1870
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1871
  if (adjust_min_trip) {
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1872
    // Step 2: Adjust the trip limit if it is called for.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1873
    // The adjustment amount is -stride. Need to make sure if the
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1874
    // adjustment underflows or overflows, then the main loop is skipped.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1875
    Node* cmp = loop_end->cmp_node();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1876
    assert(cmp->in(2) == limit, "sanity");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1877
    assert(opaq != NULL && opaq->in(1) == limit, "sanity");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1878
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1879
    // Verify that policy_unroll result is still valid.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1880
    const TypeInt* limit_type = _igvn.type(limit)->is_int();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1881
    assert(stride_con > 0 && ((limit_type->_hi - stride_con) < limit_type->_hi) ||
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1882
           stride_con < 0 && ((limit_type->_lo - stride_con) > limit_type->_lo),
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1883
           "sanity");
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1884
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1885
    if (limit->is_Con()) {
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1886
      // The check in policy_unroll and the assert above guarantee
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1887
      // no underflow if limit is constant.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1888
      new_limit = _igvn.intcon(limit->get_int() - stride_con);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1889
      set_ctrl(new_limit, C->root());
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1890
    } else {
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1891
      // Limit is not constant.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1892
      if (loop_head->unrolled_count() == 1) { // only for first unroll
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1893
        // Separate limit by Opaque node in case it is an incremented
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1894
        // variable from previous loop to avoid using pre-incremented
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1895
        // value which could increase register pressure.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1896
        // Otherwise reorg_offsets() optimization will create a separate
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1897
        // Opaque node for each use of trip-counter and as result
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1898
        // zero trip guard limit will be different from loop limit.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1899
        assert(has_ctrl(opaq), "should have it");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1900
        Node* opaq_ctrl = get_ctrl(opaq);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1901
        limit = new Opaque2Node(C, limit);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1902
        register_new_node(limit, opaq_ctrl);
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1903
      }
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44314
diff changeset
  1904
      if ((stride_con > 0 && (java_subtract(limit_type->_lo, stride_con) < limit_type->_lo)) ||
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44314
diff changeset
  1905
          (stride_con < 0 && (java_subtract(limit_type->_hi, stride_con) > limit_type->_hi))) {
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1906
        // No underflow.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1907
        new_limit = new SubINode(limit, stride);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1908
      } else {
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1909
        // (limit - stride) may underflow.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1910
        // Clamp the adjustment value with MININT or MAXINT:
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1911
        //
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1912
        //   new_limit = limit-stride
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1913
        //   if (stride > 0)
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1914
        //     new_limit = (limit < new_limit) ? MININT : new_limit;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1915
        //   else
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1916
        //     new_limit = (limit > new_limit) ? MAXINT : new_limit;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1917
        //
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1918
        BoolTest::mask bt = loop_end->test_trip();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1919
        assert(bt == BoolTest::lt || bt == BoolTest::gt, "canonical test is expected");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1920
        Node* adj_max = _igvn.intcon((stride_con > 0) ? min_jint : max_jint);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1921
        set_ctrl(adj_max, C->root());
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1922
        Node* old_limit = NULL;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1923
        Node* adj_limit = NULL;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1924
        Node* bol = limit->is_CMove() ? limit->in(CMoveNode::Condition) : NULL;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1925
        if (loop_head->unrolled_count() > 1 &&
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1926
            limit->is_CMove() && limit->Opcode() == Op_CMoveI &&
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1927
            limit->in(CMoveNode::IfTrue) == adj_max &&
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1928
            bol->as_Bool()->_test._test == bt &&
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1929
            bol->in(1)->Opcode() == Op_CmpI &&
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1930
            bol->in(1)->in(2) == limit->in(CMoveNode::IfFalse)) {
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1931
          // Loop was unrolled before.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1932
          // Optimize the limit to avoid nested CMove:
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1933
          // use original limit as old limit.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1934
          old_limit = bol->in(1)->in(1);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1935
          // Adjust previous adjusted limit.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1936
          adj_limit = limit->in(CMoveNode::IfFalse);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1937
          adj_limit = new SubINode(adj_limit, stride);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1938
        } else {
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1939
          old_limit = limit;
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1940
          adj_limit = new SubINode(limit, stride);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1941
        }
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1942
        assert(old_limit != NULL && adj_limit != NULL, "");
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1943
        register_new_node(adj_limit, ctrl); // adjust amount
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1944
        Node* adj_cmp = new CmpINode(old_limit, adj_limit);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1945
        register_new_node(adj_cmp, ctrl);
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1946
        Node* adj_bool = new BoolNode(adj_cmp, bt);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  1947
        register_new_node(adj_bool, ctrl);
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1948
        new_limit = new CMoveINode(adj_bool, adj_limit, adj_max, TypeInt::INT);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1949
      }
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1950
      register_new_node(new_limit, ctrl);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1951
    }
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  1952
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1953
    assert(new_limit != NULL, "");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1954
    // Replace in loop test.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1955
    assert(loop_end->in(1)->in(1) == cmp, "sanity");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1956
    if (cmp->outcnt() == 1 && loop_end->in(1)->outcnt() == 1) {
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1957
      // Don't need to create new test since only one user.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1958
      _igvn.hash_delete(cmp);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1959
      cmp->set_req(2, new_limit);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1960
    } else {
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1961
      // Create new test since it is shared.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1962
      Node* ctrl2 = loop_end->in(0);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1963
      Node* cmp2  = cmp->clone();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1964
      cmp2->set_req(2, new_limit);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1965
      register_new_node(cmp2, ctrl2);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1966
      Node* bol2 = loop_end->in(1)->clone();
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1967
      bol2->set_req(1, cmp2);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1968
      register_new_node(bol2, ctrl2);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1969
      _igvn.replace_input_of(loop_end, 1, bol2);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1970
    }
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  1971
    // 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
  1972
    // Make it a 1-trip test (means at least 2 trips).
37287
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1973
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1974
    // Guard test uses an 'opaque' node which is not shared.  Hence I
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1975
    // can edit it's inputs directly.  Hammer in the new limit for the
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1976
    // minimum-trip guard.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1977
    assert(opaq->outcnt() == 1, "");
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1978
    _igvn.replace_input_of(opaq, 1, new_limit);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1979
  }
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1980
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1981
  // Adjust max trip count. The trip count is intentionally rounded
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1982
  // down here (e.g. 15-> 7-> 3-> 1) because if we unwittingly over-unroll,
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1983
  // the main, unrolled, part of the loop will never execute as it is protected
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1984
  // by the min-trip test.  See bug 4834191 for a case where we over-unrolled
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1985
  // and later determined that part of the unrolled loop was dead.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1986
  loop_head->set_trip_count(old_trip_count / 2);
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1987
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1988
  // Double the count of original iterations in the unrolled loop body.
c2660335bf81 8072422: Cleanup: Remove some unused flags/code in loop optimizations
zmajo
parents: 36809
diff changeset
  1989
  loop_head->double_unrolled_count();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
  // ---------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
  // Step 4: Clone the loop body.  Move it inside the loop.  This loop body
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
  // represents the odd iterations; since the loop trips an even number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
  // times its backedge is never taken.  Kill the backedge.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
  uint dd = dom_depth(loop_head);
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  1996
  clone_loop(loop, old_new, dd, IgnoreStripMined);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
  // Make backedges of the clone equal to backedges of the original.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
  // Make the fall-in from the original come from the fall-out of the clone.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
  for (DUIterator_Fast jmax, j = loop_head->fast_outs(jmax); j < jmax; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
    Node* phi = loop_head->fast_out(j);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2002
    if (phi->is_Phi() && phi->in(0) == loop_head && phi->outcnt() > 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
      Node *newphi = old_new[phi->_idx];
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2004
      _igvn.hash_delete(phi);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2005
      _igvn.hash_delete(newphi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
      phi   ->set_req(LoopNode::   EntryControl, newphi->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
      newphi->set_req(LoopNode::LoopBackControl, phi   ->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
      phi   ->set_req(LoopNode::LoopBackControl, C->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
  Node *clone_head = old_new[loop_head->_idx];
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2013
  _igvn.hash_delete(clone_head);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
  loop_head ->set_req(LoopNode::   EntryControl, clone_head->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
  clone_head->set_req(LoopNode::LoopBackControl, loop_head ->in(LoopNode::LoopBackControl));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
  loop_head ->set_req(LoopNode::LoopBackControl, C->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
  loop->_head = clone_head;     // New loop header
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
  set_idom(loop_head,  loop_head ->in(LoopNode::EntryControl), dd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
  set_idom(clone_head, clone_head->in(LoopNode::EntryControl), dd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
  // Kill the clone's backedge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
  Node *newcle = old_new[loop_end->_idx];
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2024
  _igvn.hash_delete(newcle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
  Node *one = _igvn.intcon(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
  set_ctrl(one, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
  newcle->set_req(1, one);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  // Force clone into same loop body
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
  uint max = loop->_body.size();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2030
  for (uint k = 0; k < max; k++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
    Node *old = loop->_body.at(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
    Node *nnn = old_new[old->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
    loop->_body.push(nnn);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2034
    if (!has_ctrl(old)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
      set_loop(nnn, loop);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2036
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
  }
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 781
diff changeset
  2038
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 781
diff changeset
  2039
  loop->record_for_igvn();
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  2040
  loop_head->clear_strip_mined();
30593
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2041
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2042
#ifndef PRODUCT
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44314
diff changeset
  2043
  if (C->do_vector_loop() && (PrintOpto && (VerifyLoopOptimizations || TraceLoopOpts))) {
30593
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2044
    tty->print("\nnew loop after unroll\n");       loop->dump_head();
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2045
    for (uint i = 0; i < loop->_body.size(); i++) {
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2046
      loop->_body.at(i)->dump();
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2047
    }
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2048
    if (C->clone_map().is_debug()) {
30593
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2049
      tty->print("\nCloneMap\n");
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2050
      Dict* dict = C->clone_map().dict();
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2051
      DictI i(dict);
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2052
      tty->print_cr("Dict@%p[%d] = ", dict, dict->Size());
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2053
      for (int ii = 0; i.test(); ++i, ++ii) {
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2054
        NodeCloneInfo cl((uint64_t)dict->operator[]((void*)i._key));
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2055
        tty->print("%d->%d:%d,", (int)(intptr_t)i._key, cl.idx(), cl.gen());
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2056
        if (ii % 10 == 9) {
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2057
          tty->print_cr(" ");
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2058
        }
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2059
      }
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2060
      tty->print_cr(" ");
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2061
    }
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2062
  }
69f942690128 8076284: Improve vectorization of parallel streams
kvn
parents: 30211
diff changeset
  2063
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
//------------------------------do_maximally_unroll----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2068
void PhaseIdealLoop::do_maximally_unroll(IdealLoopTree *loop, Node_List &old_new) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
  CountedLoopNode *cl = loop->_head->as_CountedLoop();
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2070
  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
  2071
  assert(cl->trip_count() > 0, "");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2072
#ifndef PRODUCT
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2073
  if (TraceLoopOpts) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2074
    tty->print("MaxUnroll  %d ", cl->trip_count());
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2075
    loop->dump_head();
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2076
  }
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2077
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
  // 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
  2080
  if ((cl->trip_count() & 1) == 1) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2081
    do_peeling(loop, old_new);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
  // Now its tripping an even number of times remaining.  Double loop body.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
  // 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
  2086
  if (cl->trip_count() > 0) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2087
    assert((cl->trip_count() & 1) == 0, "missed peeling");
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2088
    do_unroll(loop, old_new, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2092
void PhaseIdealLoop::mark_reductions(IdealLoopTree *loop) {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2093
  if (SuperWordReductions == false) return;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2094
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2095
  CountedLoopNode* loop_head = loop->_head->as_CountedLoop();
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2096
  if (loop_head->unrolled_count() > 1) {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2097
    return;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2098
  }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2099
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2100
  Node* trip_phi = loop_head->phi();
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2101
  for (DUIterator_Fast imax, i = loop_head->fast_outs(imax); i < imax; i++) {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2102
    Node* phi = loop_head->fast_out(i);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2103
    if (phi->is_Phi() && phi->outcnt() > 0 && phi != trip_phi) {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2104
      // For definitions which are loop inclusive and not tripcounts.
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2105
      Node* def_node = phi->in(LoopNode::LoopBackControl);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2106
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2107
      if (def_node != NULL) {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2108
        Node* n_ctrl = get_ctrl(def_node);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2109
        if (n_ctrl != NULL && loop->is_member(get_loop(n_ctrl))) {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2110
          // Now test it to see if it fits the standard pattern for a reduction operator.
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2111
          int opc = def_node->Opcode();
54022
ff399127078a 8217561: X86: Add floating-point Math.min/max intrinsics
bsrbnd
parents: 53306
diff changeset
  2112
          if (opc != ReductionNode::opcode(opc, def_node->bottom_type()->basic_type())
ff399127078a 8217561: X86: Add floating-point Math.min/max intrinsics
bsrbnd
parents: 53306
diff changeset
  2113
              || opc == Op_MinD || opc == Op_MinF || opc == Op_MaxD || opc == Op_MaxF) {
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2114
            if (!def_node->is_reduction()) { // Not marked yet
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2115
              // To be a reduction, the arithmetic node must have the phi as input and provide a def to it
31048
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2116
              bool ok = false;
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2117
              for (unsigned j = 1; j < def_node->req(); j++) {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2118
                Node* in = def_node->in(j);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2119
                if (in == phi) {
31048
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2120
                  ok = true;
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2121
                  break;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2122
                }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2123
              }
31048
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2124
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2125
              // do nothing if we did not match the initial criteria
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2126
              if (ok == false) {
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2127
                continue;
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2128
              }
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2129
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2130
              // The result of the reduction must not be used in the loop
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2131
              for (DUIterator_Fast imax, i = def_node->fast_outs(imax); i < imax && ok; i++) {
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2132
                Node* u = def_node->fast_out(i);
42622
0d672faf5c79 8170470: superword may miss reductions
roland
parents: 40031
diff changeset
  2133
                if (!loop->is_member(get_loop(ctrl_or_self(u)))) {
31048
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2134
                  continue;
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2135
                }
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2136
                if (u == phi) {
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2137
                  continue;
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2138
                }
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2139
                ok = false;
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2140
              }
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2141
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2142
              // iff the uses conform
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2143
              if (ok) {
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2144
                def_node->add_flag(Node::Flag_is_reduction);
31403
7bf7e00a1aac 8080325: SuperWord loop unrolling analysis
mcberg
parents: 31133
diff changeset
  2145
                loop_head->mark_has_reductions();
31048
ad1dfe0256a7 8080976: Unexpected AIOOB thrown from 1.9.0-ea-b64 on (regression)
roland
parents: 30593
diff changeset
  2146
              }
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2147
            }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2148
          }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2149
        }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2150
      }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2151
    }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2152
  }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2153
}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  2154
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2155
//------------------------------adjust_limit-----------------------------------
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2156
// Helper function for add_constraint().
53169
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2157
Node* PhaseIdealLoop::adjust_limit(int stride_con, Node * scale, Node *offset, Node *rc_limit, Node *loop_limit, Node *pre_ctrl, bool round_up) {
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2158
  // Compute "I :: (limit-offset)/scale"
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2159
  Node *con = new SubINode(rc_limit, offset);
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2160
  register_new_node(con, pre_ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2161
  Node *X = new DivINode(0, con, scale);
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2162
  register_new_node(X, pre_ctrl);
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2163
53169
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2164
  // When the absolute value of scale is greater than one, the integer
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2165
  // division may round limit down so add one to the limit.
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2166
  if (round_up) {
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2167
    X = new AddINode(X, _igvn.intcon(1));
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2168
    register_new_node(X, pre_ctrl);
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2169
  }
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2170
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2171
  // Adjust loop limit
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2172
  loop_limit = (stride_con > 0)
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2173
               ? (Node*)(new MinINode(loop_limit, X))
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2174
               : (Node*)(new MaxINode(loop_limit, X));
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2175
  register_new_node(loop_limit, pre_ctrl);
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2176
  return loop_limit;
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2177
}
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2178
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
//------------------------------add_constraint---------------------------------
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2180
// Constrain the main loop iterations so the conditions:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2181
//    low_limit <= scale_con * I + offset  <  upper_limit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
// always holds true.  That is, either increase the number of iterations in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
// the pre-loop or the post-loop until the condition holds true in the main
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
// loop.  Stride, scale, offset and limit are all loop invariant.  Further,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
// stride and scale are constants (offset and limit often are).
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2186
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
  2187
  // For positive stride, the pre-loop limit always uses a MAX function
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
  // and the main loop a MIN function.  For negative stride these are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
  // reversed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
  // Also for positive stride*scale the affine function is increasing, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
  // pre-loop must check for underflow and the post-loop for overflow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
  // Negative stride*scale reverses this; pre-loop checks for overflow and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
  // post-loop for underflow.
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2195
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2196
  Node *scale = _igvn.intcon(scale_con);
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2197
  set_ctrl(scale, C->root());
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2198
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2199
  if ((stride_con^scale_con) >= 0) { // Use XOR to avoid overflow
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2200
    // The overflow limit: scale*I+offset < upper_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2201
    // For main-loop compute
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2202
    //   ( if (scale > 0) /* and stride > 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2203
    //       I < (upper_limit-offset)/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2204
    //     else /* scale < 0 and stride < 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2205
    //       I > (upper_limit-offset)/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2206
    //   )
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2207
    //
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2208
    // (upper_limit-offset) may overflow or underflow.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2209
    // But it is fine since main loop will either have
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2210
    // less iterations or will be skipped in such case.
53169
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2211
    *main_limit = adjust_limit(stride_con, scale, offset, upper_limit, *main_limit, pre_ctrl, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2213
    // The underflow limit: low_limit <= scale*I+offset.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2214
    // For pre-loop compute
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2215
    //   NOT(scale*I+offset >= low_limit)
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2216
    //   scale*I+offset < low_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2217
    //   ( if (scale > 0) /* and stride > 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2218
    //       I < (low_limit-offset)/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2219
    //     else /* scale < 0 and stride < 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2220
    //       I > (low_limit-offset)/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2221
    //   )
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2222
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2223
    if (low_limit->get_int() == -max_jint) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2224
      // We need this guard when scale*pre_limit+offset >= limit
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2225
      // due to underflow. So we need execute pre-loop until
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2226
      // scale*I+offset >= min_int. But (min_int-offset) will
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2227
      // underflow when offset > 0 and X will be > original_limit
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2228
      // when stride > 0. To avoid it we replace positive offset with 0.
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2229
      //
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2230
      // Also (min_int+1 == -max_int) is used instead of min_int here
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2231
      // to avoid problem with scale == -1 (min_int/(-1) == min_int).
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2232
      Node* shift = _igvn.intcon(31);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2233
      set_ctrl(shift, C->root());
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2234
      Node* sign = new RShiftINode(offset, shift);
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2235
      register_new_node(sign, pre_ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2236
      offset = new AndINode(offset, sign);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2237
      register_new_node(offset, pre_ctrl);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2238
    } else {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2239
      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
  2240
      // The only problem we have here when offset == min_int
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2241
      // since (0-min_int) == min_int. It may be fine for stride > 0
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2242
      // but for stride < 0 X will be < original_limit. To avoid it
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2243
      // max(pre_limit, original_limit) is used in do_range_check().
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2244
    }
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2245
    // Pass (-stride) to indicate pre_loop_cond = NOT(main_loop_cond);
53169
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2246
    *pre_limit = adjust_limit((-stride_con), scale, offset, low_limit, *pre_limit, pre_ctrl,
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2247
                              scale_con > 1 && stride_con > 0);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2248
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2249
  } else { // stride_con*scale_con < 0
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2250
    // For negative stride*scale pre-loop checks for overflow and
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2251
    // post-loop for underflow.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2252
    //
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2253
    // The overflow limit: scale*I+offset < upper_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2254
    // For pre-loop compute
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2255
    //   NOT(scale*I+offset < upper_limit)
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2256
    //   scale*I+offset >= upper_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2257
    //   scale*I+offset+1 > upper_limit
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2258
    //   ( if (scale < 0) /* and stride > 0 */
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2259
    //       I < (upper_limit-(offset+1))/scale
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2260
    //     else /* scale > 0 and stride < 0 */
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2261
    //       I > (upper_limit-(offset+1))/scale
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2262
    //   )
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2263
    //
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2264
    // (upper_limit-offset-1) may underflow or overflow.
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2265
    // To avoid it min(pre_limit, original_limit) is used
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2266
    // in do_range_check() for stride > 0 and max() for < 0.
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2267
    Node *one  = _igvn.intcon(1);
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2268
    set_ctrl(one, C->root());
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2269
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2270
    Node *plus_one = new AddINode(offset, one);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2271
    register_new_node(plus_one, pre_ctrl);
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2272
    // Pass (-stride) to indicate pre_loop_cond = NOT(main_loop_cond);
53169
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2273
    *pre_limit = adjust_limit((-stride_con), scale, plus_one, upper_limit, *pre_limit, pre_ctrl,
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2274
                              scale_con < -1 && stride_con > 0);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2275
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2276
    if (low_limit->get_int() == -max_jint) {
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2277
      // We need this guard when scale*main_limit+offset >= limit
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2278
      // due to underflow. So we need execute main-loop while
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2279
      // scale*I+offset+1 > min_int. But (min_int-offset-1) will
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2280
      // underflow when (offset+1) > 0 and X will be < main_limit
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2281
      // when scale < 0 (and stride > 0). To avoid it we replace
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2282
      // positive (offset+1) with 0.
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2283
      //
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2284
      // Also (min_int+1 == -max_int) is used instead of min_int here
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2285
      // to avoid problem with scale == -1 (min_int/(-1) == min_int).
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2286
      Node* shift = _igvn.intcon(31);
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2287
      set_ctrl(shift, C->root());
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2288
      Node* sign = new RShiftINode(plus_one, shift);
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2289
      register_new_node(sign, pre_ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2290
      plus_one = new AndINode(plus_one, sign);
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2291
      register_new_node(plus_one, pre_ctrl);
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2292
    } else {
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2293
      assert(low_limit->get_int() == 0, "wrong low limit for range check");
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2294
      // The only problem we have here when offset == max_int
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2295
      // since (max_int+1) == min_int and (0-min_int) == min_int.
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2296
      // But it is fine since main loop will either have
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2297
      // less iterations or will be skipped in such case.
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2298
    }
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2299
    // The underflow limit: low_limit <= scale*I+offset.
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2300
    // For main-loop compute
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2301
    //   scale*I+offset+1 > low_limit
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2302
    //   ( if (scale < 0) /* and stride > 0 */
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2303
    //       I < (low_limit-(offset+1))/scale
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2304
    //     else /* scale > 0 and stride < 0 */
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2305
    //       I > (low_limit-(offset+1))/scale
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2306
    //   )
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2307
53169
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2308
    *main_limit = adjust_limit(stride_con, scale, plus_one, low_limit, *main_limit, pre_ctrl,
98580226126d 8215265: C2: range check elimination may allow illegal out of bound access
roland
parents: 53167
diff changeset
  2309
                               false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
//------------------------------is_scaled_iv---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
// Return true if exp is a constant times an induction var
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
bool PhaseIdealLoop::is_scaled_iv(Node* exp, Node* iv, int* p_scale) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
  if (exp == iv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
    if (p_scale != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
      *p_scale = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
  int opc = exp->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
  if (opc == Op_MulI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
    if (exp->in(1) == iv && exp->in(2)->is_Con()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
      if (p_scale != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
        *p_scale = exp->in(2)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
    if (exp->in(2) == iv && exp->in(1)->is_Con()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
      if (p_scale != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
        *p_scale = exp->in(1)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
  } else if (opc == Op_LShiftI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
    if (exp->in(1) == iv && exp->in(2)->is_Con()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
      if (p_scale != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
        *p_scale = 1 << exp->in(2)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
//-----------------------------is_scaled_iv_plus_offset------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
// Return true if exp is a simple induction variable expression: k1*iv + (invar + k2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
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
  2351
  if (is_scaled_iv(exp, iv, p_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
    if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
      Node *zero = _igvn.intcon(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
      set_ctrl(zero, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
      *p_offset = zero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
  int opc = exp->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
  if (opc == Op_AddI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
    if (is_scaled_iv(exp->in(1), iv, p_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
      if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
        *p_offset = exp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
    }
35139
071b000357fc 8145754: PhaseIdealLoop::is_scaled_iv_plus_offset() does not match AddI
thartmann
parents: 34174
diff changeset
  2367
    if (is_scaled_iv(exp->in(2), iv, p_scale)) {
071b000357fc 8145754: PhaseIdealLoop::is_scaled_iv_plus_offset() does not match AddI
thartmann
parents: 34174
diff changeset
  2368
      if (p_offset != NULL) {
071b000357fc 8145754: PhaseIdealLoop::is_scaled_iv_plus_offset() does not match AddI
thartmann
parents: 34174
diff changeset
  2369
        *p_offset = exp->in(1);
071b000357fc 8145754: PhaseIdealLoop::is_scaled_iv_plus_offset() does not match AddI
thartmann
parents: 34174
diff changeset
  2370
      }
071b000357fc 8145754: PhaseIdealLoop::is_scaled_iv_plus_offset() does not match AddI
thartmann
parents: 34174
diff changeset
  2371
      return true;
071b000357fc 8145754: PhaseIdealLoop::is_scaled_iv_plus_offset() does not match AddI
thartmann
parents: 34174
diff changeset
  2372
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
    if (exp->in(2)->is_Con()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
      Node* offset2 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
      if (depth < 2 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
          is_scaled_iv_plus_offset(exp->in(1), iv, p_scale,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
                                   p_offset != NULL ? &offset2 : NULL, depth+1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
        if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
          Node *ctrl_off2 = get_ctrl(offset2);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2380
          Node* offset = new AddINode(offset2, exp->in(2));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
          register_new_node(offset, ctrl_off2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
          *p_offset = offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
  } else if (opc == Op_SubI) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
    if (is_scaled_iv(exp->in(1), iv, p_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
      if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
        Node *zero = _igvn.intcon(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
        set_ctrl(zero, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
        Node *ctrl_off = get_ctrl(exp->in(2));
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2393
        Node* offset = new SubINode(zero, exp->in(2));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
        register_new_node(offset, ctrl_off);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
        *p_offset = offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
    if (is_scaled_iv(exp->in(2), iv, p_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
      if (p_offset != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
        *p_scale *= -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
        *p_offset = exp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2410
// Same as PhaseIdealLoop::duplicate_predicates() but for range checks
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2411
// eliminated by iteration splitting.
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2412
Node* PhaseIdealLoop::add_range_check_predicate(IdealLoopTree* loop, CountedLoopNode* cl,
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2413
                                                Node* predicate_proj, int scale_con, Node* offset,
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2414
                                                Node* limit, jint stride_con, Node* value) {
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2415
  bool overflow = false;
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2416
  BoolNode* bol = rc_predicate(loop, predicate_proj, scale_con, offset, value, NULL, stride_con, limit, (stride_con > 0) != (scale_con > 0), overflow);
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2417
  Node* opaque_bol = new Opaque4Node(C, bol, _igvn.intcon(1));
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2418
  register_new_node(opaque_bol, predicate_proj);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2419
  IfNode* new_iff = NULL;
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2420
  if (overflow) {
53063
b04860fd2e2c 8211698: Crash in C2 compiled code during execution of double array heavy processing code
rraghavan
parents: 52925
diff changeset
  2421
    new_iff = new IfNode(predicate_proj, opaque_bol, PROB_MAX, COUNT_UNKNOWN);
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2422
  } else {
53063
b04860fd2e2c 8211698: Crash in C2 compiled code during execution of double array heavy processing code
rraghavan
parents: 52925
diff changeset
  2423
    new_iff = new RangeCheckNode(predicate_proj, opaque_bol, PROB_MAX, COUNT_UNKNOWN);
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2424
  }
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2425
  register_control(new_iff, loop->_parent, predicate_proj);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2426
  Node* iffalse = new IfFalseNode(new_iff);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2427
  register_control(iffalse, _ltree_root, new_iff);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2428
  ProjNode* iftrue = new IfTrueNode(new_iff);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2429
  register_control(iftrue, loop->_parent, new_iff);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2430
  Node *frame = new ParmNode(C->start(), TypeFunc::FramePtr);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2431
  register_new_node(frame, C->start());
58061
fafba5cf3546 8225653: Provide more information when hitting SIGILL from HaltNode
chagedorn
parents: 55150
diff changeset
  2432
  Node* halt = new HaltNode(iffalse, frame, "range check predicate failed which is impossible");
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2433
  register_control(halt, _ltree_root, iffalse);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2434
  C->root()->add_req(halt);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2435
  return iftrue;
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2436
}
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2437
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
//------------------------------do_range_check---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
// Eliminate range-checks and other trip-counter vs loop-invariant tests.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2440
int PhaseIdealLoop::do_range_check(IdealLoopTree *loop, Node_List &old_new) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
#ifndef PRODUCT
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2442
  if (PrintOpto && VerifyLoopOptimizations) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
    tty->print("Range Check Elimination ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
    loop->dump_head();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2445
  } else if (TraceLoopOpts) {
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2446
    tty->print("RangeCheck   ");
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2447
    loop->dump_head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
#endif
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2450
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2451
  assert(RangeCheckElimination, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
  CountedLoopNode *cl = loop->_head->as_CountedLoop();
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2453
  // If we fail before trying to eliminate range checks, set multiversion state
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2454
  int closed_range_checks = 1;
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2455
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2456
  // protect against stride not being a constant
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2457
  if (!cl->stride_is_con()) {
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2458
    return closed_range_checks;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2459
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
  // Find the trip counter; we are iteration splitting based on it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
  Node *trip_counter = cl->phi();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
  // Find the main loop limit; we will trim it's iterations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
  // to not ever trip end tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
  Node *main_limit = cl->limit();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2465
36809
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  2466
  // Check graph shape. Cannot optimize a loop if zero-trip
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  2467
  // Opaque1 node is optimized away and then another round
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  2468
  // of loop opts attempted.
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2469
  if (!is_canonical_loop_entry(cl)) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2470
    return closed_range_checks;
36809
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  2471
  }
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  2472
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2473
  // Need to find the main-loop zero-trip guard
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2474
  Node *ctrl = cl->skip_predicates();
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2475
  Node *iffm = ctrl->in(0);
36809
6f9362b27d4f 8148754: C2 loop unrolling fails due to unexpected graph shape
zmajo
parents: 36316
diff changeset
  2476
  Node *opqzm = iffm->in(1)->in(1)->in(2);
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  2477
  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
  2478
31133
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2479
  // Find the pre-loop limit; we will expand its iterations to
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
  // not ever trip low tests.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
  Node *p_f = iffm->in(0);
31131
d92082b3ef93 8078866: compiler/eliminateAutobox/6934604/TestIntBoxing.java assert(p_f->Opcode() == Op_IfFalse) failed
roland
parents: 31048
diff changeset
  2482
  // pre loop may have been optimized out
d92082b3ef93 8078866: compiler/eliminateAutobox/6934604/TestIntBoxing.java assert(p_f->Opcode() == Op_IfFalse) failed
roland
parents: 31048
diff changeset
  2483
  if (p_f->Opcode() != Op_IfFalse) {
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2484
    return closed_range_checks;
31131
d92082b3ef93 8078866: compiler/eliminateAutobox/6934604/TestIntBoxing.java assert(p_f->Opcode() == Op_IfFalse) failed
roland
parents: 31048
diff changeset
  2485
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
  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
  2487
  assert(pre_end->loopnode()->is_pre_loop(), "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
  Node *pre_opaq1 = pre_end->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
  // Occasionally it's possible for a pre-loop Opaque1 node to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
  // optimized away and then another round of loop opts attempted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
  // We can not optimize this particular loop in that case.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2492
  if (pre_opaq1->Opcode() != Op_Opaque1) {
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2493
    return closed_range_checks;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2494
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
  Opaque1Node *pre_opaq = (Opaque1Node*)pre_opaq1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
  Node *pre_limit = pre_opaq->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
  // Where do we put new limit calculations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
  Node *pre_ctrl = pre_end->loopnode()->in(LoopNode::EntryControl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  // Ensure the original loop limit is available from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
  // pre-loop Opaque1 node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
  Node *orig_limit = pre_opaq->original_loop_limit();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2504
  if (orig_limit == NULL || _igvn.type(orig_limit) == Type::TOP) {
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2505
    return closed_range_checks;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2506
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
  // Must know if its a count-up or count-down loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
  int stride_con = cl->stride_con();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
  Node *zero = _igvn.intcon(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
  Node *one  = _igvn.intcon(1);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2512
  // Use symmetrical int range [-max_jint,max_jint]
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2513
  Node *mini = _igvn.intcon(-max_jint);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
  set_ctrl(zero, C->root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
  set_ctrl(one,  C->root());
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2516
  set_ctrl(mini, C->root());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
  // Range checks that do not dominate the loop backedge (ie.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
  // conditionally executed) can lengthen the pre loop limit beyond
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
  // the original loop limit. To prevent this, the pre limit is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
  // (for stride > 0) MINed with the original loop limit (MAXed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
  // stride < 0) when some range_check (rc) is conditionally
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
  // executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
  bool conditional_rc = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2526
  // Count number of range checks and reduce by load range limits, if zero,
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2527
  // the loop is in canonical form to multiversion.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2528
  closed_range_checks = 0;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2529
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2530
  Node* predicate_proj = cl->skip_strip_mined()->in(LoopNode::EntryControl);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2531
  assert(predicate_proj->is_Proj() && predicate_proj->in(0)->is_If(), "if projection only");
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2532
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
  2533
  // Check loop body for tests of trip-counter plus loop-invariant vs loop-variant.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2534
  for (uint i = 0; i < loop->_body.size(); i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
    Node *iff = loop->_body[i];
34164
a9e6034d7707 8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents: 33628
diff changeset
  2536
    if (iff->Opcode() == Op_If ||
a9e6034d7707 8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents: 33628
diff changeset
  2537
        iff->Opcode() == Op_RangeCheck) { // Test?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
      // Test is an IfNode, has 2 projections.  If BOTH are in the loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
      // we need loop unswitching instead of iteration splitting.
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2540
      closed_range_checks++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
      Node *exit = loop->is_loop_exit(iff);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2542
      if (!exit) continue;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
      int flip = (exit->Opcode() == Op_IfTrue) ? 1 : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
      // Get boolean condition to test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
      Node *i1 = iff->in(1);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2547
      if (!i1->is_Bool()) continue;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
      BoolNode *bol = i1->as_Bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
      BoolTest b_test = bol->_test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
      // Flip sense of test if exit condition is flipped
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2551
      if (flip) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
        b_test = b_test.negate();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2553
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
      // Get compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
      Node *cmp = bol->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
      // Look for trip_counter + offset vs limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
      Node *rc_exp = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
      Node *limit  = cmp->in(2);
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47591
diff changeset
  2560
      int scale_con= 1;        // Assume trip counter not scaled
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
      Node *limit_c = get_ctrl(limit);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2563
      if (loop->is_member(get_loop(limit_c))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
        // Compare might have operands swapped; commute them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
        b_test = b_test.commute();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
        rc_exp = cmp->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
        limit  = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
        limit_c = get_ctrl(limit);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2569
        if (loop->is_member(get_loop(limit_c))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
          continue;             // Both inputs are loop varying; cannot RCE
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2571
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
      // Here we know 'limit' is loop invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
      // 'limit' maybe pinned below the zero trip test (probably from a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
      // previous round of rce), in which case, it can't be used in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
      // zero trip test expression which must occur before the zero test's if.
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2578
      if (is_dominator(ctrl, limit_c)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
        continue;  // Don't rce this check but continue looking for other candidates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
      // Check for scaled induction variable plus an offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
      Node *offset = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
      if (!is_scaled_iv_plus_offset(rc_exp, trip_counter, &scale_con, &offset)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
      Node *offset_c = get_ctrl(offset);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2590
      if (loop->is_member(get_loop(offset_c))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
        continue;               // Offset is not really loop invariant
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2592
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
      // Here we know 'offset' is loop invariant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
      // As above for the 'limit', the 'offset' maybe pinned below the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
      // zero trip test.
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2597
      if (is_dominator(ctrl, offset_c)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
        continue; // Don't rce this check but continue looking for other candidates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
      }
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2600
#ifdef ASSERT
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2601
      if (TraceRangeLimitCheck) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2602
        tty->print_cr("RC bool node%s", flip ? " flipped:" : ":");
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2603
        bol->dump(2);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2604
      }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2605
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
      // At this point we have the expression as:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
      //   scale_con * trip_counter + offset :: limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
      // where scale_con, offset and limit are loop invariant.  Trip_counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
      // monotonically increases by stride_con, a constant.  Both (or either)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
      // stride_con and scale_con can be negative which will flip about the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
      // sense of the test.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
      // Adjust pre and main loop limits to guard the correct iteration set
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2614
      if (cmp->Opcode() == Op_CmpU) { // Unsigned compare is really 2 tests
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2615
        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
  2616
          // The underflow and overflow limits: 0 <= scale*I+offset < limit
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2617
          add_constraint(stride_con, scale_con, offset, zero, limit, pre_ctrl, &pre_limit, &main_limit);
39429
2c9cde29cd3f 8159715: Fix for 8072422 is incorrect
thartmann
parents: 39419
diff changeset
  2618
          // (0-offset)/scale could be outside of loop iterations range.
2c9cde29cd3f 8159715: Fix for 8072422 is incorrect
thartmann
parents: 39419
diff changeset
  2619
          conditional_rc = true;
53306
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2620
          Node* init = cl->init_trip();
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2621
          Node* opaque_init = new Opaque1Node(C, init);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2622
          register_new_node(opaque_init, predicate_proj);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2623
          // template predicate so it can be updated on next unrolling
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2624
          predicate_proj = add_range_check_predicate(loop, cl, predicate_proj, scale_con, offset, limit, stride_con, opaque_init);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2625
          assert(skeleton_predicate_has_opaque(predicate_proj->in(0)->as_If()), "unexpected");
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2626
          // predicate on first value of first iteration
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2627
          predicate_proj = add_range_check_predicate(loop, cl, predicate_proj, scale_con, offset, limit, stride_con, init);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2628
          assert(!skeleton_predicate_has_opaque(predicate_proj->in(0)->as_If()), "unexpected");
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2629
          int init_inc = stride_con/cl->unrolled_count();
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2630
          assert(init_inc != 0, "invalid loop increment");
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2631
          Node* max_value = _igvn.intcon(stride_con - init_inc);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2632
          max_value = new AddINode(init, max_value);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2633
          register_new_node(max_value, predicate_proj);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2634
          // predicate on last value of first iteration (in case unrolling has already happened)
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2635
          predicate_proj = add_range_check_predicate(loop, cl, predicate_proj, scale_con, offset, limit, stride_con, max_value);
8e260023fc53 8216135: C2 assert(!had_error) failed: bad dominance
roland
parents: 53169
diff changeset
  2636
          assert(!skeleton_predicate_has_opaque(predicate_proj->in(0)->as_If()), "unexpected");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
        } else {
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
  2638
          if (PrintOpto) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
            tty->print_cr("missed RCE opportunity");
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
  2640
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
          continue;             // In release mode, ignore it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
      } else {                  // Otherwise work on normal compares
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2644
        switch(b_test._test) {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2645
        case BoolTest::gt:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2646
          // Fall into GE case
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2647
        case BoolTest::ge:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2648
          // Convert (I*scale+offset) >= Limit to (I*(-scale)+(-offset)) <= -Limit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
          scale_con = -scale_con;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2650
          offset = new SubINode(zero, offset);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2651
          register_new_node(offset, pre_ctrl);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2652
          limit  = new SubINode(zero, limit);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2653
          register_new_node(limit, pre_ctrl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
          // Fall into LE case
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2655
        case BoolTest::le:
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2656
          if (b_test._test != BoolTest::gt) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2657
            // Convert X <= Y to X < Y+1
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2658
            limit = new AddINode(limit, one);
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2659
            register_new_node(limit, pre_ctrl);
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2660
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
          // Fall into LT case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
        case BoolTest::lt:
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2663
          // The underflow and overflow limits: MIN_INT <= scale*I+offset < limit
9941
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2664
          // Note: (MIN_INT+1 == -MAX_INT) is used instead of MIN_INT here
f2365fbd62f4 7044725: -XX:-UnrollLimitCheck -Xcomp : Exception: String index out of range: 29488
kvn
parents: 9634
diff changeset
  2665
          // to avoid problem with scale == -1: MIN_INT/(-1) == MIN_INT.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2666
          add_constraint(stride_con, scale_con, offset, mini, limit, pre_ctrl, &pre_limit, &main_limit);
39429
2c9cde29cd3f 8159715: Fix for 8072422 is incorrect
thartmann
parents: 39419
diff changeset
  2667
          // ((MIN_INT+1)-offset)/scale could be outside of loop iterations range.
2c9cde29cd3f 8159715: Fix for 8072422 is incorrect
thartmann
parents: 39419
diff changeset
  2668
          // Note: negative offset is replaced with 0 but (MIN_INT+1)/scale could
2c9cde29cd3f 8159715: Fix for 8072422 is incorrect
thartmann
parents: 39419
diff changeset
  2669
          // still be outside of loop range.
2c9cde29cd3f 8159715: Fix for 8072422 is incorrect
thartmann
parents: 39419
diff changeset
  2670
          conditional_rc = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
        default:
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
  2673
          if (PrintOpto) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
            tty->print_cr("missed RCE opportunity");
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
  2675
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
          continue;             // Unhandled case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
      // Kill the eliminated test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
      C->set_major_progress();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2682
      Node *kill_con = _igvn.intcon(1-flip);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
      set_ctrl(kill_con, C->root());
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 10538
diff changeset
  2684
      _igvn.replace_input_of(iff, 1, kill_con);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
      // Find surviving projection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
      assert(iff->is_If(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
      ProjNode* dp = ((IfNode*)iff)->proj_out(1-flip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
      // Find loads off the surviving projection; remove their control edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
      for (DUIterator_Fast imax, i = dp->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
        Node* cd = dp->fast_out(i); // Control-dependent node
21526
03b4acedb351 8017065: C2 allows safepoint checks to leak into G1 pre-barriers
iveresov
parents: 21208
diff changeset
  2691
        if (cd->is_Load() && cd->depends_only_on_test()) {   // Loads can now float around in the loop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
          // Allow the load to float around in the loop, or before it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
          // but NOT before the pre-loop.
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 10538
diff changeset
  2694
          _igvn.replace_input_of(cd, 0, ctrl); // ctrl, not NULL
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
          --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
          --imax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
      }
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2699
      if (limit->Opcode() == Op_LoadRange) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2700
        closed_range_checks--;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2701
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
    } // End of is IF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
  }
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2704
  if (predicate_proj != cl->skip_strip_mined()->in(LoopNode::EntryControl)) {
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2705
    _igvn.replace_input_of(cl->skip_strip_mined(), LoopNode::EntryControl, predicate_proj);
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2706
    set_idom(cl->skip_strip_mined(), predicate_proj, dom_depth(cl->skip_strip_mined()));
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2707
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
  // Update loop limits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
  if (conditional_rc) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2711
    pre_limit = (stride_con > 0) ? (Node*)new MinINode(pre_limit, orig_limit)
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  2712
                                 : (Node*)new MaxINode(pre_limit, orig_limit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
    register_new_node(pre_limit, pre_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
  }
25913
81dbc151e91c 8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents: 24923
diff changeset
  2715
  _igvn.replace_input_of(pre_opaq, 1, pre_limit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
  // Note:: we are making the main loop limit no longer precise;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2718
  // need to round up based on stride.
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  2719
  cl->set_nonexact_trip_count();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
  Node *main_cle = cl->loopexit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
  Node *main_bol = main_cle->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
  // Hacking loop bounds; need private copies of exit test
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2723
  if (main_bol->outcnt() > 1) {     // BoolNode shared?
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2724
    main_bol = main_bol->clone();   // Clone a private BoolNode
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2725
    register_new_node(main_bol, main_cle->in(0));
25927
29dc55d9e8a0 8053915: bigapps assert failure in C2: modified node is not on IGVN._worklist
thartmann
parents: 25913
diff changeset
  2726
    _igvn.replace_input_of(main_cle, 1, main_bol);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
  Node *main_cmp = main_bol->in(1);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2729
  if (main_cmp->outcnt() > 1) {     // CmpNode shared?
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2730
    main_cmp = main_cmp->clone();   // Clone a private CmpNode
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2731
    register_new_node(main_cmp, main_cle->in(0));
28639
beee8cc25bbf 8068864: C2 failed: modified node is not on IGVN._worklist
kvn
parents: 27708
diff changeset
  2732
    _igvn.replace_input_of(main_bol, 1, main_cmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
  // Hack the now-private loop bounds
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 10538
diff changeset
  2735
  _igvn.replace_input_of(main_cmp, 2, main_limit);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
  // The OpaqueNode is unshared by design
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2737
  assert(opqzm->outcnt() == 1, "cannot hack shared node");
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 10538
diff changeset
  2738
  _igvn.replace_input_of(opqzm, 1, main_limit);
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2739
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2740
  return closed_range_checks;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2741
}
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2742
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2743
//------------------------------has_range_checks-------------------------------
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2744
// Check to see if RCE cleaned the current loop of range-checks.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2745
void PhaseIdealLoop::has_range_checks(IdealLoopTree *loop) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2746
  assert(RangeCheckElimination, "");
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2747
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2748
  // skip if not a counted loop
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2749
  if (!loop->is_counted()) return;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2750
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2751
  CountedLoopNode *cl = loop->_head->as_CountedLoop();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2752
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2753
  // skip this loop if it is already checked
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2754
  if (cl->has_been_range_checked()) return;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2755
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
  2756
  // Now check for existence of range checks
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2757
  for (uint i = 0; i < loop->_body.size(); i++) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2758
    Node *iff = loop->_body[i];
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2759
    int iff_opc = iff->Opcode();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2760
    if (iff_opc == Op_If || iff_opc == Op_RangeCheck) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2761
      cl->mark_has_range_checks();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2762
      break;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2763
    }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2764
  }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2765
  cl->set_has_been_range_checked();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2766
}
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2767
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2768
//-------------------------multi_version_post_loops----------------------------
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2769
// Check the range checks that remain, if simple, use the bounds to guard
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2770
// which version to a post loop we execute, one with range checks or one without
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2771
bool PhaseIdealLoop::multi_version_post_loops(IdealLoopTree *rce_loop, IdealLoopTree *legacy_loop) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2772
  bool multi_version_succeeded = false;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2773
  assert(RangeCheckElimination, "");
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2774
  CountedLoopNode *legacy_cl = legacy_loop->_head->as_CountedLoop();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2775
  assert(legacy_cl->is_post_loop(), "");
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2776
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
  2777
  // Check for existence of range checks using the unique instance to make a guard with
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2778
  Unique_Node_List worklist;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2779
  for (uint i = 0; i < legacy_loop->_body.size(); i++) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2780
    Node *iff = legacy_loop->_body[i];
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2781
    int iff_opc = iff->Opcode();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2782
    if (iff_opc == Op_If || iff_opc == Op_RangeCheck) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2783
      worklist.push(iff);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2784
    }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2785
  }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2786
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2787
  // Find RCE'd post loop so that we can stage its guard.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2788
  if (!is_canonical_loop_entry(legacy_cl)) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2789
  Node* ctrl = legacy_cl->in(LoopNode::EntryControl);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2790
  Node* iffm = ctrl->in(0);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2791
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2792
  // Now we test that both the post loops are connected
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2793
  Node* post_loop_region = iffm->in(0);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2794
  if (post_loop_region == NULL) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2795
  if (!post_loop_region->is_Region()) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2796
  Node* covering_region = post_loop_region->in(RegionNode::Control+1);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2797
  if (covering_region == NULL) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2798
  if (!covering_region->is_Region()) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2799
  Node* p_f = covering_region->in(RegionNode::Control);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2800
  if (p_f == NULL) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2801
  if (!p_f->is_IfFalse()) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2802
  if (!p_f->in(0)->is_CountedLoopEnd()) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2803
  CountedLoopEndNode* rce_loop_end = p_f->in(0)->as_CountedLoopEnd();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2804
  if (rce_loop_end == NULL) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2805
  CountedLoopNode* rce_cl = rce_loop_end->loopnode();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2806
  if (rce_cl == NULL || !rce_cl->is_post_loop()) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2807
  CountedLoopNode *known_rce_cl = rce_loop->_head->as_CountedLoop();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2808
  if (rce_cl != known_rce_cl) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2809
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2810
  // Then we fetch the cover entry test
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2811
  ctrl = rce_cl->in(LoopNode::EntryControl);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2812
  if (!ctrl->is_IfTrue() && !ctrl->is_IfFalse()) return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2813
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2814
#ifndef PRODUCT
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2815
  if (TraceLoopOpts) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2816
    tty->print("PostMultiVersion\n");
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2817
    rce_loop->dump_head();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2818
    legacy_loop->dump_head();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2819
  }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2820
#endif
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2821
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2822
  // Now fetch the limit we want to compare against
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2823
  Node *limit = rce_cl->limit();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2824
  bool first_time = true;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2825
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2826
  // If we got this far, we identified the post loop which has been RCE'd and
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2827
  // we have a work list.  Now we will try to transform the if guard to cause
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2828
  // the loop pair to be multi version executed with the determination left to runtime
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2829
  // or the optimizer if full information is known about the given arrays at compile time.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2830
  Node *last_min = NULL;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2831
  multi_version_succeeded = true;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2832
  while (worklist.size()) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2833
    Node* rc_iffm = worklist.pop();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2834
    if (rc_iffm->is_If()) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2835
      Node *rc_bolzm = rc_iffm->in(1);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2836
      if (rc_bolzm->is_Bool()) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2837
        Node *rc_cmpzm = rc_bolzm->in(1);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2838
        if (rc_cmpzm->is_Cmp()) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2839
          Node *rc_left = rc_cmpzm->in(2);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2840
          if (rc_left->Opcode() != Op_LoadRange) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2841
            multi_version_succeeded = false;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2842
            break;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2843
          }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2844
          if (first_time) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2845
            last_min = rc_left;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2846
            first_time = false;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2847
          } else {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2848
            Node *cur_min = new MinINode(last_min, rc_left);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2849
            last_min = cur_min;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2850
            _igvn.register_new_node_with_optimizer(last_min);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2851
          }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2852
        }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2853
      }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2854
    }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2855
  }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2856
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2857
  // All we have to do is update the limit of the rce loop
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2858
  // with the min of our expression and the current limit.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2859
  // We will use this expression to replace the current limit.
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2860
  if (last_min && multi_version_succeeded) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2861
    Node *cur_min = new MinINode(last_min, limit);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2862
    _igvn.register_new_node_with_optimizer(cur_min);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2863
    Node *cmp_node = rce_loop_end->cmp_node();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2864
    _igvn.replace_input_of(cmp_node, 2, cur_min);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2865
    set_ctrl(cur_min, ctrl);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2866
    set_loop(cur_min, rce_loop->_parent);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2867
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2868
    legacy_cl->mark_is_multiversioned();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2869
    rce_cl->mark_is_multiversioned();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2870
    multi_version_succeeded = true;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2871
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2872
    C->set_major_progress();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2873
  }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2874
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2875
  return multi_version_succeeded;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2876
}
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2877
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2878
//-------------------------poison_rce_post_loop--------------------------------
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
  2879
// Causes the rce'd post loop to be optimized away if multiversioning fails
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2880
void PhaseIdealLoop::poison_rce_post_loop(IdealLoopTree *rce_loop) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2881
  CountedLoopNode *rce_cl = rce_loop->_head->as_CountedLoop();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2882
  Node* ctrl = rce_cl->in(LoopNode::EntryControl);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2883
  if (ctrl->is_IfTrue() || ctrl->is_IfFalse()) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2884
    Node* iffm = ctrl->in(0);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2885
    if (iffm->is_If()) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2886
      Node* cur_bool = iffm->in(1);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2887
      if (cur_bool->is_Bool()) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2888
        Node* cur_cmp = cur_bool->in(1);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2889
        if (cur_cmp->is_Cmp()) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2890
          BoolTest::mask new_test = BoolTest::gt;
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2891
          BoolNode *new_bool = new BoolNode(cur_cmp, new_test);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2892
          _igvn.replace_node(cur_bool, new_bool);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2893
          _igvn._worklist.push(new_bool);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2894
          Node* left_op = cur_cmp->in(1);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2895
          _igvn.replace_input_of(cur_cmp, 2, left_op);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2896
          C->set_major_progress();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2897
        }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2898
      }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2899
    }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  2900
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
//------------------------------DCE_loop_body----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
// Remove simplistic dead code from loop body
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
void IdealLoopTree::DCE_loop_body() {
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2906
  for (uint i = 0; i < _body.size(); i++) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2907
    if (_body.at(i)->outcnt() == 0) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2908
      _body.map(i, _body.pop());
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2909
      i--; // Ensure we revisit the updated index.
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2910
    }
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2911
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2912
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
//------------------------------adjust_loop_exit_prob--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
// Look for loop-exit tests with the 50/50 (or worse) guesses from the parsing stage.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
// Replace with a 1-in-10 exit guess.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2918
void IdealLoopTree::adjust_loop_exit_prob(PhaseIdealLoop *phase) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
  Node *test = tail();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2920
  while (test != _head) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
    uint top = test->Opcode();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2922
    if (top == Op_IfTrue || top == Op_IfFalse) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
      int test_con = ((ProjNode*)test)->_con;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2924
      assert(top == (uint)(test_con? Op_IfTrue: Op_IfFalse), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2925
      IfNode *iff = test->in(0)->as_If();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2926
      if (iff->outcnt() == 2) {         // Ignore dead tests
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
        Node *bol = iff->in(1);
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2928
        if (bol && bol->req() > 1 && bol->in(1) &&
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2929
            ((bol->in(1)->Opcode() == Op_StorePConditional) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2930
             (bol->in(1)->Opcode() == Op_StoreIConditional) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2931
             (bol->in(1)->Opcode() == Op_StoreLConditional) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2932
             (bol->in(1)->Opcode() == Op_CompareAndExchangeB) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2933
             (bol->in(1)->Opcode() == Op_CompareAndExchangeS) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2934
             (bol->in(1)->Opcode() == Op_CompareAndExchangeI) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2935
             (bol->in(1)->Opcode() == Op_CompareAndExchangeL) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2936
             (bol->in(1)->Opcode() == Op_CompareAndExchangeP) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2937
             (bol->in(1)->Opcode() == Op_CompareAndExchangeN) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2938
             (bol->in(1)->Opcode() == Op_WeakCompareAndSwapB) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2939
             (bol->in(1)->Opcode() == Op_WeakCompareAndSwapS) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2940
             (bol->in(1)->Opcode() == Op_WeakCompareAndSwapI) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2941
             (bol->in(1)->Opcode() == Op_WeakCompareAndSwapL) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2942
             (bol->in(1)->Opcode() == Op_WeakCompareAndSwapP) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2943
             (bol->in(1)->Opcode() == Op_WeakCompareAndSwapN) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2944
             (bol->in(1)->Opcode() == Op_CompareAndSwapB) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2945
             (bol->in(1)->Opcode() == Op_CompareAndSwapS) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2946
             (bol->in(1)->Opcode() == Op_CompareAndSwapI) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2947
             (bol->in(1)->Opcode() == Op_CompareAndSwapL) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2948
             (bol->in(1)->Opcode() == Op_CompareAndSwapP) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2949
             (bol->in(1)->Opcode() == Op_CompareAndSwapN) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2950
             (bol->in(1)->Opcode() == Op_ShenandoahCompareAndExchangeP) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2951
             (bol->in(1)->Opcode() == Op_ShenandoahCompareAndExchangeN) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2952
             (bol->in(1)->Opcode() == Op_ShenandoahWeakCompareAndSwapP) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2953
             (bol->in(1)->Opcode() == Op_ShenandoahWeakCompareAndSwapN) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2954
             (bol->in(1)->Opcode() == Op_ShenandoahCompareAndSwapP) ||
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2955
             (bol->in(1)->Opcode() == Op_ShenandoahCompareAndSwapN)))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
          return;               // Allocation loops RARELY take backedge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
        // Find the OTHER exit path from the IF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
        Node* ex = iff->proj_out(1-test_con);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2959
        float p = iff->_prob;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2960
        if (!phase->is_member(this, ex) && iff->_fcnt == COUNT_UNKNOWN) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2961
          if (top == Op_IfTrue) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2962
            if (p < (PROB_FAIR + PROB_UNLIKELY_MAG(3))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2963
              iff->_prob = PROB_STATIC_FREQUENT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
          } else {
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  2966
            if (p > (PROB_FAIR - PROB_UNLIKELY_MAG(3))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
              iff->_prob = PROB_STATIC_INFREQUENT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2969
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2970
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2971
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2972
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2973
    test = phase->idom(test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2974
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2975
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2976
31133
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2977
#ifdef ASSERT
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2978
static CountedLoopNode* locate_pre_from_main(CountedLoopNode *cl) {
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  2979
  Node *ctrl  = cl->skip_predicates();
31133
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2980
  assert(ctrl->Opcode() == Op_IfTrue || ctrl->Opcode() == Op_IfFalse, "");
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2981
  Node *iffm = ctrl->in(0);
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2982
  assert(iffm->Opcode() == Op_If, "");
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2983
  Node *p_f = iffm->in(0);
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2984
  assert(p_f->Opcode() == Op_IfFalse, "");
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2985
  CountedLoopEndNode *pre_end = p_f->in(0)->as_CountedLoopEnd();
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2986
  assert(pre_end->loopnode()->is_pre_loop(), "");
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2987
  return pre_end->loopnode();
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2988
}
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2989
#endif
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2990
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2991
// Remove the main and post loops and make the pre loop execute all
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2992
// iterations. Useful when the pre loop is found empty.
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2993
void IdealLoopTree::remove_main_post_loops(CountedLoopNode *cl, PhaseIdealLoop *phase) {
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2994
  CountedLoopEndNode* pre_end = cl->loopexit();
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2995
  Node* pre_cmp = pre_end->cmp_node();
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2996
  if (pre_cmp->in(2)->Opcode() != Op_Opaque1) {
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2997
    // Only safe to remove the main loop if the compiler optimized it
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2998
    // out based on an unknown number of iterations
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  2999
    return;
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3000
  }
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3001
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3002
  // Can we find the main loop?
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3003
  if (_next == NULL) {
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3004
    return;
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3005
  }
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3006
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3007
  Node* next_head = _next->_head;
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3008
  if (!next_head->is_CountedLoop()) {
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3009
    return;
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3010
  }
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3011
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3012
  CountedLoopNode* main_head = next_head->as_CountedLoop();
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3013
  if (!main_head->is_main_loop()) {
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3014
    return;
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3015
  }
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3016
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3017
  assert(locate_pre_from_main(main_head) == cl, "bad main loop");
49487
bde392011cd8 8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents: 48603
diff changeset
  3018
  Node* main_iff = main_head->skip_predicates()->in(0);
31133
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3019
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3020
  // Remove the Opaque1Node of the pre loop and make it execute all iterations
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3021
  phase->_igvn.replace_input_of(pre_cmp, 2, pre_cmp->in(2)->in(2));
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3022
  // Remove the Opaque1Node of the main loop so it can be optimized out
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3023
  Node* main_cmp = main_iff->in(1)->in(1);
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3024
  assert(main_cmp->in(2)->Opcode() == Op_Opaque1, "main loop has no opaque node?");
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3025
  phase->_igvn.replace_input_of(main_cmp, 2, main_cmp->in(2)->in(1));
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3026
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3027
54700
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3028
//------------------------------do_remove_empty_loop---------------------------
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3029
// We always attempt remove empty loops.   The approach is to replace the trip
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3030
// counter with the value it will have on the last iteration.  This will break
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3031
// the loop.
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3032
bool IdealLoopTree::do_remove_empty_loop(PhaseIdealLoop *phase) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3033
  // Minimum size must be empty loop
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3034
  if (_body.size() > EMPTY_LOOP_SIZE) {
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  3035
    return false;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3036
  }
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3037
  if (!_head->is_CountedLoop()) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3038
    return false;   // Dead loop
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3039
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3040
  CountedLoopNode *cl = _head->as_CountedLoop();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3041
  if (!cl->is_valid_counted_loop()) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3042
    return false;   // Malformed loop
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3043
  }
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3044
  if (!phase->is_member(this, phase->get_ctrl(cl->loopexit()->in(CountedLoopEndNode::TestValue)))) {
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3045
    return false;   // Infinite loop
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3046
  }
31133
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3047
  if (cl->is_pre_loop()) {
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3048
    // If the loop we are removing is a pre-loop then the main and post loop
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3049
    // can be removed as well.
31133
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3050
    remove_main_post_loops(cl, phase);
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3051
  }
3e7542b42a61 8085832: Optimize main and post loop out when pre loop is found empty
roland
parents: 31131
diff changeset
  3052
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3053
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3054
  // Ensure only one phi which is the iv.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3055
  Node* iv = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3056
  for (DUIterator_Fast imax, i = cl->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3057
    Node* n = cl->fast_out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3058
    if (n->Opcode() == Op_Phi) {
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3059
      assert(iv == NULL, "Too many phis");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3060
      iv = n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3061
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3062
  }
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3063
  assert(iv == cl->phi(), "Wrong phi");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3064
#endif
8870
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3065
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3066
  // main and post loops have explicitly created zero trip guard
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3067
  bool needs_guard = !cl->is_main_loop() && !cl->is_post_loop();
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3068
  if (needs_guard) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3069
    // Skip guard if values not overlap.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3070
    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
  3071
    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
  3072
    int  stride_con = cl->stride_con();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3073
    if (stride_con > 0) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3074
      needs_guard = (init_t->_hi >= limit_t->_lo);
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3075
    } else {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3076
      needs_guard = (init_t->_lo <= limit_t->_hi);
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3077
    }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3078
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3079
  if (needs_guard) {
8870
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3080
    // Check for an obvious zero trip guard.
50623
5209d8a6303e 8203197: C2: consider all paths in loop body for loop predication
roland
parents: 50561
diff changeset
  3081
    Node* inctrl = PhaseIdealLoop::skip_all_loop_predicates(cl->skip_predicates());
35838
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3082
    if (inctrl->Opcode() == Op_IfTrue || inctrl->Opcode() == Op_IfFalse) {
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3083
      bool maybe_swapped = (inctrl->Opcode() == Op_IfFalse);
8870
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3084
      // The test should look like just the backedge of a CountedLoop
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3085
      Node* iff = inctrl->in(0);
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3086
      if (iff->is_If()) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3087
        Node* bol = iff->in(1);
35838
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3088
        if (bol->is_Bool()) {
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3089
          BoolTest test = bol->as_Bool()->_test;
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3090
          if (maybe_swapped) {
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3091
            test._test = test.commute();
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3092
            test._test = test.negate();
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3093
          }
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3094
          if (test._test == cl->loopexit()->test_trip()) {
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3095
            Node* cmp = bol->in(1);
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3096
            int init_idx = maybe_swapped ? 2 : 1;
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3097
            int limit_idx = maybe_swapped ? 1 : 2;
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3098
            if (cmp->is_Cmp() && cmp->in(init_idx) == cl->init_trip() && cmp->in(limit_idx) == cl->limit()) {
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3099
              needs_guard = false;
a6e58eeeaa2e 8137049: Code quality: reducing an trivial integer loop does not produce an optimal code
roland
parents: 35759
diff changeset
  3100
            }
8870
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3101
          }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3102
        }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3103
      }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3104
    }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3105
  }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3106
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3107
#ifndef PRODUCT
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3108
  if (PrintOpto) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3109
    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
  3110
    this->dump_head();
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3111
  } else if (TraceLoopOpts) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3112
    tty->print("Empty with%s zero trip guard   ", needs_guard ? "out" : "");
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3113
    this->dump_head();
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3114
  }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3115
#endif
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3116
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3117
  if (needs_guard) {
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3118
    // Peel the loop to ensure there's a zero trip guard
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3119
    Node_List old_new;
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3120
    phase->do_peeling(this, old_new);
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3121
  }
119881dc9d0b 7024475: loop doesn't terminate when compiled
never
parents: 8732
diff changeset
  3122
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3123
  // Replace the phi at loop head with the final value of the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3124
  // iteration.  Then the CountedLoopEnd will collapse (backedge never
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3125
  // taken) and all loop-invariant uses of the exit values will be correct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3126
  Node *phi = cl->phi();
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  3127
  Node *exact_limit = phase->exact_limit(this);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  3128
  if (exact_limit != cl->limit()) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  3129
    // 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
  3130
    Node* cmp = cl->loopexit()->cmp_node();
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  3131
    assert(cl->limit() == cmp->in(2), "sanity");
58589
45a085445a8c 8231988: Unexpected test result caused by C2 IdealLoopTree::do_remove_empty_loop
fyang
parents: 58354
diff changeset
  3132
    // Duplicate cmp node if it has other users
45a085445a8c 8231988: Unexpected test result caused by C2 IdealLoopTree::do_remove_empty_loop
fyang
parents: 58354
diff changeset
  3133
    if (cmp->outcnt() > 1) {
45a085445a8c 8231988: Unexpected test result caused by C2 IdealLoopTree::do_remove_empty_loop
fyang
parents: 58354
diff changeset
  3134
      cmp = cmp->clone();
45a085445a8c 8231988: Unexpected test result caused by C2 IdealLoopTree::do_remove_empty_loop
fyang
parents: 58354
diff changeset
  3135
      cmp = phase->_igvn.register_new_node_with_optimizer(cmp);
45a085445a8c 8231988: Unexpected test result caused by C2 IdealLoopTree::do_remove_empty_loop
fyang
parents: 58354
diff changeset
  3136
      BoolNode *bol = cl->loopexit()->in(CountedLoopEndNode::TestValue)->as_Bool();
45a085445a8c 8231988: Unexpected test result caused by C2 IdealLoopTree::do_remove_empty_loop
fyang
parents: 58354
diff changeset
  3137
      phase->_igvn.replace_input_of(bol, 1, cmp); // put bol on worklist
45a085445a8c 8231988: Unexpected test result caused by C2 IdealLoopTree::do_remove_empty_loop
fyang
parents: 58354
diff changeset
  3138
    }
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  3139
    phase->_igvn._worklist.push(cmp->in(2)); // put limit on worklist
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 10538
diff changeset
  3140
    phase->_igvn.replace_input_of(cmp, 2, exact_limit); // put cmp on worklist
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  3141
  }
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  3142
  // Note: the final value after increment should not overflow since
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9434
diff changeset
  3143
  // counted loop has limit check predicate.
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3144
  Node *final = new SubINode(exact_limit, cl->stride());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3145
  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
  3146
  phase->_igvn.replace_node(phi,final);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3147
  phase->C->set_major_progress();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3148
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3150
54700
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3151
//------------------------------do_one_iteration_loop--------------------------
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3152
// Convert one iteration loop into normal code.
54700
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3153
bool IdealLoopTree::do_one_iteration_loop(PhaseIdealLoop *phase) {
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3154
  if (!_head->as_Loop()->is_valid_counted_loop()) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3155
    return false; // Only for counted loop
54700
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3156
  }
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3157
  CountedLoopNode *cl = _head->as_CountedLoop();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3158
  if (!cl->has_exact_trip_count() || cl->trip_count() != 1) {
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3159
    return false;
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3160
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3161
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3162
#ifndef PRODUCT
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3163
  if (TraceLoopOpts) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3164
    tty->print("OneIteration ");
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3165
    this->dump_head();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3166
  }
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3167
#endif
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3168
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3169
  Node *init_n = cl->init_trip();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3170
#ifdef ASSERT
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3171
  // Loop boundaries should be constant since trip count is exact.
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3172
  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
  3173
#endif
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3174
  // 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
  3175
  // Then the CountedLoopEnd will collapse (backedge will not be taken)
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3176
  // 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
  3177
  phase->_igvn.replace_node(cl->phi(), cl->init_trip());
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3178
  phase->C->set_major_progress();
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3179
  return true;
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3180
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3182
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3183
//------------------------------iteration_split_impl---------------------------
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3184
bool IdealLoopTree::iteration_split_impl(PhaseIdealLoop *phase, Node_List &old_new) {
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
  3185
  // Compute loop trip count if possible.
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39429
diff changeset
  3186
  compute_trip_count(phase);
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3187
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3188
  // Convert one iteration loop into normal code.
54700
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3189
  if (do_one_iteration_loop(phase)) {
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3190
    return true;
54700
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3191
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3192
  // Check and remove empty loops (spam micro-benchmarks)
54700
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3193
  if (do_remove_empty_loop(phase)) {
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  3194
    return true;  // Here we removed an empty loop
54700
d6f55ea4e325 8223139: Rename mandatory policy-do routines.
phedlin
parents: 54699
diff changeset
  3195
  }
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3196
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3197
  AutoNodeBudget node_budget(phase);
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3198
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3199
  // Non-counted loops may be peeled; exactly 1 iteration is peeled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3200
  // This removes loop-invariant tests (usually null checks).
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3201
  if (!_head->is_CountedLoop()) { // Non-counted loop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3202
    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
  3203
      // 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
  3204
      return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3205
    }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3206
    if (policy_peeling(phase)) {    // Should we peel?
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 34164
diff changeset
  3207
      if (PrintOpto) { tty->print_cr("should_peel"); }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3208
      phase->do_peeling(this, old_new);
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3209
    } else if (policy_unswitching(phase)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3210
      phase->do_unswitching(this, old_new);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3211
    }
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  3212
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3213
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3214
  CountedLoopNode *cl = _head->as_CountedLoop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3215
10263
fa58671dde31 7077439: Possible reference through NULL in loopPredicate.cpp:726
kvn
parents: 10258
diff changeset
  3216
  if (!cl->is_valid_counted_loop()) return true; // Ignore various kinds of broken loops
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3218
  // Do nothing special to pre- and post- loops
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3219
  if (cl->is_pre_loop() || cl->is_post_loop()) return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3220
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3221
  // Compute loop trip count from profile data
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3222
  compute_profile_trip_cnt(phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3224
  // Before attempting fancy unrolling, RCE or alignment, see if we want
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3225
  // to completely unroll this loop or do loop unswitching.
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3226
  if (cl->is_normal_loop()) {
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3227
    if (policy_unswitching(phase)) {
2876
b8ebc85d0b47 6837146: Should perform unswitch before maximally unroll in loop transformation
cfang
parents: 2131
diff changeset
  3228
      phase->do_unswitching(this, old_new);
b8ebc85d0b47 6837146: Should perform unswitch before maximally unroll in loop transformation
cfang
parents: 2131
diff changeset
  3229
      return true;
b8ebc85d0b47 6837146: Should perform unswitch before maximally unroll in loop transformation
cfang
parents: 2131
diff changeset
  3230
    }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3231
    if (policy_maximally_unroll(phase)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3232
      // Here we did some unrolling and peeling.  Eventually we will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3233
      // completely unroll this loop and it will no longer be a loop.
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3234
      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
  3235
      return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3236
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3238
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3239
  uint est_peeling = estimate_peeling(phase);
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3240
  bool should_peel = 0 < est_peeling;
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3241
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3242
  // Counted loops may be peeled, may need some iterations run up
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3243
  // front for RCE, and may want to align loop refs to a cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3244
  // line.  Thus we clone a full loop up front whose trip count is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3245
  // at least 1 (if peeling), but may be several more.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3247
  // The main loop will start cache-line aligned with at least 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3248
  // iteration of the unrolled body (zero-trip test required) and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3249
  // will have some range checks removed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3251
  // A post-loop will finish any odd iterations (leftover after
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3252
  // unrolling), plus any needed for RCE purposes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3254
  bool should_unroll = policy_unroll(phase);
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3255
  bool should_rce    = policy_range_check(phase);
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3256
  // TODO: Remove align -- not used.
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3257
  bool should_align  = policy_align(phase);
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3258
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3259
  // If not RCE'ing  (iteration splitting) or Aligning, then we  do not need a
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3260
  // pre-loop.  We may still need to peel an initial iteration but we will not
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3261
  // be needing an unknown number of pre-iterations.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3262
  //
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3263
  // Basically, if may_rce_align reports FALSE first time through, we will not
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3264
  // be able to later do RCE or Aligning on this loop.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3265
  bool may_rce_align = !policy_peel_only(phase) || should_rce || should_align;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3266
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3267
  // If we have any of these conditions (RCE, alignment, unrolling) met, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3268
  // we switch to the pre-/main-/post-loop model.  This model also covers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3269
  // peeling.
9121
704ece791737 7004555: Add new policy for one iteration loops
kvn
parents: 9109
diff changeset
  3270
  if (should_rce || should_align || should_unroll) {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3271
    if (cl->is_normal_loop()) { // Convert to 'pre/main/post' loops
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3272
      uint estimate = est_loop_clone_sz(3);
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3273
      if (!phase->may_require_nodes(estimate)) {
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3274
        return false;
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3275
      }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3276
      phase->insert_pre_post_loops(this, old_new, !may_rce_align);
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3277
    }
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3278
    // Adjust the pre- and main-loop limits to let the pre and  post loops run
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3279
    // with full checks, but the main-loop with no checks.  Remove said checks
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3280
    // from the main body.
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3281
    if (should_rce) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3282
      if (phase->do_range_check(this, old_new) != 0) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3283
        cl->mark_has_range_checks();
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3284
      }
38129
7adeefaa6d1d 8154763: Crash with "assert(RangeCheckElimination)" if RangeCheckElimination is disabled
thartmann
parents: 37292
diff changeset
  3285
    } else if (PostLoopMultiversioning) {
37292
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3286
      phase->has_range_checks(this);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3287
    }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3288
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3289
    if (should_unroll && !should_peel && PostLoopMultiversioning) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3290
      // Try to setup multiversioning on main loops before they are unrolled
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3291
      if (cl->is_main_loop() && (cl->unrolled_count() == 1)) {
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3292
        phase->insert_scalar_rced_post_loop(this, old_new);
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3293
      }
64f6ae06310e 8151573: Multiversioning for range check elimination
mcberg
parents: 37287
diff changeset
  3294
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3296
    // Double loop body for unrolling.  Adjust the minimum-trip test (will do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3297
    // twice as many iterations as before) and the main body limit (only do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3298
    // an even number of trips).  If we are peeling, we might enable some RCE
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3299
    // and we'd rather unroll the post-RCE'd loop SO... do not unroll if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3300
    // peeling.
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  3301
    if (should_unroll && !should_peel) {
36066
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  3302
      if (SuperWordLoopUnrollAnalysis) {
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  3303
        phase->insert_vector_post_loop(this, old_new);
60ce66ce3c76 8149421: Vectorized Post Loops
mcberg
parents: 35838
diff changeset
  3304
      }
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  3305
      phase->do_unroll(this, old_new, true);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 29344
diff changeset
  3306
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3308
    // Adjust the pre-loop limits to align the main body iterations.
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3309
    if (should_align) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3310
      Unimplemented();
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3311
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
  } else {                      // Else we have an unchanged counted loop
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3313
    if (should_peel) {          // Might want to peel but do nothing else
55150
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3314
      if (phase->may_require_nodes(est_peeling)) {
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3315
        phase->do_peeling(this, old_new);
ba171f871932 8223363: Bad node estimate assertion failure
phedlin
parents: 54705
diff changeset
  3316
      }
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3317
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3318
  }
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  3319
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3323
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3324
//------------------------------iteration_split--------------------------------
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3325
bool IdealLoopTree::iteration_split(PhaseIdealLoop* phase, Node_List &old_new) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3326
  // Recursively iteration split nested loops
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3327
  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
  3328
    return false;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3329
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3330
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
  // Clean out prior deadwood
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3332
  DCE_loop_body();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
  // Look for loop-exit tests with my 50/50 guesses from the Parsing stage.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3335
  // Replace with a 1-in-10 exit guess.
54699
1a5305f51bfd 8223138: Small clean-up in loop-tree support.
phedlin
parents: 54698
diff changeset
  3336
  if (!is_root() && is_loop()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3337
    adjust_loop_exit_prob(phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3339
54699
1a5305f51bfd 8223138: Small clean-up in loop-tree support.
phedlin
parents: 54698
diff changeset
  3340
  // Unrolling, RCE and peeling efforts, iff innermost loop.
1a5305f51bfd 8223138: Small clean-up in loop-tree support.
phedlin
parents: 54698
diff changeset
  3341
  if (_allow_optimizations && is_innermost()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3342
    if (!_has_call) {
54699
1a5305f51bfd 8223138: Small clean-up in loop-tree support.
phedlin
parents: 54698
diff changeset
  3343
      if (!iteration_split_impl(phase, old_new)) {
1a5305f51bfd 8223138: Small clean-up in loop-tree support.
phedlin
parents: 54698
diff changeset
  3344
        return false;
1a5305f51bfd 8223138: Small clean-up in loop-tree support.
phedlin
parents: 54698
diff changeset
  3345
      }
54705
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3346
    } else {
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3347
      AutoNodeBudget node_budget(phase);
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3348
      if (policy_unswitching(phase)) {
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3349
        phase->do_unswitching(this, old_new);
fc7627bf4b01 8216137: assert failed: Live node limit exceeded.
phedlin
parents: 54703
diff changeset
  3350
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3351
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3352
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3353
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3354
  // 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
  3355
  // trip counter when there was no major reshaping.
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  3356
  phase->reorg_offsets(this);
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 7397
diff changeset
  3357
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3358
  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
  3359
    return false;
54703
e09f3ad6147d 8223142: Clean-up WS and CB.
phedlin
parents: 54702
diff changeset
  3360
  }
1433
ee60bd139c07 6743188: incomplete fix for 6700047 C2 failed in idom_no_update
never
parents: 1432
diff changeset
  3361
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3362
}
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  3363
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 3261
diff changeset
  3364
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  3365
//=============================================================================
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3366
// Process all the loops in the loop tree and replace any fill
35574
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3367
// patterns with an intrinsic version.
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3368
bool PhaseIdealLoop::do_intrinsify_fill() {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3369
  bool changed = false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3370
  for (LoopTreeIterator iter(_ltree_root); !iter.done(); iter.next()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3371
    IdealLoopTree* lpt = iter.current();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3372
    changed |= intrinsify_fill(lpt);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3373
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3374
  return changed;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3375
}
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3376
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3377
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3378
// Examine an inner loop looking for a a single store of an invariant
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3379
// value in a unit stride loop,
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3380
bool PhaseIdealLoop::match_fill_loop(IdealLoopTree* lpt, Node*& store, Node*& store_value,
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3381
                                     Node*& shift, Node*& con) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3382
  const char* msg = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3383
  Node* msg_node = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3384
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3385
  store_value = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3386
  con = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3387
  shift = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3388
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3389
  // Process the loop looking for stores.  If there are multiple
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3390
  // stores or extra control flow give at this point.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3391
  CountedLoopNode* head = lpt->_head->as_CountedLoop();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3392
  for (uint i = 0; msg == NULL && i < lpt->_body.size(); i++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3393
    Node* n = lpt->_body.at(i);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3394
    if (n->outcnt() == 0) continue; // Ignore dead
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3395
    if (n->is_Store()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3396
      if (store != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3397
        msg = "multiple stores";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3398
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3399
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3400
      int opc = n->Opcode();
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13967
diff changeset
  3401
      if (opc == Op_StoreP || opc == Op_StoreN || opc == Op_StoreNKlass || opc == Op_StoreCM) {
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3402
        msg = "oop fills not handled";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3403
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3404
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3405
      Node* value = n->in(MemNode::ValueIn);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3406
      if (!lpt->is_invariant(value)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3407
        msg  = "variant store value";
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  3408
      } 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
  3409
        msg = "not array address";
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3410
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3411
      store = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3412
      store_value = value;
48603
e5da6c246176 8194992: Null pointer dereference in MultiNode::proj_out related to loopexit()
dlong
parents: 48595
diff changeset
  3413
    } else if (n->is_If() && n != head->loopexit_or_null()) {
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3414
      msg = "extra control flow";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3415
      msg_node = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3416
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3417
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3418
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3419
  if (store == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3420
    // No store in loop
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3421
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3422
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3423
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3424
  if (msg == NULL && head->stride_con() != 1) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3425
    // could handle negative strides too
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3426
    if (head->stride_con() < 0) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3427
      msg = "negative stride";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3428
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3429
      msg = "non-unit stride";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3430
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3431
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3432
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3433
  if (msg == NULL && !store->in(MemNode::Address)->is_AddP()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3434
    msg = "can't handle store address";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3435
    msg_node = store->in(MemNode::Address);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3436
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3437
6739
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3438
  if (msg == NULL &&
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3439
      (!store->in(MemNode::Memory)->is_Phi() ||
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3440
       store->in(MemNode::Memory)->in(LoopNode::LoopBackControl) != store)) {
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3441
    msg = "store memory isn't proper phi";
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3442
    msg_node = store->in(MemNode::Memory);
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3443
  }
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3444
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3445
  // Make sure there is an appropriate fill routine
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3446
  BasicType t = store->as_Mem()->memory_type();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3447
  const char* fill_name;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3448
  if (msg == NULL &&
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3449
      StubRoutines::select_fill_function(t, false, fill_name) == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3450
    msg = "unsupported store";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3451
    msg_node = store;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3452
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3453
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3454
  if (msg != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3455
#ifndef PRODUCT
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3456
    if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3457
      tty->print_cr("not fill intrinsic candidate: %s", msg);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3458
      if (msg_node != NULL) msg_node->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3459
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3460
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3461
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3462
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3463
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3464
  // Make sure the address expression can be handled.  It should be
35574
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3465
  // head->phi * elsize + con.  head->phi might have a ConvI2L(CastII()).
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3466
  Node* elements[4];
35574
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3467
  Node* cast = NULL;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3468
  Node* conv = NULL;
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  3469
  bool found_index = false;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3470
  int count = store->in(MemNode::Address)->as_AddP()->unpack_offsets(elements, ARRAY_SIZE(elements));
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3471
  for (int e = 0; e < count; e++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3472
    Node* n = elements[e];
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3473
    if (n->is_Con() && con == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3474
      con = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3475
    } else if (n->Opcode() == Op_LShiftX && shift == NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3476
      Node* value = n->in(1);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3477
#ifdef _LP64
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3478
      if (value->Opcode() == Op_ConvI2L) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3479
        conv = value;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3480
        value = value->in(1);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3481
      }
35574
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3482
      if (value->Opcode() == Op_CastII &&
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3483
          value->as_CastII()->has_range_check()) {
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3484
        // Skip range check dependent CastII nodes
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3485
        cast = value;
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3486
        value = value->in(1);
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3487
      }
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3488
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3489
      if (value != head->phi()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3490
        msg = "unhandled shift in address";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3491
      } else {
9104
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  3492
        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
  3493
          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
  3494
        } else {
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  3495
          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
  3496
          shift = n;
85edf8ec98b2 7026957: assert(type2aelembytes(store->as_Mem()->memory_type(), true) == 1 << shift->in(2)->get_int()) failed
never
parents: 9101
diff changeset
  3497
        }
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3498
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3499
    } else if (n->Opcode() == Op_ConvI2L && conv == NULL) {
35574
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3500
      conv = n;
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3501
      n = n->in(1);
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3502
      if (n->Opcode() == Op_CastII &&
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3503
          n->as_CastII()->has_range_check()) {
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3504
        // Skip range check dependent CastII nodes
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3505
        cast = n;
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3506
        n = n->in(1);
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3507
      }
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3508
      if (n == head->phi()) {
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  3509
        found_index = true;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3510
      } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3511
        msg = "unhandled input to ConvI2L";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3512
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3513
    } else if (n == head->phi()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3514
      // no shift, check below for allowed cases
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  3515
      found_index = true;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3516
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3517
      msg = "unhandled node in address";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3518
      msg_node = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3519
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3520
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3521
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3522
  if (count == -1) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3523
    msg = "malformed address expression";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3524
    msg_node = store;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3525
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3526
6455
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  3527
  if (!found_index) {
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  3528
    msg = "missing use of index";
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  3529
  }
4a8142e5f75f 6982533: Crash in ~StubRoutines::jbyte_fill with AggressiveOpts enabled
never
parents: 6433
diff changeset
  3530
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3531
  // byte sized items won't have a shift
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3532
  if (msg == NULL && shift == NULL && t != T_BYTE && t != T_BOOLEAN) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3533
    msg = "can't find shift";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3534
    msg_node = store;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3535
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3536
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3537
  if (msg != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3538
#ifndef PRODUCT
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3539
    if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3540
      tty->print_cr("not fill intrinsic: %s", msg);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3541
      if (msg_node != NULL) msg_node->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3542
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3543
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3544
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3545
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3546
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3547
  // No make sure all the other nodes in the loop can be handled
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3548
  VectorSet ok(Thread::current()->resource_area());
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3549
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3550
  // store related values are ok
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3551
  ok.set(store->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3552
  ok.set(store->in(MemNode::Memory)->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3553
16380
d1e1ca068275 8009181: [parfait] Null pointer deference in hotspot/src/share/vm/opto/loopTransform.cpp
morris
parents: 15919
diff changeset
  3554
  CountedLoopEndNode* loop_exit = head->loopexit();
d1e1ca068275 8009181: [parfait] Null pointer deference in hotspot/src/share/vm/opto/loopTransform.cpp
morris
parents: 15919
diff changeset
  3555
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3556
  // Loop structure is ok
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3557
  ok.set(head->_idx);
16380
d1e1ca068275 8009181: [parfait] Null pointer deference in hotspot/src/share/vm/opto/loopTransform.cpp
morris
parents: 15919
diff changeset
  3558
  ok.set(loop_exit->_idx);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3559
  ok.set(head->phi()->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3560
  ok.set(head->incr()->_idx);
16380
d1e1ca068275 8009181: [parfait] Null pointer deference in hotspot/src/share/vm/opto/loopTransform.cpp
morris
parents: 15919
diff changeset
  3561
  ok.set(loop_exit->cmp_node()->_idx);
d1e1ca068275 8009181: [parfait] Null pointer deference in hotspot/src/share/vm/opto/loopTransform.cpp
morris
parents: 15919
diff changeset
  3562
  ok.set(loop_exit->in(1)->_idx);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3563
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3564
  // Address elements are ok
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3565
  if (con)   ok.set(con->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3566
  if (shift) ok.set(shift->_idx);
35574
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35155
diff changeset
  3567
  if (cast)  ok.set(cast->_idx);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3568
  if (conv)  ok.set(conv->_idx);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3569
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3570
  for (uint i = 0; msg == NULL && i < lpt->_body.size(); i++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3571
    Node* n = lpt->_body.at(i);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3572
    if (n->outcnt() == 0) continue; // Ignore dead
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3573
    if (ok.test(n->_idx)) continue;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3574
    // Backedge projection is ok
16380
d1e1ca068275 8009181: [parfait] Null pointer deference in hotspot/src/share/vm/opto/loopTransform.cpp
morris
parents: 15919
diff changeset
  3575
    if (n->is_IfTrue() && n->in(0) == loop_exit) continue;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3576
    if (!n->is_AddP()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3577
      msg = "unhandled node";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3578
      msg_node = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3579
      break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3580
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3581
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3582
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3583
  // Make sure no unexpected values are used outside the loop
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3584
  for (uint i = 0; msg == NULL && i < lpt->_body.size(); i++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3585
    Node* n = lpt->_body.at(i);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3586
    // These values can be replaced with other nodes if they are used
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3587
    // outside the loop.
16380
d1e1ca068275 8009181: [parfait] Null pointer deference in hotspot/src/share/vm/opto/loopTransform.cpp
morris
parents: 15919
diff changeset
  3588
    if (n == store || n == loop_exit || n == head->incr() || n == store->in(MemNode::Memory)) continue;
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3589
    for (SimpleDUIterator iter(n); iter.has_next(); iter.next()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3590
      Node* use = iter.get();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3591
      if (!lpt->_body.contains(use)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3592
        msg = "node is used outside loop";
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3593
        // lpt->_body.dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3594
        msg_node = n;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3595
        break;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3596
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3597
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3598
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3599
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3600
#ifdef ASSERT
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3601
  if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3602
    if (msg != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3603
      tty->print_cr("no fill intrinsic: %s", msg);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3604
      if (msg_node != NULL) msg_node->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3605
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3606
      tty->print_cr("fill intrinsic for:");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3607
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3608
    store->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3609
    if (Verbose) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3610
      lpt->_body.dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3611
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3612
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3613
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3614
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3615
  return msg == NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3616
}
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3617
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3618
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3619
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3620
bool PhaseIdealLoop::intrinsify_fill(IdealLoopTree* lpt) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3621
  // Only for counted inner loops
54699
1a5305f51bfd 8223138: Small clean-up in loop-tree support.
phedlin
parents: 54698
diff changeset
  3622
  if (!lpt->is_counted() || !lpt->is_innermost()) {
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3623
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3624
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3625
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3626
  // Must have constant stride
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3627
  CountedLoopNode* head = lpt->_head->as_CountedLoop();
10263
fa58671dde31 7077439: Possible reference through NULL in loopPredicate.cpp:726
kvn
parents: 10258
diff changeset
  3628
  if (!head->is_valid_counted_loop() || !head->is_normal_loop()) {
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3629
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3630
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3631
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3632
  head->verify_strip_mined(1);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3633
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3634
  // Check that the body only contains a store of a loop invariant
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3635
  // value that is indexed by the loop phi.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3636
  Node* store = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3637
  Node* store_value = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3638
  Node* shift = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3639
  Node* offset = NULL;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3640
  if (!match_fill_loop(lpt, store, store_value, shift, offset)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3641
    return false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3642
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3643
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 48145
diff changeset
  3644
  Node* exit = head->loopexit()->proj_out_or_null(0);
44314
30ae899b9eca 8175345: Reported null pointer dereference defect groups
rraghavan
parents: 42622
diff changeset
  3645
  if (exit == NULL) {
30ae899b9eca 8175345: Reported null pointer dereference defect groups
rraghavan
parents: 42622
diff changeset
  3646
    return false;
30ae899b9eca 8175345: Reported null pointer dereference defect groups
rraghavan
parents: 42622
diff changeset
  3647
  }
30ae899b9eca 8175345: Reported null pointer dereference defect groups
rraghavan
parents: 42622
diff changeset
  3648
9101
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  3649
#ifndef PRODUCT
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  3650
  if (TraceLoopOpts) {
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  3651
    tty->print("ArrayFill    ");
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  3652
    lpt->dump_head();
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  3653
  }
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  3654
#endif
ff58f9a8e31c 7004535: Clone loop predicate during loop unswitch
kvn
parents: 8884
diff changeset
  3655
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3656
  // Now replace the whole loop body by a call to a fill routine that
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3657
  // covers the same region as the loop.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3658
  Node* base = store->in(MemNode::Address)->as_AddP()->in(AddPNode::Base);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3659
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3660
  // Build an expression for the beginning of the copy region
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3661
  Node* index = head->init_trip();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3662
#ifdef _LP64
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3663
  index = new ConvI2LNode(index);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3664
  _igvn.register_new_node_with_optimizer(index);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3665
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3666
  if (shift != NULL) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3667
    // byte arrays don't require a shift but others do.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3668
    index = new LShiftXNode(index, shift->in(2));
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3669
    _igvn.register_new_node_with_optimizer(index);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3670
  }
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3671
  index = new AddPNode(base, base, index);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3672
  _igvn.register_new_node_with_optimizer(index);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3673
  Node* from = new AddPNode(base, index, offset);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3674
  _igvn.register_new_node_with_optimizer(from);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3675
  // Compute the number of elements to copy
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3676
  Node* len = new SubINode(head->limit(), head->init_trip());
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3677
  _igvn.register_new_node_with_optimizer(len);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3678
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3679
  BasicType t = store->as_Mem()->memory_type();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3680
  bool aligned = false;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3681
  if (offset != NULL && head->init_trip()->is_Con()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3682
    int element_size = type2aelembytes(t);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3683
    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
  3684
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3685
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3686
  // Build a call to the fill routine
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3687
  const char* fill_name;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3688
  address fill = StubRoutines::select_fill_function(t, aligned, fill_name);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3689
  assert(fill != NULL, "what?");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3690
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3691
  // Convert float/double to int/long for fill routines
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3692
  if (t == T_FLOAT) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3693
    store_value = new MoveF2INode(store_value);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3694
    _igvn.register_new_node_with_optimizer(store_value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3695
  } else if (t == T_DOUBLE) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3696
    store_value = new MoveD2LNode(store_value);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3697
    _igvn.register_new_node_with_optimizer(store_value);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3698
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3699
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3700
  Node* mem_phi = store->in(MemNode::Memory);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3701
  Node* result_ctrl;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3702
  Node* result_mem;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3703
  const TypeFunc* call_type = OptoRuntime::array_fill_Type();
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3704
  CallLeafNode *call = new CallLeafNoFPNode(call_type, fill,
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3705
                                            fill_name, TypeAryPtr::get_array_body_type(t));
22834
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 19283
diff changeset
  3706
  uint cnt = 0;
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 19283
diff changeset
  3707
  call->init_req(TypeFunc::Parms + cnt++, from);
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 19283
diff changeset
  3708
  call->init_req(TypeFunc::Parms + cnt++, store_value);
6770
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  3709
#ifdef _LP64
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3710
  len = new ConvI2LNode(len);
6770
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  3711
  _igvn.register_new_node_with_optimizer(len);
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  3712
#endif
22834
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 19283
diff changeset
  3713
  call->init_req(TypeFunc::Parms + cnt++, len);
6770
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  3714
#ifdef _LP64
22834
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 19283
diff changeset
  3715
  call->init_req(TypeFunc::Parms + cnt++, C->top());
6770
a67870aaedb3 6980792: Crash "exception happened outside interpreter, nmethods and vtable stubs (1)"
never
parents: 6739
diff changeset
  3716
#endif
22834
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 19283
diff changeset
  3717
  call->init_req(TypeFunc::Control,   head->init_control());
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 19283
diff changeset
  3718
  call->init_req(TypeFunc::I_O,       C->top());       // Does no I/O.
3e2df6a4a28c 8024342: PPC64 (part 111): Support for C calling conventions that require 64-bit ints.
goetz
parents: 19283
diff changeset
  3719
  call->init_req(TypeFunc::Memory,    mem_phi->in(LoopNode::EntryControl));
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 48145
diff changeset
  3720
  call->init_req(TypeFunc::ReturnAdr, C->start()->proj_out_or_null(TypeFunc::ReturnAdr));
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 48145
diff changeset
  3721
  call->init_req(TypeFunc::FramePtr,  C->start()->proj_out_or_null(TypeFunc::FramePtr));
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3722
  _igvn.register_new_node_with_optimizer(call);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3723
  result_ctrl = new ProjNode(call,TypeFunc::Control);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3724
  _igvn.register_new_node_with_optimizer(result_ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24020
diff changeset
  3725
  result_mem = new ProjNode(call,TypeFunc::Memory);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3726
  _igvn.register_new_node_with_optimizer(result_mem);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3727
14144
effbc094884c 7198606: Improve VM optimization
kvn
parents: 13524
diff changeset
  3728
/* Disable following optimization until proper fix (add missing checks).
effbc094884c 7198606: Improve VM optimization
kvn
parents: 13524
diff changeset
  3729
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3730
  // If this fill is tightly coupled to an allocation and overwrites
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3731
  // the whole body, allow it to take over the zeroing.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3732
  AllocateNode* alloc = AllocateNode::Ideal_allocation(base, this);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3733
  if (alloc != NULL && alloc->is_AllocateArray()) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3734
    Node* length = alloc->as_AllocateArray()->Ideal_length();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3735
    if (head->limit() == length &&
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3736
        head->init_trip() == _igvn.intcon(0)) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3737
      if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3738
        tty->print_cr("Eliminated zeroing in allocation");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3739
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3740
      alloc->maybe_set_complete(&_igvn);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3741
    } else {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3742
#ifdef ASSERT
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3743
      if (TraceOptimizeFill) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3744
        tty->print_cr("filling array but bounds don't match");
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3745
        alloc->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3746
        head->init_trip()->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3747
        head->limit()->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3748
        length->dump();
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3749
      }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3750
#endif
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3751
    }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3752
  }
14144
effbc094884c 7198606: Improve VM optimization
kvn
parents: 13524
diff changeset
  3753
*/
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3754
48145
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3755
  if (head->is_strip_mined()) {
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3756
    // Inner strip mined loop goes away so get rid of outer strip
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3757
    // mined loop
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3758
    Node* outer_sfpt = head->outer_safepoint();
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3759
    Node* in = outer_sfpt->in(0);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3760
    Node* outer_out = head->outer_loop_exit();
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3761
    lazy_replace(outer_out, in);
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3762
    _igvn.replace_input_of(outer_sfpt, 0, C->top());
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3763
  }
f913f6dba2d3 8186027: C2: loop strip mining
roland
parents: 47765
diff changeset
  3764
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3765
  // Redirect the old control and memory edges that are outside the loop.
6739
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3766
  // 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
  3767
  // 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
  3768
  // result_mem.
750998abc20f 6984979: OptimizeFill misses some cases with an odd memory graph
never
parents: 6455
diff changeset
  3769
  _igvn.replace_node(store->in(MemNode::Memory), result_mem);
35759
85d3873f87b4 8147645: get_ctrl_no_update() code is wrong
roland
parents: 35574
diff changeset
  3770
  lazy_replace(exit, result_ctrl);
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3771
  _igvn.replace_node(store, result_mem);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3772
  // Any uses the increment outside of the loop become the loop limit.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3773
  _igvn.replace_node(head->incr(), head->limit());
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3774
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3775
  // Disconnect the head from the loop.
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3776
  for (uint i = 0; i < lpt->_body.size(); i++) {
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3777
    Node* n = lpt->_body.at(i);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3778
    _igvn.replace_node(n, C->top());
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3779
  }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3780
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3781
  return true;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5901
diff changeset
  3782
}