Skip to content

Commit 0459159

Browse files
committedDec 26, 2022
8288204: GVN Crash: assert() failed: correct memory chain
Reviewed-by: kvn, thartmann
1 parent 19373b2 commit 0459159

File tree

3 files changed

+87
-13
lines changed

3 files changed

+87
-13
lines changed
 

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

-8
Original file line numberDiff line numberDiff line change
@@ -1023,14 +1023,6 @@ PhiNode* PhiNode::slice_memory(const TypePtr* adr_type) const {
10231023
PhiNode* PhiNode::split_out_instance(const TypePtr* at, PhaseIterGVN *igvn) const {
10241024
const TypeOopPtr *t_oop = at->isa_oopptr();
10251025
assert(t_oop != NULL && t_oop->is_known_instance(), "expecting instance oopptr");
1026-
const TypePtr *t = adr_type();
1027-
assert(type() == Type::MEMORY &&
1028-
(t == TypePtr::BOTTOM || t == TypeRawPtr::BOTTOM ||
1029-
t->isa_oopptr() && !t->is_oopptr()->is_known_instance() &&
1030-
t->is_oopptr()->cast_to_exactness(true)
1031-
->is_oopptr()->cast_to_ptr_type(t_oop->ptr())
1032-
->is_oopptr()->cast_to_instance_id(t_oop->instance_id()) == t_oop),
1033-
"bottom or raw memory required");
10341026

10351027
// Check if an appropriate node already exists.
10361028
Node *region = in(0);

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

+20-5
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,26 @@ Node *MemNode::optimize_memory_chain(Node *mchain, const TypePtr *t_adr, Node *l
215215
PhiNode *mphi = result->as_Phi();
216216
assert(mphi->bottom_type() == Type::MEMORY, "memory phi required");
217217
const TypePtr *t = mphi->adr_type();
218-
if (t == TypePtr::BOTTOM || t == TypeRawPtr::BOTTOM ||
219-
(t->isa_oopptr() && !t->is_oopptr()->is_known_instance() &&
220-
t->is_oopptr()->cast_to_exactness(true)
221-
->is_oopptr()->cast_to_ptr_type(t_oop->ptr())
222-
->is_oopptr()->cast_to_instance_id(t_oop->instance_id()) == t_oop)) {
218+
bool do_split = false;
219+
// In the following cases, Load memory input can be further optimized based on
220+
// its precise address type
221+
if (t == TypePtr::BOTTOM || t == TypeRawPtr::BOTTOM ) {
222+
do_split = true;
223+
} else if (t->isa_oopptr() && !t->is_oopptr()->is_known_instance()) {
224+
const TypeOopPtr* mem_t =
225+
t->is_oopptr()->cast_to_exactness(true)
226+
->is_oopptr()->cast_to_ptr_type(t_oop->ptr())
227+
->is_oopptr()->cast_to_instance_id(t_oop->instance_id());
228+
if (t_oop->is_aryptr()) {
229+
mem_t = mem_t->is_aryptr()
230+
->cast_to_stable(t_oop->is_aryptr()->is_stable())
231+
->cast_to_size(t_oop->is_aryptr()->size())
232+
->with_offset(t_oop->is_aryptr()->offset())
233+
->is_aryptr();
234+
}
235+
do_split = mem_t == t_oop;
236+
}
237+
if (do_split) {
223238
// clone the Phi with our address type
224239
result = mphi->split_out_instance(t_adr, igvn);
225240
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/*
2+
* Copyright (c) 2022, Alibaba Group Holding Limited. 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+
/**
26+
* @test
27+
* @key stress randomness
28+
* @bug 8288204
29+
* @summary GVN Crash: assert() failed: correct memory chain
30+
*
31+
* @run main/othervm -Xbatch -XX:+UnlockDiagnosticVMOptions -XX:+StressIGVN -XX:CompileCommand=compileonly,compiler.c2.TestGVNCrash::test compiler.c2.TestGVNCrash
32+
*/
33+
34+
package compiler.c2;
35+
36+
public class TestGVNCrash {
37+
public static int iField = 0;
38+
public static double[] dArrFld = new double[256];
39+
public static int[] iArrFld = new int[256];
40+
public int[][] iArrFld1 = new int[256][256];
41+
42+
public void test() {
43+
int x = 0;
44+
for (int i = 0; i < 10; i++) {
45+
do {
46+
for (float j = 0; j < 0; j++) {
47+
iArrFld[x] = 3;
48+
iArrFld1[1][x] -= iField;
49+
dArrFld = new double[256];
50+
for (int k = 0; k < dArrFld.length; k++) {
51+
dArrFld[k] = (k % 2 == 0) ? k + 1 : k - 1;
52+
}
53+
}
54+
} while (++x < 5);
55+
for (int j = 0; j < 100_000; j++) {
56+
String s = "test";
57+
s = s + s;
58+
s = s + s;
59+
}
60+
}
61+
}
62+
63+
public static void main(String[] args) {
64+
TestGVNCrash t = new TestGVNCrash();
65+
t.test();
66+
}
67+
}

0 commit comments

Comments
 (0)
Please sign in to comment.