hotspot/src/share/vm/memory/heapInspection.cpp
author trims
Thu, 12 Mar 2009 18:16:36 -0700
changeset 2154 72a9b7284ccf
parent 2105 347008ce7984
parent 2141 e9a644aaff87
child 5402 c51fd0c1d005
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
2105
347008ce7984 6814575: Update copyright year
xdono
parents: 1893
diff changeset
     2
 * Copyright 2002-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_heapInspection.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// HeapInspection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  if(e1->_instance_words > e2->_instance_words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  } else if(e1->_instance_words < e2->_instance_words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
void KlassInfoEntry::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  const char* name;;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  if (_klass->klass_part()->name() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    name = _klass->klass_part()->external_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    if (_klass == Universe::klassKlassObj())             name = "<klassKlass>";             else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    if (_klass == Universe::arrayKlassKlassObj())        name = "<arrayKlassKlass>";        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    if (_klass == Universe::objArrayKlassKlassObj())     name = "<objArrayKlassKlass>";     else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    if (_klass == Universe::instanceKlassKlassObj())     name = "<instanceKlassKlass>";     else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    if (_klass == Universe::typeArrayKlassKlassObj())    name = "<typeArrayKlassKlass>";    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    if (_klass == Universe::symbolKlassObj())            name = "<symbolKlass>";            else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    if (_klass == Universe::boolArrayKlassObj())         name = "<boolArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    if (_klass == Universe::charArrayKlassObj())         name = "<charArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    if (_klass == Universe::singleArrayKlassObj())       name = "<singleArrayKlass>";       else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    if (_klass == Universe::doubleArrayKlassObj())       name = "<doubleArrayKlass>";       else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    if (_klass == Universe::byteArrayKlassObj())         name = "<byteArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    if (_klass == Universe::shortArrayKlassObj())        name = "<shortArrayKlass>";        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    if (_klass == Universe::intArrayKlassObj())          name = "<intArrayKlass>";          else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    if (_klass == Universe::longArrayKlassObj())         name = "<longArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    if (_klass == Universe::methodKlassObj())            name = "<methodKlass>";            else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    if (_klass == Universe::constMethodKlassObj())       name = "<constMethodKlass>";       else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    if (_klass == Universe::methodDataKlassObj())        name = "<methodDataKlass>";        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    if (_klass == Universe::constantPoolKlassObj())      name = "<constantPoolKlass>";      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    if (_klass == Universe::constantPoolCacheKlassObj()) name = "<constantPoolCacheKlass>"; else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    if (_klass == Universe::compiledICHolderKlassObj())  name = "<compiledICHolderKlass>";  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      name = "<no name>";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // simplify the formatting (ILP32 vs LP64) - always cast the numbers to 64-bit
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
    68
  st->print_cr(INT64_FORMAT_W(13) "  " UINT64_FORMAT_W(13) "  %s",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
               (jlong)  _instance_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
               (julong) _instance_words * HeapWordSize,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
               name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
KlassInfoEntry* KlassInfoBucket::lookup(const klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  KlassInfoEntry* elt = _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  while (elt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    if (elt->is_equal(k)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      return elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    elt = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  elt = new KlassInfoEntry(k, list());
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
    83
  // 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
    84
  if (elt != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
    85
    set_list(elt);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
    86
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  return elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
void KlassInfoBucket::iterate(KlassInfoClosure* cic) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  KlassInfoEntry* elt = _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  while (elt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    cic->do_cinfo(elt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    elt = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
void KlassInfoBucket::empty() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  KlassInfoEntry* elt = _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  _list = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  while (elt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    KlassInfoEntry* next = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    delete elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    elt = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
KlassInfoTable::KlassInfoTable(int size, HeapWord* ref) {
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   109
  _size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  _ref = ref;
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   111
  _buckets = NEW_C_HEAP_ARRAY(KlassInfoBucket, size);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   112
  if (_buckets != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   113
    _size = size;
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   114
    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
   115
      _buckets[index].initialize();
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   116
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
KlassInfoTable::~KlassInfoTable() {
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   121
  if (_buckets != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   122
    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
   123
      _buckets[index].empty();
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   124
    }
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   125
    FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   126
    _size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
uint KlassInfoTable::hash(klassOop p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  assert(Universe::heap()->is_in_permanent((HeapWord*)p), "all klasses in permgen");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
KlassInfoEntry* KlassInfoTable::lookup(const klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  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
   137
  assert(_buckets != NULL, "Allocation failure should have been caught");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  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
   139
  // 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
   140
  // 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
   141
  assert(e == NULL || k == e->klass(), "must be equal");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  return e;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   145
// 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
   146
// 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
   147
bool KlassInfoTable::record_instance(const oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  klassOop      k = obj->klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  KlassInfoEntry* elt = lookup(k);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   150
  // 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
   151
  // 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
   152
  if (elt != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   153
    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
   154
    elt->set_words(elt->words() + obj->size());
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   155
    return true;
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   156
  } else {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   157
    return false;
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   158
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
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
   162
  assert(_size == 0 || _buckets != NULL, "Allocation failure should have been caught");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  for (int index = 0; index < _size; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    _buckets[index].iterate(cic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  return (*e1)->compare(*e1,*e2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
KlassInfoHisto::KlassInfoHisto(const char* title, int estimatedCount) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  _title(title) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  _elements = new (ResourceObj::C_HEAP) GrowableArray<KlassInfoEntry*>(estimatedCount,true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
KlassInfoHisto::~KlassInfoHisto() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  delete _elements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
void KlassInfoHisto::add(KlassInfoEntry* cie) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  elements()->append(cie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
void KlassInfoHisto::sort() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  elements()->sort(KlassInfoHisto::sort_helper);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
void KlassInfoHisto::print_elements(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  jlong total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  julong totalw = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  for(int i=0; i < elements()->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    st->print("%4d: ", i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    elements()->at(i)->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    total += elements()->at(i)->count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    totalw += elements()->at(i)->words();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   199
  st->print_cr("Total " INT64_FORMAT_W(13) "  " UINT64_FORMAT_W(13),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
               total, totalw * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
void KlassInfoHisto::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  st->print_cr("%s",title());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  print_elements(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
class HistoClosure : public KlassInfoClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  KlassInfoHisto* _cih;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  HistoClosure(KlassInfoHisto* cih) : _cih(cih) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  void do_cinfo(KlassInfoEntry* cie) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    _cih->add(cie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
class RecordInstanceClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  KlassInfoTable* _cit;
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   222
  size_t _missed_count;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
 public:
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   224
  RecordInstanceClosure(KlassInfoTable* cit) :
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   225
    _cit(cit), _missed_count(0) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  void do_object(oop obj) {
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   228
    if (!_cit->record_instance(obj)) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   229
      _missed_count++;
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   230
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   232
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   233
  size_t missed_count() { return _missed_count; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1893
diff changeset
   236
void HeapInspection::heap_inspection(outputStream* st, bool need_prologue) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  HeapWord* ref;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  CollectedHeap* heap = Universe::heap();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 184
diff changeset
   241
  bool is_shared_heap = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  switch (heap->kind()) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 184
diff changeset
   243
    case CollectedHeap::G1CollectedHeap:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    case CollectedHeap::GenCollectedHeap: {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 184
diff changeset
   245
      is_shared_heap = true;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 184
diff changeset
   246
      SharedHeap* sh = (SharedHeap*)heap;
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1893
diff changeset
   247
      if (need_prologue) {
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1893
diff changeset
   248
        sh->gc_prologue(false /* !full */); // get any necessary locks, etc.
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1893
diff changeset
   249
      }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 184
diff changeset
   250
      ref = sh->perm_gen()->used_region().start();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    case CollectedHeap::ParallelScavengeHeap: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      ParallelScavengeHeap* psh = (ParallelScavengeHeap*)heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      ref = psh->perm_gen()->object_space()->used_region().start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      ShouldNotReachHere(); // Unexpected heap kind for this op
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // Collect klass instance info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  KlassInfoTable cit(KlassInfoTable::cit_size, ref);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   265
  if (!cit.allocation_failed()) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   266
    // Iterate over objects in the heap
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   267
    RecordInstanceClosure ric(&cit);
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   268
    // If this operation encounters a bad object when using CMS,
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   269
    // consider using safe_object_iterate() which avoids perm gen
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   270
    // objects that may contain bad references.
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   271
    Universe::heap()->object_iterate(&ric);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   273
    // Report if certain classes are not counted because of
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   274
    // running out of C-heap for the histogram.
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   275
    size_t missed_count = ric.missed_count();
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   276
    if (missed_count != 0) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   277
      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
   278
                   " total instances in data below",
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   279
                   missed_count);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   280
    }
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   281
    // Sort and print klass instance info
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   282
    KlassInfoHisto histo("\n"
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   283
                     " num     #instances         #bytes  class name\n"
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   284
                     "----------------------------------------------",
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   285
                     KlassInfoHisto::histo_initial_size);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   286
    HistoClosure hc(&histo);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   287
    cit.iterate(&hc);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   288
    histo.sort();
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   289
    histo.print_on(st);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   290
  } else {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   291
    st->print_cr("WARNING: Ran out of C-heap; histogram not generated");
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   292
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  st->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1893
diff changeset
   295
  if (need_prologue && is_shared_heap) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 184
diff changeset
   296
    SharedHeap* sh = (SharedHeap*)heap;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 184
diff changeset
   297
    sh->gc_epilogue(false /* !full */); // release all acquired locks, etc.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
class FindInstanceClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  klassOop _klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  GrowableArray<oop>* _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  FindInstanceClosure(klassOop k, GrowableArray<oop>* result) : _klass(k), _result(result) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  void do_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    if (obj->is_a(_klass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      _result->append(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
void HeapInspection::find_instances_at_safepoint(klassOop k, GrowableArray<oop>* result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  assert(Heap_lock->is_locked(), "should have the Heap_lock")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // Ensure that the heap is parsable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  Universe::heap()->ensure_parsability(false);  // no need to retire TALBs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // Iterate over objects in the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  FindInstanceClosure fic(k, result);
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   325
  // If this operation encounters a bad object when using CMS,
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   326
  // consider using safe_object_iterate() which avoids perm gen
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   327
  // objects that may contain bad references.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  Universe::heap()->object_iterate(&fic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
}