hotspot/test/compiler/arraycopy/TestReduceBulkZeroingDisabled.java
author thartmann
Thu, 04 Aug 2016 10:34:34 +0200
changeset 40365 3791c1b34e36
parent 40059 c2304140ed64
permissions -rw-r--r--
8136818: Test compiler/arraycopy/TestEliminatedArrayCopyDeopt.java fails with "m1 failed" Summary: Added missing Op_StoreB check to ArrayCopyNode::may_modify_helper(). Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38676
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     1
/*
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     4
 *
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     7
 * published by the Free Software Foundation.
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     8
 *
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    13
 * accompanied this code).
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    14
 *
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    18
 *
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    21
 * questions.
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    22
 */
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    23
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    24
/*
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    25
 * @test
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    26
 * @bug 8155241
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    27
 * @summary Test arraycopy elimination with ReduceBulkZeroing disabled.
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38676
diff changeset
    28
 *
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38676
diff changeset
    29
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:-ReduceBulkZeroing
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38676
diff changeset
    30
 *                   compiler.arraycopy.TestReduceBulkZeroingDisabled
38676
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    31
 */
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38676
diff changeset
    32
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38676
diff changeset
    33
package compiler.arraycopy;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38676
diff changeset
    34
38676
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    35
public class TestReduceBulkZeroingDisabled {
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    36
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    37
    static public void main(String[] args) {
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    38
        System.out.println("Passed");
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    39
    }
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    40
}
48614091c64b 8155241: Crash with assert in Xcomp mode and with disabled ReduceBulkZeroing
thartmann
parents:
diff changeset
    41