annotate test/compiler/loopopts/TestDeadBackbranchArrayAccess.java @ 21188:2acf1d23d3af

Move PhiResolver from c.o.g.compiler.gen to c.o.g.lir.gen.
author Josef Eisl <josef.eisl@jku.at>
date Mon, 20 Apr 2015 14:24:55 +0200
parents 5b8e0f84f00f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20680
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
1 /*
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
4 *
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
7 * published by the Free Software Foundation.
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
8 *
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
13 * accompanied this code).
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
14 *
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
18 *
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
21 * questions.
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
22 *
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
23 */
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
24
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
25 /**
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
26 * @test
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
27 * @bug 8054478
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
28 * @summary dead backbranch in main loop results in erroneous array access
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
29 * @run main/othervm -XX:CompileOnly=TestDeadBackbranchArrayAccess -Xcomp TestDeadBackbranchArrayAccess
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
30 *
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
31 */
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
32
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
33 public class TestDeadBackbranchArrayAccess {
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
34 static char[] pattern0 = {0};
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
35 static char[] pattern1 = {1};
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
36
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
37 static void test(char[] array) {
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
38 if (pattern1 == null) return;
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
39
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
40 int i = 0;
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
41 int pos = 0;
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
42 char c = array[pos];
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
43
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
44 while (i >= 0 && (c == pattern0[i] || c == pattern1[i])) {
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
45 i--;
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
46 pos--;
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
47 if (pos != -1) {
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
48 c = array[pos];
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
49 }
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
50 }
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
51 }
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
52
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
53 public static void main(String[] args) {
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
54 for (int i = 0; i < 1000000; i++) {
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
55 test(new char[1]);
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
56 }
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
57 }
5b8e0f84f00f 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
diff changeset
58 }