src/hotspot/share/memory/heapInspection.cpp
author lfoltan
Mon, 21 Oct 2019 13:13:16 -0400
changeset 58722 cba8afa5cfed
parent 55629 29e522153769
child 59153 1152339c298a
permissions -rw-r--r--
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently Summary: Increase the use of type signature constants instead of hard coded characters within the JVM. Reviewed-by: coleenp, dholmes, fparain Contributed-by: lois.foltan@oracle.com, john.r.rose@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
58722
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 55629
diff changeset
     2
 * Copyright (c) 2002, 2019, 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"
49824
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 49734
diff changeset
    26
#include "classfile/classLoaderData.inline.hpp"
51959
db0c3952de52 8209645: Split ClassLoaderData and ClassLoaderDataGraph into separate files
coleenp
parents: 51608
diff changeset
    27
#include "classfile/classLoaderDataGraph.hpp"
38112
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
    28
#include "classfile/moduleEntry.hpp"
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    29
#include "classfile/systemDictionary.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29800
diff changeset
    30
#include "gc/shared/collectedHeap.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "memory/heapInspection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "memory/resourceArea.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54274
diff changeset
    33
#include "memory/universe.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27880
diff changeset
    34
#include "oops/oop.inline.hpp"
50572
6d4332f746ad 8203343: VM.{metaspace|classloaders|classhierarchy...} jcmd should show invocation targets for Generated{Method|Constructor}AccessorImpl classes
stuefe
parents: 49824
diff changeset
    35
#include "oops/reflectionAccessorImplKlassHelper.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "utilities/globalDefinitions.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    38
#include "utilities/macros.hpp"
29702
9ed339a5e096 8075809: Add missing includes of stack.inline.hpp
stefank
parents: 29085
diff changeset
    39
#include "utilities/stack.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// HeapInspection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33612
diff changeset
    43
int KlassSizeStats::count(oop x) {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33612
diff changeset
    44
  return (HeapWordSize * (((x) != NULL) ? (x)->size() : 0));
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33612
diff changeset
    45
}
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33612
diff changeset
    46
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33612
diff changeset
    47
