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