hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/g1/G1CollectedHeap.java
author brutisso
Thu, 02 Apr 2015 16:08:41 +0200
changeset 30154 39cd4e2ccf1c
parent 26837 72a43d3841e7
permissions -rw-r--r--
8076452: Remove SharedHeap Reviewed-by: stefank, sjohanss, david
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
/*
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
     2
 * Copyright (c) 2011, 2012, 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
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    25
package sun.jvm.hotspot.gc_implementation.g1;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    26
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    27
import java.util.Iterator;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    28
import java.util.Observable;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    29
import java.util.Observer;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    30
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    31
import sun.jvm.hotspot.debugger.Address;
30154
39cd4e2ccf1c 8076452: Remove SharedHeap
brutisso
parents: 26837
diff changeset
    32
import sun.jvm.hotspot.gc_interface.CollectedHeap;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    33
import sun.jvm.hotspot.gc_interface.CollectedHeapName;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    34
import sun.jvm.hotspot.memory.MemRegion;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    35
import sun.jvm.hotspot.memory.SpaceClosure;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    36
import sun.jvm.hotspot.runtime.VM;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    37
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
    38
import sun.jvm.hotspot.types.AddressField;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    39
import sun.jvm.hotspot.types.Type;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    40
import sun.jvm.hotspot.types.TypeDataBase;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    41
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    42
// Mirror class for G1CollectedHeap.
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    43
30154
39cd4e2ccf1c 8076452: Remove SharedHeap
brutisso
parents: 26837
diff changeset
    44
public class G1CollectedHeap extends CollectedHeap {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    45
    // HeapRegionManager _hrm;
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    46
    static private long hrmFieldOffset;
26157
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 23450
diff changeset
    47
    // MemRegion _g1_reserved;
70eddb655686 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 23450
diff changeset
    48
    static private long g1ReservedFieldOffset;
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
    49
    // G1Allocator* _allocator
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
    50
    static private AddressField g1Allocator;
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    51
    // G1MonitoringSupport* _g1mm;
10675
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    52
    static private AddressField g1mmField;
23450
c7c6202fc7e2 8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents: 11577
diff changeset
    53
    // HeapRegionSet _old_set;
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    54
    static private long oldSetFieldOffset;
23450
c7c6202fc7e2 8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents: 11577
diff changeset
    55
    // HeapRegionSet _humongous_set;
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    56
    static private long humongousSetFieldOffset;
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    57
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    58
    static {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    59
        VM.registerVMInitializedObserver(new Observer() {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    60
                public void update(Observable o, Object data) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    61
                    initialize(VM.getVM().getTypeDataBase());
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    62
                }
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
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    65
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    66
    static private synchronized void initialize(TypeDataBase db) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    67
        Type type = db.lookupType("G1CollectedHeap");
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    68
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    69
        hrmFieldOffset = type.getField("_hrm").getOffset();
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
    70
        g1Allocator = type.getAddressField("_allocator");
10675
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    71
        g1mmField = type.getAddressField("_g1mm");
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    72
        oldSetFieldOffset = type.getField("_old_set").getOffset();
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
    73
        humongousSetFieldOffset = type.getField("_humongous_set").getOffset();
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    74
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    75
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    76
    public long capacity() {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    77
        return hrm().capacity();
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    78
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    79
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    80
    public long used() {
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
    81
        return allocator().getSummaryBytes();
10663
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
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    84
    public long n_regions() {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    85
        return hrm().length();
10663
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
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    88
    private HeapRegionManager hrm() {
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    89
        Address hrmAddr = addr.addOffsetTo(hrmFieldOffset);
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    90
        return (HeapRegionManager) VMObjectFactory.newObject(HeapRegionManager.class,
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
    91
                                                         hrmAddr);
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    92
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
    93
10675
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    94
    public G1MonitoringSupport g1mm() {
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    95
        Address g1mmAddr = g1mmField.getValue(addr);
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    96
        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
    97
    }
8b887b2cb116 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 10663
diff changeset
    98
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
    99
    public G1Allocator allocator() {
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
   100
        Address g1AllocatorAddr = g1Allocator.getValue(addr);
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
   101
        return (G1Allocator) VMObjectFactory.newObject(G1Allocator.class, g1AllocatorAddr);
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
   102
    }
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26316
diff changeset
   103
11577
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   104
    public HeapRegionSetBase oldSet() {
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   105
        Address oldSetAddr = addr.addOffsetTo(oldSetFieldOffset);
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   106
        return (HeapRegionSetBase) VMObjectFactory.newObject(HeapRegionSetBase.class,
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   107
                                                             oldSetAddr);
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   108
    }
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   109
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   110
    public HeapRegionSetBase humongousSet() {
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   111
        Address humongousSetAddr = addr.addOffsetTo(humongousSetFieldOffset);
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   112
        return (HeapRegionSetBase) VMObjectFactory.newObject(HeapRegionSetBase.class,
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   113
                                                             humongousSetAddr);
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   114
    }
0af7e6e062a7 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 10675
diff changeset
   115
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   116
    private Iterator<HeapRegion> heapRegionIterator() {
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26157
diff changeset
   117
        return hrm().heapRegionIterator();
10663
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   118
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   119
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   120
    public void heapRegionIterate(SpaceClosure scl) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   121
        Iterator<HeapRegion> iter = heapRegionIterator();
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   122
        while (iter.hasNext()) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   123
            HeapRegion hr = iter.next();
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   124
            scl.doSpace(hr);
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   125
        }
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 CollectedHeapName kind() {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   129
        return CollectedHeapName.G1_COLLECTED_HEAP;
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   130
    }
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   131
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   132
    public G1CollectedHeap(Address addr) {
3ef855a3329b 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
   133
        super(addr);
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
}