hotspot/test/gc/g1/TestRemsetLoggingPerRegion.java
author sangheki
Thu, 10 Aug 2017 18:09:19 -0700
changeset 46795 623a5e42deb6
parent 40631 ed82623d7831
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:
20305
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
     1
/*
39414
4adf52148100 8160088: update hotspot tests depending on GC to use @requires vm.gc.X
dfazunen
parents: 36851
diff changeset
     2
 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
20305
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
     4
 *
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
     8
 *
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    14
 *
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    18
 *
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    21
 * questions.
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    22
 */
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    23
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    24
/*
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31629
diff changeset
    25
 * @test TestRemsetLoggingPerRegion.java
39414
4adf52148100 8160088: update hotspot tests depending on GC to use @requires vm.gc.X
dfazunen
parents: 36851
diff changeset
    26
 * @requires vm.gc.G1
35189
a69874af6697 8145534: TestRemsetLogging.java takes a long time
tschatzl
parents: 35061
diff changeset
    27
 * @bug 8014078 8129977 8145534
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39414
diff changeset
    28
 * @library /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 35189
diff changeset
    29
 * @modules java.base/jdk.internal.misc
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 20305
diff changeset
    30
 *          java.management/sun.management
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39414
diff changeset
    31
 * @build sun.hotspot.WhiteBox
35189
a69874af6697 8145534: TestRemsetLogging.java takes a long time
tschatzl
parents: 35061
diff changeset
    32
 * @run main ClassFileInstaller sun.hotspot.WhiteBox
a69874af6697 8145534: TestRemsetLogging.java takes a long time
tschatzl
parents: 35061
diff changeset
    33
 *                              sun.hotspot.WhiteBox$WhiteBoxPermission
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31629
diff changeset
    34
 * @summary Verify output of -Xlog:gc+remset*=trace in regards to per-region type output
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31629
diff changeset
    35
 * @run main TestRemsetLoggingPerRegion
20305
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    36
 */
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    37
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31629
diff changeset
    38
public class TestRemsetLoggingPerRegion {
20305
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    39
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    40
    public static void main(String[] args) throws Exception {
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    41
        String result;
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    42
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    43
        // single remembered set summary output at the end
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31629
diff changeset
    44
        result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace" }, 0);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31629
diff changeset
    45
        TestRemsetLoggingTools.expectPerRegionRSetSummaries(result, 1, 0);
20305
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    46
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    47
        // two times remembered set summary output
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31629
diff changeset
    48
        result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace", "-XX:G1SummarizeRSetStatsPeriod=1" }, 1);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31629
diff changeset
    49
        TestRemsetLoggingTools.expectPerRegionRSetSummaries(result, 1, 2);
20305
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    50
    }
af013cf4a5e6 8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
diff changeset
    51
}