annotate src/share/vm/memory/heapInspection.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 3c1dbcaaab1d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2002-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_heapInspection.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // HeapInspection
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 if(e1->_instance_words > e2->_instance_words) {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 } else if(e1->_instance_words < e2->_instance_words) {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 }
a61af66fc99e Initial load
duke
parents:
diff changeset
36 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 }
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 void KlassInfoEntry::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 const char* name;;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 if (_klass->klass_part()->name() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 name = _klass->klass_part()->external_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
44 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 if (_klass == Universe::klassKlassObj()) name = "<klassKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
46 if (_klass == Universe::arrayKlassKlassObj()) name = "<arrayKlassKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
47 if (_klass == Universe::objArrayKlassKlassObj()) name = "<objArrayKlassKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
48 if (_klass == Universe::instanceKlassKlassObj()) name = "<instanceKlassKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
49 if (_klass == Universe::typeArrayKlassKlassObj()) name = "<typeArrayKlassKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
50 if (_klass == Universe::symbolKlassObj()) name = "<symbolKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
51 if (_klass == Universe::boolArrayKlassObj()) name = "<boolArrayKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
52 if (_klass == Universe::charArrayKlassObj()) name = "<charArrayKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
53 if (_klass == Universe::singleArrayKlassObj()) name = "<singleArrayKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
54 if (_klass == Universe::doubleArrayKlassObj()) name = "<doubleArrayKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (_klass == Universe::byteArrayKlassObj()) name = "<byteArrayKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
56 if (_klass == Universe::shortArrayKlassObj()) name = "<shortArrayKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
57 if (_klass == Universe::intArrayKlassObj()) name = "<intArrayKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
58 if (_klass == Universe::longArrayKlassObj()) name = "<longArrayKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
59 if (_klass == Universe::methodKlassObj()) name = "<methodKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
60 if (_klass == Universe::constMethodKlassObj()) name = "<constMethodKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (_klass == Universe::methodDataKlassObj()) name = "<methodDataKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
62 if (_klass == Universe::constantPoolKlassObj()) name = "<constantPoolKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (_klass == Universe::constantPoolCacheKlassObj()) name = "<constantPoolCacheKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
64 if (_klass == Universe::compiledICHolderKlassObj()) name = "<compiledICHolderKlass>"; else
a61af66fc99e Initial load
duke
parents:
diff changeset
65 name = "<no name>";
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // simplify the formatting (ILP32 vs LP64) - always cast the numbers to 64-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
68 st->print_cr("%13" FORMAT64_MODIFIER "d %13" FORMAT64_MODIFIER "u %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
69 (jlong) _instance_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
70 (julong) _instance_words * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
71 name);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 KlassInfoEntry* KlassInfoBucket::lookup(const klassOop k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 KlassInfoEntry* elt = _list;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 while (elt != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if (elt->is_equal(k)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 return elt;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 elt = elt->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 elt = new KlassInfoEntry(k, list());
a61af66fc99e Initial load
duke
parents:
diff changeset
83 set_list(elt);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 return elt;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 void KlassInfoBucket::iterate(KlassInfoClosure* cic) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 KlassInfoEntry* elt = _list;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 while (elt != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 cic->do_cinfo(elt);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 elt = elt->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void KlassInfoBucket::empty() {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 KlassInfoEntry* elt = _list;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 _list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 while (elt != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 KlassInfoEntry* next = elt->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 delete elt;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 elt = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 KlassInfoTable::KlassInfoTable(int size, HeapWord* ref) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _size = size;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 _ref = ref;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 _buckets = NEW_C_HEAP_ARRAY(KlassInfoBucket, _size);
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 for (int index = 0; index < _size; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 _buckets[index].initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 KlassInfoTable::~KlassInfoTable() {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 for (int index = 0; index < _size; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 _buckets[index].empty();
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 uint KlassInfoTable::hash(klassOop p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 assert(Universe::heap()->is_in_permanent((HeapWord*)p), "all klasses in permgen");
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 KlassInfoEntry* KlassInfoTable::lookup(const klassOop k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
129 uint idx = hash(k) % _size;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 KlassInfoEntry* e = _buckets[idx].lookup(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 assert(k == e->klass(), "must be equal");
a61af66fc99e Initial load
duke
parents:
diff changeset
132 return e;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void KlassInfoTable::record_instance(const oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 klassOop k = obj->klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
137 KlassInfoEntry* elt = lookup(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 elt->set_count(elt->count() + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 elt->set_words(elt->words() + obj->size());
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void KlassInfoTable::iterate(KlassInfoClosure* cic) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 for (int index = 0; index < _size; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 _buckets[index].iterate(cic);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 return (*e1)->compare(*e1,*e2);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 KlassInfoHisto::KlassInfoHisto(const char* title, int estimatedCount) :
a61af66fc99e Initial load
duke
parents:
diff changeset
153 _title(title) {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 _elements = new (ResourceObj::C_HEAP) GrowableArray<KlassInfoEntry*>(estimatedCount,true);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 KlassInfoHisto::~KlassInfoHisto() {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 delete _elements;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 void KlassInfoHisto::add(KlassInfoEntry* cie) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 elements()->append(cie);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 void KlassInfoHisto::sort() {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 elements()->sort(KlassInfoHisto::sort_helper);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void KlassInfoHisto::print_elements(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
171 jlong total = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 julong totalw = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 for(int i=0; i < elements()->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 st->print("%4d: ", i+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 elements()->at(i)->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 total += elements()->at(i)->count();
a61af66fc99e Initial load
duke
parents:
diff changeset
177 totalw += elements()->at(i)->words();
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 st->print_cr("Total %13" FORMAT64_MODIFIER "d %13" FORMAT64_MODIFIER "u",
a61af66fc99e Initial load
duke
parents:
diff changeset
180 total, totalw * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void KlassInfoHisto::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 st->print_cr("%s",title());
a61af66fc99e Initial load
duke
parents:
diff changeset
185 print_elements(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 class HistoClosure : public KlassInfoClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
190 KlassInfoHisto* _cih;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
192 HistoClosure(KlassInfoHisto* cih) : _cih(cih) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 void do_cinfo(KlassInfoEntry* cie) {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 _cih->add(cie);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 };
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 class RecordInstanceClosure : public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
201 KlassInfoTable* _cit;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
203 RecordInstanceClosure(KlassInfoTable* cit) : _cit(cit) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void do_object(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 _cit->record_instance(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208 };
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 void HeapInspection::heap_inspection(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 HeapWord* ref;
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 CollectedHeap* heap = Universe::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
215 switch (heap->kind()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 case CollectedHeap::GenCollectedHeap: {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 GenCollectedHeap* gch = (GenCollectedHeap*)heap;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 gch->gc_prologue(false /* !full */); // get any necessary locks
a61af66fc99e Initial load
duke
parents:
diff changeset
219 ref = gch->perm_gen()->used_region().start();
a61af66fc99e Initial load
duke
parents:
diff changeset
220 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
222 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
223 case CollectedHeap::ParallelScavengeHeap: {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 ParallelScavengeHeap* psh = (ParallelScavengeHeap*)heap;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 ref = psh->perm_gen()->object_space()->used_region().start();
a61af66fc99e Initial load
duke
parents:
diff changeset
226 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
229 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
230 ShouldNotReachHere(); // Unexpected heap kind for this op
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Collect klass instance info
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // Iterate over objects in the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
235 KlassInfoTable cit(KlassInfoTable::cit_size, ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 RecordInstanceClosure ric(&cit);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 Universe::heap()->object_iterate(&ric);
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // Sort and print klass instance info
a61af66fc99e Initial load
duke
parents:
diff changeset
240 KlassInfoHisto histo("\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
241 " num #instances #bytes class name\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
242 "----------------------------------------------",
a61af66fc99e Initial load
duke
parents:
diff changeset
243 KlassInfoHisto::histo_initial_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 HistoClosure hc(&histo);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 cit.iterate(&hc);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 histo.sort();
a61af66fc99e Initial load
duke
parents:
diff changeset
247 histo.print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
248 st->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 if (Universe::heap()->kind() == CollectedHeap::GenCollectedHeap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
252 gch->gc_epilogue(false /* !full */); // release all acquired locks
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 class FindInstanceClosure : public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
258 klassOop _klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 GrowableArray<oop>* _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
262 FindInstanceClosure(klassOop k, GrowableArray<oop>* result) : _klass(k), _result(result) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 void do_object(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if (obj->is_a(_klass)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 _result->append(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 };
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 void HeapInspection::find_instances_at_safepoint(klassOop k, GrowableArray<oop>* result) {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
a61af66fc99e Initial load
duke
parents:
diff changeset
273 assert(Heap_lock->is_locked(), "should have the Heap_lock")
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Ensure that the heap is parsable
a61af66fc99e Initial load
duke
parents:
diff changeset
276 Universe::heap()->ensure_parsability(false); // no need to retire TALBs
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Iterate over objects in the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
279 FindInstanceClosure fic(k, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 Universe::heap()->object_iterate(&fic);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }