src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/g1/G1CollectedHeap.java
author tschatzl
Wed, 22 Aug 2018 20:37:07 +0200
changeset 51494 1906adbef2dc
parent 49628 88478047bc8f
child 53116 bb03098c4dde
permissions -rw-r--r--
8208498: Put archive regions into a first-class HeapRegionSet Summary: Maintain archive regions in a HeapRegionSet like other region types. Reviewed-by: phh, sangheki
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
     1
/*
49463
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
     2
 * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
     4
 *
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
     8
 *
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    13
 * accompanied this code).
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    14
 *
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    18
 *
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    21
 * questions.
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    22
 *
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    23
 */
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30154
diff changeset
    25
package sun.jvm.hotspot.gc.g1;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    26
40858
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
    27
import java.io.PrintStream;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    28
import java.util.Iterator;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    29
import java.util.Observable;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    30
import java.util.Observer;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    31
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    32
import sun.jvm.hotspot.debugger.Address;
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30154
diff changeset
    33
import sun.jvm.hotspot.gc.shared.CollectedHeap;
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30154
diff changeset
    34
import sun.jvm.hotspot.gc.shared.CollectedHeapName;
30769
df60209aac9d 8080581: Align SA with new GC directory structure
pliden
parents: 30764
diff changeset
    35
import sun.jvm.hotspot.gc.shared.SpaceClosure;
49463
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
    36
import sun.jvm.hotspot.gc.shared.PrintRegionClosure;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    37
import sun.jvm.hotspot.memory.MemRegion;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    38
import sun.jvm.hotspot.runtime.VM;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    39
import sun.jvm.hotspot.runtime.VMObjectFactory;
10675
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    40
import sun.jvm.hotspot.types.AddressField;
31975
1e8d389159cb 8131319: Move G1Allocator::_summary_bytes_used back to G1CollectedHeap
ehelin
parents: 30769
diff changeset
    41
import sun.jvm.hotspot.types.CIntegerField;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    42
import sun.jvm.hotspot.types.Type;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    43
import sun.jvm.hotspot.types.TypeDataBase;
49463
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
    44
import sun.jvm.hotspot.tools.HeapSummary;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    45
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    46
// Mirror class for G1CollectedHeap.
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    47
30154
39cd4e2ccf1c 8076452: Remove SharedHeap
brutisso
parents: 26837
diff changeset
    48