int KlassSizeStats::count_array(objArrayOop x) {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33612
diff changeset
    48
  return (HeapWordSize * (((x) != NULL) ? (x)->size() : 0));
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33612
diff changeset
    49
}
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33612
diff changeset
    50
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    51
inline KlassInfoEntry::~KlassInfoEntry() {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    52
  if (_subclasses != NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    53
    delete _subclasses;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    54
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    55
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    56
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    57
inline void KlassInfoEntry::add_subclass(KlassInfoEntry* cie) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    58
  if (_subclasses == NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    59
    _subclasses = new  (ResourceObj::C_HEAP, mtInternal) GrowableArray<KlassInfoEntry*>(4, true);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    60
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    61
  _subclasses->append(cie);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    62
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
    63
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  if(e1->_instance_words > e2->_instance_words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  } else if(e1->_instance_words < e2->_instance_words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    70
  // Sort alphabetically, note 'Z' < '[' < 'a', but it's better to group
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    71
  // the array classes before all the instance classes.
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    72
  ResourceMark rm;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    73
  const char* name1 = e1->klass()->external_name();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    74
  const char* name2 = e2->klass()->external_name();
58722
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 55629
diff changeset
    75
  bool d1 = (name1[0] == JVM_SIGNATURE_ARRAY);
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 55629
diff changeset
    76
  bool d2 = (name2[0] == JVM_SIGNATURE_ARRAY);
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    77
  if (d1 && !d2) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    78
    return -1;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    79
  } else if (d2 && !d1) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    80
    return 1;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    81
  } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    82
    return strcmp(name1, name2);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    83
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    86
const char* KlassInfoEntry::name() const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    87
  const char* name;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    88
  if (_klass->name() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    89
    name = _klass->external_name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    if (_klass == Universe::boolArrayKlassObj())         name = "<boolArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    if (_klass == Universe::charArrayKlassObj())         name = "<charArrayKlass>";         else
51554
5b0d86499960 8209958: Clean up duplicate basic array type statics in Universe
coleenp
parents: 51329
diff changeset
    93
    if (_klass == Universe::floatArrayKlassObj())        name = "<floatArrayKlass>";        else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    if (_klass == Universe::doubleArrayKlassObj())       name = "<doubleArrayKlass>";       else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    if (_klass == Universe::byteArrayKlassObj())         name = "<byteArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    if (_klass == Universe::shortArrayKlassObj())        name = "<shortArrayKlass>";        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    if (_klass == Universe::intArrayKlassObj())          name = "<intArrayKlass>";          else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    if (_klass == Universe::longArrayKlassObj())         name = "<longArrayKlass>";         else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
      name = "<no name>";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   101
  return name;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   102
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   103
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   104
void KlassInfoEntry::print_on(outputStream* st) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   105
  ResourceMark rm;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   106
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // simplify the formatting (ILP32 vs LP64) - always cast the numbers to 64-bit
38112
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   108
  ModuleEntry* module = _klass->module();
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   109
  if (module->is_named()) {
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   110
    st->print_cr(INT64_FORMAT_W(13) "  " UINT64_FORMAT_W(13) "  %s (%s@%s)",
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   111
                 (int64_t)_instance_count,
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   112
                 (uint64_t)_instance_words * HeapWordSize,
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   113
                 name(),
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   114
                 module->name()->as_C_string(),
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   115
                 module->version() != NULL ? module->version()->as_C_string() : "");
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   116
  } else {
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   117
    st->print_cr(INT64_FORMAT_W(13) "  " UINT64_FORMAT_W(13) "  %s",
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   118
                 (int64_t)_instance_count,
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   119
                 (uint64_t)_instance_words * HeapWordSize,
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   120
                 name());
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   121
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   124
KlassInfoEntry* KlassInfoBucket::lookup(Klass* const k) {
54274
a7358438d463 8220682: Heap dumping and inspection fails with JDK-8214712
redestad
parents: 53035
diff changeset
   125
  // Can happen if k is an archived class that we haven't loaded yet.
55629
29e522153769 8224531: SEGV while collecting Klass statistics
eosterlund
parents: 55628
diff changeset
   126
  if (k->java_mirror_no_keepalive() == NULL) {
54274
a7358438d463 8220682: Heap dumping and inspection fails with JDK-8214712
redestad
parents: 53035
diff changeset
   127
    return NULL;
a7358438d463 8220682: Heap dumping and inspection fails with JDK-8214712
redestad
parents: 53035
diff changeset
   128
  }
a7358438d463 8220682: Heap dumping and inspection fails with JDK-8214712
redestad
parents: 53035
diff changeset
   129
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  KlassInfoEntry* elt = _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  while (elt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    if (elt->is_equal(k)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      return elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    elt = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   137
  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
   138
  // 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
   139
  if (elt != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   140
    set_list(elt);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   141
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  return elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
void KlassInfoBucket::iterate(KlassInfoClosure* cic) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  KlassInfoEntry* elt = _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  while (elt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    cic->do_cinfo(elt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    elt = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
void KlassInfoBucket::empty() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  KlassInfoEntry* elt = _list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  _list = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  while (elt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    KlassInfoEntry* next = elt->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    delete elt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    elt = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
51608
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   163
class KlassInfoTable::AllClassesFinder : public LockedClassesDo {
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   164
  KlassInfoTable *_table;
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   165
public:
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   166
  AllClassesFinder(KlassInfoTable* table) : _table(table) {}
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   167
  virtual void do_klass(Klass* k) {
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   168
    // This has the SIDE EFFECT of creating a KlassInfoEntry
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   169
    // for <k>, if one doesn't exist yet.
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   170
    _table->lookup(k);
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   171
  }
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   172
};
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51554
diff changeset
   173
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   174
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   175
KlassInfoTable::KlassInfoTable(bool add_all_classes) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   176
  _size_of_instances_in_words = 0;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   177
  _ref = (HeapWord*) Universe::boolArrayKlassObj();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   178
  _buckets =
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   179
    (KlassInfoBucket*)  AllocateHeap(sizeof(KlassInfoBucket) * _num_buckets,
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24424
diff changeset
   180
       mtInternal, CURRENT_PC, AllocFailStrategy::RETURN_NULL);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   181
  if (_buckets != NULL) {
53035
0e5c83bf4ff7 8215228: Use a constant hash table size in order to enable compiler optimization
jcbeyler
parents: 51959
diff changeset
   182
    for (int index = 0; index < _num_buckets; index++) {
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   183
      _buckets[index].initialize();
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   184
    }
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   185
    if (add_all_classes) {
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   186
      AllClassesFinder finder(this);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   187
      ClassLoaderDataGraph::classes_do(&finder);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
KlassInfoTable::~KlassInfoTable() {
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   193
  if (_buckets != NULL) {
53035
0e5c83bf4ff7 8215228: Use a constant hash table size in order to enable compiler optimization
jcbeyler
parents: 51959
diff changeset
   194
    for (int index = 0; index < _num_buckets; index++) {
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   195
      _buckets[index].empty();
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   196
    }
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 25946
diff changeset
   197
    FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets);
53035
0e5c83bf4ff7 8215228: Use a constant hash table size in order to enable compiler optimization
jcbeyler
parents: 51959
diff changeset
   198
    _buckets = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 15484
diff changeset
   202
uint KlassInfoTable::hash(const Klass* p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 15484
diff changeset
   206
KlassInfoEntry* KlassInfoTable::lookup(Klass* k) {
53035
0e5c83bf4ff7 8215228: Use a constant hash table size in order to enable compiler optimization
jcbeyler
parents: 51959
diff changeset
   207
  uint         idx = hash(k) % _num_buckets;
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   208
  assert(_buckets != NULL, "Allocation failure should have been caught");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  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
   210
  // Lookup may fail if this is a new klass for which we
54274
a7358438d463 8220682: Heap dumping and inspection fails with JDK-8214712
redestad
parents: 53035
diff changeset
   211
  // could not allocate space for an new entry, or if it's
a7358438d463 8220682: Heap dumping and inspection fails with JDK-8214712
redestad
parents: 53035
diff changeset
   212
  // an archived class that we haven't loaded yet.
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   213
  assert(e == NULL || k == e->klass(), "must be equal");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  return e;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   217
// 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
   218
// 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
   219
bool KlassInfoTable::record_instance(const oop obj) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   220
  Klass*        k = obj->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  KlassInfoEntry* elt = lookup(k);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   222
  // 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
   223
  // 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
   224
  if (elt != NULL) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   225
    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
   226
    elt->set_words(elt->words() + obj->size());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   227
    _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
   228
    return true;
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   229
  } else {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   230
    return false;
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   231
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
void KlassInfoTable::iterate(KlassInfoClosure* cic) {
53035
0e5c83bf4ff7 8215228: Use a constant hash table size in order to enable compiler optimization
jcbeyler
parents: 51959
diff changeset
   235
  assert(_buckets != NULL, "Allocation failure should have been caught");
0e5c83bf4ff7 8215228: Use a constant hash table size in order to enable compiler optimization
jcbeyler
parents: 51959
diff changeset
   236
  for (int index = 0; index < _num_buckets; index++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    _buckets[index].iterate(cic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   241
size_t KlassInfoTable::size_of_instances_in_words() const {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   242
  return _size_of_instances_in_words;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   243
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   244
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  return (*e1)->compare(*e1,*e2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
35939
05df7e64ecfc 8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents: 35862
diff changeset
   249
KlassInfoHisto::KlassInfoHisto(KlassInfoTable* cit) :
05df7e64ecfc 8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents: 35862
diff changeset
   250
  _cit(cit) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   251
  _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<KlassInfoEntry*>(_histo_initial_size, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
KlassInfoHisto::~KlassInfoHisto() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  delete _elements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
void KlassInfoHisto::add(KlassInfoEntry* cie) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  elements()->append(cie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
void KlassInfoHisto::sort() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  elements()->sort(KlassInfoHisto::sort_helper);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
void KlassInfoHisto::print_elements(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // simplify the formatting (ILP32 vs LP64) - store the sum in 64-bit
29800
fa5f7a2bf717 8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29702
diff changeset
   268
  int64_t total = 0;
fa5f7a2bf717 8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29702
diff changeset
   269
  uint64_t totalw = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  for(int i=0; i < elements()->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    st->print("%4d: ", i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    elements()->at(i)->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    total += elements()->at(i)->count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    totalw += elements()->at(i)->words();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  }
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   276
  st->print_cr("Total " INT64_FORMAT_W(13) "  " UINT64_FORMAT_W(13),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
               total, totalw * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   280
#define MAKE_COL_NAME(field, name, help)     #name,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   281
#define MAKE_COL_HELP(field, name, help)     help,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   282
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   283
static const char *name_table[] = {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   284
  HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_NAME)
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   285
};
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   286
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   287
static const char *help_table[] = {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   288
  HEAP_INSPECTION_COLUMNS_DO(MAKE_COL_HELP)
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
bool KlassInfoHisto::is_selected(const char *col_name) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   292
  if (_selected_columns == NULL) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   293
    return true;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   294
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   295
  if (strcmp(_selected_columns, col_name) == 0) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   296
    return true;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   297
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   298
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   299
  const char *start = strstr(_selected_columns, col_name);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   300
  if (start == NULL) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   301
    return false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   302
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   303
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   304
  // The following must be true, because _selected_columns != col_name
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   305
  if (start > _selected_columns && start[-1] != ',') {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   306
    return false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   307
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   308
  char x = start[strlen(col_name)];
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   309
  if (x != ',' && x != '\0') {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   310
    return false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   311
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   312
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   313
  return true;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   314
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   315
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   316
void KlassInfoHisto::print_title(outputStream* st, bool csv_format,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   317
                                 bool selected[], int width_table[],
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   318
                                 const char *name_table[]) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   319
  if (csv_format) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   320
    st->print("Index,Super");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   321
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   322
       if (selected[c]) {st->print(",%s", name_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   323
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   324
    st->print(",ClassName");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   325
  } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   326
    st->print("Index Super");
33604
ad1cd9269bd4 8139116: Fixes for warning "format not a string literal"
goetz
parents: 33602
diff changeset
   327
    for (int c = 0; c < KlassSizeStats::_num_columns; c++) {
ad1cd9269bd4 8139116: Fixes for warning "format not a string literal"
goetz
parents: 33602
diff changeset
   328
      if (selected[c]) {
ad1cd9269bd4 8139116: Fixes for warning "format not a string literal"
goetz
parents: 33602
diff changeset
   329
        st->print("%*s", width_table[c], name_table[c]);
ad1cd9269bd4 8139116: Fixes for warning "format not a string literal"
goetz
parents: 33602
diff changeset
   330
      }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   331
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   332
    st->print(" ClassName");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   333
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   334
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   335
  if (is_selected("ClassLoader")) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   336
    st->print(",ClassLoader");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   337
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   338
  st->cr();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   339
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   340
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   341
class HierarchyClosure : public KlassInfoClosure {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   342
private:
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   343
  GrowableArray<KlassInfoEntry*> *_elements;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   344
public:
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   345
  HierarchyClosure(GrowableArray<KlassInfoEntry*> *_elements) : _elements(_elements) {}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   346
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   347
  void do_cinfo(KlassInfoEntry* cie) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   348
    // ignore array classes
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   349
    if (cie->klass()->is_instance_klass()) {
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   350
      _elements->append(cie);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   351
    }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   352
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   353
};
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   354
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   355
void KlassHierarchy::print_class_hierarchy(outputStream* st, bool print_interfaces,
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   356
                                           bool print_subclasses, char* classname) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   357
  ResourceMark rm;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   358
  Stack <KlassInfoEntry*, mtClass> class_stack;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   359
  GrowableArray<KlassInfoEntry*> elements;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   360
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   361
  // Add all classes to the KlassInfoTable, which allows for quick lookup.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   362
  // A KlassInfoEntry will be created for each class.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   363
  KlassInfoTable cit(true);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   364
  if (cit.allocation_failed()) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   365
    st->print_cr("ERROR: Ran out of C-heap; hierarchy not generated");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   366
    return;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   367
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   368
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   369
  // Add all created KlassInfoEntry instances to the elements array for easy
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   370
  // iteration, and to allow each KlassInfoEntry instance to have a unique index.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   371
  HierarchyClosure hc(&elements);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   372
  cit.iterate(&hc);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   373
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   374
  for(int i = 0; i < elements.length(); i++) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   375
    KlassInfoEntry* cie = elements.at(i);
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 30764
diff changeset
   376
    Klass* super = cie->klass()->super();
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   377
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   378
    // Set the index for the class.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   379
    cie->set_index(i + 1);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   380
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   381
    // Add the class to the subclass array of its superclass.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   382
    if (super != NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   383
      KlassInfoEntry* super_cie = cit.lookup(super);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   384
      assert(super_cie != NULL, "could not lookup superclass");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   385
      super_cie->add_subclass(cie);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   386
    }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   387
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   388
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   389
  // Set the do_print flag for each class that should be printed.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   390
  for(int i = 0; i < elements.length(); i++) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   391
    KlassInfoEntry* cie = elements.at(i);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   392
    if (classname == NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   393
      // We are printing all classes.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   394
      cie->set_do_print(true);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   395
    } else {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   396
      // We are only printing the hierarchy of a specific class.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   397
      if (strcmp(classname, cie->klass()->external_name()) == 0) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   398
        KlassHierarchy::set_do_print_for_class_hierarchy(cie, &cit, print_subclasses);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   399
      }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   400
    }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   401
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   402
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   403
  // Now we do a depth first traversal of the class hierachry. The class_stack will
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   404
  // maintain the list of classes we still need to process. Start things off
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   405
  // by priming it with java.lang.Object.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   406
  KlassInfoEntry* jlo_cie = cit.lookup(SystemDictionary::Object_klass());
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   407
  assert(jlo_cie != NULL, "could not lookup java.lang.Object");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   408
  class_stack.push(jlo_cie);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   409
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   410
  // Repeatedly pop the top item off the stack, print its class info,
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   411
  // and push all of its subclasses on to the stack. Do this until there
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   412
  // are no classes left on the stack.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   413
  while (!class_stack.is_empty()) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   414
    KlassInfoEntry* curr_cie = class_stack.pop();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   415
    if (curr_cie->do_print()) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   416
      print_class(st, curr_cie, print_interfaces);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   417
      if (curr_cie->subclasses() != NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   418
        // Current class has subclasses, so push all of them onto the stack.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   419
        for (int i = 0; i < curr_cie->subclasses()->length(); i++) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   420
          KlassInfoEntry* cie = curr_cie->subclasses()->at(i);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   421
          if (cie->do_print()) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   422
            class_stack.push(cie);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   423
          }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   424
        }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   425
      }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   426
    }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   427
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   428
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   429
  st->flush();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   430
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   431
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   432
// Sets the do_print flag for every superclass and subclass of the specified class.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   433
void KlassHierarchy::set_do_print_for_class_hierarchy(KlassInfoEntry* cie, KlassInfoTable* cit,
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   434
                                                      bool print_subclasses) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   435
  // Set do_print for all superclasses of this class.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   436
  Klass* super = ((InstanceKlass*)cie->klass())->java_super();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   437
  while (super != NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   438
    KlassInfoEntry* super_cie = cit->lookup(super);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   439
    super_cie->set_do_print(true);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   440
    super = super->super();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   441
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   442
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   443
  // Set do_print for this class and all of its subclasses.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   444
  Stack <KlassInfoEntry*, mtClass> class_stack;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   445
  class_stack.push(cie);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   446
  while (!class_stack.is_empty()) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   447
    KlassInfoEntry* curr_cie = class_stack.pop();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   448
    curr_cie->set_do_print(true);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   449
    if (print_subclasses && curr_cie->subclasses() != NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   450
      // Current class has subclasses, so push all of them onto the stack.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   451
      for (int i = 0; i < curr_cie->subclasses()->length(); i++) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   452
        KlassInfoEntry* cie = curr_cie->subclasses()->at(i);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   453
        class_stack.push(cie);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   454
      }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   455
    }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   456
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   457
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   458
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   459
static void print_indent(outputStream* st, int indent) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   460
  while (indent != 0) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   461
    st->print("|");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   462
    indent--;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   463
    if (indent != 0) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   464
      st->print("  ");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   465
    }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   466
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   467
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   468
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   469
// Print the class name and its unique ClassLoader identifer.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   470
static void print_classname(outputStream* st, Klass* klass) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   471
  oop loader_oop = klass->class_loader_data()->class_loader();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   472
  st->print("%s/", klass->external_name());
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   473
  if (loader_oop == NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   474
    st->print("null");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   475
  } else {
29800
fa5f7a2bf717 8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29702
diff changeset
   476
    st->print(INTPTR_FORMAT, p2i(klass->class_loader_data()));
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   477
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   478
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   479
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 50572
diff changeset
   480
static void print_interface(outputStream* st, InstanceKlass* intf_klass, const char* intf_type, int indent) {
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   481
  print_indent(st, indent);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   482
  st->print("  implements ");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   483
  print_classname(st, intf_klass);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   484
  st->print(" (%s intf)\n", intf_type);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   485
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   486
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   487
void KlassHierarchy::print_class(outputStream* st, KlassInfoEntry* cie, bool print_interfaces) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   488
  ResourceMark rm;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   489
  InstanceKlass* klass = (InstanceKlass*)cie->klass();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   490
  int indent = 0;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   491
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   492
  // Print indentation with proper indicators of superclass.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   493
  Klass* super = klass->super();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   494
  while (super != NULL) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   495
    super = super->super();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   496
    indent++;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   497
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   498
  print_indent(st, indent);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   499
  if (indent != 0) st->print("--");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   500
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   501
  // Print the class name, its unique ClassLoader identifer, and if it is an interface.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   502
  print_classname(st, klass);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   503
  if (klass->is_interface()) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   504
    st->print(" (intf)");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   505
  }
50572
6d4332f746ad 8203343: VM.{metaspace|classloaders|classhierarchy...} jcmd should show invocation targets for Generated{Method|Constructor}AccessorImpl classes
stuefe
parents: 49824
diff changeset
   506
  // Special treatment for generated core reflection accessor classes: print invocation target.
6d4332f746ad 8203343: VM.{metaspace|classloaders|classhierarchy...} jcmd should show invocation targets for Generated{Method|Constructor}AccessorImpl classes
stuefe
parents: 49824
diff changeset
   507
  if (ReflectionAccessorImplKlassHelper::is_generated_accessor(klass)) {
6d4332f746ad 8203343: VM.{metaspace|classloaders|classhierarchy...} jcmd should show invocation targets for Generated{Method|Constructor}AccessorImpl classes
stuefe
parents: 49824
diff changeset
   508
    st->print(" (invokes: ");
6d4332f746ad 8203343: VM.{metaspace|classloaders|classhierarchy...} jcmd should show invocation targets for Generated{Method|Constructor}AccessorImpl classes
stuefe
parents: 49824
diff changeset
   509
    ReflectionAccessorImplKlassHelper::print_invocation_target(st, klass);
6d4332f746ad 8203343: VM.{metaspace|classloaders|classhierarchy...} jcmd should show invocation targets for Generated{Method|Constructor}AccessorImpl classes
stuefe
parents: 49824
diff changeset
   510
    st->print(")");
6d4332f746ad 8203343: VM.{metaspace|classloaders|classhierarchy...} jcmd should show invocation targets for Generated{Method|Constructor}AccessorImpl classes
stuefe
parents: 49824
diff changeset
   511
  }
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   512
  st->print("\n");
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   513
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   514
  // Print any interfaces the class has.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   515
  if (print_interfaces) {
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 50572
diff changeset
   516
    Array<InstanceKlass*>* local_intfs = klass->local_interfaces();
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 50572
diff changeset
   517
    Array<InstanceKlass*>* trans_intfs = klass->transitive_interfaces();
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   518
    for (int i = 0; i < local_intfs->length(); i++) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   519
      print_interface(st, local_intfs->at(i), "declared", indent);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   520
    }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   521
    for (int i = 0; i < trans_intfs->length(); i++) {
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 50572
diff changeset
   522
      InstanceKlass* trans_interface = trans_intfs->at(i);
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   523
      // Only print transitive interfaces if they are not also declared.
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   524
      if (!local_intfs->contains(trans_interface)) {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   525
        print_interface(st, trans_interface, "inherited", indent);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   526
      }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   527
    }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   528
  }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   529
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   530
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   531
void KlassInfoHisto::print_class_stats(outputStream* st,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   532
                                      bool csv_format, const char *columns) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   533
  ResourceMark rm;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   534
  KlassSizeStats sz, sz_sum;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   535
  int i;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   536
  julong *col_table = (julong*)(&sz);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   537
  julong *colsum_table = (julong*)(&sz_sum);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   538
  int width_table[KlassSizeStats::_num_columns];
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   539
  bool selected[KlassSizeStats::_num_columns];
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   540
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   541
  _selected_columns = columns;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   542
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   543
  memset(&sz_sum, 0, sizeof(sz_sum));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   544
  for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   545
    selected[c] = is_selected(name_table[c]);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   546
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   547
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   548
  for(i=0; i < elements()->length(); i++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   549
    elements()->at(i)->set_index(i+1);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   550
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   551
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   552
  // First iteration is for accumulating stats totals in colsum_table[].
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   553
  // Second iteration is for printing stats for each class.
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   554
  for (int pass=1; pass<=2; pass++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   555
    if (pass == 2) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   556
      print_title(st, csv_format, selected, width_table, name_table);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   557
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   558
    for(i=0; i < elements()->length(); i++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   559
      KlassInfoEntry* e = (KlassInfoEntry*)elements()->at(i);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   560
      const Klass* k = e->klass();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   561
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   562
      // Get the stats for this class.
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   563
      memset(&sz, 0, sizeof(sz));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   564
      sz._inst_count = e->count();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   565
      sz._inst_bytes = HeapWordSize * e->words();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   566
      k->collect_statistics(&sz);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   567
      sz._total_bytes = sz._ro_bytes + sz._rw_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   568
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   569
      if (pass == 1) {
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   570
        // Add the stats for this class to the overall totals.
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   571
        for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   572
          colsum_table[c] += col_table[c];
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   573
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   574
      } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   575
        int super_index = -1;
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   576
        // Print the stats for this class.
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   577
        if (k->is_instance_klass()) {
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   578
          Klass* super = k->super();
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   579
          if (super) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   580
            KlassInfoEntry* super_e = _cit->lookup(super);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   581
            if (super_e) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   582
              super_index = super_e->index();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   583
            }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   584
          }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   585
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   586
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   587
        if (csv_format) {
29800
fa5f7a2bf717 8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29702
diff changeset
   588
          st->print("%ld,%d", e->index(), super_index);
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   589
          for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   590
            if (selected[c]) {st->print("," JULONG_FORMAT, col_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   591
          }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   592
          st->print(",%s",e->name());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   593
        } else {
29800
fa5f7a2bf717 8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29702
diff changeset
   594
          st->print("%5ld %5d", e->index(), super_index);
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   595
          for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   596
            if (selected[c]) {print_julong(st, width_table[c], col_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   597
          }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   598
          st->print(" %s", e->name());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   599
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   600
        if (is_selected("ClassLoader")) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   601
          ClassLoaderData* loader_data = k->class_loader_data();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   602
          st->print(",");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   603
          loader_data->print_value_on(st);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   604
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   605
        st->cr();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   606
      }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   607
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   608
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   609
    if (pass == 1) {
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   610
      // Calculate the minimum width needed for the column by accounting for the
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   611
      // column header width and the width of the largest value in the column.
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   612
      for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   613
        width_table[c] = col_width(colsum_table[c], name_table[c]);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   614
      }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   615
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   616
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   617
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   618
  sz_sum._inst_size = 0;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   619
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   620
  // Print the column totals.
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   621
  if (csv_format) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   622
    st->print(",");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   623
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   624
      if (selected[c]) {st->print("," JULONG_FORMAT, colsum_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   625
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   626
  } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   627
    st->print("           ");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   628
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   629
      if (selected[c]) {print_julong(st, width_table[c], colsum_table[c]);}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   630
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   631
    st->print(" Total");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   632
    if (sz_sum._total_bytes > 0) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   633
      st->cr();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   634
      st->print("           ");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   635
      for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   636
        if (selected[c]) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   637
          switch (c) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   638
          case KlassSizeStats::_index_inst_size:
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   639
          case KlassSizeStats::_index_inst_count:
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   640
          case KlassSizeStats::_index_method_count:
33604
ad1cd9269bd4 8139116: Fixes for warning "format not a string literal"
goetz
parents: 33602
diff changeset
   641
            st->print("%*s", width_table[c], "-");
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   642
            break;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   643
          default:
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   644
            {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   645
              double perc = (double)(100) * (double)(colsum_table[c]) / (double)sz_sum._total_bytes;
33604
ad1cd9269bd4 8139116: Fixes for warning "format not a string literal"
goetz
parents: 33602
diff changeset
   646
              st->print("%*.1f%%", width_table[c]-1, perc);
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   647
            }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   648
          }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   649
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   650
      }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   651
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   652
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   653
  st->cr();
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   654
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   655
  if (!csv_format) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   656
    print_title(st, csv_format, selected, width_table, name_table);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   657
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   658
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   659
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   660
julong KlassInfoHisto::annotations_bytes(Array<AnnotationArray*>* p) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   661
  julong bytes = 0;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   662
  if (p != NULL) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   663
    for (int i = 0; i < p->length(); i++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   664
      bytes += count_bytes_array(p->at(i));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   665
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   666
    bytes += count_bytes_array(p);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   667
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   668
  return bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   669
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   670
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   671
void KlassInfoHisto::print_histo_on(outputStream* st, bool print_stats,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   672
                                    bool csv_format, const char *columns) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   673
  if (print_stats) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   674
    print_class_stats(st, csv_format, columns);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   675
  } else {
38112
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   676
    st->print_cr(" num     #instances         #bytes  class name (module)");
7babe39983c0 8151342: Add module name/version to class histogram output
hseigel
parents: 35939
diff changeset
   677
    st->print_cr("-------------------------------------------------------");
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   678
    print_elements(st);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   679
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
class HistoClosure : public KlassInfoClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  KlassInfoHisto* _cih;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  HistoClosure(KlassInfoHisto* cih) : _cih(cih) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  void do_cinfo(KlassInfoEntry* cie) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    _cih->add(cie);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
class RecordInstanceClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  KlassInfoTable* _cit;
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   696
  size_t _missed_count;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   697
  BoolObjectClosure* _filter;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
 public:
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   699
  RecordInstanceClosure(KlassInfoTable* cit, BoolObjectClosure* filter) :
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   700
    _cit(cit), _missed_count(0), _filter(filter) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  void do_object(oop obj) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   703
    if (should_visit(obj)) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   704
      if (!_cit->record_instance(obj)) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   705
        _missed_count++;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   706
      }
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   707
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  }
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   709
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   710
  size_t missed_count() { return _missed_count; }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   711
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   712
 private:
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   713
  bool should_visit(oop obj) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   714
    return _filter == NULL || _filter->do_object_b(obj);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   715
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   718
size_t HeapInspection::populate_table(KlassInfoTable* cit, BoolObjectClosure *filter) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  ResourceMark rm;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   720
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   721
  RecordInstanceClosure ric(cit, filter);
55629
29e522153769 8224531: SEGV while collecting Klass statistics
eosterlund
parents: 55628
diff changeset
   722
  Universe::heap()->safe_object_iterate(&ric);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   723
  return ric.missed_count();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   724
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   725
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   726
void HeapInspection::heap_inspection(outputStream* st) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   727
  ResourceMark rm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   728
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   729
  if (_print_help) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   730
    for (int c=0; c<KlassSizeStats::_num_columns; c++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   731
      st->print("%s:\n\t", name_table[c]);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   732
      const int max_col = 60;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   733
      int col = 0;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   734
      for (const char *p = help_table[c]; *p; p++,col++) {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   735
        if (col >= max_col && *p == ' ') {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   736
          st->print("\n\t");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   737
          col = 0;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   738
        } else {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   739
          st->print("%c", *p);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   740
        }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   741
      }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   742
      st->print_cr(".\n");
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   743
    }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   744
    return;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   745
  }
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   746
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   747
  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
   748
  if (!cit.allocation_failed()) {
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   749
    // populate table with object allocation info
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   750
    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
   751
    if (missed_count != 0) {
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   752
      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
   753
                   " total instances in data below",
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   754
                   missed_count);
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   755
    }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   756
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   757
    // Sort and print klass instance info
35939
05df7e64ecfc 8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents: 35862
diff changeset
   758
    KlassInfoHisto histo(&cit);
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   759
    HistoClosure hc(&histo);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   760
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   761
    cit.iterate(&hc);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17370
diff changeset
   762
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   763
    histo.sort();
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
   764
    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
   765
  } else {
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 27880
diff changeset
   766
    st->print_cr("ERROR: Ran out of C-heap; histogram not generated");
184
a2da5efb871c 6621728: Heap inspection should not crash in the face of C-heap exhaustion
ysr
parents: 1
diff changeset
   767
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  st->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
class FindInstanceClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   773
  Klass* _klass;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  GrowableArray<oop>* _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   777
  FindInstanceClosure(Klass* k, GrowableArray<oop>* result) : _klass(k), _result(result) {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  void do_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    if (obj->is_a(_klass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      _result->append(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   786
void HeapInspection::find_instances_at_safepoint(Klass* k, GrowableArray<oop>* result) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  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
   788
  assert(Heap_lock->is_locked(), "should have the Heap_lock");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  // Ensure that the heap is parsable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  Universe::heap()->ensure_parsability(false);  // no need to retire TALBs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  // Iterate over objects in the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  FindInstanceClosure fic(k, result);
55628
7a0d1616851e 8227277: HeapInspection::find_instances_at_safepoint walks dead objects
eosterlund
parents: 54786
diff changeset
   795
  Universe::heap()->safe_object_iterate(&fic);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
}