--- a/src/hotspot/share/opto/loopopts.cpp Tue Jan 15 09:44:18 2019 +0100
+++ b/src/hotspot/share/opto/loopopts.cpp Tue Dec 18 10:12:28 2018 +0100
@@ -1024,8 +1024,7 @@
}
}
- // Use same limit as split_if_with_blocks_post
- if( C->live_nodes() > 35000 ) return n; // Method too big
+ if (must_throttle_split_if()) return n;
// Split 'n' through the merge point if it is profitable
Node *phi = split_thru_phi( n, n_blk, policy );
@@ -1143,9 +1142,10 @@
return true;
}
-bool PhaseIdealLoop::can_split_if(Node *n_ctrl) {
- if (C->live_nodes() > 35000) {
- return false; // Method too big
+
+bool PhaseIdealLoop::can_split_if(Node* n_ctrl) {
+ if (must_throttle_split_if()) {
+ return false;
}
// Do not do 'split-if' if irreducible loops are present.
@@ -1462,12 +1462,13 @@
// Check for aggressive application of 'split-if' optimization,
// using basic block level info.
void PhaseIdealLoop::split_if_with_blocks(VectorSet &visited, Node_Stack &nstack, bool last_round) {
- Node *n = C->root();
- visited.set(n->_idx); // first, mark node as visited
+ Node* root = C->root();
+ visited.set(root->_idx); // first, mark root as visited
// Do pre-visit work for root
- n = split_if_with_blocks_pre( n );
- uint cnt = n->outcnt();
- uint i = 0;
+ Node* n = split_if_with_blocks_pre(root);
+ uint cnt = n->outcnt();
+ uint i = 0;
+
while (true) {
// Visit all children
if (i < cnt) {
@@ -1475,7 +1476,7 @@
++i;
if (use->outcnt() != 0 && !visited.test_set(use->_idx)) {
// Now do pre-visit work for this use
- use = split_if_with_blocks_pre( use );
+ use = split_if_with_blocks_pre(use);
nstack.push(n, i); // Save parent and next use's index.
n = use; // Process all children of current use.
cnt = use->outcnt();
@@ -1486,7 +1487,10 @@
// All of n's children have been processed, complete post-processing.
if (cnt != 0 && !n->is_Con()) {
assert(has_node(n), "no dead nodes");
- split_if_with_blocks_post( n, last_round );
+ split_if_with_blocks_post(n, last_round);
+ }
+ if (must_throttle_split_if()) {
+ nstack.clear();
}
if (nstack.is_empty()) {
// Finished all nodes on stack.