author | coleenp |
Mon, 14 Jan 2013 11:01:39 -0500 | |
changeset 15194 | a35093d73168 |
parent 13728 | 882756847a04 |
child 15482 | 470d0b0c09f1 |
child 15437 | eabd4555d072 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2 |
* Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5402
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5402
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5402
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "gc_interface/collectedHeap.hpp" |
|
27 |
#include "memory/genCollectedHeap.hpp" |
|
28 |
#include "memory/heapInspection.hpp" |
|
29 |
#include "memory/resourceArea.hpp" |
|
30 |
#include "runtime/os.hpp" |
|
31 |
#include "utilities/globalDefinitions.hpp" |
|
32 |
#ifndef SERIALGC |
|
33 |
#include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp" |
|
34 |
#endif |
|
1 | 35 |
|
36 |
// HeapInspection |
|
37 |
||
38 |
int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) { |
|
39 |
if(e1->_instance_words > e2->_instance_words) { |
|
40 |
return -1; |
|
41 |
} else if(e1->_instance_words < e2->_instance_words) { |
|
42 |
return 1; |
|
43 |
} |
|
44 |
return 0; |
|
45 |
} |
|
46 |
||
47 |
void KlassInfoEntry::print_on(outputStream* st) const { |
|
48 |
ResourceMark rm; |
|
49 |
const char* name;; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
50 |
if (_klass->name() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
51 |
name = _klass->external_name(); |
1 | 52 |
} else { |
53 |
if (_klass == Universe::boolArrayKlassObj()) name = "<boolArrayKlass>"; else |
|
54 |
if (_klass == Universe::charArrayKlassObj()) name = "<charArrayKlass>"; else |
|
55 |
if (_klass == Universe::singleArrayKlassObj()) name = "<singleArrayKlass>"; else |
|
56 |
if (_klass == Universe::doubleArrayKlassObj()) name = "<doubleArrayKlass>"; else |
|
57 |
if (_klass == Universe::byteArrayKlassObj()) name = "<byteArrayKlass>"; else |
|
58 |
if (_klass == Universe::shortArrayKlassObj()) name = "<shortArrayKlass>"; else |
|
59 |
if (_klass == Universe::intArrayKlassObj()) name = "<intArrayKlass>"; else |
|
60 |
if (_klass == Universe::longArrayKlassObj()) name = "<longArrayKlass>"; else |
|
61 |
name = "<no name>"; |
|
62 |
} |
|
63 |
// simplify the formatting (ILP32 vs LP64) - always cast the numbers to 64-bit |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
64 |
st->print_cr(INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13) " %s", |
1 | 65 |
(jlong) _instance_count, |
66 |
(julong) _instance_words * HeapWordSize, |
|
67 |
name); |
|
68 |
} |
|
69 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
70 |
KlassInfoEntry* KlassInfoBucket::lookup(Klass* const k) { |
1 | 71 |
KlassInfoEntry* elt = _list; |
72 |
while (elt != NULL) { |
|
73 |
if (elt->is_equal(k)) { |
|
74 |
return elt; |
|
75 |
} |
|
76 |
elt = elt->next(); |
|
77 |
} |
|
78 |
elt = new KlassInfoEntry(k, list()); |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
79 |
// We may be out of space to allocate the new entry. |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
80 |
if (elt != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
81 |
set_list(elt); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
82 |
} |
1 | 83 |
return elt; |
84 |
} |
|
85 |
||
86 |
void KlassInfoBucket::iterate(KlassInfoClosure* cic) { |
|
87 |
KlassInfoEntry* elt = _list; |
|
88 |
while (elt != NULL) { |
|
89 |
cic->do_cinfo(elt); |
|
90 |
elt = elt->next(); |
|
91 |
} |
|
92 |
} |
|
93 |
||
94 |
void KlassInfoBucket::empty() { |
|
95 |
KlassInfoEntry* elt = _list; |
|
96 |
_list = NULL; |
|
97 |
while (elt != NULL) { |
|
98 |
KlassInfoEntry* next = elt->next(); |
|
99 |
delete elt; |
|
100 |
elt = next; |
|
101 |
} |
|
102 |
} |
|
103 |
||
104 |
KlassInfoTable::KlassInfoTable(int size, HeapWord* ref) { |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
105 |
_size = 0; |
1 | 106 |
_ref = ref; |
13195 | 107 |
_buckets = NEW_C_HEAP_ARRAY(KlassInfoBucket, size, mtInternal); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
108 |
if (_buckets != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
109 |
_size = size; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
110 |
for (int index = 0; index < _size; index++) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
111 |
_buckets[index].initialize(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
112 |
} |
1 | 113 |
} |
114 |
} |
|
115 |
||
116 |
KlassInfoTable::~KlassInfoTable() { |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
117 |
if (_buckets != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
118 |
for (int index = 0; index < _size; index++) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
119 |
_buckets[index].empty(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
120 |
} |
13195 | 121 |
FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets, mtInternal); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
122 |
_size = 0; |
1 | 123 |
} |
124 |
} |
|
125 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
126 |
uint KlassInfoTable::hash(Klass* p) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
127 |
assert(p->is_metadata(), "all klasses are metadata"); |
1 | 128 |
return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2); |
129 |
} |
|
130 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
131 |
KlassInfoEntry* KlassInfoTable::lookup(Klass* const k) { |
1 | 132 |
uint idx = hash(k) % _size; |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
133 |
assert(_buckets != NULL, "Allocation failure should have been caught"); |
1 | 134 |
KlassInfoEntry* e = _buckets[idx].lookup(k); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
135 |
// Lookup may fail if this is a new klass for which we |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
136 |
// could not allocate space for an new entry. |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
137 |
assert(e == NULL || k == e->klass(), "must be equal"); |
1 | 138 |
return e; |
139 |
} |
|
140 |
||
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
141 |
// Return false if the entry could not be recorded on account |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
142 |
// of running out of space required to create a new entry. |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
143 |
bool KlassInfoTable::record_instance(const oop obj) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
144 |
Klass* k = obj->klass(); |
1 | 145 |
KlassInfoEntry* elt = lookup(k); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
146 |
// elt may be NULL if it's a new klass for which we |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
147 |
// could not allocate space for a new entry in the hashtable. |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
148 |
if (elt != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
149 |
elt->set_count(elt->count() + 1); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
150 |
elt->set_words(elt->words() + obj->size()); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
151 |
return true; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
152 |
} else { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
153 |
return false; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
154 |
} |
1 | 155 |
} |
156 |
||
157 |
void KlassInfoTable::iterate(KlassInfoClosure* cic) { |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
158 |
assert(_size == 0 || _buckets != NULL, "Allocation failure should have been caught"); |
1 | 159 |
for (int index = 0; index < _size; index++) { |
160 |
_buckets[index].iterate(cic); |
|
161 |
} |
|
162 |
} |
|
163 |
||
164 |
int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) { |
|
165 |
return (*e1)->compare(*e1,*e2); |
|
166 |
} |
|
167 |
||
168 |
KlassInfoHisto::KlassInfoHisto(const char* title, int estimatedCount) : |
|
169 |
_title(title) { |
|
13195 | 170 |
_elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<KlassInfoEntry*>(estimatedCount,true); |
1 | 171 |
} |
172 |
||
173 |
KlassInfoHisto::~KlassInfoHisto() { |
|
174 |
delete _elements; |
|
175 |
} |
|
176 |
||
177 |
void KlassInfoHisto::add(KlassInfoEntry* cie) { |
|
178 |
elements()->append(cie); |
|
179 |
} |
|
180 |
||
181 |
void KlassInfoHisto::sort() { |
|
182 |
elements()->sort(KlassInfoHisto::sort_helper); |
|
183 |
} |
|
184 |
||
185 |
void KlassInfoHisto::print_elements(outputStream* st) const { |
|
186 |
// simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit |
|
187 |
jlong total = 0; |
|
188 |
julong totalw = 0; |
|
189 |
for(int i=0; i < elements()->length(); i++) { |
|
190 |
st->print("%4d: ", i+1); |
|
191 |
elements()->at(i)->print_on(st); |
|
192 |
total += elements()->at(i)->count(); |
|
193 |
totalw += elements()->at(i)->words(); |
|
194 |
} |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
195 |
st->print_cr("Total " INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13), |
1 | 196 |
total, totalw * HeapWordSize); |
197 |
} |
|
198 |
||
199 |
void KlassInfoHisto::print_on(outputStream* st) const { |
|
200 |
st->print_cr("%s",title()); |
|
201 |
print_elements(st); |
|
202 |
} |
|
203 |
||
204 |
class HistoClosure : public KlassInfoClosure { |
|
205 |
private: |
|
206 |
KlassInfoHisto* _cih; |
|
207 |
public: |
|
208 |
HistoClosure(KlassInfoHisto* cih) : _cih(cih) {} |
|
209 |
||
210 |
void do_cinfo(KlassInfoEntry* cie) { |
|
211 |
_cih->add(cie); |
|
212 |
} |
|
213 |
}; |
|
214 |
||
215 |
class RecordInstanceClosure : public ObjectClosure { |
|
216 |
private: |
|
217 |
KlassInfoTable* _cit; |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
218 |
size_t _missed_count; |
1 | 219 |
public: |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
220 |
RecordInstanceClosure(KlassInfoTable* cit) : |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
221 |
_cit(cit), _missed_count(0) {} |
1 | 222 |
|
223 |
void do_object(oop obj) { |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
224 |
if (!_cit->record_instance(obj)) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
225 |
_missed_count++; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
226 |
} |
1 | 227 |
} |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
228 |
|
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
229 |
size_t missed_count() { return _missed_count; } |
1 | 230 |
}; |
231 |
||
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1893
diff
changeset
|
232 |
void HeapInspection::heap_inspection(outputStream* st, bool need_prologue) { |
1 | 233 |
ResourceMark rm; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
234 |
// Get some random number for ref (the hash key) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
235 |
HeapWord* ref = (HeapWord*) Universe::boolArrayKlassObj(); |
1 | 236 |
CollectedHeap* heap = Universe::heap(); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
237 |
bool is_shared_heap = false; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
238 |
|
1 | 239 |
// Collect klass instance info |
240 |
KlassInfoTable cit(KlassInfoTable::cit_size, ref); |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
241 |
if (!cit.allocation_failed()) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
242 |
// Iterate over objects in the heap |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
243 |
RecordInstanceClosure ric(&cit); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
244 |
Universe::heap()->object_iterate(&ric); |
1 | 245 |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
246 |
// Report if certain classes are not counted because of |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
247 |
// running out of C-heap for the histogram. |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
248 |
size_t missed_count = ric.missed_count(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
249 |
if (missed_count != 0) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
250 |
st->print_cr("WARNING: Ran out of C-heap; undercounted " SIZE_FORMAT |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
251 |
" total instances in data below", |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
252 |
missed_count); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
253 |
} |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
254 |
// Sort and print klass instance info |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
255 |
KlassInfoHisto histo("\n" |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
256 |
" num #instances #bytes class name\n" |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
257 |
"----------------------------------------------", |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
258 |
KlassInfoHisto::histo_initial_size); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
259 |
HistoClosure hc(&histo); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
260 |
cit.iterate(&hc); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
261 |
histo.sort(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
262 |
histo.print_on(st); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
263 |
} else { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
264 |
st->print_cr("WARNING: Ran out of C-heap; histogram not generated"); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
265 |
} |
1 | 266 |
st->flush(); |
267 |
||
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1893
diff
changeset
|
268 |
if (need_prologue && is_shared_heap) { |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
269 |
SharedHeap* sh = (SharedHeap*)heap; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
270 |
sh->gc_epilogue(false /* !full */); // release all acquired locks, etc. |
1 | 271 |
} |
272 |
} |
|
273 |
||
274 |
class FindInstanceClosure : public ObjectClosure { |
|
275 |
private: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
276 |
Klass* _klass; |
1 | 277 |
GrowableArray<oop>* _result; |
278 |
||
279 |
public: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
280 |
FindInstanceClosure(Klass* k, GrowableArray<oop>* result) : _klass(k), _result(result) {}; |
1 | 281 |
|
282 |
void do_object(oop obj) { |
|
283 |
if (obj->is_a(_klass)) { |
|
284 |
_result->append(obj); |
|
285 |
} |
|
286 |
} |
|
287 |
}; |
|
288 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
289 |
void HeapInspection::find_instances_at_safepoint(Klass* k, GrowableArray<oop>* result) { |
1 | 290 |
assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped"); |
5402
c51fd0c1d005
6888953: some calls to function-like macros are missing semicolons
jcoomes
parents:
2154
diff
changeset
|
291 |
assert(Heap_lock->is_locked(), "should have the Heap_lock"); |
1 | 292 |
|
293 |
// Ensure that the heap is parsable |
|
294 |
Universe::heap()->ensure_parsability(false); // no need to retire TALBs |
|
295 |
||
296 |
// Iterate over objects in the heap |
|
297 |
FindInstanceClosure fic(k, result); |
|
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
298 |
// If this operation encounters a bad object when using CMS, |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
299 |
// consider using safe_object_iterate() which avoids metadata |
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
300 |
// objects that may contain bad references. |
1 | 301 |
Universe::heap()->object_iterate(&fic); |
302 |
} |