src/share/vm/memory/heapInspection.cpp

Fri, 20 Sep 2013 10:53:28 +0200

author
stefank
date
Fri, 20 Sep 2013 10:53:28 +0200
changeset 5769
2c022e432e10
parent 5307
e0c9a1d29eb4
child 6680
78bbf4d43a14
permissions
-rw-r--r--

8024974: Incorrect use of GC_locker::is_active()
Summary: SymbolTable and StringTable can make calls to GC_locker::is_active() outside a safepoint. This isn't safe because the GC_locker active state (lock count) is only updated at a safepoint and only remains valid as long as _needs_gc is true. However, outside a safepoint_needs_gc can change to false at any time, which makes it impossible to do a correct call to is_active() in that context. In this case these calls can just be removed since the input argument to basic_add() should never be on the heap and so there's no need to check the GC_locker state. This change also adjusts the assert() in is_active() to makes sure all calls to this function are always done under a safepoint.
Reviewed-by: brutisso, dcubed
Contributed-by: per.liden@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"
jprovino@4542 33 #include "utilities/macros.hpp"
jprovino@4542 34 #if INCLUDE_ALL_GCS
stefank@2314 35 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
jprovino@4542 36 #endif // INCLUDE_ALL_GCS
duke@435 37
duke@435 38 // HeapInspection
duke@435 39
duke@435 40 int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) {
duke@435 41 if(e1->_instance_words > e2->_instance_words) {
duke@435 42 return -1;
duke@435 43 } else if(e1->_instance_words < e2->_instance_words) {
duke@435 44 return 1;
duke@435 45 }
acorn@4497 46 // Sort alphabetically, note 'Z' < '[' < 'a', but it's better to group
acorn@4497 47 // the array classes before all the instance classes.
acorn@4497 48 ResourceMark rm;
acorn@4497 49 const char* name1 = e1->klass()->external_name();
acorn@4497 50 const char* name2 = e2->klass()->external_name();
acorn@4497 51 bool d1 = (name1[0] == '[');
acorn@4497 52 bool d2 = (name2[0] == '[');
acorn@4497 53 if (d1 && !d2) {
acorn@4497 54 return -1;
acorn@4497 55 } else if (d2 && !d1) {
acorn@4497 56 return 1;
acorn@4497 57 } else {
acorn@4497 58 return strcmp(name1, name2);
acorn@4497 59 }
duke@435 60 }
duke@435 61
acorn@4497 62 const char* KlassInfoEntry::name() const {
acorn@4497 63 const char* name;
coleenp@4037 64 if (_klass->name() != NULL) {
coleenp@4037 65 name = _klass->external_name();
duke@435 66 } else {
duke@435 67 if (_klass == Universe::boolArrayKlassObj()) name = "<boolArrayKlass>"; else
duke@435 68 if (_klass == Universe::charArrayKlassObj()) name = "<charArrayKlass>"; else
duke@435 69 if (_klass == Universe::singleArrayKlassObj()) name = "<singleArrayKlass>"; else
duke@435 70 if (_klass == Universe::doubleArrayKlassObj()) name = "<doubleArrayKlass>"; else
duke@435 71 if (_klass == Universe::byteArrayKlassObj()) name = "<byteArrayKlass>"; else
duke@435 72 if (_klass == Universe::shortArrayKlassObj()) name = "<shortArrayKlass>"; else
duke@435 73 if (_klass == Universe::intArrayKlassObj()) name = "<intArrayKlass>"; else
duke@435 74 if (_klass == Universe::longArrayKlassObj()) name = "<longArrayKlass>"; else
duke@435 75 name = "<no name>";
duke@435 76 }
acorn@4497 77 return name;
acorn@4497 78 }
acorn@4497 79
acorn@4497 80 void KlassInfoEntry::print_on(outputStream* st) const {
acorn@4497 81 ResourceMark rm;
acorn@4497 82
duke@435 83 // simplify the formatting (ILP32 vs LP64) - always cast the numbers to 64-bit
ysr@446 84 st->print_cr(INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13) " %s",
duke@435 85 (jlong) _instance_count,
duke@435 86 (julong) _instance_words * HeapWordSize,
acorn@4497 87 name());
duke@435 88 }
duke@435 89
coleenp@4037 90 KlassInfoEntry* KlassInfoBucket::lookup(Klass* const k) {
duke@435 91 KlassInfoEntry* elt = _list;
duke@435 92 while (elt != NULL) {
duke@435 93 if (elt->is_equal(k)) {
duke@435 94 return elt;
duke@435 95 }
duke@435 96 elt = elt->next();
duke@435 97 }
sla@5237 98 elt = new (std::nothrow) KlassInfoEntry(k, list());
ysr@446 99 // We may be out of space to allocate the new entry.
ysr@446 100 if (elt != NULL) {
ysr@446 101 set_list(elt);
ysr@446 102 }
duke@435 103 return elt;
duke@435 104 }
duke@435 105
duke@435 106 void KlassInfoBucket::iterate(KlassInfoClosure* cic) {
duke@435 107 KlassInfoEntry* elt = _list;
duke@435 108 while (elt != NULL) {
duke@435 109 cic->do_cinfo(elt);
duke@435 110 elt = elt->next();
duke@435 111 }
duke@435 112 }
duke@435 113
duke@435 114 void KlassInfoBucket::empty() {
duke@435 115 KlassInfoEntry* elt = _list;
duke@435 116 _list = NULL;
duke@435 117 while (elt != NULL) {
duke@435 118 KlassInfoEntry* next = elt->next();
duke@435 119 delete elt;
duke@435 120 elt = next;
duke@435 121 }
duke@435 122 }
duke@435 123
acorn@4497 124 void KlassInfoTable::AllClassesFinder::do_klass(Klass* k) {
acorn@4497 125 // This has the SIDE EFFECT of creating a KlassInfoEntry
acorn@4497 126 // for <k>, if one doesn't exist yet.
acorn@4497 127 _table->lookup(k);
acorn@4497 128 }
acorn@4497 129
sla@5237 130 KlassInfoTable::KlassInfoTable(bool need_class_stats) {
sla@5237 131 _size_of_instances_in_words = 0;
ysr@446 132 _size = 0;
sla@5237 133 _ref = (HeapWord*) Universe::boolArrayKlassObj();
sla@5237 134 _buckets =
sla@5237 135 (KlassInfoBucket*) AllocateHeap(sizeof(KlassInfoBucket) * _num_buckets,
sla@5237 136 mtInternal, 0, AllocFailStrategy::RETURN_NULL);
ysr@446 137 if (_buckets != NULL) {
sla@5237 138 _size = _num_buckets;
ysr@446 139 for (int index = 0; index < _size; index++) {
ysr@446 140 _buckets[index].initialize();
ysr@446 141 }
acorn@4497 142 if (need_class_stats) {
acorn@4497 143 AllClassesFinder finder(this);
acorn@4497 144 ClassLoaderDataGraph::classes_do(&finder);
acorn@4497 145 }
duke@435 146 }
duke@435 147 }
duke@435 148
duke@435 149 KlassInfoTable::~KlassInfoTable() {
ysr@446 150 if (_buckets != NULL) {
ysr@446 151 for (int index = 0; index < _size; index++) {
ysr@446 152 _buckets[index].empty();
ysr@446 153 }
zgu@3900 154 FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets, mtInternal);
ysr@446 155 _size = 0;
duke@435 156 }
duke@435 157 }
duke@435 158
minqi@5097 159 uint KlassInfoTable::hash(const Klass* p) {
duke@435 160 return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2);
duke@435 161 }
duke@435 162
minqi@5097 163 KlassInfoEntry* KlassInfoTable::lookup(Klass* k) {
duke@435 164 uint idx = hash(k) % _size;
ysr@446 165 assert(_buckets != NULL, "Allocation failure should have been caught");
duke@435 166 KlassInfoEntry* e = _buckets[idx].lookup(k);
ysr@446 167 // Lookup may fail if this is a new klass for which we
ysr@446 168 // could not allocate space for an new entry.
ysr@446 169 assert(e == NULL || k == e->klass(), "must be equal");
duke@435 170 return e;
duke@435 171 }
duke@435 172
ysr@446 173 // Return false if the entry could not be recorded on account
ysr@446 174 // of running out of space required to create a new entry.
ysr@446 175 bool KlassInfoTable::record_instance(const oop obj) {
coleenp@4037 176 Klass* k = obj->klass();
duke@435 177 KlassInfoEntry* elt = lookup(k);
ysr@446 178 // elt may be NULL if it's a new klass for which we
ysr@446 179 // could not allocate space for a new entry in the hashtable.
ysr@446 180 if (elt != NULL) {
ysr@446 181 elt->set_count(elt->count() + 1);
ysr@446 182 elt->set_words(elt->words() + obj->size());
sla@5237 183 _size_of_instances_in_words += obj->size();
ysr@446 184 return true;
ysr@446 185 } else {
ysr@446 186 return false;
ysr@446 187 }
duke@435 188 }
duke@435 189
duke@435 190 void KlassInfoTable::iterate(KlassInfoClosure* cic) {
ysr@446 191 assert(_size == 0 || _buckets != NULL, "Allocation failure should have been caught");
duke@435 192 for (int index = 0; index < _size; index++) {
duke@435 193 _buckets[index].iterate(cic);
duke@435 194 }
duke@435 195 }
duke@435 196
sla@5237 197 size_t KlassInfoTable::size_of_instances_in_words() const {
sla@5237 198 return _size_of_instances_in_words;
sla@5237 199 }
sla@5237 200
duke@435 201 int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) {
duke@435 202 return (*e1)->compare(*e1,*e2);
duke@435 203 }
duke@435 204
sla@5237 205 KlassInfoHisto::KlassInfoHisto(KlassInfoTable* cit, const char* title) :
acorn@4497 206 _cit(cit),
duke@435 207 _title(title) {
sla@5237 208 _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<KlassInfoEntry*>(_histo_initial_size, true);
duke@435 209 }
duke@435 210
duke@435 211 KlassInfoHisto::~KlassInfoHisto() {
duke@435 212 delete _elements;
duke@435 213 }
duke@435 214
duke@435 215 void KlassInfoHisto::add(KlassInfoEntry* cie) {
duke@435 216 elements()->append(cie);
duke@435 217 }
duke@435 218
duke@435 219 void KlassInfoHisto::sort() {
duke@435 220 elements()->sort(KlassInfoHisto::sort_helper);
duke@435 221 }
duke@435 222
duke@435 223 void KlassInfoHisto::print_elements(outputStream* st) const {
duke@435 224 // simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit
duke@435 225 jlong total = 0;
duke@435 226 julong totalw = 0;
duke@435 227 for(int i=0; i < elements()->length(); i++) {
duke@435 228 st->print("%4d: ", i+1);
duke@435 229 elements()->at(i)->print_on(st);
duke@435 230 total += elements()->at(i)->count();
duke@435 231 totalw += elements()->at(i)->words();
duke@435 232 }
ysr@446 233 st->print_cr("Total " INT64_FORMAT_W(13) " " UINT64_FORMAT_W(13),
duke@435 234 total, totalw * HeapWordSize);
duke@435 235 }
duke@435 236
acorn@4497 237 #define MAKE_COL_NAME(field, name, help) #name,
acorn@4497 238 #define MAKE_COL_HELP(field, name, help) help,
acorn@4497 239
acorn@4497 240 static const char *name_table[] = {
acorn@4497 241 HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_NAME)
acorn@4497 242 };
acorn@4497 243
acorn@4497 244 static const char *help_table[] = {
acorn@4497 245 HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_HELP)
acorn@4497 246 };
acorn@4497 247
acorn@4497 248 bool KlassInfoHisto::is_selected(const char *col_name) {
acorn@4497 249 if (_selected_columns == NULL) {
acorn@4497 250 return true;
acorn@4497 251 }
acorn@4497 252 if (strcmp(_selected_columns, col_name) == 0) {
acorn@4497 253 return true;
acorn@4497 254 }
acorn@4497 255
acorn@4497 256 const char *start = strstr(_selected_columns, col_name);
acorn@4497 257 if (start == NULL) {
acorn@4497 258 return false;
acorn@4497 259 }
acorn@4497 260
acorn@4497 261 // The following must be true, because _selected_columns != col_name
acorn@4497 262 if (start > _selected_columns && start[-1] != ',') {
acorn@4497 263 return false;
acorn@4497 264 }
acorn@4497 265 char x = start[strlen(col_name)];
acorn@4497 266 if (x != ',' && x != '\0') {
acorn@4497 267 return false;
acorn@4497 268 }
acorn@4497 269
acorn@4497 270 return true;
acorn@4497 271 }
acorn@4497 272
acorn@4497 273 void KlassInfoHisto::print_title(outputStream* st, bool csv_format,
acorn@4497 274 bool selected[], int width_table[],
acorn@4497 275 const char *name_table[]) {
acorn@4497 276 if (csv_format) {
acorn@4497 277 st->print("Index,Super");
acorn@4497 278 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 279 if (selected[c]) {st->print(",%s", name_table[c]);}
acorn@4497 280 }
acorn@4497 281 st->print(",ClassName");
acorn@4497 282 } else {
acorn@4497 283 st->print("Index Super");
acorn@4497 284 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 285 if (selected[c]) {st->print(str_fmt(width_table[c]), name_table[c]);}
acorn@4497 286 }
acorn@4497 287 st->print(" ClassName");
acorn@4497 288 }
acorn@4497 289
acorn@4497 290 if (is_selected("ClassLoader")) {
acorn@4497 291 st->print(",ClassLoader");
acorn@4497 292 }
acorn@4497 293 st->cr();
acorn@4497 294 }
acorn@4497 295
acorn@4497 296 void KlassInfoHisto::print_class_stats(outputStream* st,
acorn@4497 297 bool csv_format, const char *columns) {
acorn@4497 298 ResourceMark rm;
acorn@4497 299 KlassSizeStats sz, sz_sum;
acorn@4497 300 int i;
acorn@4497 301 julong *col_table = (julong*)(&sz);
acorn@4497 302 julong *colsum_table = (julong*)(&sz_sum);
acorn@4497 303 int width_table[KlassSizeStats::_num_columns];
acorn@4497 304 bool selected[KlassSizeStats::_num_columns];
acorn@4497 305
acorn@4497 306 _selected_columns = columns;
acorn@4497 307
acorn@4497 308 memset(&sz_sum, 0, sizeof(sz_sum));
acorn@4497 309 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 310 selected[c] = is_selected(name_table[c]);
acorn@4497 311 }
acorn@4497 312
acorn@4497 313 for(i=0; i < elements()->length(); i++) {
acorn@4497 314 elements()->at(i)->set_index(i+1);
acorn@4497 315 }
acorn@4497 316
acorn@4497 317 for (int pass=1; pass<=2; pass++) {
acorn@4497 318 if (pass == 2) {
acorn@4497 319 print_title(st, csv_format, selected, width_table, name_table);
acorn@4497 320 }
acorn@4497 321 for(i=0; i < elements()->length(); i++) {
acorn@4497 322 KlassInfoEntry* e = (KlassInfoEntry*)elements()->at(i);
acorn@4497 323 const Klass* k = e->klass();
acorn@4497 324
acorn@4497 325 memset(&sz, 0, sizeof(sz));
acorn@4497 326 sz._inst_count = e->count();
acorn@4497 327 sz._inst_bytes = HeapWordSize * e->words();
acorn@4497 328 k->collect_statistics(&sz);
acorn@4497 329 sz._total_bytes = sz._ro_bytes + sz._rw_bytes;
acorn@4497 330
acorn@4497 331 if (pass == 1) {
acorn@4497 332 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 333 colsum_table[c] += col_table[c];
acorn@4497 334 }
acorn@4497 335 } else {
acorn@4497 336 int super_index = -1;
acorn@4497 337 if (k->oop_is_instance()) {
acorn@4497 338 Klass* super = ((InstanceKlass*)k)->java_super();
acorn@4497 339 if (super) {
acorn@4497 340 KlassInfoEntry* super_e = _cit->lookup(super);
acorn@4497 341 if (super_e) {
acorn@4497 342 super_index = super_e->index();
acorn@4497 343 }
acorn@4497 344 }
acorn@4497 345 }
acorn@4497 346
acorn@4497 347 if (csv_format) {
acorn@4497 348 st->print("%d,%d", e->index(), super_index);
acorn@4497 349 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 350 if (selected[c]) {st->print("," JULONG_FORMAT, col_table[c]);}
acorn@4497 351 }
acorn@4497 352 st->print(",%s",e->name());
acorn@4497 353 } else {
acorn@4497 354 st->print("%5d %5d", e->index(), super_index);
acorn@4497 355 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 356 if (selected[c]) {print_julong(st, width_table[c], col_table[c]);}
acorn@4497 357 }
acorn@4497 358 st->print(" %s", e->name());
acorn@4497 359 }
acorn@4497 360 if (is_selected("ClassLoader")) {
acorn@4497 361 ClassLoaderData* loader_data = k->class_loader_data();
acorn@4497 362 st->print(",");
acorn@4497 363 loader_data->print_value_on(st);
acorn@4497 364 }
acorn@4497 365 st->cr();
acorn@4497 366 }
acorn@4497 367 }
acorn@4497 368
acorn@4497 369 if (pass == 1) {
acorn@4497 370 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 371 width_table[c] = col_width(colsum_table[c], name_table[c]);
acorn@4497 372 }
acorn@4497 373 }
acorn@4497 374 }
acorn@4497 375
acorn@4497 376 sz_sum._inst_size = 0;
acorn@4497 377
acorn@4497 378 if (csv_format) {
acorn@4497 379 st->print(",");
acorn@4497 380 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 381 if (selected[c]) {st->print("," JULONG_FORMAT, colsum_table[c]);}
acorn@4497 382 }
acorn@4497 383 } else {
acorn@4497 384 st->print(" ");
acorn@4497 385 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 386 if (selected[c]) {print_julong(st, width_table[c], colsum_table[c]);}
acorn@4497 387 }
acorn@4497 388 st->print(" Total");
acorn@4497 389 if (sz_sum._total_bytes > 0) {
acorn@4497 390 st->cr();
acorn@4497 391 st->print(" ");
acorn@4497 392 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 393 if (selected[c]) {
acorn@4497 394 switch (c) {
acorn@4497 395 case KlassSizeStats::_index_inst_size:
acorn@4497 396 case KlassSizeStats::_index_inst_count:
acorn@4497 397 case KlassSizeStats::_index_method_count:
acorn@4497 398 st->print(str_fmt(width_table[c]), "-");
acorn@4497 399 break;
acorn@4497 400 default:
acorn@4497 401 {
acorn@4497 402 double perc = (double)(100) * (double)(colsum_table[c]) / (double)sz_sum._total_bytes;
acorn@4497 403 st->print(perc_fmt(width_table[c]), perc);
acorn@4497 404 }
acorn@4497 405 }
acorn@4497 406 }
acorn@4497 407 }
acorn@4497 408 }
acorn@4497 409 }
acorn@4497 410 st->cr();
acorn@4497 411
acorn@4497 412 if (!csv_format) {
acorn@4497 413 print_title(st, csv_format, selected, width_table, name_table);
acorn@4497 414 }
acorn@4497 415 }
acorn@4497 416
acorn@4497 417 julong KlassInfoHisto::annotations_bytes(Array<AnnotationArray*>* p) const {
acorn@4497 418 julong bytes = 0;
acorn@4497 419 if (p != NULL) {
acorn@4497 420 for (int i = 0; i < p->length(); i++) {
acorn@4497 421 bytes += count_bytes_array(p->at(i));
acorn@4497 422 }
acorn@4497 423 bytes += count_bytes_array(p);
acorn@4497 424 }
acorn@4497 425 return bytes;
acorn@4497 426 }
acorn@4497 427
acorn@4497 428 void KlassInfoHisto::print_histo_on(outputStream* st, bool print_stats,
acorn@4497 429 bool csv_format, const char *columns) {
acorn@4497 430 if (print_stats) {
acorn@4497 431 print_class_stats(st, csv_format, columns);
acorn@4497 432 } else {
acorn@4497 433 st->print_cr("%s",title());
acorn@4497 434 print_elements(st);
acorn@4497 435 }
duke@435 436 }
duke@435 437
duke@435 438 class HistoClosure : public KlassInfoClosure {
duke@435 439 private:
duke@435 440 KlassInfoHisto* _cih;
duke@435 441 public:
duke@435 442 HistoClosure(KlassInfoHisto* cih) : _cih(cih) {}
duke@435 443
duke@435 444 void do_cinfo(KlassInfoEntry* cie) {
duke@435 445 _cih->add(cie);
duke@435 446 }
duke@435 447 };
duke@435 448
duke@435 449 class RecordInstanceClosure : public ObjectClosure {
duke@435 450 private:
duke@435 451 KlassInfoTable* _cit;
ysr@446 452 size_t _missed_count;
sla@5237 453 BoolObjectClosure* _filter;
duke@435 454 public:
sla@5237 455 RecordInstanceClosure(KlassInfoTable* cit, BoolObjectClosure* filter) :
sla@5237 456 _cit(cit), _missed_count(0), _filter(filter) {}
duke@435 457
duke@435 458 void do_object(oop obj) {
sla@5237 459 if (should_visit(obj)) {
sla@5237 460 if (!_cit->record_instance(obj)) {
sla@5237 461 _missed_count++;
sla@5237 462 }
ysr@446 463 }
duke@435 464 }
ysr@446 465
ysr@446 466 size_t missed_count() { return _missed_count; }
sla@5237 467
sla@5237 468 private:
sla@5237 469 bool should_visit(oop obj) {
sla@5237 470 return _filter == NULL || _filter->do_object_b(obj);
sla@5237 471 }
duke@435 472 };
duke@435 473
sla@5237 474 size_t HeapInspection::populate_table(KlassInfoTable* cit, BoolObjectClosure *filter) {
duke@435 475 ResourceMark rm;
sla@5237 476
sla@5237 477 RecordInstanceClosure ric(cit, filter);
sla@5237 478 Universe::heap()->object_iterate(&ric);
sla@5237 479 return ric.missed_count();
sla@5237 480 }
sla@5237 481
sla@5237 482 void HeapInspection::heap_inspection(outputStream* st) {
sla@5237 483 ResourceMark rm;
coleenp@4037 484
acorn@4497 485 if (_print_help) {
acorn@4497 486 for (int c=0; c<KlassSizeStats::_num_columns; c++) {
acorn@4497 487 st->print("%s:\n\t", name_table[c]);
acorn@4497 488 const int max_col = 60;
acorn@4497 489 int col = 0;
acorn@4497 490 for (const char *p = help_table[c]; *p; p++,col++) {
acorn@4497 491 if (col >= max_col && *p == ' ') {
acorn@4497 492 st->print("\n\t");
acorn@4497 493 col = 0;
acorn@4497 494 } else {
acorn@4497 495 st->print("%c", *p);
acorn@4497 496 }
acorn@4497 497 }
acorn@4497 498 st->print_cr(".\n");
acorn@4497 499 }
acorn@4497 500 return;
acorn@4497 501 }
acorn@4497 502
sla@5237 503 KlassInfoTable cit(_print_class_stats);
ysr@446 504 if (!cit.allocation_failed()) {
sla@5237 505 size_t missed_count = populate_table(&cit);
ysr@446 506 if (missed_count != 0) {
ysr@446 507 st->print_cr("WARNING: Ran out of C-heap; undercounted " SIZE_FORMAT
ysr@446 508 " total instances in data below",
ysr@446 509 missed_count);
ysr@446 510 }
sla@5237 511
ysr@446 512 // Sort and print klass instance info
acorn@4497 513 const char *title = "\n"
acorn@4497 514 " num #instances #bytes class name\n"
acorn@4497 515 "----------------------------------------------";
sla@5237 516 KlassInfoHisto histo(&cit, title);
ysr@446 517 HistoClosure hc(&histo);
sla@5237 518
ysr@446 519 cit.iterate(&hc);
sla@5237 520
ysr@446 521 histo.sort();
acorn@4497 522 histo.print_histo_on(st, _print_class_stats, _csv_format, _columns);
ysr@446 523 } else {
ysr@446 524 st->print_cr("WARNING: Ran out of C-heap; histogram not generated");
ysr@446 525 }
duke@435 526 st->flush();
duke@435 527 }
duke@435 528
duke@435 529 class FindInstanceClosure : public ObjectClosure {
duke@435 530 private:
coleenp@4037 531 Klass* _klass;
duke@435 532 GrowableArray<oop>* _result;
duke@435 533
duke@435 534 public:
coleenp@4037 535 FindInstanceClosure(Klass* k, GrowableArray<oop>* result) : _klass(k), _result(result) {};
duke@435 536
duke@435 537 void do_object(oop obj) {
duke@435 538 if (obj->is_a(_klass)) {
duke@435 539 _result->append(obj);
duke@435 540 }
duke@435 541 }
duke@435 542 };
duke@435 543
coleenp@4037 544 void HeapInspection::find_instances_at_safepoint(Klass* k, GrowableArray<oop>* result) {
duke@435 545 assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
jcoomes@1844 546 assert(Heap_lock->is_locked(), "should have the Heap_lock");
duke@435 547
duke@435 548 // Ensure that the heap is parsable
duke@435 549 Universe::heap()->ensure_parsability(false); // no need to retire TALBs
duke@435 550
duke@435 551 // Iterate over objects in the heap
duke@435 552 FindInstanceClosure fic(k, result);
jmasa@952 553 // If this operation encounters a bad object when using CMS,
coleenp@4037 554 // consider using safe_object_iterate() which avoids metadata
jmasa@952 555 // objects that may contain bad references.
duke@435 556 Universe::heap()->object_iterate(&fic);
duke@435 557 }

mercurial