hotspot/src/share/vm/memory/heapInspection.cpp
author sla
Mon, 10 Jun 2013 11:30:51 +0200
changeset 18025 b7bcf7497f93
parent 17370 59a0620561fa
child 18439 725ce18186b3
permissions -rw-r--r--
8005849: JEP 167: Event-Based JVM Tracing Reviewed-by: acorn, coleenp, sla Contributed-by: Karen Kinnear <karen.kinnear@oracle.com>, Bengt Rutisson <bengt.rutisson@oracle.com>, Calvin Cheung <calvin.cheung@oracle.com>, Erik Gahlin <erik.gahlin@oracle.com>, Erik Helin <erik.helin@oracle.com>, Jesper Wilhelmsson <jesper.wilhelmsson@oracle.com>, Keith McGuigan <keith.mcguigan@oracle.com>, Mattias Tobiasson <mattias.tobiasson@oracle.com>, Markus Gronlund <markus.gronlund@oracle.com>, Mikael Auno <mikael.auno@oracle.com>, Nils Eliasson <nils.eliasson@oracle.com>, Nils Loodin <nils.loodin@oracle.com>, Rickard Backman <rickard.backman@oracle.com>, Staffan Larsen <staffan.larsen@oracle.com>, Stefan Karlsson <stefan.karlsson@oracle.com>, Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
     2
 * Copyright (c) 2002, 2013, Oracle and/or its affiliates. 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
 *
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    26
#include "classfile/classLoaderData.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "gc_interface/collectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/genCollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/heapInspection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "utilities/globalDefinitions.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    33
#include "utilities/macros.hpp"
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    34
#if INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    36
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// HeapInspection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  if(e1->_instance_words > e2->_instance_words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  } else if(e1->_instance_words < e2->_instance_words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    46
  // Sort alphabetically, note 'Z' < '[' < 'a', but it's better to group
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    47
  // the array classes before all the instance classes.
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    48
  ResourceMark rm;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    49
  const char* name1 = e1->klass()->external_name();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    50
  const char* name2 = e2->klass()->external_name();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    51
  bool d1 = (name1[0] == '[');
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    52
  bool d2 = (name2[0] == '[');
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    53
  if (d1 && !d2) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    54
    return -1;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    55
  } else if (d2 && !d1) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    56
    return 1;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    57
  } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    58
    return strcmp(name1, name2);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    59
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    62
const char* KlassInfoEntry::name() const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    63
  const char* name;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    64
  if (_klass->name() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    65
    name = _klass->external_name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    if (_klass == Universe::boolArrayKlassObj())         name = "<boolArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    if (_klass == Universe::charArrayKlassObj())         name = "<charArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    if (_klass == Universe::singleArrayKlassObj())       name = "<singleArrayKlass>";       else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    if (_klass == Universe::doubleArrayKlassObj())       name = "<doubleArrayKlass>";       else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    if (_klass == Universe::byteArrayKlassObj())         name = "<byteArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    if (_klass == Universe::shortArrayKlassObj())        name = "<shortArrayKlass>";        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    if (_klass == Universe::intArrayKlassObj())          name = "<intArrayKlass>";          else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    if (_klass == Universe::longArrayKlassObj())         name = "<longArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      name = "<no name>";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    77
  return name;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    78
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    79
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    80
void KlassInfoEntry::print_on(outputStream* st) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    81
  ResourceMark rm;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    82
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // 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
    84
  st->print_cr(INT64_FORMAT_W(13) "  " UINT64_FORMAT_W(13) "  %s",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
               (jlong)  _instance_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
               (julong) _instance_words * HeapWordSize,
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    87
               name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    90
KlassInfoEntry* KlassInfoBucket::lookup(Klass* const k) {
1
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
    if (elt->is_equal(k)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      return elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    elt = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
    98
  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
    99
  // 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
   100
  if (elt != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   101
    set_list(elt);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   102
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  return elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
void KlassInfoBucket::iterate(KlassInfoClosure* cic) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  KlassInfoEntry* elt = _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  while (elt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    cic->do_cinfo(elt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    elt = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
void KlassInfoBucket::empty() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  KlassInfoEntry* elt = _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  _list = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  while (elt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    KlassInfoEntry* next = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    delete elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    elt = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   124
void KlassInfoTable::AllClassesFinder::do_klass(Klass* k) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   125
  // This has the SIDE EFFECT of creating a KlassInfoEntry
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   126
  // for <k>, if one doesn't exist yet.
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   127
  _table->lookup(k);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   128
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   129
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   130
KlassInfoTable::KlassInfoTable(bool need_class_stats) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   131
  _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
   132
  _size = 0;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   133
  _ref = (HeapWord*) Universe::boolArrayKlassObj();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   134
  _buckets =
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   135
    (KlassInfoBucket*)  AllocateHeap(sizeof(KlassInfoBucket) * _num_buckets,
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   136
                                            mtInternal, 0, AllocFailStrategy::RETURN_NULL);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   137
  if (_buckets != NULL) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   138
    _size = _num_buckets;
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   139
    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
   140
      _buckets[index].initialize();
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   141
    }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   142
    if (need_class_stats) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   143
      AllClassesFinder finder(this);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   144
      ClassLoaderDataGraph::classes_do(&finder);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   145
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
KlassInfoTable::~KlassInfoTable() {
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   150
  if (_buckets != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   151
    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
   152
      _buckets[index].empty();
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   153
    }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 8921
diff changeset
   154
    FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets, mtInternal);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   155
    _size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 15484
diff changeset
   159
uint KlassInfoTable::hash(const Klass* p) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   160
  assert(p->is_metadata(), "all klasses are metadata");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 15484
diff changeset
   164
KlassInfoEntry* KlassInfoTable::lookup(Klass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  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
   166
  assert(_buckets != NULL, "Allocation failure should have been caught");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  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
   168
  // 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
   169
  // 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
   170
  assert(e == NULL || k == e->klass(), "must be equal");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  return e;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   174
// 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
   175
// 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
   176
bool KlassInfoTable::record_instance(const oop obj) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   177
  Klass*        k = obj->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  KlassInfoEntry* elt = lookup(k);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   179
  // 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
   180
  // 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
   181
  if (elt != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   182
    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
   183
    elt->set_words(elt->words() + obj->size());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   184
    _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
   185
    return true;
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   186
  } else {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   187
    return false;
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   188
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
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
   192
  assert(_size == 0 || _buckets != NULL, "Allocation failure should have been caught");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  for (int index = 0; index < _size; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    _buckets[index].iterate(cic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   198
size_t KlassInfoTable::size_of_instances_in_words() const {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   199
  return _size_of_instances_in_words;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   200
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   201
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  return (*e1)->compare(*e1,*e2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   206
KlassInfoHisto::KlassInfoHisto(KlassInfoTable* cit, const char* title) :
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   207
  _cit(cit),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  _title(title) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   209
  _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<KlassInfoEntry*>(_histo_initial_size, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
KlassInfoHisto::~KlassInfoHisto() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  delete _elements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
void KlassInfoHisto::add(KlassInfoEntry* cie) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  elements()->append(cie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
void KlassInfoHisto::sort() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  elements()->sort(KlassInfoHisto::sort_helper);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
void KlassInfoHisto::print_elements(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  jlong total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  julong totalw = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  for(int i=0; i < elements()->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    st->print("%4d: ", i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    elements()->at(i)->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    total += elements()->at(i)->count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    totalw += elements()->at(i)->words();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   234
  st->print_cr("Total " INT64_FORMAT_W(13) "  " UINT64_FORMAT_W(13),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
               total, totalw * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   238
#define MAKE_COL_NAME(field, name, help)     #name,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   239
#define MAKE_COL_HELP(field, name, help)     help,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   240
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   241
static const char *name_table[] = {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   242
  HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_NAME)
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   243
};
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   244
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   245
static const char *help_table[] = {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   246
  HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_HELP)
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   247
};
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   248
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   249
bool KlassInfoHisto::is_selected(const char *col_name) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   250
  if (_selected_columns == NULL) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   251
    return true;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   252
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   253
  if (strcmp(_selected_columns, col_name) == 0) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   254
    return true;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   255
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   256
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   257
  const char *start = strstr(_selected_columns, col_name);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   258
  if (start == NULL) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   259
    return false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   260
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   261
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   262
  // The following must be true, because _selected_columns != col_name
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   263
  if (start > _selected_columns && start[-1] != ',') {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   264
    return false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   265
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   266
  char x = start[strlen(col_name)];
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   267
  if (x != ',' && x != '\0') {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   268
    return false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   269
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   270
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   271
  return true;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   272
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   273
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   274
void KlassInfoHisto::print_title(outputStream* st, bool csv_format,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   275
                                 bool selected[], int width_table[],
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   276
                                 const char *name_table[]) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   277
  if (csv_format) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   278
    st->print("Index,Super");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   279
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   280
       if (selected[c]) {st->print(",%s", name_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   281
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   282
    st->print(",ClassName");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   283
  } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   284
    st->print("Index Super");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   285
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   286
      if (selected[c]) {st->print(str_fmt(width_table[c]), name_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   287
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   288
    st->print(" ClassName");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   289
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   290
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   291
  if (is_selected("ClassLoader")) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   292
    st->print(",ClassLoader");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   293
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   294
  st->cr();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   295
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   296
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   297
void KlassInfoHisto::print_class_stats(outputStream* st,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   298
                                      bool csv_format, const char *columns) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   299
  ResourceMark rm;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   300
  KlassSizeStats sz, sz_sum;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   301
  int i;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   302
  julong *col_table = (julong*)(&sz);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   303
  julong *colsum_table = (julong*)(&sz_sum);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   304
  int width_table[KlassSizeStats::_num_columns];
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   305
  bool selected[KlassSizeStats::_num_columns];
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   306
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   307
  _selected_columns = columns;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   308
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   309
  memset(&sz_sum, 0, sizeof(sz_sum));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   310
  for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   311
    selected[c] = is_selected(name_table[c]);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   312
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   313
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   314
  for(i=0; i < elements()->length(); i++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   315
    elements()->at(i)->set_index(i+1);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   316
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   317
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   318
  for (int pass=1; pass<=2; pass++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   319
    if (pass == 2) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   320
      print_title(st, csv_format, selected, width_table, name_table);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   321
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   322
    for(i=0; i < elements()->length(); i++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   323
      KlassInfoEntry* e = (KlassInfoEntry*)elements()->at(i);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   324
      const Klass* k = e->klass();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   325
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   326
      memset(&sz, 0, sizeof(sz));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   327
      sz._inst_count = e->count();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   328
      sz._inst_bytes = HeapWordSize * e->words();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   329
      k->collect_statistics(&sz);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   330
      sz._total_bytes = sz._ro_bytes + sz._rw_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   331
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   332
      if (pass == 1) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   333
        for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   334
          colsum_table[c] += col_table[c];
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   335
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   336
      } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   337
        int super_index = -1;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   338
        if (k->oop_is_instance()) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   339
          Klass* super = ((InstanceKlass*)k)->java_super();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   340
          if (super) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   341
            KlassInfoEntry* super_e = _cit->lookup(super);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   342
            if (super_e) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   343
              super_index = super_e->index();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   344
            }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   345
          }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   346
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   347
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   348
        if (csv_format) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   349
          st->print("%d,%d", e->index(), super_index);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   350
          for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   351
            if (selected[c]) {st->print("," JULONG_FORMAT, col_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   352
          }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   353
          st->print(",%s",e->name());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   354
        } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   355
          st->print("%5d %5d", e->index(), super_index);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   356
          for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   357
            if (selected[c]) {print_julong(st, width_table[c], col_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   358
          }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   359
          st->print(" %s", e->name());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   360
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   361
        if (is_selected("ClassLoader")) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   362
          ClassLoaderData* loader_data = k->class_loader_data();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   363
          st->print(",");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   364
          loader_data->print_value_on(st);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   365
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   366
        st->cr();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   367
      }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   368
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   369
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   370
    if (pass == 1) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   371
      for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   372
        width_table[c] = col_width(colsum_table[c], name_table[c]);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   373
      }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   374
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   375
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   376
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   377
  sz_sum._inst_size = 0;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   378
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   379
  if (csv_format) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   380
    st->print(",");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   381
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   382
      if (selected[c]) {st->print("," JULONG_FORMAT, colsum_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   383
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   384
  } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   385
    st->print("           ");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   386
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   387
      if (selected[c]) {print_julong(st, width_table[c], colsum_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   388
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   389
    st->print(" Total");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   390
    if (sz_sum._total_bytes > 0) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   391
      st->cr();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   392
      st->print("           ");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   393
      for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   394
        if (selected[c]) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   395
          switch (c) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   396
          case KlassSizeStats::_index_inst_size:
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   397
          case KlassSizeStats::_index_inst_count:
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   398
          case KlassSizeStats::_index_method_count:
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   399
            st->print(str_fmt(width_table[c]), "-");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   400
            break;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   401
          default:
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   402
            {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   403
              double perc = (double)(100) * (double)(colsum_table[c]) / (double)sz_sum._total_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   404
              st->print(perc_fmt(width_table[c]), perc);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   405
            }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   406
          }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   407
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   408
      }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   409
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   410
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   411
  st->cr();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   412
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   413
  if (!csv_format) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   414
    print_title(st, csv_format, selected, width_table, name_table);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   415
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   416
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   417
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   418
julong KlassInfoHisto::annotations_bytes(Array<AnnotationArray*>* p) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   419
  julong bytes = 0;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   420
  if (p != NULL) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   421
    for (int i = 0; i < p->length(); i++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   422
      bytes += count_bytes_array(p->at(i));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   423
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   424
    bytes += count_bytes_array(p);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   425
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   426
  return bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   427
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   428
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   429
void KlassInfoHisto::print_histo_on(outputStream* st, bool print_stats,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   430
                                    bool csv_format, const char *columns) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   431
  if (print_stats) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   432
    print_class_stats(st, csv_format, columns);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   433
  } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   434
    st->print_cr("%s",title());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   435
    print_elements(st);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   436
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
class HistoClosure : public KlassInfoClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  KlassInfoHisto* _cih;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  HistoClosure(KlassInfoHisto* cih) : _cih(cih) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  void do_cinfo(KlassInfoEntry* cie) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    _cih->add(cie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
class RecordInstanceClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  KlassInfoTable* _cit;
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   453
  size_t _missed_count;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   454
  BoolObjectClosure* _filter;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
 public:
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   456
  RecordInstanceClosure(KlassInfoTable* cit, BoolObjectClosure* filter) :
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   457
    _cit(cit), _missed_count(0), _filter(filter) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  void do_object(oop obj) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   460
    if (should_visit(obj)) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   461
      if (!_cit->record_instance(obj)) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   462
        _missed_count++;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   463
      }
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   464
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  }
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   466
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   467
  size_t missed_count() { return _missed_count; }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   468
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   469
 private:
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   470
  bool should_visit(oop obj) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   471
    return _filter == NULL || _filter->do_object_b(obj);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   472
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   475
size_t HeapInspection::populate_table(KlassInfoTable* cit, BoolObjectClosure *filter) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  ResourceMark rm;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   477
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   478
  RecordInstanceClosure ric(cit, filter);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   479
  Universe::heap()->object_iterate(&ric);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   480
  return ric.missed_count();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   481
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   482
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   483
void HeapInspection::heap_inspection(outputStream* st) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   484
  ResourceMark rm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   485
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   486
  if (_print_help) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   487
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   488
      st->print("%s:\n\t", name_table[c]);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   489
      const int max_col = 60;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   490
      int col = 0;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   491
      for (const char *p = help_table[c]; *p; p++,col++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   492
        if (col >= max_col && *p == ' ') {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   493
          st->print("\n\t");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   494
          col = 0;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   495
        } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   496
          st->print("%c", *p);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   497
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   498
      }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   499
      st->print_cr(".\n");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   500
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   501
    return;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   502
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   503
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   504
  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
   505
  if (!cit.allocation_failed()) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   506
    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
   507
    if (missed_count != 0) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   508
      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
   509
                   " total instances in data below",
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   510
                   missed_count);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   511
    }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   512
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   513
    // Sort and print klass instance info
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   514
    const char *title = "\n"
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   515
              " num     #instances         #bytes  class name\n"
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   516
              "----------------------------------------------";
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   517
    KlassInfoHisto histo(&cit, title);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   518
    HistoClosure hc(&histo);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   519
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   520
    cit.iterate(&hc);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   521
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   522
    histo.sort();
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   523
    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
   524
  } else {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   525
    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
   526
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  st->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
class FindInstanceClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   532
  Klass* _klass;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  GrowableArray<oop>* _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   536
  FindInstanceClosure(Klass* k, GrowableArray<oop>* result) : _klass(k), _result(result) {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  void do_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    if (obj->is_a(_klass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      _result->append(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   545
void HeapInspection::find_instances_at_safepoint(Klass* k, GrowableArray<oop>* result) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  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
   547
  assert(Heap_lock->is_locked(), "should have the Heap_lock");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  // Ensure that the heap is parsable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  Universe::heap()->ensure_parsability(false);  // no need to retire TALBs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  // Iterate over objects in the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  FindInstanceClosure fic(k, result);
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   554
  // 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
   555
  // consider using safe_object_iterate() which avoids metadata
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   556
  // objects that may contain bad references.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  Universe::heap()->object_iterate(&fic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
}