test/hotspot/jtreg/compiler/c1/Test8011706.java
author iignatyev
Mon, 18 Feb 2019 09:31:07 -0800
changeset 53791 bec6c8739833
parent 47216 71c04702a3d5
permissions -rw-r--r--
8219157: vm/mlvm/mixed/stress/java/findDeadlock should be problem-listed only on mac Reviewed-by: thartmann
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
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    29
 * @run main/othervm -XX:-UseOnStackReplacement -XX:-BackgroundCompilation
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    30
 *      compiler.c1.Test8011706
16690
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
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    33
package compiler.c1;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    34
16690
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    35
public class Test8011706 {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    36
    int[] array;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    37
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    38
    void m(boolean test, int[] array1, int[] array2) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    39
        int i = 0;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    40
        if (test) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    41
            array = array1;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    42
        } else {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    43
            array = array2;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    44
        }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    45
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    46
        while(true) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    47
            int v = array[i];
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    48
            i++;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    49
            if (i >= 10) return;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    50
        }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    51
    }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    52
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    53
    static public void main(String[] args) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    54
        int[] new_array = new int[10];
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    55
        Test8011706 ti = new Test8011706();
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    56
        boolean failed = false;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    57
        try {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    58
            for (int i = 0; i < 10000; i++) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    59
                ti.array = null;
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    60
                ti.m(true, new_array, new_array);
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
        } catch(NullPointerException ex) {
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    63
            throw new RuntimeException("TEST FAILED", ex);
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
        System.out.println("TEST PASSED");
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    66
    }
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    67
a428299c08cb 8011706: specjvm2008 test xml.transform gets array bound exception with c1
roland
parents:
diff changeset
    68
}