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