test/hotspot/jtreg/gc/stress/TestReclaimStringsLeaksMemory.java
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 59053 ba6c248cae19
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48632
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
     1
/*
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
     2
 * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
48632
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
     4
 *
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
     8
 *
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    14
 *
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    18
 *
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    21
 * questions.
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    22
 */
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    23
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    24
package gc.stress;
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    25
48632
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    26
/*
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    27
 * @test TestReclaimStringsLeaksMemory
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    28
 * @bug 8180048
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    29
 * @summary Ensure that during a Full GC interned string memory is reclaimed completely.
50455
2b73cce96dce 8202611: [GRAAL] Exclude CMS GC testing from runs with Graal
kvn
parents: 48632
diff changeset
    30
 * @requires vm.gc=="null" & !vm.graal.enabled & !vm.debug
48632
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    31
 * @key gc
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    32
 * @library /test/lib
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    33
 * @modules java.base/jdk.internal.misc
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    34
 * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    35
 * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseSerialGC
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    36
 * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseParallelGC
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    37
 * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseParallelGC -XX:-UseParallelOldGC
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    38
 * @run main/othervm gc.stress.TestReclaimStringsLeaksMemory -XX:+UseG1GC
48632
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    39
 */
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    40
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    41
import java.util.Arrays;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    42
import java.util.ArrayList;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    43
import java.util.regex.Pattern;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    44
import java.util.regex.Matcher;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    45
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    46
import jdk.test.lib.Asserts;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    47
import jdk.test.lib.process.OutputAnalyzer;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    48
import jdk.test.lib.process.ProcessTools;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    49
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    50
public class TestReclaimStringsLeaksMemory {
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    51
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    52
    // The amount of memory in kB reserved in the "Symbol" category that indicates a memory leak for
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    53
    // this test.
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    54
    public static final int ReservedThreshold = 70000;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    55
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    56
    public static void main(String[] args) throws Exception {
53694
a0a327cae58f 8217332: JTREG: Clean up, use generics instead of raw types
lkorinth
parents: 53523
diff changeset
    57
        ArrayList<String> baseargs = new ArrayList<>(Arrays.asList("-Xms256M",
a0a327cae58f 8217332: JTREG: Clean up, use generics instead of raw types
lkorinth
parents: 53523
diff changeset
    58
                                                                   "-Xmx256M",
55328
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
    59
                                                                   "-Xlog:gc*,stringtable*=debug:gc.log",
53694
a0a327cae58f 8217332: JTREG: Clean up, use generics instead of raw types
lkorinth
parents: 53523
diff changeset
    60
                                                                   "-XX:NativeMemoryTracking=summary",
a0a327cae58f 8217332: JTREG: Clean up, use generics instead of raw types
lkorinth
parents: 53523
diff changeset
    61
                                                                   "-XX:+UnlockDiagnosticVMOptions",
a0a327cae58f 8217332: JTREG: Clean up, use generics instead of raw types
lkorinth
parents: 53523
diff changeset
    62
                                                                   "-XX:+PrintNMTStatistics" ));
48632
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    63
        baseargs.addAll(Arrays.asList(args));
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    64
        baseargs.add(GCTest.class.getName());
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    65
        ProcessBuilder pb_default =
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    66
            ProcessTools.createJavaProcessBuilder(baseargs.toArray(new String[] {}));
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    67
        verifySymbolMemoryUsageNotTooHigh(new OutputAnalyzer(pb_default.start()));
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    68
    }
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    69
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    70
    private static void verifySymbolMemoryUsageNotTooHigh(OutputAnalyzer output) throws Exception {
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    71
        String stdout = output.getStdout();
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    72
        System.out.println(stdout);
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    73
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    74
        Pattern p = Pattern.compile("Symbol \\(reserved=(\\d*)");
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    75
        Matcher m = p.matcher(stdout);
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    76
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    77
        if (!m.find()) {
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    78
            throw new RuntimeException("Could not find Symbol memory usage in NMT output");
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    79
        }
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    80
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    81
        int reserved = Integer.parseInt(m.group(1));
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    82
        Asserts.assertLT(reserved, ReservedThreshold, "Reserved memory size is " + reserved + "KB which is greater than or equal to " + ReservedThreshold + "KB indicating a memory leak");
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    83
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    84
        output.shouldHaveExitValue(0);
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    85
    }
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    86
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    87
    static class GCTest {
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    88
        public static final String BaseName = "SomeRandomBaseString";
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    89
        public static volatile String lastString;
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    90
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    91
        public static void main(String [] args) {
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    92
            for (int iterations = 0; iterations < 20;) {
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    93
                for (int i = 0; i < 1000000; i++) {
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    94
                    lastString = (BaseName + i).intern();
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    95
                }
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    96
                if (++iterations % 5 == 0) {
55328
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
    97
                    System.gc();
48632
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    98
                }
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
    99
            }
55328
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   100
            // Do one last GC and sleep to give ServiceThread a chance to run.
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   101
            System.out.println("One last gc");
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   102
            System.gc();
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   103
            for (int i = 0; i < 100; i++) {
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   104
                try {
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   105
                    Thread.sleep(10);
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   106
                } catch (InterruptedException ex) {
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   107
                }
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   108
            }
d9a157f6fd71 8224847: gc/stress/TestReclaimStringsLeaksMemory.java fails with reserved greater than expected
coleenp
parents: 53694
diff changeset
   109
            System.out.println("End of test");
48632
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
   110
        }
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
   111
    }
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
   112
}
a8ab9344dab6 8180280: [TESTBUG] Test for JDK-8180048
tschatzl
parents:
diff changeset
   113