author | david |
Tue, 29 Sep 2015 11:02:08 +0200 | |
changeset 33105 | 294e48b4f704 |
parent 30764 | fec48bf5a827 |
child 33602 | 16053580a684 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
2 |
* Copyright (c) 2002, 2015, 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" |
15437 | 26 |
#include "classfile/classLoaderData.hpp" |
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
27 |
#include "classfile/systemDictionary.hpp" |
30764 | 28 |
#include "gc/shared/collectedHeap.hpp" |
29 |
#include "gc/shared/genCollectedHeap.hpp" |
|
7397 | 30 |
#include "memory/heapInspection.hpp" |
31 |
#include "memory/resourceArea.hpp" |
|
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27880
diff
changeset
|
32 |
#include "oops/oop.inline.hpp" |
7397 | 33 |
#include "runtime/os.hpp" |
34 |
#include "utilities/globalDefinitions.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
35 |
#include "utilities/macros.hpp" |
29702
9ed339a5e096
8075809: Add missing includes of stack.inline.hpp
stefank
parents:
29085
diff
changeset
|
36 |
#include "utilities/stack.inline.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
37 |
#if INCLUDE_ALL_GCS |
30764 | 38 |
#include "gc/parallel/parallelScavengeHeap.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13728
diff
changeset
|
39 |
#endif // INCLUDE_ALL_GCS |
1 | 40 |
|
41 |
// HeapInspection |
|
42 |
||
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
43 |
inline KlassInfoEntry::~KlassInfoEntry() { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
44 |
if (_subclasses != NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
45 |
delete _subclasses; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
46 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
47 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
48 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
49 |
inline void KlassInfoEntry::add_subclass(KlassInfoEntry* cie) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
50 |
if (_subclasses == NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
51 |
_subclasses = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<KlassInfoEntry*>(4, true); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
52 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
53 |
_subclasses->append(cie); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
54 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
55 |
|
1 | 56 |
int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) { |
57 |
if(e1->_instance_words > e2->_instance_words) { |
|
58 |
return -1; |
|
59 |
} else if(e1->_instance_words < e2->_instance_words) { |
|
60 |
return 1; |
|
61 |
} |
|
15437 | 62 |
// Sort alphabetically, note 'Z' < '[' < 'a', but it's better to group |
63 |
// the array classes before all the instance classes. |
|
64 |
ResourceMark rm; |
|
65 |
const char* name1 = e1->klass()->external_name(); |
|
66 |
const char* name2 = e2->klass()->external_name(); |
|
67 |
bool d1 = (name1[0] == '['); |
|
68 |
bool d2 = (name2[0] == '['); |
|
69 |
if (d1 && !d2) { |
|
70 |
return -1; |
|
71 |
} else if (d2 && !d1) { |
|
72 |
return 1; |
|
73 |
} else { |
|
74 |
return strcmp(name1, name2); |
|
75 |
} |
|
1 | 76 |
} |
77 |
||
15437 | 78 |
const char* KlassInfoEntry::name() const { |
79 |
const char* name; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
80 |
if (_klass->name() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
81 |
name = _klass->external_name(); |
1 | 82 |
} else { |
83 |
if (_klass == Universe::boolArrayKlassObj()) name = "<boolArrayKlass>"; else |
|
84 |
if (_klass == Universe::charArrayKlassObj()) name = "<charArrayKlass>"; else |
|
85 |
if (_klass == Universe::singleArrayKlassObj()) name = "<singleArrayKlass>"; else |
|
86 |
if (_klass == Universe::doubleArrayKlassObj()) name = "<doubleArrayKlass>"; else |
|
87 |
if (_klass == Universe::byteArrayKlassObj()) name = "<byteArrayKlass>"; else |
|
88 |
if (_klass == Universe::shortArrayKlassObj()) name = "<shortArrayKlass>"; else |
|
89 |
if (_klass == Universe::intArrayKlassObj()) name = "<intArrayKlass>"; else |
|
90 |
if (_klass == Universe::longArrayKlassObj()) name = "<longArrayKlass>"; else |
|
91 |
name = "<no name>"; |
|
92 |
} |
|
15437 | 93 |
return name; |
94 |
} |
|
95 |
||
96 |
void KlassInfoEntry::print_on(outputStream* st) const { |
|
97 |
ResourceMark rm; |
|
98 |
||
1 | 99 |
// 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
|
100 |
st->print_cr(INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13) " %s", |
29800
fa5f7a2bf717
8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29702
diff
changeset
|
101 |
(int64_t)_instance_count, |
fa5f7a2bf717
8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29702
diff
changeset
|
102 |
(uint64_t)_instance_words * HeapWordSize, |
15437 | 103 |
name()); |
1 | 104 |
} |
105 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
106 |
KlassInfoEntry* KlassInfoBucket::lookup(Klass* const k) { |
1 | 107 |
KlassInfoEntry* elt = _list; |
108 |
while (elt != NULL) { |
|
109 |
if (elt->is_equal(k)) { |
|
110 |
return elt; |
|
111 |
} |
|
112 |
elt = elt->next(); |
|
113 |
} |
|
18025 | 114 |
elt = new (std::nothrow) KlassInfoEntry(k, list()); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
115 |
// 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
|
116 |
if (elt != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
117 |
set_list(elt); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
118 |
} |
1 | 119 |
return elt; |
120 |
} |
|
121 |
||
122 |
void KlassInfoBucket::iterate(KlassInfoClosure* cic) { |
|
123 |
KlassInfoEntry* elt = _list; |
|
124 |
while (elt != NULL) { |
|
125 |
cic->do_cinfo(elt); |
|
126 |
elt = elt->next(); |
|
127 |
} |
|
128 |
} |
|
129 |
||
130 |
void KlassInfoBucket::empty() { |
|
131 |
KlassInfoEntry* elt = _list; |
|
132 |
_list = NULL; |
|
133 |
while (elt != NULL) { |
|
134 |
KlassInfoEntry* next = elt->next(); |
|
135 |
delete elt; |
|
136 |
elt = next; |
|
137 |
} |
|
138 |
} |
|
139 |
||
15437 | 140 |
void KlassInfoTable::AllClassesFinder::do_klass(Klass* k) { |
141 |
// This has the SIDE EFFECT of creating a KlassInfoEntry |
|
142 |
// for <k>, if one doesn't exist yet. |
|
143 |
_table->lookup(k); |
|
144 |
} |
|
145 |
||
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
146 |
KlassInfoTable::KlassInfoTable(bool add_all_classes) { |
18025 | 147 |
_size_of_instances_in_words = 0; |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
148 |
_size = 0; |
18025 | 149 |
_ref = (HeapWord*) Universe::boolArrayKlassObj(); |
150 |
_buckets = |
|
151 |
(KlassInfoBucket*) AllocateHeap(sizeof(KlassInfoBucket) * _num_buckets, |
|
25946 | 152 |
mtInternal, CURRENT_PC, AllocFailStrategy::RETURN_NULL); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
153 |
if (_buckets != NULL) { |
18025 | 154 |
_size = _num_buckets; |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
155 |
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
|
156 |
_buckets[index].initialize(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
157 |
} |
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
158 |
if (add_all_classes) { |
15437 | 159 |
AllClassesFinder finder(this); |
160 |
ClassLoaderDataGraph::classes_do(&finder); |
|
161 |
} |
|
1 | 162 |
} |
163 |
} |
|
164 |
||
165 |
KlassInfoTable::~KlassInfoTable() { |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
166 |
if (_buckets != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
167 |
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
|
168 |
_buckets[index].empty(); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
169 |
} |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
25946
diff
changeset
|
170 |
FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
171 |
_size = 0; |
1 | 172 |
} |
173 |
} |
|
174 |
||
17370
59a0620561fa
8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents:
15484
diff
changeset
|
175 |
uint KlassInfoTable::hash(const Klass* p) { |
1 | 176 |
return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2); |
177 |
} |
|
178 |
||
17370
59a0620561fa
8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents:
15484
diff
changeset
|
179 |
KlassInfoEntry* KlassInfoTable::lookup(Klass* k) { |
1 | 180 |
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
|
181 |
assert(_buckets != NULL, "Allocation failure should have been caught"); |
1 | 182 |
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
|
183 |
// 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
|
184 |
// 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
|
185 |
assert(e == NULL || k == e->klass(), "must be equal"); |
1 | 186 |
return e; |
187 |
} |
|
188 |
||
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
189 |
// 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
|
190 |
// 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
|
191 |
bool KlassInfoTable::record_instance(const oop obj) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
192 |
Klass* k = obj->klass(); |
1 | 193 |
KlassInfoEntry* elt = lookup(k); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
194 |
// 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
|
195 |
// 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
|
196 |
if (elt != NULL) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
197 |
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
|
198 |
elt->set_words(elt->words() + obj->size()); |
18025 | 199 |
_size_of_instances_in_words += obj->size(); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
200 |
return true; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
201 |
} else { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
202 |
return false; |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
203 |
} |
1 | 204 |
} |
205 |
||
206 |
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
|
207 |
assert(_size == 0 || _buckets != NULL, "Allocation failure should have been caught"); |
1 | 208 |
for (int index = 0; index < _size; index++) { |
209 |
_buckets[index].iterate(cic); |
|
210 |
} |
|
211 |
} |
|
212 |
||
18025 | 213 |
size_t KlassInfoTable::size_of_instances_in_words() const { |
214 |
return _size_of_instances_in_words; |
|
215 |
} |
|
216 |
||
1 | 217 |
int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) { |
218 |
return (*e1)->compare(*e1,*e2); |
|
219 |
} |
|
220 |
||
18025 | 221 |
KlassInfoHisto::KlassInfoHisto(KlassInfoTable* cit, const char* title) : |
15437 | 222 |
_cit(cit), |
1 | 223 |
_title(title) { |
18025 | 224 |
_elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<KlassInfoEntry*>(_histo_initial_size, true); |
1 | 225 |
} |
226 |
||
227 |
KlassInfoHisto::~KlassInfoHisto() { |
|
228 |
delete _elements; |
|
229 |
} |
|
230 |
||
231 |
void KlassInfoHisto::add(KlassInfoEntry* cie) { |
|
232 |
elements()->append(cie); |
|
233 |
} |
|
234 |
||
235 |
void KlassInfoHisto::sort() { |
|
236 |
elements()->sort(KlassInfoHisto::sort_helper); |
|
237 |
} |
|
238 |
||
239 |
void KlassInfoHisto::print_elements(outputStream* st) const { |
|
240 |
// simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit |
|
29800
fa5f7a2bf717
8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29702
diff
changeset
|
241 |
int64_t total = 0; |
fa5f7a2bf717
8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29702
diff
changeset
|
242 |
uint64_t totalw = 0; |
1 | 243 |
for(int i=0; i < elements()->length(); i++) { |
244 |
st->print("%4d: ", i+1); |
|
245 |
elements()->at(i)->print_on(st); |
|
246 |
total += elements()->at(i)->count(); |
|
247 |
totalw += elements()->at(i)->words(); |
|
248 |
} |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
249 |
st->print_cr("Total " INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13), |
1 | 250 |
total, totalw * HeapWordSize); |
251 |
} |
|
252 |
||
15437 | 253 |
#define MAKE_COL_NAME(field, name, help) #name, |
254 |
#define MAKE_COL_HELP(field, name, help) help, |
|
255 |
||
256 |
static const char *name_table[] = { |
|
257 |
HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_NAME) |
|
258 |
}; |
|
259 |
||
260 |
static const char *help_table[] = { |
|
261 |
HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_HELP) |
|
262 |
}; |
|
263 |
||
264 |
bool KlassInfoHisto::is_selected(const char *col_name) { |
|
265 |
if (_selected_columns == NULL) { |
|
266 |
return true; |
|
267 |
} |
|
268 |
if (strcmp(_selected_columns, col_name) == 0) { |
|
269 |
return true; |
|
270 |
} |
|
271 |
||
272 |
const char *start = strstr(_selected_columns, col_name); |
|
273 |
if (start == NULL) { |
|
274 |
return false; |
|
275 |
} |
|
276 |
||
277 |
// The following must be true, because _selected_columns != col_name |
|
278 |
if (start > _selected_columns && start[-1] != ',') { |
|
279 |
return false; |
|
280 |
} |
|
281 |
char x = start[strlen(col_name)]; |
|
282 |
if (x != ',' && x != '\0') { |
|
283 |
return false; |
|
284 |
} |
|
285 |
||
286 |
return true; |
|
287 |
} |
|
288 |
||
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
289 |
PRAGMA_FORMAT_NONLITERAL_IGNORED_EXTERNAL |
15437 | 290 |
void KlassInfoHisto::print_title(outputStream* st, bool csv_format, |
291 |
bool selected[], int width_table[], |
|
292 |
const char *name_table[]) { |
|
293 |
if (csv_format) { |
|
294 |
st->print("Index,Super"); |
|
295 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
|
296 |
if (selected[c]) {st->print(",%s", name_table[c]);} |
|
297 |
} |
|
298 |
st->print(",ClassName"); |
|
299 |
} else { |
|
300 |
st->print("Index Super"); |
|
301 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
302 |
PRAGMA_DIAG_PUSH |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
303 |
PRAGMA_FORMAT_NONLITERAL_IGNORED_INTERNAL |
15437 | 304 |
if (selected[c]) {st->print(str_fmt(width_table[c]), name_table[c]);} |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
305 |
PRAGMA_DIAG_POP |
15437 | 306 |
} |
307 |
st->print(" ClassName"); |
|
308 |
} |
|
309 |
||
310 |
if (is_selected("ClassLoader")) { |
|
311 |
st->print(",ClassLoader"); |
|
312 |
} |
|
313 |
st->cr(); |
|
314 |
} |
|
315 |
||
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
316 |
class HierarchyClosure : public KlassInfoClosure { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
317 |
private: |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
318 |
GrowableArray<KlassInfoEntry*> *_elements; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
319 |
public: |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
320 |
HierarchyClosure(GrowableArray<KlassInfoEntry*> *_elements) : _elements(_elements) {} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
321 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
322 |
void do_cinfo(KlassInfoEntry* cie) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
323 |
// ignore array classes |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
324 |
if (cie->klass()->oop_is_instance()) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
325 |
_elements->append(cie); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
326 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
327 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
328 |
}; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
329 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
330 |
void KlassHierarchy::print_class_hierarchy(outputStream* st, bool print_interfaces, |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
331 |
bool print_subclasses, char* classname) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
332 |
ResourceMark rm; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
333 |
Stack <KlassInfoEntry*, mtClass> class_stack; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
334 |
GrowableArray<KlassInfoEntry*> elements; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
335 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
336 |
// Add all classes to the KlassInfoTable, which allows for quick lookup. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
337 |
// A KlassInfoEntry will be created for each class. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
338 |
KlassInfoTable cit(true); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
339 |
if (cit.allocation_failed()) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
340 |
st->print_cr("ERROR: Ran out of C-heap; hierarchy not generated"); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
341 |
return; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
342 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
343 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
344 |
// Add all created KlassInfoEntry instances to the elements array for easy |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
345 |
// iteration, and to allow each KlassInfoEntry instance to have a unique index. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
346 |
HierarchyClosure hc(&elements); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
347 |
cit.iterate(&hc); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
348 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
349 |
for(int i = 0; i < elements.length(); i++) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
350 |
KlassInfoEntry* cie = elements.at(i); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
351 |
const InstanceKlass* k = (InstanceKlass*)cie->klass(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
352 |
Klass* super = ((InstanceKlass*)k)->java_super(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
353 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
354 |
// Set the index for the class. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
355 |
cie->set_index(i + 1); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
356 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
357 |
// Add the class to the subclass array of its superclass. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
358 |
if (super != NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
359 |
KlassInfoEntry* super_cie = cit.lookup(super); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
360 |
assert(super_cie != NULL, "could not lookup superclass"); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
361 |
super_cie->add_subclass(cie); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
362 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
363 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
364 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
365 |
// Set the do_print flag for each class that should be printed. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
366 |
for(int i = 0; i < elements.length(); i++) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
367 |
KlassInfoEntry* cie = elements.at(i); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
368 |
if (classname == NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
369 |
// We are printing all classes. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
370 |
cie->set_do_print(true); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
371 |
} else { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
372 |
// We are only printing the hierarchy of a specific class. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
373 |
if (strcmp(classname, cie->klass()->external_name()) == 0) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
374 |
KlassHierarchy::set_do_print_for_class_hierarchy(cie, &cit, print_subclasses); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
375 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
376 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
377 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
378 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
379 |
// Now we do a depth first traversal of the class hierachry. The class_stack will |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
380 |
// maintain the list of classes we still need to process. Start things off |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
381 |
// by priming it with java.lang.Object. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
382 |
KlassInfoEntry* jlo_cie = cit.lookup(SystemDictionary::Object_klass()); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
383 |
assert(jlo_cie != NULL, "could not lookup java.lang.Object"); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
384 |
class_stack.push(jlo_cie); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
385 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
386 |
// Repeatedly pop the top item off the stack, print its class info, |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
387 |
// and push all of its subclasses on to the stack. Do this until there |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
388 |
// are no classes left on the stack. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
389 |
while (!class_stack.is_empty()) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
390 |
KlassInfoEntry* curr_cie = class_stack.pop(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
391 |
if (curr_cie->do_print()) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
392 |
print_class(st, curr_cie, print_interfaces); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
393 |
if (curr_cie->subclasses() != NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
394 |
// Current class has subclasses, so push all of them onto the stack. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
395 |
for (int i = 0; i < curr_cie->subclasses()->length(); i++) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
396 |
KlassInfoEntry* cie = curr_cie->subclasses()->at(i); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
397 |
if (cie->do_print()) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
398 |
class_stack.push(cie); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
399 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
400 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
401 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
402 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
403 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
404 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
405 |
st->flush(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
406 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
407 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
408 |
// Sets the do_print flag for every superclass and subclass of the specified class. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
409 |
void KlassHierarchy::set_do_print_for_class_hierarchy(KlassInfoEntry* cie, KlassInfoTable* cit, |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
410 |
bool print_subclasses) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
411 |
// Set do_print for all superclasses of this class. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
412 |
Klass* super = ((InstanceKlass*)cie->klass())->java_super(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
413 |
while (super != NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
414 |
KlassInfoEntry* super_cie = cit->lookup(super); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
415 |
super_cie->set_do_print(true); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
416 |
super = super->super(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
417 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
418 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
419 |
// Set do_print for this class and all of its subclasses. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
420 |
Stack <KlassInfoEntry*, mtClass> class_stack; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
421 |
class_stack.push(cie); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
422 |
while (!class_stack.is_empty()) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
423 |
KlassInfoEntry* curr_cie = class_stack.pop(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
424 |
curr_cie->set_do_print(true); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
425 |
if (print_subclasses && curr_cie->subclasses() != NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
426 |
// Current class has subclasses, so push all of them onto the stack. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
427 |
for (int i = 0; i < curr_cie->subclasses()->length(); i++) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
428 |
KlassInfoEntry* cie = curr_cie->subclasses()->at(i); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
429 |
class_stack.push(cie); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
430 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
431 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
432 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
433 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
434 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
435 |
static void print_indent(outputStream* st, int indent) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
436 |
while (indent != 0) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
437 |
st->print("|"); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
438 |
indent--; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
439 |
if (indent != 0) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
440 |
st->print(" "); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
441 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
442 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
443 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
444 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
445 |
// Print the class name and its unique ClassLoader identifer. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
446 |
static void print_classname(outputStream* st, Klass* klass) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
447 |
oop loader_oop = klass->class_loader_data()->class_loader(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
448 |
st->print("%s/", klass->external_name()); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
449 |
if (loader_oop == NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
450 |
st->print("null"); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
451 |
} else { |
29800
fa5f7a2bf717
8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29702
diff
changeset
|
452 |
st->print(INTPTR_FORMAT, p2i(klass->class_loader_data())); |
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
453 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
454 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
455 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
456 |
static void print_interface(outputStream* st, Klass* intf_klass, const char* intf_type, int indent) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
457 |
print_indent(st, indent); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
458 |
st->print(" implements "); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
459 |
print_classname(st, intf_klass); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
460 |
st->print(" (%s intf)\n", intf_type); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
461 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
462 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
463 |
void KlassHierarchy::print_class(outputStream* st, KlassInfoEntry* cie, bool print_interfaces) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
464 |
ResourceMark rm; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
465 |
InstanceKlass* klass = (InstanceKlass*)cie->klass(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
466 |
int indent = 0; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
467 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
468 |
// Print indentation with proper indicators of superclass. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
469 |
Klass* super = klass->super(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
470 |
while (super != NULL) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
471 |
super = super->super(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
472 |
indent++; |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
473 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
474 |
print_indent(st, indent); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
475 |
if (indent != 0) st->print("--"); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
476 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
477 |
// Print the class name, its unique ClassLoader identifer, and if it is an interface. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
478 |
print_classname(st, klass); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
479 |
if (klass->is_interface()) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
480 |
st->print(" (intf)"); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
481 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
482 |
st->print("\n"); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
483 |
|
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
484 |
// Print any interfaces the class has. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
485 |
if (print_interfaces) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
486 |
Array<Klass*>* local_intfs = klass->local_interfaces(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
487 |
Array<Klass*>* trans_intfs = klass->transitive_interfaces(); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
488 |
for (int i = 0; i < local_intfs->length(); i++) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
489 |
print_interface(st, local_intfs->at(i), "declared", indent); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
490 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
491 |
for (int i = 0; i < trans_intfs->length(); i++) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
492 |
Klass* trans_interface = trans_intfs->at(i); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
493 |
// Only print transitive interfaces if they are not also declared. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
494 |
if (!local_intfs->contains(trans_interface)) { |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
495 |
print_interface(st, trans_interface, "inherited", indent); |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
496 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
497 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
498 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
499 |
} |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
500 |
|
15437 | 501 |
void KlassInfoHisto::print_class_stats(outputStream* st, |
502 |
bool csv_format, const char *columns) { |
|
503 |
ResourceMark rm; |
|
504 |
KlassSizeStats sz, sz_sum; |
|
505 |
int i; |
|
506 |
julong *col_table = (julong*)(&sz); |
|
507 |
julong *colsum_table = (julong*)(&sz_sum); |
|
508 |
int width_table[KlassSizeStats::_num_columns]; |
|
509 |
bool selected[KlassSizeStats::_num_columns]; |
|
510 |
||
511 |
_selected_columns = columns; |
|
512 |
||
513 |
memset(&sz_sum, 0, sizeof(sz_sum)); |
|
514 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
|
515 |
selected[c] = is_selected(name_table[c]); |
|
516 |
} |
|
517 |
||
518 |
for(i=0; i < elements()->length(); i++) { |
|
519 |
elements()->at(i)->set_index(i+1); |
|
520 |
} |
|
521 |
||
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
522 |
// First iteration is for accumulating stats totals in colsum_table[]. |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
523 |
// Second iteration is for printing stats for each class. |
15437 | 524 |
for (int pass=1; pass<=2; pass++) { |
525 |
if (pass == 2) { |
|
526 |
print_title(st, csv_format, selected, width_table, name_table); |
|
527 |
} |
|
528 |
for(i=0; i < elements()->length(); i++) { |
|
529 |
KlassInfoEntry* e = (KlassInfoEntry*)elements()->at(i); |
|
530 |
const Klass* k = e->klass(); |
|
531 |
||
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
532 |
// Get the stats for this class. |
15437 | 533 |
memset(&sz, 0, sizeof(sz)); |
534 |
sz._inst_count = e->count(); |
|
535 |
sz._inst_bytes = HeapWordSize * e->words(); |
|
536 |
k->collect_statistics(&sz); |
|
537 |
sz._total_bytes = sz._ro_bytes + sz._rw_bytes; |
|
538 |
||
539 |
if (pass == 1) { |
|
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
540 |
// Add the stats for this class to the overall totals. |
15437 | 541 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
542 |
colsum_table[c] += col_table[c]; |
|
543 |
} |
|
544 |
} else { |
|
545 |
int super_index = -1; |
|
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
546 |
// Print the stats for this class. |
15437 | 547 |
if (k->oop_is_instance()) { |
548 |
Klass* super = ((InstanceKlass*)k)->java_super(); |
|
549 |
if (super) { |
|
550 |
KlassInfoEntry* super_e = _cit->lookup(super); |
|
551 |
if (super_e) { |
|
552 |
super_index = super_e->index(); |
|
553 |
} |
|
554 |
} |
|
555 |
} |
|
556 |
||
557 |
if (csv_format) { |
|
29800
fa5f7a2bf717
8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29702
diff
changeset
|
558 |
st->print("%ld,%d", e->index(), super_index); |
15437 | 559 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
560 |
if (selected[c]) {st->print("," JULONG_FORMAT, col_table[c]);} |
|
561 |
} |
|
562 |
st->print(",%s",e->name()); |
|
563 |
} else { |
|
29800
fa5f7a2bf717
8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29702
diff
changeset
|
564 |
st->print("%5ld %5d", e->index(), super_index); |
15437 | 565 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
566 |
if (selected[c]) {print_julong(st, width_table[c], col_table[c]);} |
|
567 |
} |
|
568 |
st->print(" %s", e->name()); |
|
569 |
} |
|
570 |
if (is_selected("ClassLoader")) { |
|
571 |
ClassLoaderData* loader_data = k->class_loader_data(); |
|
572 |
st->print(","); |
|
573 |
loader_data->print_value_on(st); |
|
574 |
} |
|
575 |
st->cr(); |
|
576 |
} |
|
577 |
} |
|
578 |
||
579 |
if (pass == 1) { |
|
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
580 |
// Calculate the minimum width needed for the column by accounting for the |
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
581 |
// column header width and the width of the largest value in the column. |
15437 | 582 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
583 |
width_table[c] = col_width(colsum_table[c], name_table[c]); |
|
584 |
} |
|
585 |
} |
|
586 |
} |
|
587 |
||
588 |
sz_sum._inst_size = 0; |
|
589 |
||
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
590 |
// Print the column totals. |
15437 | 591 |
if (csv_format) { |
592 |
st->print(","); |
|
593 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
|
594 |
if (selected[c]) {st->print("," JULONG_FORMAT, colsum_table[c]);} |
|
595 |
} |
|
596 |
} else { |
|
597 |
st->print(" "); |
|
598 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
|
599 |
if (selected[c]) {print_julong(st, width_table[c], colsum_table[c]);} |
|
600 |
} |
|
601 |
st->print(" Total"); |
|
602 |
if (sz_sum._total_bytes > 0) { |
|
603 |
st->cr(); |
|
604 |
st->print(" "); |
|
605 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
|
606 |
if (selected[c]) { |
|
607 |
switch (c) { |
|
608 |
case KlassSizeStats::_index_inst_size: |
|
609 |
case KlassSizeStats::_index_inst_count: |
|
610 |
case KlassSizeStats::_index_method_count: |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
611 |
PRAGMA_DIAG_PUSH |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
612 |
PRAGMA_FORMAT_NONLITERAL_IGNORED_INTERNAL |
15437 | 613 |
st->print(str_fmt(width_table[c]), "-"); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
614 |
PRAGMA_DIAG_POP |
15437 | 615 |
break; |
616 |
default: |
|
617 |
{ |
|
618 |
double perc = (double)(100) * (double)(colsum_table[c]) / (double)sz_sum._total_bytes; |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
619 |
PRAGMA_DIAG_PUSH |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
620 |
PRAGMA_FORMAT_NONLITERAL_IGNORED_INTERNAL |
15437 | 621 |
st->print(perc_fmt(width_table[c]), perc); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18439
diff
changeset
|
622 |
PRAGMA_DIAG_POP |
15437 | 623 |
} |
624 |
} |
|
625 |
} |
|
626 |
} |
|
627 |
} |
|
628 |
} |
|
629 |
st->cr(); |
|
630 |
||
631 |
if (!csv_format) { |
|
632 |
print_title(st, csv_format, selected, width_table, name_table); |
|
633 |
} |
|
634 |
} |
|
635 |
||
636 |
julong KlassInfoHisto::annotations_bytes(Array<AnnotationArray*>* p) const { |
|
637 |
julong bytes = 0; |
|
638 |
if (p != NULL) { |
|
639 |
for (int i = 0; i < p->length(); i++) { |
|
640 |
bytes += count_bytes_array(p->at(i)); |
|
641 |
} |
|
642 |
bytes += count_bytes_array(p); |
|
643 |
} |
|
644 |
return bytes; |
|
645 |
} |
|
646 |
||
647 |
void KlassInfoHisto::print_histo_on(outputStream* st, bool print_stats, |
|
648 |
bool csv_format, const char *columns) { |
|
649 |
if (print_stats) { |
|
650 |
print_class_stats(st, csv_format, columns); |
|
651 |
} else { |
|
652 |
st->print_cr("%s",title()); |
|
653 |
print_elements(st); |
|
654 |
} |
|
1 | 655 |
} |
656 |
||
657 |
class HistoClosure : public KlassInfoClosure { |
|
658 |
private: |
|
659 |
KlassInfoHisto* _cih; |
|
660 |
public: |
|
661 |
HistoClosure(KlassInfoHisto* cih) : _cih(cih) {} |
|
662 |
||
663 |
void do_cinfo(KlassInfoEntry* cie) { |
|
664 |
_cih->add(cie); |
|
665 |
} |
|
666 |
}; |
|
667 |
||
668 |
class RecordInstanceClosure : public ObjectClosure { |
|
669 |
private: |
|
670 |
KlassInfoTable* _cit; |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
671 |
size_t _missed_count; |
18025 | 672 |
BoolObjectClosure* _filter; |
1 | 673 |
public: |
18025 | 674 |
RecordInstanceClosure(KlassInfoTable* cit, BoolObjectClosure* filter) : |
675 |
_cit(cit), _missed_count(0), _filter(filter) {} |
|
1 | 676 |
|
677 |
void do_object(oop obj) { |
|
18025 | 678 |
if (should_visit(obj)) { |
679 |
if (!_cit->record_instance(obj)) { |
|
680 |
_missed_count++; |
|
681 |
} |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
682 |
} |
1 | 683 |
} |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
684 |
|
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
685 |
size_t missed_count() { return _missed_count; } |
18025 | 686 |
|
687 |
private: |
|
688 |
bool should_visit(oop obj) { |
|
689 |
return _filter == NULL || _filter->do_object_b(obj); |
|
690 |
} |
|
1 | 691 |
}; |
692 |
||
18025 | 693 |
size_t HeapInspection::populate_table(KlassInfoTable* cit, BoolObjectClosure *filter) { |
1 | 694 |
ResourceMark rm; |
18025 | 695 |
|
696 |
RecordInstanceClosure ric(cit, filter); |
|
697 |
Universe::heap()->object_iterate(&ric); |
|
698 |
return ric.missed_count(); |
|
699 |
} |
|
700 |
||
701 |
void HeapInspection::heap_inspection(outputStream* st) { |
|
702 |
ResourceMark rm; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
703 |
|
15437 | 704 |
if (_print_help) { |
705 |
for (int c=0; c<KlassSizeStats::_num_columns; c++) { |
|
706 |
st->print("%s:\n\t", name_table[c]); |
|
707 |
const int max_col = 60; |
|
708 |
int col = 0; |
|
709 |
for (const char *p = help_table[c]; *p; p++,col++) { |
|
710 |
if (col >= max_col && *p == ' ') { |
|
711 |
st->print("\n\t"); |
|
712 |
col = 0; |
|
713 |
} else { |
|
714 |
st->print("%c", *p); |
|
715 |
} |
|
716 |
} |
|
717 |
st->print_cr(".\n"); |
|
718 |
} |
|
719 |
return; |
|
720 |
} |
|
721 |
||
18025 | 722 |
KlassInfoTable cit(_print_class_stats); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
723 |
if (!cit.allocation_failed()) { |
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
724 |
// populate table with object allocation info |
18025 | 725 |
size_t missed_count = populate_table(&cit); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
726 |
if (missed_count != 0) { |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
727 |
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
|
728 |
" total instances in data below", |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
729 |
missed_count); |
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
730 |
} |
18025 | 731 |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
732 |
// Sort and print klass instance info |
15437 | 733 |
const char *title = "\n" |
734 |
" num #instances #bytes class name\n" |
|
735 |
"----------------------------------------------"; |
|
18025 | 736 |
KlassInfoHisto histo(&cit, title); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
737 |
HistoClosure hc(&histo); |
18025 | 738 |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
739 |
cit.iterate(&hc); |
18025 | 740 |
|
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
741 |
histo.sort(); |
15437 | 742 |
histo.print_histo_on(st, _print_class_stats, _csv_format, _columns); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
743 |
} else { |
29071
73f45d04ad7a
8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents:
27880
diff
changeset
|
744 |
st->print_cr("ERROR: Ran out of C-heap; histogram not generated"); |
184
a2da5efb871c
6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents:
1
diff
changeset
|
745 |
} |
1 | 746 |
st->flush(); |
747 |
} |
|
748 |
||
749 |
class FindInstanceClosure : public ObjectClosure { |
|
750 |
private: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
751 |
Klass* _klass; |
1 | 752 |
GrowableArray<oop>* _result; |
753 |
||
754 |
public: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
755 |
FindInstanceClosure(Klass* k, GrowableArray<oop>* result) : _klass(k), _result(result) {}; |
1 | 756 |
|
757 |
void do_object(oop obj) { |
|
758 |
if (obj->is_a(_klass)) { |
|
759 |
_result->append(obj); |
|
760 |
} |
|
761 |
} |
|
762 |
}; |
|
763 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
764 |
void HeapInspection::find_instances_at_safepoint(Klass* k, GrowableArray<oop>* result) { |
1 | 765 |
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
|
766 |
assert(Heap_lock->is_locked(), "should have the Heap_lock"); |
1 | 767 |
|
768 |
// Ensure that the heap is parsable |
|
769 |
Universe::heap()->ensure_parsability(false); // no need to retire TALBs |
|
770 |
||
771 |
// Iterate over objects in the heap |
|
772 |
FindInstanceClosure fic(k, result); |
|
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
773 |
// 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
|
774 |
// consider using safe_object_iterate() which avoids metadata |
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
775 |
// objects that may contain bad references. |
1 | 776 |
Universe::heap()->object_iterate(&fic); |
777 |
} |