hotspot/test/compiler/8011706/Test8011706.java
author jjg
Fri, 07 Nov 2014 14:51:35 -0800
changeset 27547 d07b3dcbc707
parent 16690 a428299c08cb
permissions -rw-r--r--
8063145: ToolBox should support extracting classes from a JavaFileManager/Location Reviewed-by: ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16690
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
     1
/*
a428299c08cb 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.
a428299c08cb 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.
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
     4
 *
a428299c08cb 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
a428299c08cb 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
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
     7
 * published by the Free Software Foundation.
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
     8
 *
a428299c08cb 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
a428299c08cb 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
a428299c08cb 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
a428299c08cb 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
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    13
 * accompanied this code).
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    14
 *
a428299c08cb 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
a428299c08cb 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,
a428299c08cb 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.
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    18
 *
a428299c08cb 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
a428299c08cb 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
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    21
 * questions.
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    22
 */
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    23
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    24
/*
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    25
 * @test
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    26
 * @bug 8011706
a428299c08cb 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
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    28
 * @run main/othervm -XX:-UseOnStackReplacement -XX:-BackgroundCompilation Test8011706
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    29
 *
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    30
 */
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    31
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    32
public class Test8011706 {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    33
    int[] array;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    34
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    35
    void m(boolean test, int[] array1, int[] array2) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    36
        int i = 0;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    37
        if (test) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    38
            array = array1;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    39
        } else {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    40
            array = array2;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    41
        }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    42
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    43
        while(true) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    44
            int v = array[i];
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    45
            i++;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    46
            if (i >= 10) return;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    47
        }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    48
    }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    49
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    50
    static public void main(String[] args) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    51
        int[] new_array = new int[10];
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    52
        Test8011706 ti = new Test8011706();
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    53
        boolean failed = false;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    54
        try {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    55
            for (int i = 0; i < 10000; i++) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    56
                ti.array = null;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    57
                ti.m(true, new_array, new_array);
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    58
            }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    59
        } catch(NullPointerException ex) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    60
            throw new RuntimeException("TEST FAILED", ex);
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    61
        }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    62
        System.out.println("TEST PASSED");
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    63
    }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    64
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    65
}