hotspot/test/gc/g1/TestStringSymbolTableStats.java
author sangheki
Thu, 10 Aug 2017 18:09:19 -0700
changeset 46795 623a5e42deb6
parent 40886 98cb935dc074
permissions -rw-r--r--
8173335: Improve logging for j.l.ref.reference processing Summary: Add logs for each phases of references and stats for each worker threads Reviewed-by: tschatzl, shade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
     1
/*
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39703
diff changeset
     2
 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
     4
 *
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
     8
 *
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    14
 *
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    18
 *
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    21
 * questions.
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    22
 */
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    23
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    24
/*
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    25
 * @test TestStringSymbolTableStats.java
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    26
 * @bug 8027476 8027455
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    27
 * @summary Ensure that the G1TraceStringSymbolTableScrubbing prints the expected message.
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    28
 * @key gc
40886
98cb935dc074 8164660: MinimalVM is not tested with GC tests
dfazunen
parents: 40631
diff changeset
    29
 * @requires vm.gc.G1
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39703
diff changeset
    30
 * @library /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 35061
diff changeset
    31
 * @modules java.base/jdk.internal.misc
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 22545
diff changeset
    32
 *          java.management
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    33
 */
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    34
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39703
diff changeset
    35
import jdk.test.lib.process.OutputAnalyzer;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39703
diff changeset
    36
import jdk.test.lib.process.ProcessTools;
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    37
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    38
public class TestStringSymbolTableStats {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    39
  public static void main(String[] args) throws Exception {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    40
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    41
    ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    42
                                                              "-XX:+UnlockExperimentalVMOptions",
37147
3560f05bd7c7 8152104: G1 StringTable cleaning incorrectly logs with the stringdedup tag
stefank
parents: 35061
diff changeset
    43
                                                              "-Xlog:gc+stringtable=trace",
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    44
                                                              SystemGCTest.class.getName());
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    45
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    46
    OutputAnalyzer output = new OutputAnalyzer(pb.start());
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    47
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    48
    System.out.println("Output:\n" + output.getOutput());
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    49
39703
66722c5bc87a 8159893: StringTable cleaning log line lacks the GC ID prefix
stefank
parents: 37297
diff changeset
    50
    output.shouldMatch("GC\\(\\d+\\) Cleaned string and symbol table");
22545
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    51
    output.shouldHaveExitValue(0);
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    52
  }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    53
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    54
  static class SystemGCTest {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    55
    public static void main(String [] args) {
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    56
      System.out.println("Calling System.gc()");
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    57
      System.gc();
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    58
    }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    59
  }
b93a7f0e9b9d 8027476: Improve performance of Stringtable unlink
tschatzl
parents:
diff changeset
    60
}