Skip to content

Commit cb72f80

Browse files
casparcwangDamonFool
casparcwang
authored andcommittedSep 21, 2022
8293978: Duplicate simple loop back-edge will crash the vm
Reviewed-by: roland, chagedorn
1 parent cddd6de commit cb72f80

File tree

2 files changed

+67
-1
lines changed

2 files changed

+67
-1
lines changed
 

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -3920,7 +3920,8 @@ bool PhaseIdealLoop::duplicate_loop_backedge(IdealLoopTree *loop, Node_List &old
39203920
}
39213921

39223922
// With an extra phi for the candidate iv?
3923-
if (!incr->is_Phi()) {
3923+
// Or the region node is the loop head
3924+
if (!incr->is_Phi() || incr->in(0) == head) {
39243925
return false;
39253926
}
39263927

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
/*
2+
* Copyright (c) 2022 THL A29 Limited, a Tencent company. 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+
/**
25+
* @test
26+
* @bug 8293978
27+
* @summary Crash in PhaseIdealLoop::verify_strip_mined_scheduling
28+
*
29+
* @run main/othervm -Xbatch TestDuplicateSimpleLoopBackedge
30+
*
31+
*/
32+
33+
public class TestDuplicateSimpleLoopBackedge {
34+
static void zero(Byte[] a) {
35+
for (int e = 0; e < a.length; e++) {
36+
a[e] = 0;
37+
}
38+
}
39+
40+
int foo(int g) {
41+
Byte h[] = new Byte[500];
42+
zero(h);
43+
short i = 7;
44+
while (i != 1) {
45+
i = (short)(i - 3);
46+
}
47+
return 0;
48+
}
49+
50+
void bar(String[] k) {
51+
try {
52+
int l = 5;
53+
if (l < foo(l)) {
54+
}
55+
} catch (Exception m) {
56+
}
57+
}
58+
59+
public static void main(String[] args) {
60+
TestDuplicateSimpleLoopBackedge n = new TestDuplicateSimpleLoopBackedge();
61+
for (int i = 0; i < 10000; ++i) {
62+
n.bar(args);
63+
}
64+
}
65+
}

0 commit comments

Comments
 (0)
Please sign in to comment.