annotate test/compiler/regalloc/C1ObjectSpillInLogicOp.java @ 18408:2c3666f44855

Truffle: initial commit of object API implementation
author Andreas Woess <andreas.woess@jku.at>
date Tue, 18 Nov 2014 23:19:43 +0100
parents ad45ebfba060
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13044
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
1 /*
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
4 *
a905d33ce13a 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
a905d33ce13a 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
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
7 * published by the Free Software Foundation.
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
8 *
a905d33ce13a 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
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a905d33ce13a 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
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
13 * accompanied this code).
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
14 *
a905d33ce13a 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
a905d33ce13a 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,
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
18 *
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
a905d33ce13a 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
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
21 * questions.
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
22 */
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
23
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
24 /*
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
25 * @test
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
26 * @bug 8027751
a905d33ce13a 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
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
28 * @run main/othervm -XX:+UseG1GC C1ObjectSpillInLogicOp
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
29 *
a905d33ce13a 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.
a905d33ce13a 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.
a905d33ce13a 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
a905d33ce13a 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.
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
34 */
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
35
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
36 import java.util.concurrent.atomic.*;
13443
ad45ebfba060 8028122: [TESTBUG] compiler/regalloc/C1ObjectSpillInLogicOp.java
iignatyev
parents: 13044
diff changeset
37
ad45ebfba060 8028122: [TESTBUG] compiler/regalloc/C1ObjectSpillInLogicOp.java
iignatyev
parents: 13044
diff changeset
38 public class C1ObjectSpillInLogicOp {
ad45ebfba060 8028122: [TESTBUG] compiler/regalloc/C1ObjectSpillInLogicOp.java
iignatyev
parents: 13044
diff changeset
39 public static void main(String[] args) {
13044
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
40 AtomicReferenceArray<Integer> x = new AtomicReferenceArray(128);
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
41 Integer y = new Integer(0);
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
42 for (int i = 0; i < 50000; i++) {
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
43 x.getAndSet(i % x.length(), y);
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
44 }
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
45 }
a905d33ce13a 8027751: C1 crashes in Weblogic with G1 enabled
iveresov
parents:
diff changeset
46 }