test/hotspot/jtreg/compiler/regalloc/C1ObjectSpillInLogicOp.java
author mchung
Mon, 22 Oct 2018 17:00:04 -0700
changeset 52220 9c260a6b6471
parent 47216 71c04702a3d5
permissions -rw-r--r--
8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference Reviewed-by: dholmes, thartmann
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21525
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     1
/*
39414
4adf52148100 8160088: update hotspot tests depending on GC to use @requires vm.gc.X
dfazunen
parents: 27692
diff changeset
     2
 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
21525
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     4
 *
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     8
 *
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    13
 * accompanied this code).
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    14
 *
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    18
 *
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    21
 * questions.
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    22
 */
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    23
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    24
/*
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    25
 * @test
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    26
 * @bug 8027751
52220
9c260a6b6471 8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents: 47216
diff changeset
    27
 * @summary C1 crashes generating G1 post-barrier in Unsafe.getAndSetReference() intrinsic because of the new value spill
39414
4adf52148100 8160088: update hotspot tests depending on GC to use @requires vm.gc.X
dfazunen
parents: 27692
diff changeset
    28
 * @requires vm.gc.G1
21525
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    29
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    30
 * @run main/othervm -XX:+UseG1GC compiler.regalloc.C1ObjectSpillInLogicOp
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    31
 */
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    32
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    33
package compiler.regalloc;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    34
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    35
import java.util.concurrent.atomic.AtomicReferenceArray;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    36
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    37
/*
21525
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    38
 * G1 barriers use logical operators (xor) on T_OBJECT mixed with T_LONG or T_INT.
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    39
 * The current implementation of logical operations on x86 in C1 doesn't allow for long operands to be on stack.
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    40
 * There is a special code in the register allocator that forces long arguments in registers on x86. However T_OBJECT
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    41
 * can be spilled just fine, and in that case the xor emission will fail.
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    42
 */
22225
0e1c9f50e3a4 8028122: [TESTBUG] compiler/regalloc/C1ObjectSpillInLogicOp.java
iignatyev
parents: 21525
diff changeset
    43
public class C1ObjectSpillInLogicOp {
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    44
    public static void main(String[] args) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    45
        AtomicReferenceArray<Integer> x = new AtomicReferenceArray(128);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    46
        Integer y = new Integer(0);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    47
        for (int i = 0; i < 50000; i++) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    48
            x.getAndSet(i % x.length(), y);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 39414
diff changeset
    49
        }
21525
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    50
    }
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    51
}