hotspot/test/compiler/regalloc/C1ObjectSpillInLogicOp.java
author iveresov
Tue, 05 Nov 2013 00:59:30 -0800
changeset 21525 7ff7fc8b5382
child 22225 0e1c9f50e3a4
permissions -rw-r--r--
8027751: C1 crashes in Weblogic with G1 enabled Summary: Keep T_OBJECT operands in registers for logical operations on x64 Reviewed-by: kvn, roland
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
/*
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
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
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    27
 * @summary C1 crashes generating G1 post-barrier in Unsafe.getAndSetObject() intrinsic because of the new value spill
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    28
 * @run main/othervm -XX:+UseG1GC C1ObjectSpillInLogicOp
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    29
 *
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    30
 * 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
    31
 * 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
    32
 * 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
    33
 * 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
    34
 */
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    35
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    36
import java.util.concurrent.atomic.*;
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    37
class C1ObjectSpillInLogicOp {
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    38
  static public void main(String[] args) {
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    39
    AtomicReferenceArray<Integer> x = new AtomicReferenceArray(128);
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    40
    Integer y = new Integer(0);
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    41
    for (int i = 0; i < 50000; i++) {
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    42
      x.getAndSet(i % x.length(), y);
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    43
    }
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    44
  }
7ff7fc8b5382 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
    45
}