annotate agent/src/share/classes/sun/jvm/hotspot/gc_implementation/g1/HeapRegionSeq.java @ 20336:6701abbc4441

8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data Summary: Let HeapRegionSeq manage the heap region and auxiliary data to decrease the amount of responsibilities of G1CollectedHeap, and encapsulate this work from other code. Reviewed-by: jwilhelm, jmasa, mgerdin, brutisso
author tschatzl
date Tue, 19 Aug 2014 10:50:27 +0200
parents 50287b659eb8
children
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 /*
12904
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
2 * Copyright (c) 2011, 2013, 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.runtime.VM;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
33 import sun.jvm.hotspot.runtime.VMObject;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
34 import sun.jvm.hotspot.runtime.VMObjectFactory;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
35 import sun.jvm.hotspot.types.AddressField;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
36 import sun.jvm.hotspot.types.CIntegerField;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
37 import sun.jvm.hotspot.types.Type;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
38 import sun.jvm.hotspot.types.TypeDataBase;
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
39
12904
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
40 // Mirror class for HeapRegionSeq. It essentially encapsulates the G1HeapRegionTable.
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
41
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
42 public class HeapRegionSeq extends VMObject {
12904
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
43 // G1HeapRegionTable _regions
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
44 static private long regionsFieldOffset;
13419
50287b659eb8 8029329: tmtools tests fail with NPE (in the tool) when run with G1 and FlightRecorder
sjohanss
parents: 12904
diff changeset
45 // uint _committed_length
20336
6701abbc4441 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 13419
diff changeset
46 static private CIntegerField numCommittedField;
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
47
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
48 static {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
49 VM.registerVMInitializedObserver(new Observer() {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
50 public void update(Observable o, Object data) {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
51 initialize(VM.getVM().getTypeDataBase());
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
52 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
53 });
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
54 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
55
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
56 static private synchronized void initialize(TypeDataBase db) {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
57 Type type = db.lookupType("HeapRegionSeq");
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
58
12904
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
59 regionsFieldOffset = type.getField("_regions").getOffset();
20336
6701abbc4441 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 13419
diff changeset
60 numCommittedField = type.getCIntegerField("_num_committed");
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
61 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
62
12904
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
63 private G1HeapRegionTable regions() {
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
64 Address regionsAddr = addr.addOffsetTo(regionsFieldOffset);
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
65 return (G1HeapRegionTable) VMObjectFactory.newObject(G1HeapRegionTable.class,
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
66 regionsAddr);
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
67 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
68
20336
6701abbc4441 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 13419
diff changeset
69 public long capacity() {
6701abbc4441 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 13419
diff changeset
70 return length() * HeapRegion.grainBytes();
6701abbc4441 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 13419
diff changeset
71 }
6701abbc4441 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 13419
diff changeset
72
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
73 public long length() {
12904
9e5fadad7fdf 8025925: jmap fails with "field _length not found in type HeapRegionSeq"
tschatzl
parents: 6010
diff changeset
74 return regions().length();
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
75 }
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
76
13419
50287b659eb8 8029329: tmtools tests fail with NPE (in the tool) when run with G1 and FlightRecorder
sjohanss
parents: 12904
diff changeset
77 public long committedLength() {
20336
6701abbc4441 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 13419
diff changeset
78 return numCommittedField.getValue(addr);
13419
50287b659eb8 8029329: tmtools tests fail with NPE (in the tool) when run with G1 and FlightRecorder
sjohanss
parents: 12904
diff changeset
79 }
50287b659eb8 8029329: tmtools tests fail with NPE (in the tool) when run with G1 and FlightRecorder
sjohanss
parents: 12904
diff changeset
80
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
81 public Iterator<HeapRegion> heapRegionIterator() {
20336
6701abbc4441 8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents: 13419
diff changeset
82 return regions().heapRegionIterator(length());
3972
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
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
85 public HeapRegionSeq(Address addr) {
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents:
diff changeset
86 super(addr);
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 }