author | tonyp |
Tue, 08 Nov 2011 00:41:28 -0500 | |
changeset 10997 | 0be4b3be7197 |
parent 8921 | 14bfe81f2a9d |
child 13195 | be27e1b6a4b9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
8921
14bfe81f2a9d
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents:
8076
diff
changeset
|
2 |
* Copyright (c) 2002, 2011, 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 "oops/klassOop.hpp" |
|
31 |
#include "runtime/os.hpp" |
|
32 |
#include "utilities/globalDefinitions.hpp" |
|
33 |
#ifndef SERIALGC |
|
34 |
#include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp" |
|
35 |
#endif |
|
1 | 36 |
|
37 |
// HeapInspection |
|
38 |
||
39 |
int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) { |
|
40 |
if(e1->_instance_words > e2->_instance_words) { |
|
41 |
return -1; |
|
42 |
} else if(e1->_instance_words < e2->_instance_words) { |
|
43 |
return 1; |
|
44 |
} |
|
45 |
return 0; |
|
46 |
} |
|
47 |
||
48 |
void KlassInfoEntry::print_on(outputStream* st) const { |
|
49 |
ResourceMark rm; |
|
50 |
const char* name;; |
|
51 |
if (_klass->klass_part()->name() != NULL) { |
|
52 |
name = _klass->klass_part()->external_name(); |
|
53 |
} else { |
|
54 |
if (_klass == Universe::klassKlassObj()) name = "<klassKlass>"; else |
|
55 |
if (_klass == Universe::arrayKlassKlassObj()) name = "<arrayKlassKlass>"; else |
|
56 |
if (_klass == Universe::objArrayKlassKlassObj()) name = "<objArrayKlassKlass>"; else |
|
57 |
if (_klass == Universe::instanceKlassKlassObj()) name = "<instanceKlassKlass>"; else |
|
58 |
if (_klass == Universe::typeArrayKlassKlassObj()) name = "<typeArrayKlassKlass>"; else |
|
59 |
if (_klass == Universe::boolArrayKlassObj()) name = "<boolArrayKlass>"; else |
|
60 |
if (_klass == Universe::charArrayKlassObj()) name = "<charArrayKlass>"; else |
|
61 |
if (_klass == Universe::singleArrayKlassObj()) name = "<singleArrayKlass>"; else |
|
62 |
if (_klass == Universe::doubleArrayKlassObj()) name = "<doubleArrayKlass>"; else |
|
63 |
if (_klass == Universe::byteArrayKlassObj()) name = "<byteArrayKlass>"; else |
|
64 |
if (_klass == Universe::shortArrayKlassObj()) name = "<shortArrayKlass>"; else |
|
65 |
if (_klass == Universe::intArrayKlassObj()) name = "<intArrayKlass>"; else |
|
66 |
if (_klass == Universe::longArrayKlassObj()) name = "<longArrayKlass>"; else |
|
67 |
if (_klass == Universe::methodKlassObj()) name = "<methodKlass>"; else |
|
68 |
if (_klass == Universe::constMethodKlassObj()) name = "<constMethodKlass>"; else |
|
69 |
if (_klass == Universe::methodDataKlassObj()) name = "<methodDataKlass>"; else |
|
70 |
if (_klass == Universe::constantPoolKlassObj()) name = "<constantPoolKlass>"; else |
|
71 |
if (_klass == Universe::constantPoolCacheKlassObj()) name = "<constantPoolCacheKlass>"; else |
|
72 |
if (_klass == Universe::compiledICHolderKlassObj()) name = "<compiledICHolderKlass>"; else |
|
73 |
name = "<no name>"; |
|
74 |
} |
|
75 |
// 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
|
76 |
st->print_cr(INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13) " %s", |
1 | 77 |
(jlong) _instance_count, |
78 |
(julong) _instance_words * HeapWordSize, |
|
79 |
name); |
|
80 |
} |
|
81 |
||
82 |
KlassInfoEntry* KlassInfoBucket::lookup(const klassOop k) { |
|
83 |
KlassInfoEntry* elt = _list; |
|
84 |
while (elt != NULL) { |
|
85 |
if (elt->is_equal(k)) { |
|
86 |
return elt; |
|
87 |
} |
|
88 |
elt = elt->next(); |
|
89 |
} |
|
90 |
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
|
91 |
// 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
|
92 |
if (elt != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
93 |
set_list(elt); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
94 |
} |
1 | 95 |
return elt; |
96 |
} |
|
97 |
||
98 |
void KlassInfoBucket::iterate(KlassInfoClosure* cic) { |
|
99 |
KlassInfoEntry* elt = _list; |
|
100 |
while (elt != NULL) { |
|
101 |
cic->do_cinfo(elt); |
|
102 |
elt = elt->next(); |
|
103 |
} |
|
104 |
} |
|
105 |
||
106 |
void KlassInfoBucket::empty() { |
|
107 |
KlassInfoEntry* elt = _list; |
|
108 |
_list = NULL; |
|
109 |
while (elt != NULL) { |
|
110 |
KlassInfoEntry* next = elt->next(); |
|
111 |
delete elt; |
|
112 |
elt = next; |
|
113 |
} |
|
114 |
} |
|
115 |
||
116 |
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
|
117 |
_size = 0; |
1 | 118 |
_ref = ref; |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
119 |
_buckets = NEW_C_HEAP_ARRAY(KlassInfoBucket, size); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
120 |
if (_buckets != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
121 |
_size = size; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
122 |
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
|
123 |
_buckets[index].initialize(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
124 |
} |
1 | 125 |
} |
126 |
} |
|
127 |
||
128 |
KlassInfoTable::~KlassInfoTable() { |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
129 |
if (_buckets != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
130 |
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
|
131 |
_buckets[index].empty(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
132 |
} |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
133 |
FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
134 |
_size = 0; |
1 | 135 |
} |
136 |
} |
|
137 |
||
138 |
uint KlassInfoTable::hash(klassOop p) { |
|
139 |
assert(Universe::heap()->is_in_permanent((HeapWord*)p), "all klasses in permgen"); |
|
140 |
return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2); |
|
141 |
} |
|
142 |
||
143 |
KlassInfoEntry* KlassInfoTable::lookup(const klassOop k) { |
|
144 |
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
|
145 |
assert(_buckets != NULL, "Allocation failure should have been caught"); |
1 | 146 |
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
|
147 |
// 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
|
148 |
// 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
|
149 |
assert(e == NULL || k == e->klass(), "must be equal"); |
1 | 150 |
return e; |
151 |
} |
|
152 |
||
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
153 |
// 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
|
154 |
// 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
|
155 |
bool KlassInfoTable::record_instance(const oop obj) { |
1 | 156 |
klassOop k = obj->klass(); |
157 |
KlassInfoEntry* elt = lookup(k); |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
158 |
// 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
|
159 |
// 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
|
160 |
if (elt != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
161 |
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
|
162 |
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
|
163 |
return true; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
164 |
} else { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
165 |
return false; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
166 |
} |
1 | 167 |
} |
168 |
||
169 |
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
|
170 |
assert(_size == 0 || _buckets != NULL, "Allocation failure should have been caught"); |
1 | 171 |
for (int index = 0; index < _size; index++) { |
172 |
_buckets[index].iterate(cic); |
|
173 |
} |
|
174 |
} |
|
175 |
||
176 |
int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) { |
|
177 |
return (*e1)->compare(*e1,*e2); |
|
178 |
} |
|
179 |
||
180 |
KlassInfoHisto::KlassInfoHisto(const char* title, int estimatedCount) : |
|
181 |
_title(title) { |
|
182 |
_elements = new (ResourceObj::C_HEAP) GrowableArray<KlassInfoEntry*>(estimatedCount,true); |
|
183 |
} |
|
184 |
||
185 |
KlassInfoHisto::~KlassInfoHisto() { |
|
186 |
delete _elements; |
|
187 |
} |
|
188 |
||
189 |
void KlassInfoHisto::add(KlassInfoEntry* cie) { |
|
190 |
elements()->append(cie); |
|
191 |
} |
|
192 |
||
193 |
void KlassInfoHisto::sort() { |
|
194 |
elements()->sort(KlassInfoHisto::sort_helper); |
|
195 |
} |
|
196 |
||
197 |
void KlassInfoHisto::print_elements(outputStream* st) const { |
|
198 |
// simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit |
|
199 |
jlong total = 0; |
|
200 |
julong totalw = 0; |
|
201 |
for(int i=0; i < elements()->length(); i++) { |
|
202 |
st->print("%4d: ", i+1); |
|
203 |
elements()->at(i)->print_on(st); |
|
204 |
total += elements()->at(i)->count(); |
|
205 |
totalw += elements()->at(i)->words(); |
|
206 |
} |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
207 |
st->print_cr("Total " INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13), |
1 | 208 |
total, totalw * HeapWordSize); |
209 |
} |
|
210 |
||
211 |
void KlassInfoHisto::print_on(outputStream* st) const { |
|
212 |
st->print_cr("%s",title()); |
|
213 |
print_elements(st); |
|
214 |
} |
|
215 |
||
216 |
class HistoClosure : public KlassInfoClosure { |
|
217 |
private: |
|
218 |
KlassInfoHisto* _cih; |
|
219 |
public: |
|
220 |
HistoClosure(KlassInfoHisto* cih) : _cih(cih) {} |
|
221 |
||
222 |
void do_cinfo(KlassInfoEntry* cie) { |
|
223 |
_cih->add(cie); |
|
224 |
} |
|
225 |
}; |
|
226 |
||
227 |
class RecordInstanceClosure : public ObjectClosure { |
|
228 |
private: |
|
229 |
KlassInfoTable* _cit; |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
230 |
size_t _missed_count; |
1 | 231 |
public: |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
232 |
RecordInstanceClosure(KlassInfoTable* cit) : |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
233 |
_cit(cit), _missed_count(0) {} |
1 | 234 |
|
235 |
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
|
236 |
if (!_cit->record_instance(obj)) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
237 |
_missed_count++; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
238 |
} |
1 | 239 |
} |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
240 |
|
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
241 |
size_t missed_count() { return _missed_count; } |
1 | 242 |
}; |
243 |
||
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1893
diff
changeset
|
244 |
void HeapInspection::heap_inspection(outputStream* st, bool need_prologue) { |
1 | 245 |
ResourceMark rm; |
246 |
HeapWord* ref; |
|
247 |
||
248 |
CollectedHeap* heap = Universe::heap(); |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
249 |
bool is_shared_heap = false; |
1 | 250 |
switch (heap->kind()) { |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
251 |
case CollectedHeap::G1CollectedHeap: |
1 | 252 |
case CollectedHeap::GenCollectedHeap: { |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
253 |
is_shared_heap = true; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
254 |
SharedHeap* sh = (SharedHeap*)heap; |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1893
diff
changeset
|
255 |
if (need_prologue) { |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1893
diff
changeset
|
256 |
sh->gc_prologue(false /* !full */); // get any necessary locks, etc. |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1893
diff
changeset
|
257 |
} |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
258 |
ref = sh->perm_gen()->used_region().start(); |
1 | 259 |
break; |
260 |
} |
|
261 |
#ifndef SERIALGC |
|
262 |
case CollectedHeap::ParallelScavengeHeap: { |
|
263 |
ParallelScavengeHeap* psh = (ParallelScavengeHeap*)heap; |
|
264 |
ref = psh->perm_gen()->object_space()->used_region().start(); |
|
265 |
break; |
|
266 |
} |
|
267 |
#endif // SERIALGC |
|
268 |
default: |
|
269 |
ShouldNotReachHere(); // Unexpected heap kind for this op |
|
270 |
} |
|
271 |
// Collect klass instance info |
|
272 |
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
|
273 |
if (!cit.allocation_failed()) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
274 |
// 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
|
275 |
RecordInstanceClosure ric(&cit); |
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
276 |
// If this operation encounters a bad object when using CMS, |
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
277 |
// consider using safe_object_iterate() which avoids perm gen |
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
278 |
// objects that may contain bad references. |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
279 |
Universe::heap()->object_iterate(&ric); |
1 | 280 |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
281 |
// 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
|
282 |
// 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
|
283 |
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
|
284 |
if (missed_count != 0) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
285 |
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
|
286 |
" total instances in data below", |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
287 |
missed_count); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
288 |
} |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
289 |
// 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
|
290 |
KlassInfoHisto histo("\n" |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
291 |
" 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
|
292 |
"----------------------------------------------", |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
293 |
KlassInfoHisto::histo_initial_size); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
294 |
HistoClosure hc(&histo); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
295 |
cit.iterate(&hc); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
296 |
histo.sort(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
297 |
histo.print_on(st); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
298 |
} else { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
299 |
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
|
300 |
} |
1 | 301 |
st->flush(); |
302 |
||
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1893
diff
changeset
|
303 |
if (need_prologue && is_shared_heap) { |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
304 |
SharedHeap* sh = (SharedHeap*)heap; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
184
diff
changeset
|
305 |
sh->gc_epilogue(false /* !full */); // release all acquired locks, etc. |
1 | 306 |
} |
307 |
} |
|
308 |
||
309 |
class FindInstanceClosure : public ObjectClosure { |
|
310 |
private: |
|
311 |
klassOop _klass; |
|
312 |
GrowableArray<oop>* _result; |
|
313 |
||
314 |
public: |
|
315 |
FindInstanceClosure(klassOop k, GrowableArray<oop>* result) : _klass(k), _result(result) {}; |
|
316 |
||
317 |
void do_object(oop obj) { |
|
318 |
if (obj->is_a(_klass)) { |
|
319 |
_result->append(obj); |
|
320 |
} |
|
321 |
} |
|
322 |
}; |
|
323 |
||
324 |
void HeapInspection::find_instances_at_safepoint(klassOop k, GrowableArray<oop>* result) { |
|
325 |
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
|
326 |
assert(Heap_lock->is_locked(), "should have the Heap_lock"); |
1 | 327 |
|
328 |
// Ensure that the heap is parsable |
|
329 |
Universe::heap()->ensure_parsability(false); // no need to retire TALBs |
|
330 |
||
331 |
// Iterate over objects in the heap |
|
332 |
FindInstanceClosure fic(k, result); |
|
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
333 |
// If this operation encounters a bad object when using CMS, |
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
334 |
// consider using safe_object_iterate() which avoids perm gen |
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
335 |
// objects that may contain bad references. |
1 | 336 |
Universe::heap()->object_iterate(&fic); |
337 |
} |