public class G1CollectedHeap extends CollectedHeap {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    49
    // HeapRegionManager _hrm;
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    50
    static private long hrmFieldOffset;
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 23450
diff changeset
    51
    // MemRegion _g1_reserved;
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 23450
diff changeset
    52
    static private long g1ReservedFieldOffset;
31975
1e8d389159cb 8131319: Move G1Allocator::_summary_bytes_used back to G1CollectedHeap
ehelin
parents: 30769
diff changeset
    53
    // size_t _summary_bytes_used;
1e8d389159cb 8131319: Move G1Allocator::_summary_bytes_used back to G1CollectedHeap
ehelin
parents: 30769
diff changeset
    54
    static private CIntegerField summaryBytesUsedField;
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    55
    // G1MonitoringSupport* _g1mm;
10675
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    56
    static private AddressField g1mmField;
23450
c7c6202fc7e2 8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents: 11577
diff changeset
    57
    // HeapRegionSet _old_set;
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    58
    static private long oldSetFieldOffset;
51494
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
    59
    // HeapRegionSet _archive_set;
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
    60
    static private long archiveSetFieldOffset;
23450
c7c6202fc7e2 8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents: 11577
diff changeset
    61
    // HeapRegionSet _humongous_set;
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    62
    static private long humongousSetFieldOffset;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    63
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    64
    static {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    65
        VM.registerVMInitializedObserver(new Observer() {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    66
                public void update(Observable o, Object data) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    67
                    initialize(VM.getVM().getTypeDataBase());
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    68
                }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    69
            });
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    70
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    71
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    72
    static private synchronized void initialize(TypeDataBase db) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    73
        Type type = db.lookupType("G1CollectedHeap");
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    74
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    75
        hrmFieldOffset = type.getField("_hrm").getOffset();
31975
1e8d389159cb 8131319: Move G1Allocator::_summary_bytes_used back to G1CollectedHeap
ehelin
parents: 30769
diff changeset
    76
        summaryBytesUsedField = type.getCIntegerField("_summary_bytes_used");
10675
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    77
        g1mmField = type.getAddressField("_g1mm");
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    78
        oldSetFieldOffset = type.getField("_old_set").getOffset();
51494
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
    79
        archiveSetFieldOffset = type.getField("_archive_set").getOffset();
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    80
        humongousSetFieldOffset = type.getField("_humongous_set").getOffset();
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    81
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    82
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    83
    public long capacity() {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    84
        return hrm().capacity();
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    85
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    86
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    87
    public long used() {
31975
1e8d389159cb 8131319: Move G1Allocator::_summary_bytes_used back to G1CollectedHeap
ehelin
parents: 30769
diff changeset
    88
        return summaryBytesUsedField.getValue(addr);
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    89
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    90
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    91
    public long n_regions() {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    92
        return hrm().length();
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    93
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    94
47602
d4380ee1cbe9 8187403: [Unknown generation] is shown in Stack Memory on HSDB
ysuenaga
parents: 47216
diff changeset
    95
    public HeapRegionManager hrm() {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    96
        Address hrmAddr = addr.addOffsetTo(hrmFieldOffset);
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    97
        return (HeapRegionManager) VMObjectFactory.newObject(HeapRegionManager.class,
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    98
                                                         hrmAddr);
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    99
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   100
10675
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
   101
    public G1MonitoringSupport g1mm() {
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
   102
        Address g1mmAddr = g1mmField.getValue(addr);
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
   103
        return (G1MonitoringSupport) VMObjectFactory.newObject(G1MonitoringSupport.class, g1mmAddr);
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
   104
    }
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
   105
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   106
    public HeapRegionSetBase oldSet() {
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   107
        Address oldSetAddr = addr.addOffsetTo(oldSetFieldOffset);
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   108
        return (HeapRegionSetBase) VMObjectFactory.newObject(HeapRegionSetBase.class,
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   109
                                                             oldSetAddr);
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   110
    }
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   111
51494
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
   112
    public HeapRegionSetBase archiveSet() {
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
   113
        Address archiveSetAddr = addr.addOffsetTo(archiveSetFieldOffset);
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
   114
        return (HeapRegionSetBase) VMObjectFactory.newObject(HeapRegionSetBase.class,
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
   115
                                                             archiveSetAddr);
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
   116
    }
1906adbef2dc 8208498: Put archive regions into a first-class HeapRegionSet
tschatzl
parents: 49628
diff changeset
   117
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   118
    public HeapRegionSetBase humongousSet() {
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   119
        Address humongousSetAddr = addr.addOffsetTo(humongousSetFieldOffset);
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   120
        return (HeapRegionSetBase) VMObjectFactory.newObject(HeapRegionSetBase.class,
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   121
                                                             humongousSetAddr);
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   122
    }
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   123
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   124
    private Iterator<HeapRegion> heapRegionIterator() {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
   125
        return hrm().heapRegionIterator();
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   126
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   127
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   128
    public void heapRegionIterate(SpaceClosure scl) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   129
        Iterator<HeapRegion> iter = heapRegionIterator();
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   130
        while (iter.hasNext()) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   131
            HeapRegion hr = iter.next();
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   132
            scl.doSpace(hr);
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   133
        }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   134
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   135
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   136
    public CollectedHeapName kind() {
49628
88478047bc8f 8199918: Shorten names of CollectedHeap::Name members
pliden
parents: 49463
diff changeset
   137
        return CollectedHeapName.G1;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   138
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   139
40858
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   140
    @Override
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   141
    public void printOn(PrintStream tty) {
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   142
        MemRegion mr = reservedRegion();
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   143
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   144
        tty.print("garbage-first heap");
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   145
        tty.print(" [" + mr.start() + ", " + mr.end() + "]");
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   146
        tty.println(" region size " + (HeapRegion.grainBytes() / 1024) + "K");
49463
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
   147
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
   148
        HeapSummary sum = new HeapSummary();
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
   149
        sum.printG1HeapSummary(this);
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
   150
    }
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
   151
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
   152
    public void printRegionDetails(PrintStream tty) {
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
   153
        PrintRegionClosure prc = new PrintRegionClosure(tty);
ccb003941743 8175312: SA: clhsdb: Provide an improved heap summary for 'universe' for G1GC
jgeorge
parents: 47602
diff changeset
   154
        heapRegionIterate(prc);
40858
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   155
    }
fe00019e9c58 8163581: Heap Parameters in HSDB cannot handle G1CollectedHeap
ysuenaga
parents: 35217
diff changeset
   156
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   157
    public G1CollectedHeap(Address addr) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   158
        super(addr);
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   159
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   160
}