Skip to content

Commit 85628a8

Browse files
committedMar 22, 2022
8282592: C2: assert(false) failed: graph should be schedulable
Reviewed-by: chagedorn, thartmann
1 parent a6fd0b2 commit 85628a8

File tree

3 files changed

+86
-0
lines changed

3 files changed

+86
-0
lines changed
 

‎src/hotspot/share/opto/loopTransform.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -1954,6 +1954,12 @@ bool IdealLoopTree::is_invariant(Node* n) const {
19541954
}
19551955

19561956
void PhaseIdealLoop::update_main_loop_skeleton_predicates(Node* ctrl, CountedLoopNode* loop_head, Node* init, int stride_con) {
1957+
if (init->Opcode() == Op_CastII) {
1958+
// skip over the cast added by PhaseIdealLoop::cast_incr_before_loop() when pre/post/main loops are created because
1959+
// it can get in the way of type propagation
1960+
assert(((CastIINode*)init)->carry_dependency() && loop_head->skip_predicates() == init->in(0), "casted iv phi from pre loop expected");
1961+
init = init->in(1);
1962+
}
19571963
// Search for skeleton predicates and update them according to the new stride
19581964
Node* entry = ctrl;
19591965
Node* prev_proj = ctrl;

‎src/hotspot/share/opto/loopopts.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -3828,6 +3828,8 @@ void PhaseIdealLoop::reorg_offsets(IdealLoopTree *loop) {
38283828
set_ctrl(neg_stride, C->root());
38293829
Node *post = new AddINode(opaq, neg_stride);
38303830
register_new_node(post, c);
3831+
post = new CastIINode(post, phi->bottom_type()); // preserve the iv phi's type
3832+
register_new_node(post, c);
38313833
_igvn.rehash_node_delayed(use);
38323834
for (uint j = 1; j < use->req(); j++) {
38333835
if (use->in(j) == phi)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
/*
2+
* Copyright (c) 2022, Red Hat, Inc. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
package compiler.c2.irTests;
25+
26+
import compiler.lib.ir_framework.*;
27+
import jdk.test.lib.Utils;
28+
import java.util.Random;
29+
30+
/*
31+
* @test
32+
* @bug 8278228
33+
* @summary C2: Improve identical back-to-back if elimination
34+
* @library /test/lib /
35+
* @run driver compiler.c2.irTests.TestSkeletonPredicates
36+
*/
37+
38+
public class TestSkeletonPredicates {
39+
public static void main(String[] args) {
40+
TestFramework.runWithFlags("-XX:-UseLoopPredicate", "-XX:LoopUnrollLimit=240", "-XX:+StressIGVN", "-XX:StressSeed=255527877");
41+
TestFramework.runWithFlags("-XX:-UseLoopPredicate", "-XX:LoopUnrollLimit=240", "-XX:+StressIGVN");
42+
}
43+
44+
static volatile int barrier;
45+
46+
@ForceInline
47+
static boolean test1_helper(int start, int stop, double[] array1, double[] array2) {
48+
for (int i = start; i < stop; i++) {
49+
if ((i % 2) == 0) {
50+
array1[i] = 42.42;
51+
} else {
52+
barrier = 0x42;
53+
}
54+
}
55+
return false;
56+
}
57+
58+
@Test
59+
@IR(counts = { IRNode.COUNTEDLOOP, "3" })
60+
static double[] test1(int stop, double[] array2) {
61+
double[] array1 = null;
62+
array1 = new double[10];
63+
for (int j = 0; j < stop; j++) {
64+
if (test1_helper(8, j, array1, array2)) {
65+
return null;
66+
}
67+
}
68+
return array1;
69+
}
70+
71+
@Run(test = "test1")
72+
void test1_runner() {
73+
double[] array2 = new double[10];
74+
double[] array3 = new double[1000];
75+
test1_helper(1, 1000, array3, array3);
76+
test1(11, array3);
77+
}
78+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Mar 22, 2022

@openjdk-notifier[bot]
Please sign in to comment.