hotspot/test/runtime/contended/DefaultValue.java
author gtriantafill
Wed, 14 Sep 2016 08:17:50 -0400
changeset 41092 c388d897472d
parent 38152 80e5da81fb2c
permissions -rw-r--r--
8165889: Remove jdk.test.lib.unsafe.UnsafeHelper Summary: Remove use of setAccessible() to get Unsafe. Reviewed-by: shade, lfoltan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17603
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     1
/*
36209
8db2a78cbc29 8151156: [TESTBUG] Integrate trivial Hotspot test changes from Jake before Jigsaw M3
ctornqvi
parents: 34272
diff changeset
     2
 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
17603
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     4
 *
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     7
 * published by the Free Software Foundation.
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     8
 *
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    13
 * accompanied this code).
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    14
 *
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    18
 *
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    21
 * questions.
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    22
 */
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    23
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    24
import java.io.BufferedReader;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    25
import java.io.InputStreamReader;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    26
import java.lang.Class;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    27
import java.lang.String;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    28
import java.lang.System;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    29
import java.lang.management.ManagementFactory;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    30
import java.lang.management.RuntimeMXBean;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    31
import java.util.ArrayList;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    32
import java.util.List;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    33
import java.util.concurrent.CyclicBarrier;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    34
import java.util.regex.Matcher;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    35
import java.util.regex.Pattern;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    36
import java.lang.reflect.Field;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    37
import java.lang.reflect.Modifier;
38152
80e5da81fb2c 8154258: [TESTBUG] Various serviceability tests fail compilation
dsamersoff
parents: 36209
diff changeset
    38
import jdk.internal.misc.Unsafe;
34272
1b277b5ee6e3 8140687: Move @Contended to the jdk.internal.vm.annotation package
chegar
parents: 29678
diff changeset
    39
import jdk.internal.vm.annotation.Contended;
17603
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    40
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    41
/*
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    42
 * @test
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    43
 * @bug     8014509
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    44
 * @summary \@Contended: explicit default value behaves differently from the implicit value
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    45
 *
38152
80e5da81fb2c 8154258: [TESTBUG] Various serviceability tests fail compilation
dsamersoff
parents: 36209
diff changeset
    46
 * @modules java.base/jdk.internal.misc
36209
8db2a78cbc29 8151156: [TESTBUG] Integrate trivial Hotspot test changes from Jake before Jigsaw M3
ctornqvi
parents: 34272
diff changeset
    47
 * @modules java.base/jdk.internal.vm.annotation
17603
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    48
 * @run main/othervm -XX:-RestrictContended DefaultValue
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    49
 */
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    50
public class DefaultValue {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    51
41092
c388d897472d 8165889: Remove jdk.test.lib.unsafe.UnsafeHelper
gtriantafill
parents: 38152
diff changeset
    52
    private static final Unsafe U = Unsafe.getUnsafe();
17603
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    53
    private static int ADDRESS_SIZE;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    54
    private static int HEADER_SIZE;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    55
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    56
    static {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    57
        // When running with CompressedOops on 64-bit platform, the address size
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    58
        // reported by Unsafe is still 8, while the real reference fields are 4 bytes long.
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    59
        // Try to guess the reference field size with this naive trick.
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    60
        try {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    61
            long off1 = U.objectFieldOffset(CompressedOopsClass.class.getField("obj1"));
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    62
            long off2 = U.objectFieldOffset(CompressedOopsClass.class.getField("obj2"));
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    63
            ADDRESS_SIZE = (int) Math.abs(off2 - off1);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    64
            HEADER_SIZE = (int) Math.min(off1, off2);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    65
        } catch (NoSuchFieldException e) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    66
            ADDRESS_SIZE = -1;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    67
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    68
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    69
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    70
    static class CompressedOopsClass {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    71
        public Object obj1;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    72
        public Object obj2;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    73
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    74
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    75
    public static boolean arePaddedPairwise(Class klass, String field1, String field2) throws Exception {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    76
        Field f1 = klass.getField(field1);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    77
        Field f2 = klass.getField(field2);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    78
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    79
        int diff = offset(f1) - offset(f2);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    80
        if (diff < 0) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    81
            // f1 is first
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    82
            return (offset(f2) - (offset(f1) + getSize(f1))) > 64;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    83
        } else {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    84
            // f2 is first
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    85
            return (offset(f1) - (offset(f2) + getSize(f2))) > 64;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    86
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    87
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    88
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    89
    public static boolean sameLayout(Class klass1, Class klass2) throws Exception {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    90
        for (Field f1 : klass1.getDeclaredFields()) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    91
            Field f2 = klass2.getDeclaredField(f1.getName());
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    92
            if (offset(f1) != offset(f2)) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    93
                return false;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    94
            }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    95
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    96
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    97
        for (Field f2 : klass1.getDeclaredFields()) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    98
            Field f1 = klass2.getDeclaredField(f2.getName());
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    99
            if (offset(f1) != offset(f2)) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   100
                return false;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   101
            }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   102
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   103
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   104
        return true;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   105
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   106
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   107
    public static boolean isStatic(Field field) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   108
        return Modifier.isStatic(field.getModifiers());
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   109
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   110
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   111
    public static int offset(Field field) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   112
        if (isStatic(field)) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   113
            return (int) U.staticFieldOffset(field);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   114
        } else {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   115
            return (int) U.objectFieldOffset(field);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   116
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   117
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   118
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   119
    public static int getSize(Field field) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   120
        Class type = field.getType();
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   121
        if (type == byte.class)    { return 1; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   122
        if (type == boolean.class) { return 1; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   123
        if (type == short.class)   { return 2; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   124
        if (type == char.class)    { return 2; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   125
        if (type == int.class)     { return 4; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   126
        if (type == float.class)   { return 4; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   127
        if (type == long.class)    { return 8; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   128
        if (type == double.class)  { return 8; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   129
        return ADDRESS_SIZE;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   130
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   131
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   132
    public static void main(String[] args) throws Exception {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   133
        boolean endResult = true;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   134
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   135
        if (!arePaddedPairwise(R1.class, "int1", "int2")) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   136
            System.err.println("R1 failed");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   137
            endResult &= false;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   138
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   139
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   140
        if (!arePaddedPairwise(R2.class, "int1", "int2")) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   141
            System.err.println("R2 failed");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   142
            endResult &= false;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   143
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   144
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   145
        if (!arePaddedPairwise(R3.class, "int1", "int2")) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   146
            System.err.println("R3 failed");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   147
            endResult &= false;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   148
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   149
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   150
        System.out.println(endResult ? "Test PASSES" : "Test FAILS");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   151
        if (!endResult) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   152
           throw new Error("Test failed");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   153
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   154
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   155
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   156
    public static class R1 {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   157
        @Contended
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   158
        public int int1;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   159
        @Contended
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   160
        public int int2;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   161
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   162
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   163
    public static class R2 {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   164
        @Contended("")
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   165
        public int int1;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   166
        @Contended("")
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   167
        public int int2;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   168
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   169
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   170
    public static class R3 {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   171
        @Contended()
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   172
        public int int1;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   173
        @Contended()
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   174
        public int int2;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   175
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   176
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   177
}
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   178