test/hotspot/jtreg/runtime/appcds/sharedStrings/LockStringTest.java
author redestad
Tue, 02 Apr 2019 11:37:11 +0200
changeset 54379 40a7e2fc9beb
parent 48138 78b2ecdd3c4b
permissions -rw-r--r--
8221724: Enable archiving of Strings with hash 0 Reviewed-by: jiangli, iklam
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     1
/*
54379
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
     2
 * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     4
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     7
 * published by the Free Software Foundation.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     8
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    13
 * accompanied this code).
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    14
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    18
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    21
 * questions.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    22
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    23
 */
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    24
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    25
import sun.hotspot.WhiteBox;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    26
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    27
public class LockStringTest extends Thread {
54379
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    28
    static String lock;
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    29
    static boolean done;
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    30
    static WhiteBox wb = WhiteBox.getWhiteBox();
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    31
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    32
    public static void main(String[] args) throws Exception {
54379
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    33
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    34
        if (wb.areSharedStringsIgnored()) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    35
            System.out.println("The shared strings are ignored");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    36
            System.out.println("LockStringTest: PASS");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    37
            return;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    38
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    39
54379
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    40
        if (!wb.isShared(LockStringTest.class)) {
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    41
            throw new RuntimeException("Failed: LockStringTest class is not shared.");
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    42
        }
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    43
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    44
        // Note: This class is archived. All string literals (including the ones used in this class)
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    45
        // in all archived classes are interned into the CDS shared string table.
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    46
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    47
        doTest("StringLock", false);
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    48
        doTest("", true);
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    49
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    50
        // The following string has a 0 hashCode. Calling String.hashCode() could cause
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    51
        // the String.hash field to be written into, if so make sure we don't functionally
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    52
        // break.
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    53
        doTest("\u0121\u0151\u00a2\u0001\u0001\udbb2", true);
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    54
    }
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    55
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    56
    private static void doTest(String s, boolean hasZeroHashCode) throws Exception {
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    57
        lock = s;
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    58
        done = false;
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    59
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    60
        if (!wb.isShared(lock)) {
54379
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    61
            throw new RuntimeException("Failed: String \"" + lock + "\" is not shared.");
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    62
        }
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    63
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    64
        if (hasZeroHashCode && lock.hashCode() != 0) {
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    65
            throw new RuntimeException("Shared string \"" + lock + "\" should have 0 hashCode, but is instead " + lock.hashCode());
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    66
        }
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    67
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    68
        String copy = new String(lock);
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    69
        if (lock.hashCode() != copy.hashCode()) {
40a7e2fc9beb 8221724: Enable archiving of Strings with hash 0
redestad
parents: 48138
diff changeset
    70
            throw new RuntimeException("Shared string \"" + lock + "\" does not have the same hashCode as its non-shared copy");
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    71
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    72
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    73
        new LockStringTest().start();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    74
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    75
        synchronized(lock) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    76
            while (!done) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    77
                lock.wait();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    78
            }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    79
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    80
        System.gc();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    81
        System.out.println("LockStringTest: PASS");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    82
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    83
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    84
    public void run() {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    85
        String shared = "LiveOak";
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    86
        synchronized (lock) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    87
            for (int i = 0; i < 100; i++) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    88
                new String(shared);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    89
                System.gc();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    90
                try {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    91
                    sleep(5);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    92
                } catch (InterruptedException e) {}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    93
            }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    94
            done = true;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    95
            lock.notify();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    96
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    97
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    98
}