annotate agent/src/share/classes/sun/jvm/hotspot/gc_implementation/g1/G1CollectedHeap.java @ 6010:720b6a76dd9d

7157073: G1: type change size_t -> uint for region counts / indexes Summary: Change the type of fields / variables / etc. that represent region counts and indeces from size_t to uint. Reviewed-by: iveresov, brutisso, jmasa, jwilhelm
author tonyp
date Wed, 18 Apr 2012 07:21:15 -0400
parents 0b3d1ec6eaee
children 58fc1b1523dc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
1 /*
4830
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
2 * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
4 *
4f93f0d00802 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
4f93f0d00802 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
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
7 * published by the Free Software Foundation.
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
8 *
4f93f0d00802 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
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4f93f0d00802 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
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
13 * accompanied this code).
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
14 *
4f93f0d00802 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
4f93f0d00802 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,
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
18 *
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4f93f0d00802 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
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
21 * questions.
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
22 *
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
23 */
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
24
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
25 package sun.jvm.hotspot.gc_implementation.g1;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
26
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
27 import java.util.Iterator;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
28 import java.util.Observable;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
29 import java.util.Observer;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
30
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
31 import sun.jvm.hotspot.debugger.Address;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
32 import sun.jvm.hotspot.gc_interface.CollectedHeapName;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
33 import sun.jvm.hotspot.memory.MemRegion;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
34 import sun.jvm.hotspot.memory.SharedHeap;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
35 import sun.jvm.hotspot.memory.SpaceClosure;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
36 import sun.jvm.hotspot.runtime.VM;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
37 import sun.jvm.hotspot.runtime.VMObjectFactory;
3984
81aa07130d30 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 3972
diff changeset
38 import sun.jvm.hotspot.types.AddressField;
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
39 import sun.jvm.hotspot.types.CIntegerField;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
40 import sun.jvm.hotspot.types.Type;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
41 import sun.jvm.hotspot.types.TypeDataBase;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
42
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
43 // Mirror class for G1CollectedHeap.
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
44
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
45 public class G1CollectedHeap extends SharedHeap {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
46 // HeapRegionSeq _seq;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
47 static private long hrsFieldOffset;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
48 // MemRegion _g1_committed;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
49 static private long g1CommittedFieldOffset;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
50 // size_t _summary_bytes_used;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
51 static private CIntegerField summaryBytesUsedField;
4830
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
52 // G1MonitoringSupport* _g1mm;
3984
81aa07130d30 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 3972
diff changeset
53 static private AddressField g1mmField;
4830
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
54 // MasterOldRegionSet _old_set;
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
55 static private long oldSetFieldOffset;
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
56 // MasterHumongousRegionSet _humongous_set;
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
57 static private long humongousSetFieldOffset;
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
58
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
59 static {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
60 VM.registerVMInitializedObserver(new Observer() {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
61 public void update(Observable o, Object data) {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
62 initialize(VM.getVM().getTypeDataBase());
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
63 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
64 });
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
65 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
66
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
67 static private synchronized void initialize(TypeDataBase db) {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
68 Type type = db.lookupType("G1CollectedHeap");
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
69
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
70 hrsFieldOffset = type.getField("_hrs").getOffset();
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
71 g1CommittedFieldOffset = type.getField("_g1_committed").getOffset();
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
72 summaryBytesUsedField = type.getCIntegerField("_summary_bytes_used");
3984
81aa07130d30 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 3972
diff changeset
73 g1mmField = type.getAddressField("_g1mm");
4830
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
74 oldSetFieldOffset = type.getField("_old_set").getOffset();
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
75 humongousSetFieldOffset = type.getField("_humongous_set").getOffset();
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
76 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
77
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
78 public long capacity() {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
79 Address g1CommittedAddr = addr.addOffsetTo(g1CommittedFieldOffset);
4830
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
80 MemRegion g1Committed = new MemRegion(g1CommittedAddr);
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
81 return g1Committed.byteSize();
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
82 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
83
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
84 public long used() {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
85 return summaryBytesUsedField.getValue(addr);
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
86 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
87
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
88 public long n_regions() {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
89 return hrs().length();
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
90 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
91
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
92 private HeapRegionSeq hrs() {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
93 Address hrsAddr = addr.addOffsetTo(hrsFieldOffset);
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
94 return (HeapRegionSeq) VMObjectFactory.newObject(HeapRegionSeq.class,
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
95 hrsAddr);
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
96 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
97
3984
81aa07130d30 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 3972
diff changeset
98 public G1MonitoringSupport g1mm() {
81aa07130d30 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 3972
diff changeset
99 Address g1mmAddr = g1mmField.getValue(addr);
81aa07130d30 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 3972
diff changeset
100 return (G1MonitoringSupport) VMObjectFactory.newObject(G1MonitoringSupport.class, g1mmAddr);
81aa07130d30 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 3972
diff changeset
101 }
81aa07130d30 7097048: G1: extend the G1 SA changes to print per-heap space information
tonyp
parents: 3972
diff changeset
102
4830
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
103 public HeapRegionSetBase oldSet() {
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
104 Address oldSetAddr = addr.addOffsetTo(oldSetFieldOffset);
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
105 return (HeapRegionSetBase) VMObjectFactory.newObject(HeapRegionSetBase.class,
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
106 oldSetAddr);
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
107 }
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
108
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
109 public HeapRegionSetBase humongousSet() {
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
110 Address humongousSetAddr = addr.addOffsetTo(humongousSetFieldOffset);
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
111 return (HeapRegionSetBase) VMObjectFactory.newObject(HeapRegionSetBase.class,
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
112 humongousSetAddr);
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
113 }
0b3d1ec6eaee 7097586: G1: improve the per-space output when using jmap -heap
tonyp
parents: 3984
diff changeset
114
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
115 private Iterator<HeapRegion> heapRegionIterator() {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
116 return hrs().heapRegionIterator();
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
117 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
118
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
119 public void heapRegionIterate(SpaceClosure scl) {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
120 Iterator<HeapRegion> iter = heapRegionIterator();
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
121 while (iter.hasNext()) {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
122 HeapRegion hr = iter.next();
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
123 scl.doSpace(hr);
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
124 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
125 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
126
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
127 public CollectedHeapName kind() {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
128 return CollectedHeapName.G1_COLLECTED_HEAP;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
129 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
130
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
131 public G1CollectedHeap(Address addr) {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
132 super(addr);
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
133 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
134 }