src/share/vm/memory/heapInspection.cpp

Fri, 25 Jan 2013 15:06:18 -0500

author
acorn
date
Fri, 25 Jan 2013 15:06:18 -0500
changeset 4497
16fb9f942703
parent 4037
da91efe96a93
child 4544
3c9bc17b9403
permissions
-rw-r--r--

6479360: PrintClassHistogram improvements
Summary: jcmd <pid> GC.class_stats (UnlockDiagnosticVMOptions)
Reviewed-by: coleenp, hseigel, sla, acorn
Contributed-by: ioi.lam@oracle.com

duke@435 1 /*
acorn@4497 2 * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
acorn@4497 26 #include "classfile/classLoaderData.hpp"
stefank@2314 27 #include "gc_interface/collectedHeap.hpp"
stefank@2314 28 #include "memory/genCollectedHeap.hpp"
stefank@2314 29 #include "memory/heapInspection.hpp"
stefank@2314 30 #include "memory/resourceArea.hpp"
stefank@2314 31 #include "runtime/os.hpp"
stefank@2314 32 #include "utilities/globalDefinitions.hpp"
stefank@2314 33 #ifndef SERIALGC
stefank@2314 34 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
stefank@2314 35 #endif
duke@435 36
duke@435 37 // HeapInspection
duke@435 38
duke@435 39 int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) {
duke@435 40 if(e1->_instance_words > e2->_instance_words) {
duke@435 41 return -1;
duke@435 42 } else if(e1->_instance_words < e2->_instance_words) {
duke@435 43 return 1;
duke@435 44 }
acorn@4497 45 // Sort alphabetically, note 'Z' < '[' < 'a', but it's better to group
acorn@4497 46 // the array classes before all the instance classes.
acorn@4497 47 ResourceMark rm;
acorn@4497 48 const char* name1 = e1->klass()->external_name();
acorn@4497 49 const char* name2 = e2->klass()->external_name();
acorn@4497 50 bool d1 = (name1[0] == '[');
acorn@4497 51 bool d2 = (name2[0] == '[');
acorn@4497 52 if (d1 && !d2) {
acorn@4497 53 return -1;
acorn@4497 54 } else if (d2 && !d1) {
acorn@4497 55 return 1;
acorn@4497 56 } else {
acorn@4497 57 return strcmp(name1, name2);
acorn@4497 58 }
duke@435 59 }
duke@435 60
acorn@4497 61 const char* KlassInfoEntry::name() const {
acorn@4497 62 const char* name;
coleenp@4037 63 if (_klass->name() != NULL) {
coleenp@4037 64 name = _klass->external_name();
duke@435 65 } else {
duke@435 66 if (_klass == Universe::boolArrayKlassObj()) name = "<boolArrayKlass>"; else
duke@435 67 if (_klass == Universe::charArrayKlassObj()) name = "<charArrayKlass>"; else
duke@435 68 if (_klass == Universe::singleArrayKlassObj()) name = "<singleArrayKlass>"; else
duke@435 69 if (_klass == Universe::doubleArrayKlassObj()) name = "<doubleArrayKlass>"; else
duke@435 70 if (_klass == Universe::byteArrayKlassObj()) name = "<byteArrayKlass>"; else
duke@435 71 if (_klass == Universe::shortArrayKlassObj()) name = "<shortArrayKlass>"; else
duke@435 72 if (_klass == Universe::intArrayKlassObj()) name = "<intArrayKlass>"; else
duke@435 73 if (_klass == Universe::longArrayKlassObj()) name = "<longArrayKlass>"; else
duke@435 74 name = "<no name>";
duke@435 75 }
acorn@4497 76 return name;
acorn@4497 77 }
acorn@4497 78
acorn@4497 79 void KlassInfoEntry::print_on(outputStream* st) const {
acorn@4497 80 ResourceMark rm;
acorn@4497 81
duke@435 82 // simplify the formatting (ILP32 vs LP64) - always cast the numbers to 64-bit
ysr@446 83 st->print_cr(INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13) " %s",
duke@435 84 (jlong) _instance_count,
duke@435 85 (julong) _instance_words * HeapWordSize,
acorn@4497 86 name());
duke@435 87 }
duke@435 88
coleenp@4037 89 KlassInfoEntry* KlassInfoBucket::lookup(Klass* const k) {
duke@435 90 KlassInfoEntry* elt = _list;
duke@435 91 while (elt != NULL) {
duke@435 92 if (elt->is_equal(k)) {
duke@435 93 return elt;
duke@435 94 }
duke@435 95 elt = elt->next();
duke@435 96 }
duke@435 97 elt = new KlassInfoEntry(k, list());
ysr@446 98 // We may be out of space to allocate the new entry.
ysr@446 99 if (elt != NULL) {
ysr@446 100 set_list(elt);
ysr@446 101 }
duke@435 102 return elt;
duke@435 103 }
duke@435 104
duke@435 105 void KlassInfoBucket::iterate(KlassInfoClosure* cic) {
duke@435 106 KlassInfoEntry* elt = _list;
duke@435 107 while (elt != NULL) {
duke@435 108 cic->do_cinfo(elt);
duke@435 109 elt = elt->next();
duke@435 110 }
duke@435 111 }
duke@435 112
duke@435 113 void KlassInfoBucket::empty() {
duke@435 114 KlassInfoEntry* elt = _list;
duke@435 115 _list = NULL;
duke@435 116 while (elt != NULL) {
duke@435 117 KlassInfoEntry* next = elt->next();
duke@435 118 delete elt;
duke@435 119 elt = next;
duke@435 120 }
duke@435 121 }
duke@435 122
acorn@4497 123 void KlassInfoTable::AllClassesFinder::do_klass(Klass* k) {
acorn@4497 124 // This has the SIDE EFFECT of creating a KlassInfoEntry
acorn@4497 125 // for <k>, if one doesn't exist yet.
acorn@4497 126 _table->lookup(k);
acorn@4497 127 }
acorn@4497 128
acorn@4497 129 KlassInfoTable::KlassInfoTable(int size, HeapWord* ref,
acorn@4497 130 bool need_class_stats) {
ysr@446 131 _size = 0;
duke@435 132 _ref = ref;
zgu@3900 133 _buckets = NEW_C_HEAP_ARRAY(KlassInfoBucket, size, mtInternal);
ysr@446 134 if (_buckets != NULL) {
ysr@446 135 _size = size;
ysr@446 136 for (int index = 0; index < _size; index++) {
ysr@446 137 _buckets[index].initialize();
ysr@446 138 }
acorn@4497 139 if (need_class_stats) {
acorn@4497 140 AllClassesFinder finder(this);
acorn@4497 141 ClassLoaderDataGraph::classes_do(&finder);
acorn@4497 142 }
duke@435 143 }
duke@435 144 }
duke@435 145
duke@435 146 KlassInfoTable::~KlassInfoTable() {
ysr@446 147 if (_buckets != NULL) {
ysr@446 148 for (int index = 0; index < _size; index++) {
ysr@446 149 _buckets[index].empty();
ysr@446 150 }
zgu@3900 151 FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets, mtInternal);
ysr@446 152 _size = 0;
duke@435 153 }
duke@435 154 }
duke@435 155
coleenp@4037 156 uint KlassInfoTable::hash(Klass* p) {
coleenp@4037 157 assert(p->is_metadata(), "all klasses are metadata");
duke@435 158 return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2);
duke@435 159 }
duke@435 160
coleenp@4037 161 KlassInfoEntry* KlassInfoTable::lookup(Klass* const k) {
duke@435 162 uint idx = hash(k) % _size;
ysr@446 163 assert(_buckets != NULL, "Allocation failure should have been caught");
duke@435 164 KlassInfoEntry* e = _buckets[idx].lookup(k);
ysr@446 165 // Lookup may fail if this is a new klass for which we
ysr@446 166 // could not allocate space for an new entry.
ysr@446 167 assert(e == NULL || k == e->klass(), "must be equal");
duke@435 168 return e;
duke@435 169 }
duke@435 170
ysr@446 171 // Return false if the entry could not be recorded on account
ysr@446 172 // of running out of space required to create a new entry.
ysr@446 173 bool KlassInfoTable::record_instance(const oop obj) {
coleenp@4037 174 Klass* k = obj->klass();
duke@435 175 KlassInfoEntry* elt = lookup(k);
ysr@446 176 // elt may be NULL if it's a new klass for which we
ysr@446 177 // could not allocate space for a new entry in the hashtable.
ysr@446 178 if (elt != NULL) {
ysr@446 179 elt->set_count(elt->count() + 1);
ysr@446 180 elt->set_words(elt->words() + obj->size());
ysr@446 181 return true;
ysr@446 182 } else {
ysr@446 183 return false;
ysr@446 184 }
duke@435 185 }
duke@435 186
duke@435 187 void KlassInfoTable::iterate(KlassInfoClosure* cic) {
ysr@446 188 assert(_size == 0 || _buckets != NULL, "Allocation failure should have been caught");
duke@435 189 for (int index = 0; index < _size; index++) {
duke@435 190 _buckets[index].iterate(cic);
duke@435 191 }
duke@435 192 }
duke@435 193
duke@435 194 int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) {
duke@435 195 return (*e1)->compare(*e1,*e2);
duke@435 196 }
duke@435 197
acorn@4497 198 KlassInfoHisto::KlassInfoHisto(KlassInfoTable* cit, const char* title, int estimatedCount) :
acorn@4497 199 _cit(cit),
duke@435 200 _title(title) {
zgu@3900 201 _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<KlassInfoEntry*>(estimatedCount,true);
duke@435 202 }
duke@435 203
duke@435 204 KlassInfoHisto::~KlassInfoHisto() {
duke@435 205 delete _elements;
duke@435 206 }
duke@435 207
duke@435 208 void KlassInfoHisto::add(KlassInfoEntry* cie) {
duke@435 209 elements()->append(cie);
duke@435 210 }
duke@435 211
duke@435 212 void KlassInfoHisto::sort() {
duke@435 213 elements()->sort(KlassInfoHisto::sort_helper);
duke@435 214 }
duke@435 215
duke@435 216 void KlassInfoHisto::print_elements(outputStream* st) const {
duke@435 217 // simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit
duke@435 218 jlong total = 0;
duke@435 219 julong totalw = 0;
duke@435 220 for(int i=0; i < elements()->length(); i++) {
duke@435 221 st->print("%4d: ", i+1);
duke@435 222 elements()->at(i)->print_on(st);
duke@435 223 total += elements()->at(i)->count();
duke@435 224 totalw += elements()->at(i)->words();
duke@435 225 }
ysr@446 226 st->print_cr("Total " INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13),
duke@435 227 total, totalw * HeapWordSize);
duke@435 228 }
duke@435 229
acorn@4497 230 #define MAKE_COL_NAME(field, name, help) #name,
acorn@4497 231 #define MAKE_COL_HELP(field, name, help) help,
acorn@4497 232
acorn@4497 233 static const char *name_table[] = {
acorn@4497 234 HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_NAME)
acorn@4497 235 };
acorn@4497 236
acorn@4497 237 static const char *help_table[] = {
acorn@4497 238 HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_HELP)
acorn@4497 239 };
acorn@4497 240
acorn@4497 241 bool KlassInfoHisto::is_selected(const char *col_name) {
acorn@4497 242 if (_selected_columns == NULL) {
acorn@4497 243 return true;
acorn@4497 244 }
acorn@4497 245 if (strcmp(_selected_columns, col_name) == 0) {
acorn@4497 246 return true;
acorn@4497 247 }
acorn@4497 248
acorn@4497 249 const char *start = strstr(_selected_columns, col_name);
acorn@4497 250 if (start == NULL) {
acorn@4497 251 return false;
acorn@4497 252 }
acorn@4497 253
acorn@4497 254 // The following must be true, because _selected_columns != col_name
acorn@4497 255 if (start > _selected_columns && start[-1] != ',') {
acorn@4497 256 return false;
acorn@4497 257 }
acorn@4497 258 char x = start[strlen(col_name)];
acorn@4497 259 if (x != ',' && x != '\0') {
acorn@4497 260 return false;
acorn@4497 261 }
acorn@4497 262
acorn@4497 263 return true;
acorn@4497 264 }
acorn@4497 265
acorn@4497 266 void KlassInfoHisto::print_title(outputStream* st, bool csv_format,
acorn@4497 267 bool selected[], int width_table[],
acorn@4497 268 const char *name_table[]) {
acorn@4497 269 if (csv_format) {
acorn@4497 270 st->print("Index,Super");
acorn@4497 271 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 272 if (selected[c]) {st->print(",%s", name_table[c]);}
acorn@4497 273 }
acorn@4497 274 st->print(",ClassName");
acorn@4497 275 } else {
acorn@4497 276 st->print("Index Super");
acorn@4497 277 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 278 if (selected[c]) {st->print(str_fmt(width_table[c]), name_table[c]);}
acorn@4497 279 }
acorn@4497 280 st->print(" ClassName");
acorn@4497 281 }
acorn@4497 282
acorn@4497 283 if (is_selected("ClassLoader")) {
acorn@4497 284 st->print(",ClassLoader");
acorn@4497 285 }
acorn@4497 286 st->cr();
acorn@4497 287 }
acorn@4497 288
acorn@4497 289 void KlassInfoHisto::print_class_stats(outputStream* st,
acorn@4497 290 bool csv_format, const char *columns) {
acorn@4497 291 ResourceMark rm;
acorn@4497 292 KlassSizeStats sz, sz_sum;
acorn@4497 293 int i;
acorn@4497 294 julong *col_table = (julong*)(&sz);
acorn@4497 295 julong *colsum_table = (julong*)(&sz_sum);
acorn@4497 296 int width_table[KlassSizeStats::_num_columns];
acorn@4497 297 bool selected[KlassSizeStats::_num_columns];
acorn@4497 298
acorn@4497 299 _selected_columns = columns;
acorn@4497 300
acorn@4497 301 memset(&sz_sum, 0, sizeof(sz_sum));
acorn@4497 302 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 303 selected[c] = is_selected(name_table[c]);
acorn@4497 304 }
acorn@4497 305
acorn@4497 306 for(i=0; i < elements()->length(); i++) {
acorn@4497 307 elements()->at(i)->set_index(i+1);
acorn@4497 308 }
acorn@4497 309
acorn@4497 310 for (int pass=1; pass<=2; pass++) {
acorn@4497 311 if (pass == 2) {
acorn@4497 312 print_title(st, csv_format, selected, width_table, name_table);
acorn@4497 313 }
acorn@4497 314 for(i=0; i < elements()->length(); i++) {
acorn@4497 315 KlassInfoEntry* e = (KlassInfoEntry*)elements()->at(i);
acorn@4497 316 const Klass* k = e->klass();
acorn@4497 317
acorn@4497 318 memset(&sz, 0, sizeof(sz));
acorn@4497 319 sz._inst_count = e->count();
acorn@4497 320 sz._inst_bytes = HeapWordSize * e->words();
acorn@4497 321 k->collect_statistics(&sz);
acorn@4497 322 sz._total_bytes = sz._ro_bytes + sz._rw_bytes;
acorn@4497 323
acorn@4497 324 if (pass == 1) {
acorn@4497 325 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 326 colsum_table[c] += col_table[c];
acorn@4497 327 }
acorn@4497 328 } else {
acorn@4497 329 int super_index = -1;
acorn@4497 330 if (k->oop_is_instance()) {
acorn@4497 331 Klass* super = ((InstanceKlass*)k)->java_super();
acorn@4497 332 if (super) {
acorn@4497 333 KlassInfoEntry* super_e = _cit->lookup(super);
acorn@4497 334 if (super_e) {
acorn@4497 335 super_index = super_e->index();
acorn@4497 336 }
acorn@4497 337 }
acorn@4497 338 }
acorn@4497 339
acorn@4497 340 if (csv_format) {
acorn@4497 341 st->print("%d,%d", e->index(), super_index);
acorn@4497 342 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 343 if (selected[c]) {st->print("," JULONG_FORMAT, col_table[c]);}
acorn@4497 344 }
acorn@4497 345 st->print(",%s",e->name());
acorn@4497 346 } else {
acorn@4497 347 st->print("%5d %5d", e->index(), super_index);
acorn@4497 348 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 349 if (selected[c]) {print_julong(st, width_table[c], col_table[c]);}
acorn@4497 350 }
acorn@4497 351 st->print(" %s", e->name());
acorn@4497 352 }
acorn@4497 353 if (is_selected("ClassLoader")) {
acorn@4497 354 ClassLoaderData* loader_data = k->class_loader_data();
acorn@4497 355 st->print(",");
acorn@4497 356 loader_data->print_value_on(st);
acorn@4497 357 }
acorn@4497 358 st->cr();
acorn@4497 359 }
acorn@4497 360 }
acorn@4497 361
acorn@4497 362 if (pass == 1) {
acorn@4497 363 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 364 width_table[c] = col_width(colsum_table[c], name_table[c]);
acorn@4497 365 }
acorn@4497 366 }
acorn@4497 367 }
acorn@4497 368
acorn@4497 369 sz_sum._inst_size = 0;
acorn@4497 370
acorn@4497 371 if (csv_format) {
acorn@4497 372 st->print(",");
acorn@4497 373 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 374 if (selected[c]) {st->print("," JULONG_FORMAT, colsum_table[c]);}
acorn@4497 375 }
acorn@4497 376 } else {
acorn@4497 377 st->print(" ");
acorn@4497 378 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 379 if (selected[c]) {print_julong(st, width_table[c], colsum_table[c]);}
acorn@4497 380 }
acorn@4497 381 st->print(" Total");
acorn@4497 382 if (sz_sum._total_bytes > 0) {
acorn@4497 383 st->cr();
acorn@4497 384 st->print(" ");
acorn@4497 385 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 386 if (selected[c]) {
acorn@4497 387 switch (c) {
acorn@4497 388 case KlassSizeStats::_index_inst_size:
acorn@4497 389 case KlassSizeStats::_index_inst_count:
acorn@4497 390 case KlassSizeStats::_index_method_count:
acorn@4497 391 st->print(str_fmt(width_table[c]), "-");
acorn@4497 392 break;
acorn@4497 393 default:
acorn@4497 394 {
acorn@4497 395 double perc = (double)(100) * (double)(colsum_table[c]) / (double)sz_sum._total_bytes;
acorn@4497 396 st->print(perc_fmt(width_table[c]), perc);
acorn@4497 397 }
acorn@4497 398 }
acorn@4497 399 }
acorn@4497 400 }
acorn@4497 401 }
acorn@4497 402 }
acorn@4497 403 st->cr();
acorn@4497 404
acorn@4497 405 if (!csv_format) {
acorn@4497 406 print_title(st, csv_format, selected, width_table, name_table);
acorn@4497 407 }
acorn@4497 408 }
acorn@4497 409
acorn@4497 410 julong KlassInfoHisto::annotations_bytes(Array<AnnotationArray*>* p) const {
acorn@4497 411 julong bytes = 0;
acorn@4497 412 if (p != NULL) {
acorn@4497 413 for (int i = 0; i < p->length(); i++) {
acorn@4497 414 bytes += count_bytes_array(p->at(i));
acorn@4497 415 }
acorn@4497 416 bytes += count_bytes_array(p);
acorn@4497 417 }
acorn@4497 418 return bytes;
acorn@4497 419 }
acorn@4497 420
acorn@4497 421 void KlassInfoHisto::print_histo_on(outputStream* st, bool print_stats,
acorn@4497 422 bool csv_format, const char *columns) {
acorn@4497 423 if (print_stats) {
acorn@4497 424 print_class_stats(st, csv_format, columns);
acorn@4497 425 } else {
acorn@4497 426 st->print_cr("%s",title());
acorn@4497 427 print_elements(st);
acorn@4497 428 }
duke@435 429 }
duke@435 430
duke@435 431 class HistoClosure : public KlassInfoClosure {
duke@435 432 private:
duke@435 433 KlassInfoHisto* _cih;
duke@435 434 public:
duke@435 435 HistoClosure(KlassInfoHisto* cih) : _cih(cih) {}
duke@435 436
duke@435 437 void do_cinfo(KlassInfoEntry* cie) {
duke@435 438 _cih->add(cie);
duke@435 439 }
duke@435 440 };
duke@435 441
duke@435 442 class RecordInstanceClosure : public ObjectClosure {
duke@435 443 private:
duke@435 444 KlassInfoTable* _cit;
ysr@446 445 size_t _missed_count;
duke@435 446 public:
ysr@446 447 RecordInstanceClosure(KlassInfoTable* cit) :
ysr@446 448 _cit(cit), _missed_count(0) {}
duke@435 449
duke@435 450 void do_object(oop obj) {
ysr@446 451 if (!_cit->record_instance(obj)) {
ysr@446 452 _missed_count++;
ysr@446 453 }
duke@435 454 }
ysr@446 455
ysr@446 456 size_t missed_count() { return _missed_count; }
duke@435 457 };
duke@435 458
ysr@1050 459 void HeapInspection::heap_inspection(outputStream* st, bool need_prologue) {
duke@435 460 ResourceMark rm;
coleenp@4037 461 // Get some random number for ref (the hash key)
coleenp@4037 462 HeapWord* ref = (HeapWord*) Universe::boolArrayKlassObj();
duke@435 463 CollectedHeap* heap = Universe::heap();
ysr@777 464 bool is_shared_heap = false;
coleenp@4037 465
acorn@4497 466 if (_print_help) {
acorn@4497 467 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 468 st->print("%s:\n\t", name_table[c]);
acorn@4497 469 const int max_col = 60;
acorn@4497 470 int col = 0;
acorn@4497 471 for (const char *p = help_table[c]; *p; p++,col++) {
acorn@4497 472 if (col >= max_col && *p == ' ') {
acorn@4497 473 st->print("\n\t");
acorn@4497 474 col = 0;
acorn@4497 475 } else {
acorn@4497 476 st->print("%c", *p);
acorn@4497 477 }
acorn@4497 478 }
acorn@4497 479 st->print_cr(".\n");
acorn@4497 480 }
acorn@4497 481 return;
acorn@4497 482 }
acorn@4497 483
duke@435 484 // Collect klass instance info
acorn@4497 485 KlassInfoTable cit(KlassInfoTable::cit_size, ref, _print_class_stats);
ysr@446 486 if (!cit.allocation_failed()) {
ysr@446 487 // Iterate over objects in the heap
ysr@446 488 RecordInstanceClosure ric(&cit);
ysr@446 489 Universe::heap()->object_iterate(&ric);
duke@435 490
ysr@446 491 // Report if certain classes are not counted because of
ysr@446 492 // running out of C-heap for the histogram.
ysr@446 493 size_t missed_count = ric.missed_count();
ysr@446 494 if (missed_count != 0) {
ysr@446 495 st->print_cr("WARNING: Ran out of C-heap; undercounted " SIZE_FORMAT
ysr@446 496 " total instances in data below",
ysr@446 497 missed_count);
ysr@446 498 }
ysr@446 499 // Sort and print klass instance info
acorn@4497 500 const char *title = "\n"
acorn@4497 501 " num #instances #bytes class name\n"
acorn@4497 502 "----------------------------------------------";
acorn@4497 503 KlassInfoHisto histo(&cit, title, KlassInfoHisto::histo_initial_size);
ysr@446 504 HistoClosure hc(&histo);
ysr@446 505 cit.iterate(&hc);
ysr@446 506 histo.sort();
acorn@4497 507 histo.print_histo_on(st, _print_class_stats, _csv_format, _columns);
ysr@446 508 } else {
ysr@446 509 st->print_cr("WARNING: Ran out of C-heap; histogram not generated");
ysr@446 510 }
duke@435 511 st->flush();
duke@435 512
ysr@1050 513 if (need_prologue && is_shared_heap) {
ysr@777 514 SharedHeap* sh = (SharedHeap*)heap;
ysr@777 515 sh->gc_epilogue(false /* !full */); // release all acquired locks, etc.
duke@435 516 }
duke@435 517 }
duke@435 518
duke@435 519 class FindInstanceClosure : public ObjectClosure {
duke@435 520 private:
coleenp@4037 521 Klass* _klass;
duke@435 522 GrowableArray<oop>* _result;
duke@435 523
duke@435 524 public:
coleenp@4037 525 FindInstanceClosure(Klass* k, GrowableArray<oop>* result) : _klass(k), _result(result) {};
duke@435 526
duke@435 527 void do_object(oop obj) {
duke@435 528 if (obj->is_a(_klass)) {
duke@435 529 _result->append(obj);
duke@435 530 }
duke@435 531 }
duke@435 532 };
duke@435 533
coleenp@4037 534 void HeapInspection::find_instances_at_safepoint(Klass* k, GrowableArray<oop>* result) {
duke@435 535 assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
jcoomes@1844 536 assert(Heap_lock->is_locked(), "should have the Heap_lock");
duke@435 537
duke@435 538 // Ensure that the heap is parsable
duke@435 539 Universe::heap()->ensure_parsability(false); // no need to retire TALBs
duke@435 540
duke@435 541 // Iterate over objects in the heap
duke@435 542 FindInstanceClosure fic(k, result);
jmasa@952 543 // If this operation encounters a bad object when using CMS,
coleenp@4037 544 // consider using safe_object_iterate() which avoids metadata
jmasa@952 545 // objects that may contain bad references.
duke@435 546 Universe::heap()->object_iterate(&fic);
duke@435 547 }

mercurial