annotate test/compiler/8011706/Test8011706.java @ 15001:27c04ee36dcb

input types
author Lukas Stadler <lukas.stadler@oracle.com>
date Mon, 07 Apr 2014 11:32:04 +0200
parents 84ab5667f290
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9081
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
1 /*
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
4 *
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
7 * published by the Free Software Foundation.
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
8 *
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
13 * accompanied this code).
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
14 *
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
18 *
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
21 * questions.
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
22 */
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
23
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
24 /*
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
25 * @test
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
26 * @bug 8011706
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
27 * @summary loop invariant code motion may move load before store to the same field
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
28 * @run main/othervm -XX:-UseOnStackReplacement -XX:-BackgroundCompilation Test8011706
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
29 *
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
30 */
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
31
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
32 public class Test8011706 {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
33 int[] array;
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
34
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
35 void m(boolean test, int[] array1, int[] array2) {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
36 int i = 0;
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
37 if (test) {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
38 array = array1;
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
39 } else {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
40 array = array2;
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
41 }
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
42
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
43 while(true) {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
44 int v = array[i];
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
45 i++;
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
46 if (i >= 10) return;
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
47 }
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
48 }
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
49
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
50 static public void main(String[] args) {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
51 int[] new_array = new int[10];
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
52 Test8011706 ti = new Test8011706();
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
53 boolean failed = false;
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
54 try {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
55 for (int i = 0; i < 10000; i++) {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
56 ti.array = null;
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
57 ti.m(true, new_array, new_array);
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
58 }
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
59 } catch(NullPointerException ex) {
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
60 throw new RuntimeException("TEST FAILED", ex);
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
61 }
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
62 System.out.println("TEST PASSED");
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
63 }
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
64
84ab5667f290 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
65 }