hotspot/test/runtime/contended/DefaultValue.java
author duke
Wed, 05 Jul 2017 19:12:21 +0200
changeset 19945 74049f7a28b4
parent 17603 30a72a5afcda
child 29678 dd2f3932c21e
permissions -rw-r--r--
Merge
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
/*
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
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;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    38
import sun.misc.Unsafe;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    39
import sun.misc.Contended;
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
 *
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    46
 * @run main/othervm -XX:-RestrictContended DefaultValue
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    47
 */
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    48
public class 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
    private static final Unsafe U;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    51
    private static int ADDRESS_SIZE;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    52
    private static int HEADER_SIZE;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    53
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    54
    static {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    55
        // steal Unsafe
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    56
        try {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    57
            Field unsafe = Unsafe.class.getDeclaredField("theUnsafe");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    58
            unsafe.setAccessible(true);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    59
            U = (Unsafe) unsafe.get(null);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    60
        } catch (NoSuchFieldException | IllegalAccessException e) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    61
            throw new IllegalStateException(e);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    62
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    63
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    64
        // 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
    65
        // 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
    66
        // 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
    67
        try {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    68
            long off1 = U.objectFieldOffset(CompressedOopsClass.class.getField("obj1"));
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    69
            long off2 = U.objectFieldOffset(CompressedOopsClass.class.getField("obj2"));
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    70
            ADDRESS_SIZE = (int) Math.abs(off2 - off1);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    71
            HEADER_SIZE = (int) Math.min(off1, off2);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    72
        } catch (NoSuchFieldException e) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    73
            ADDRESS_SIZE = -1;
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
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    76
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    77
    static class CompressedOopsClass {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    78
        public Object obj1;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    79
        public Object obj2;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    80
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    81
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    82
    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
    83
        Field f1 = klass.getField(field1);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    84
        Field f2 = klass.getField(field2);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    85
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    86
        int diff = offset(f1) - offset(f2);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    87
        if (diff < 0) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    88
            // f1 is first
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    89
            return (offset(f2) - (offset(f1) + getSize(f1))) > 64;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    90
        } else {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    91
            // f2 is first
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    92
            return (offset(f1) - (offset(f2) + getSize(f2))) > 64;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    93
        }
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
    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
    97
        for (Field f1 : klass1.getDeclaredFields()) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
    98
            Field f2 = klass2.getDeclaredField(f1.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
        for (Field f2 : klass1.getDeclaredFields()) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   105
            Field f1 = klass2.getDeclaredField(f2.getName());
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   106
            if (offset(f1) != offset(f2)) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   107
                return false;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   108
            }
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
        return true;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   112
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   113
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   114
    public static boolean isStatic(Field field) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   115
        return Modifier.isStatic(field.getModifiers());
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
    public static int offset(Field field) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   119
        if (isStatic(field)) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   120
            return (int) U.staticFieldOffset(field);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   121
        } else {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   122
            return (int) U.objectFieldOffset(field);
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   123
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   124
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   125
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   126
    public static int getSize(Field field) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   127
        Class type = field.getType();
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   128
        if (type == byte.class)    { return 1; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   129
        if (type == boolean.class) { return 1; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   130
        if (type == short.class)   { return 2; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   131
        if (type == char.class)    { return 2; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   132
        if (type == int.class)     { return 4; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   133
        if (type == float.class)   { return 4; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   134
        if (type == long.class)    { return 8; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   135
        if (type == double.class)  { return 8; }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   136
        return ADDRESS_SIZE;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   137
    }
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
    public static void main(String[] args) throws Exception {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   140
        boolean endResult = true;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   141
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   142
        if (!arePaddedPairwise(R1.class, "int1", "int2")) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   143
            System.err.println("R1 failed");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   144
            endResult &= false;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   145
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   146
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   147
        if (!arePaddedPairwise(R2.class, "int1", "int2")) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   148
            System.err.println("R2 failed");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   149
            endResult &= false;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   150
        }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   151
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   152
        if (!arePaddedPairwise(R3.class, "int1", "int2")) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   153
            System.err.println("R3 failed");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   154
            endResult &= false;
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
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   157
        System.out.println(endResult ? "Test PASSES" : "Test FAILS");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   158
        if (!endResult) {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   159
           throw new Error("Test failed");
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   160
        }
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 R1 {
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 R2 {
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
    public static class R3 {
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   178
        @Contended()
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   179
        public int int1;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   180
        @Contended()
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   181
        public int int2;
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   182
    }
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   183
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   184
}
30a72a5afcda 8014509: @Contended: explicit default value behaves differently from the implicit value
shade
parents:
diff changeset
   185